/* FlowBonus — design system */
:root {
  --ink: #121212;
  --ink-soft: #2a2a2a;
  --muted: #5c5c5c;
  --paper: #f3f1ec;
  --paper-2: #e8e4db;
  --gold: #c6a03a;
  --gold-bright: #e0bf5a;
  --gold-deep: #8f7320;
  --line: rgba(18, 18, 18, 0.12);
  --white: #ffffff;
  --radius: 4px;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --space: clamp(1rem, 3vw, 2rem);
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(198, 160, 58, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(198, 160, 58, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f5f0 0%, var(--paper) 40%, #ebe7de 100%);
  line-height: 1.55;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  font: inherit;
}

.container {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(243, 241, 236, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--gold-deep);
}

.logo-mark {
  width: 36px;
  height: 36px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #f3e4b0, var(--gold-bright));
  color: var(--ink);
  border-color: rgba(143, 115, 32, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.04);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--ink);
}

.btn-gold:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.btn-on-dark:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  --wipe-x: 72%;
  --wipe-y: 42%;
  --wipe-size: 0px;
  background: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.02);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-wipe {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #ffffff;
  -webkit-mask-image: radial-gradient(
    circle var(--wipe-size) at var(--wipe-x) var(--wipe-y),
    transparent 0%,
    transparent 55%,
    #000 72%
  );
  mask-image: radial-gradient(
    circle var(--wipe-size) at var(--wipe-x) var(--wipe-y),
    transparent 0%,
    transparent 55%,
    #000 72%
  );
  transition: none;
}

.hero.is-revealed .hero-wipe {
  -webkit-mask-image: radial-gradient(
    circle var(--wipe-size) at var(--wipe-x) var(--wipe-y),
    transparent 0%,
    transparent 62%,
    #000 100%
  );
  mask-image: radial-gradient(
    circle var(--wipe-size) at var(--wipe-x) var(--wipe-y),
    transparent 0%,
    transparent 62%,
    #000 100%
  );
}

/* Dark readable zone like previous hero — text stays visible over logo */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(12, 12, 12, 0.88) 0%,
      rgba(12, 12, 12, 0.72) 34%,
      rgba(12, 12, 12, 0.28) 58%,
      transparent 78%
    ),
    linear-gradient(
      180deg,
      rgba(12, 12, 12, 0.25) 0%,
      transparent 35%,
      rgba(12, 12, 12, 0.45) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(5rem, 12vh, 8rem) 0 clamp(2.5rem, 6vh, 4rem);
  color: var(--white);
  max-width: 640px;
}

.brand-lockup {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 1rem;
  animation: riseIn 0.9s var(--ease) both;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.brand-lockup em {
  font-style: normal;
  color: var(--gold-bright);
}

.hero-lead {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  animation: riseIn 0.9s var(--ease) 0.08s both;
}

.hero-text {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  max-width: 36ch;
  animation: riseIn 0.9s var(--ease) 0.16s both;
}

.hero-content .btn-row {
  animation: riseIn 0.9s var(--ease) 0.24s both;
}

.page-hero {
  padding: clamp(3.5rem, 8vh, 5.5rem) 0 2.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  max-width: 14ch;
}

.page-hero p {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Sections */
section {
  padding: clamp(3.5rem, 8vh, 5.5rem) 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.tp-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

.tp-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}

.tp-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
  max-width: 22ch;
}

.tp-text-wide {
  max-width: 18ch;
}

.tp-lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 0;
  max-width: 42ch;
  color: var(--ink);
}

.tp-support {
  margin: 0.85rem 0 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0.35rem;
  left: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-deep);
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.audience-link {
  display: block;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

.audience-link:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 160, 58, 0.55);
  background: rgba(255, 255, 255, 0.85);
}

.audience-link h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.audience-link p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.audience-link .more {
  font-weight: 700;
  color: var(--gold-deep);
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
}

.categories span {
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(198, 160, 58, 0.45);
  padding-bottom: 0.1rem;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.compare-item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.compare-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.compare-item p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  background: var(--ink);
  color: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  padding-left: 1.1rem;
  border-left: 3px solid var(--gold);
}

.feature-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.feature-list span {
  color: var(--muted);
  font-size: 0.98rem;
}

.coin-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, rgba(198, 160, 58, 0.16), rgba(198, 160, 58, 0.05));
  border-left: 3px solid var(--gold);
}

.coin-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.coin-note p {
  margin: 0 0 0.55rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.coin-note p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.coin-note a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.coin-note .inline-strong {
  display: inline;
  font-weight: 700;
  color: var(--ink);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-deep);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
  border-top: 1px solid transparent;
}

.faq-item[open] .faq-body {
  border-top-color: var(--line);
  padding-top: 0.85rem;
}

.faq-body p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
}

.faq-body p:last-child {
  margin-bottom: 0;
}

.faq-body strong {
  color: var(--ink);
}

.faq-price-list {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.faq-price-list li {
  display: grid;
  gap: 0.15rem 0.75rem;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  padding: 0.75rem 0.9rem;
  background: rgba(198, 160, 58, 0.08);
  border: 1px solid rgba(198, 160, 58, 0.22);
  border-radius: var(--radius);
}

.faq-price-pack {
  font-weight: 700;
  color: var(--ink);
}

.faq-price-sum {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-deep);
  justify-self: end;
}

.faq-price-note {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--muted);
}

.faq-body a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.form-panel {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.form-panel h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.form-panel > p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font: inherit;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(198, 160, 58, 0.45);
  border-color: var(--gold);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: var(--space);
  overflow-y: auto;
  align-items: start;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, 0.55);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: calc(100vh - 2 * var(--space));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin: max(1.5rem, 4vh) auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  animation: riseIn 0.35s var(--ease) both;
}

.modal-dialog h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.modal-dialog > p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0.25rem 0.4rem;
}

.modal-close:hover {
  color: var(--ink);
}

.modal .form-grid .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.link-support {
  border: 0;
  background: transparent;
  color: var(--gold-deep);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.link-support:hover {
  text-decoration: underline;
}

.login-role-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
}

.login-role {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
}

.login-role.is-active {
  color: var(--ink);
  border-color: rgba(198, 160, 58, 0.55);
  background: linear-gradient(135deg, rgba(198, 160, 58, 0.18), rgba(198, 160, 58, 0.05));
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  margin-top: 0.65rem;
  font-size: 0.85rem;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.footer-contacts {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-contacts a {
  color: var(--gold-deep);
}

/* Network showcase on landing */
.network-head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
  max-width: none;
  width: 100%;
}

.network-head-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  width: 100%;
}

.network-head-row h2 {
  margin: 0;
}

.network-lead {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.network-stat-tile {
  position: relative;
  width: 5.4rem;
  height: 5.4rem;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid rgba(198, 160, 58, 0.38);
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  background: #f4f1ea;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.06);
  --wipe-x: 50%;
  --wipe-y: 50%;
  --wipe-size: 18px;
}

.network-stat-tile:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.network-stat-reveal {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background:
    radial-gradient(circle at 30% 25%, rgba(224, 191, 90, 0.35), transparent 55%),
    linear-gradient(155deg, #171717 0%, #2a2110 55%, #121212 100%);
  color: #fff;
}

.network-stat-reveal strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold-bright);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.network-stat-caption {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.network-stat-wipe {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(247, 245, 240, 0.96)),
    #f7f5f0;
  -webkit-mask-image: radial-gradient(
    circle var(--wipe-size) at var(--wipe-x) var(--wipe-y),
    transparent 0%,
    transparent 55%,
    #000 74%
  );
  mask-image: radial-gradient(
    circle var(--wipe-size) at var(--wipe-x) var(--wipe-y),
    transparent 0%,
    transparent 55%,
    #000 74%
  );
}

.network-stat-cover-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.network-stat-tile.is-open .network-stat-cover-label {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
  margin-top: 0.85rem;
}

.network-grid.is-single {
  grid-template-columns: min(100%, 380px);
}

.network-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(18, 18, 18, 0.05);
}

.network-visual {
  position: relative;
  height: 188px;
  background: #1a1a1a;
}

.network-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.55));
}

.network-carousel-track {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.network-carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.network-carousel-track img.is-active {
  display: block;
}

.network-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.1rem;
  height: 2.1rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.network-carousel-btn.prev {
  left: 0.65rem;
}

.network-carousel-btn.next {
  right: 0.65rem;
}

.network-carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.35rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  z-index: 3;
}

.network-carousel-dots button {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.network-carousel-dots button.is-active {
  background: #fff;
  width: 0.85rem;
}

.network-chip {
  position: absolute;
  bottom: 0.7rem;
  z-index: 3;
  max-width: calc(50% - 1rem);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.network-chip-category {
  left: 0.7rem;
}

.network-chip-city {
  right: 0.7rem;
}

.network-body {
  padding: 0.85rem 0.95rem 1rem;
}

.network-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.network-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.network-divider {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.85rem 0 0.8rem;
  color: rgba(18, 18, 18, 0.55);
}

.network-divider-line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.network-divider-ornament {
  width: 2.85rem;
  height: 0.9rem;
  flex-shrink: 0;
  display: block;
}

.network-spend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.network-spend-label {
  min-width: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
}

.network-spend-value {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(224, 191, 90, 0.45), rgba(198, 160, 58, 0.18));
  border: 1px solid rgba(198, 160, 58, 0.4);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.network-spend-value img {
  width: 1.05rem;
  height: 1.05rem;
}

.empty-state {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.form-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0.35rem 0 0.15rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(198, 160, 58, 0.06);
}

.form-consent input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  min-width: 1.15rem;
  margin: 0.15rem 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--gold-deep);
  cursor: pointer;
}

.form-consent-text {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-soft);
  cursor: pointer;
}

.form-consent-text a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

/* Motion helpers */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-1.5%, -1%, 0);
  }
}

/* Responsive */
@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brand-lockup,
  .hero-lead,
  .hero-text,
  .hero-content .btn-row {
    animation: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--space) 1rem;
    background: rgba(243, 241, 236, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    border-top: 1px solid var(--line);
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
  }

  .split,
  .steps,
  .audience-grid,
  .compare,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(88vh, 760px);
  }

  .hero-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(12, 12, 12, 0.55) 0%,
        rgba(12, 12, 12, 0.35) 40%,
        rgba(12, 12, 12, 0.78) 100%
      );
  }

  .brand-lockup {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    padding-right: 0.12em;
  }

  .hero-content .btn-row {
    max-width: 320px;
  }
}
