/* Parvus Media v2 — product bands matched to creatives */
:root {
  --bg: #0a0a0b;
  --bg-2: #111114;
  --surface: #f6f5f2;
  --ink: #0a0a0b;
  --ink-soft: #3a3a40;
  --muted: #8a8a93;
  --line: rgba(255,255,255,.1);
  --line-dark: rgba(10,10,11,.1);
  --accent: #c45aab;
  --blue: #2b80ff;
  --blue-deep: #1a73e8;
  --yellow: #ffcc00;
  --wa: #25d366;
  --gold: #c4a574;
  --navy: #07101f;
  --beige: #e8e2d8;
  --font: "Instrument Sans", system-ui, sans-serif;
  --display: "Fraunces", "Instrument Sans", Georgia, serif;
  --max: 1280px;
  --nav: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Shared example-tab size (Reports / Social watch standard) */
  --tab-pad-y: 1.05rem;
  --tab-pad-x: 1.65rem;
  --tab-min-h: 3.25rem;
  --tab-font: 1.05rem;
  --tab-dot: .65rem;
  --tab-gap: .65rem;
  --tab-hint-pad: .5rem 1rem;
  --tab-hint-font: .8rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: #fff;
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 99; background: #fff; color: #000; padding: .5rem 1rem; }

.preview-badge {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 80;
  padding: .4rem .7rem; background: #fff; color: #000;
  font-size: .65rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase;
  opacity: .55;
}
.preview-badge:hover { opacity: 1; }

.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* —— Nav —— */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav);
  padding: 0 clamp(1.25rem, 4vw, 2.75rem);
  background: linear-gradient(to bottom, rgba(10,10,11,.85), transparent);
}
.nav-logo {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 650; font-size: 1.05rem; letter-spacing: -0.03em;
}
.nav-logo img { height: 28px; width: auto; }
.nav-logo .media { color: var(--accent); }
.nav-links {
  display: none; gap: 1.5rem; list-style: none; margin: 0; padding: 0;
  font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.65);
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: .65rem 1.1rem; background: #fff; color: #000;
  font-size: .85rem; font-weight: 650;
}
.nav-cta:hover { background: var(--accent); color: #fff; }
.nav-end {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font: 650 0.75rem/1 var(--font-b, inherit);
  letter-spacing: 0.04em;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}
.lang-btn.is-active {
  background: #fff;
  color: #000;
}
.lang-btn:hover:not(.is-active) { color: #fff; }
@media (min-width: 980px) { .nav-links { display: flex; } }

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--bg);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center right;
  opacity: .85; filter: saturate(.7) contrast(1.05) brightness(.9);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,11,.97) 0%, rgba(10,10,11,.78) 38%, rgba(10,10,11,.35) 68%, rgba(10,10,11,.2) 100%),
    linear-gradient(to top, rgba(10,10,11,.85) 0%, transparent 45%);
}
.hero-inner {
  position: relative; z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--nav) + 4rem) 0 5rem;
  max-width: 40rem;
}
.hero-brand {
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: .9;
  margin: 0 0 1.5rem;
}
.hero-brand .media { color: var(--accent); }
.hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 16ch;
}
.hero .lead {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.62);
  max-width: 32ch;
  font-weight: 400;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem;
  padding: 1rem 1.5rem;
  font-size: 1rem; font-weight: 650;
  border: none; cursor: pointer;
  border-radius: 999px;
  transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { background: #fff; color: #000; }
.btn-light:hover { background: var(--accent); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; border-radius: 8px; }
.btn-dark:hover { background: var(--accent); }

/* —— Needs —— */
.needs {
  background: var(--surface);
  color: var(--ink);
  padding: 1.75rem 0 1.85rem;
  border-bottom: 1px solid var(--line-dark);
}
.needs-inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1rem 1.75rem;
}
@media (min-width: 900px) {
  .needs-inner { grid-template-columns: auto repeat(5, 1fr); align-items: end; }
}
.needs-intro {
  margin: 0;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--muted);
  padding-bottom: .55rem;
}
.need-link {
  display: block;
  padding: .85rem 0 1rem;
  color: var(--ink-soft);
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s, transform .2s var(--ease);
}
.need-link:hover, .need-link.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.need-link:hover {
  transform: translateY(-1px);
}
.need-link strong {
  display: block;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: .35rem;
}
.need-link span {
  font-size: clamp(.95rem, 1.3vw, 1.05rem);
  color: var(--muted);
  line-height: 1.3;
}

/* —— Product bands —— */
.band {
  min-height: 92vh;
  min-height: 92svh;
  display: grid;
  background: var(--bg);
  color: #fff;
  transition: background .45s var(--ease), color .45s var(--ease);
}
@media (min-width: 960px) {
  .band {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(1.25rem, 2.2vw, 2.25rem);
    /* Wide centered stage — side gutters only, not edge-to-edge */
    padding-inline: max(1.5rem, calc((100vw - 1840px) / 2));
  }
  .band--flip {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  }
  .band:not(.band--flip) {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  }
}
.band-media {
  position: relative;
  min-height: 55vh;
  background: var(--bg-2);
  overflow: hidden;
  transition: background .45s var(--ease);
}
@media (min-width: 960px) {
  .band-media {
    min-height: min(86vh, 820px);
    border-radius: 16px;
  }
}
.band-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute; inset: 0;
}
.band-media--device img,
.band-media--device .slide img {
  object-fit: contain;
  object-position: center;
  padding: clamp(.5rem, 1.5vw, 1.25rem);
}
.band-media--ui img {
  object-fit: contain;
  object-position: center;
  padding: clamp(.5rem, 1.5vw, 1.1rem);
}
.band-media--bleed img {
  object-fit: cover;
}
.band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 2.75rem);
}
@media (min-width: 960px) {
  .band-copy {
    max-width: none;
    width: 100%;
    justify-self: stretch;
    padding-block: 2.5rem;
    padding-inline: clamp(1.75rem, 3vw, 3.25rem);
  }
  .band-media {
    justify-self: stretch;
  }
}
.band-copy .band-title {
  margin: 0 0 .85rem;
  font-size: clamp(2.75rem, 6.2vw, 5.5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: .92;
  max-width: 22ch;
  color: inherit;
  transition: color .35s;
}
.band-copy .case {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .85rem;
}
.band-copy .band-sub {
  margin: 0 0 1.25rem;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 28rem;
  color: inherit;
  opacity: .92;
}
.band-copy .dek {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,.62);
  max-width: 40rem;
  line-height: 1.5;
}
.feature-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.feature-list li {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.78);
  padding-left: 1.1rem;
  position: relative;
  max-width: 40rem;
}
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: .4rem; height: .4rem;
  background: var(--accent);
  border-radius: 1px;
}
.band .actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.band .more { font-size: .95rem; font-weight: 600; }
.band .more summary {
  cursor: pointer; list-style: none; color: rgba(255,255,255,.75);
}
.band .more summary::-webkit-details-marker { display: none; }
.band .more summary::after { content: " →"; }
.band .more ul { margin-top: .85rem; }
.band .more li { font-size: .95rem; color: var(--muted); }
.band .more li strong { color: inherit; opacity: .9; }

.band--flip .band-media { order: 2; }
.band--flip .band-copy { order: 1; }
@media (max-width: 959px) {
  .band--flip .band-media { order: 0; }
  .band--flip .band-copy { order: 0; }
}

/* tabs */
.band-media .tabs {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.tabs-hint {
  margin: 0;
  padding: var(--tab-hint-pad);
  font-size: var(--tab-hint-font);
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  background: rgba(10,10,11,.55);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.tabs-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.band-media .tabs-hint {
  color: rgba(255,255,255,.92);
  background: rgba(10,10,11,.55);
}
.tabs button,
.band-media .tabs button,
.tabs--inline button {
  border: 2px solid transparent;
  background: rgba(10,10,11,.72);
  color: #fff;
  backdrop-filter: blur(10px);
  padding: var(--tab-pad-y) var(--tab-pad-x);
  min-height: var(--tab-min-h);
  font-size: var(--tab-font);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: var(--tab-gap);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease), box-shadow .2s;
}
.tabs button .tabs-dot,
.band-media .tabs button .tabs-dot,
.tabs--inline button .tabs-dot {
  width: var(--tab-dot);
  height: var(--tab-dot);
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  flex-shrink: 0;
}
.tabs button:hover,
.band-media .tabs button:hover,
.tabs--inline button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,.32);
  border-color: rgba(255,255,255,.55);
}
.tabs button:focus-visible,
.band-media .tabs button:focus-visible,
.tabs--inline button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.tabs button.is-active,
.band-media .tabs button.is-active,
.tabs--inline button.is-active {
  background: #fff;
  color: #000;
  border-color: #000;
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.tabs button.is-active .tabs-dot,
.band-media .tabs button.is-active .tabs-dot,
.tabs--inline button.is-active .tabs-dot {
  background: #000;
}

/* Inline tabs under band copy — same size as media tabs */
.tabs--inline {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  margin-top: .5rem;
}
.tabs--inline .tabs-hint {
  background: rgba(26,23,20,.08);
  color: rgba(26,23,20,.65);
  backdrop-filter: none;
}
.tabs--inline .tabs-row {
  justify-content: flex-start;
  gap: .75rem;
}
.band-media .slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.band-media .slide.is-visible { opacity: 1; pointer-events: auto; }
.band-media .slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* ========== 01 Insights ========== */
.band--insights {
  background: #fff;
  color: #12151a;
}
.band--insights .band-media,
.band--insights .band-media--insights {
  background: #fff;
}
.band--insights .band-media--insights img {
  object-fit: contain;
  object-position: center;
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: 0;
  filter: none;
}
.band--insights .band-media--insights picture {
  position: absolute;
  inset: 0;
  display: block;
}
.band--insights .band-media--insights picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 959px) {
  .band--insights .band-media,
  .band--insights .band-media--insights {
    min-height: 0;
    width: 100%;
    height: auto;
    background: #f4f5f7;
  }
  /* Portrait mockups on mobile for Reports + Social watch */
  .band--insights.is-reports .band-media,
  .band--insights.is-reports .band-media--insights,
  .band--insights.is-social .band-media,
  .band--insights.is-social .band-media--insights {
    aspect-ratio: 9 / 16;
    max-height: min(78vh, 720px);
  }
  .band--insights .band-media--insights img,
  .band--insights .band-media--insights picture img {
    padding: .5rem;
  }
  .band--insights .band-media .tabs {
    bottom: .65rem;
  }
}
.band--insights .band-copy {
  background: #12151a;
  color: #fff;
}
@media (min-width: 960px) {
  /* Full-bleed split: white left edge → dark right edge, no gray gutters */
  .band--insights {
    align-items: stretch;
    column-gap: 0;
    padding-inline: 0;
    background: linear-gradient(90deg, #fff 50%, #12151a 50%);
  }
  .band--insights .band-media,
  .band--insights .band-media--insights {
    border-radius: 0;
    min-height: 100%;
    height: 100%;
    align-self: stretch;
    background: #fff;
  }
  .band--insights .band-copy {
    border-radius: 0;
    align-self: stretch;
    min-height: 100%;
    height: 100%;
    justify-self: stretch;
    padding-inline: clamp(2rem, 4vw, 4.5rem);
  }
}
@media (max-width: 959px) {
  .band--insights {
    background: #fff;
  }
}
.band--insights .band-title { color: #fff; }
.band--insights .case { color: #8ec5ff; }
.band--insights .band-sub { color: rgba(255,255,255,.92); opacity: 1; }
.band--insights .dek { color: rgba(255,255,255,.66); }
.band--insights .feature-list li { color: rgba(255,255,255,.82); }
.band--insights .feature-list li::before { background: #8ec5ff; }
.band--insights .more summary { color: rgba(255,255,255,.75); }
.band--insights .more li { color: rgba(255,255,255,.55); }
.band--insights .tabs-hint {
  color: #12151a;
  background: rgba(255,255,255,.9);
}
.band--insights .tabs button {
  background: rgba(18,21,26,.72);
  border-color: rgba(255,255,255,.3);
  padding: var(--tab-pad-y) var(--tab-pad-x);
  min-height: var(--tab-min-h);
  font-size: var(--tab-font);
}
.band--insights .tabs button.is-active {
  background: #12151a;
  color: #fff;
  border-color: #8ec5ff;
}
.band--insights .tabs button.is-active .tabs-dot { background: #8ec5ff; }

/* ========== 02 DCO — theme switches ========== */
.band--dco {
  background: #f3eee6;
  color: #1a1714;
}
.band--dco .band-media { background: var(--beige); }
.band--dco .band-title { color: #1a1714; }
.band--dco .case { color: #2a6fb8; }
.band--dco .dek { color: #4a453e; }
.band--dco .feature-list li { color: #3a3530; }
.band--dco .feature-list li::before { background: #2a6fb8; }
.band--dco .btn-dco {
  background: #fff;
  color: #1a3a6e;
  box-shadow: 0 8px 24px rgba(26, 23, 20, .08);
}
.band--dco .btn-dco:hover { background: #1a3a6e; color: #fff; }
.band--dco .tabs-hint {
  color: rgba(26,23,20,.65);
  background: rgba(26,23,20,.08);
}
.band--dco .tabs button {
  background: rgba(26,23,20,.62);
  border-color: rgba(255,255,255,.25);
  color: #fff;
  padding: var(--tab-pad-y) var(--tab-pad-x);
  min-height: var(--tab-min-h);
  font-size: var(--tab-font);
  font-weight: 700;
  gap: var(--tab-gap);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.band--dco .tabs button.is-active {
  background: #fff;
  color: #1a1714;
  border-color: #1a1714;
}
.band--dco .tabs button.is-active .tabs-dot { background: #1a1714; }

/* Performance tab: Black Friday navy + electric blue */
.band--dco.is-performance {
  background: var(--navy);
  color: #fff;
}
.band--dco.is-performance .band-media {
  background: #05070a;
}
.band--dco.is-performance .band-media--device img,
.band--dco.is-performance .band-media--device .slide img {
  object-fit: contain;
  padding: clamp(.75rem, 2.5vw, 2rem);
}
.band--dco.is-performance .band-title { color: #fff; }
.band--dco.is-performance .case { color: var(--blue); }
.band--dco.is-performance .dek { color: rgba(255,255,255,.62); }
.band--dco.is-performance .feature-list li { color: rgba(255,255,255,.8); }
.band--dco.is-performance .feature-list li::before { background: var(--blue); }
.band--dco.is-performance .btn-dco {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(43,128,255,.35), 0 12px 32px rgba(43,128,255,.25);
  border-radius: 10px;
}
.band--dco.is-performance .btn-dco:hover { background: #4a96ff; }
.band--dco.is-performance .tabs--inline .tabs-hint {
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
}
.band--dco.is-performance .tabs button {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  padding: var(--tab-pad-y) var(--tab-pad-x);
  min-height: var(--tab-min-h);
  font-size: var(--tab-font);
}
.band--dco.is-performance .tabs button.is-active {
  background: var(--blue);
  color: #fff;
  border-color: #fff;
}
.band--dco.is-performance .tabs button.is-active .tabs-dot { background: #fff; }

/* Signals tab: coastal cream + navy/gold */
.band--dco.is-signals {
  background: #f7f4ef;
  color: #0c1a2e;
}
.band--dco.is-signals .band-media {
  background: linear-gradient(160deg, #dce8ef, #f0ebe3);
}
.band--dco.is-signals .band-title { color: #0c1a2e; }
.band--dco.is-signals .case { color: var(--gold); }
.band--dco.is-signals .band-sub {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.band--dco.is-signals .dek { color: #3d4654; }
.band--dco.is-signals .feature-list li { color: #2c3440; }
.band--dco.is-signals .feature-list li::before { background: var(--gold); }
.band--dco.is-signals .btn-dco {
  background: #0c1a2e;
  color: #fff;
  border-radius: 4px;
}
.band--dco.is-signals .btn-dco:hover { background: var(--gold); color: #0c1a2e; }
.band--dco.is-signals .tabs--inline .tabs-hint {
  color: #0c1a2e;
  background: rgba(12,26,46,.08);
}
.band--dco.is-signals .tabs button.is-active {
  background: #0c1a2e;
  color: #fff;
  border-color: var(--gold);
}
.band--dco.is-signals .tabs button.is-active .tabs-dot { background: var(--gold); }

/* ========== 03 Leads — black + yellow ========== */
.band--leads {
  background: #0d0d0d;
  color: #fff;
}
.band--leads .band-media {
  background: #e9e9eb;
}
.band--leads .band-title { color: #fff; }
.band--leads .case { color: var(--yellow); }
.band--leads .dek { color: rgba(255,255,255,.65); }
.band--leads .feature-list li::before { background: var(--yellow); }
.feature-pills {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.feature-pills li {
  padding: .55rem .9rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 8px;
  color: rgba(255,255,255,.85);
}
.btn-lead {
  background: var(--yellow);
  color: #111;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .9rem;
}
.btn-lead:hover { background: #ffe14d; color: #000; }

/* ========== 04 Automation — dashboard navy ========== */
.band--automation {
  background: #0b0e14;
  color: #fff;
}
.band--automation .band-media {
  background: #0b0e14;
}
.band--automation .band-media--ui img {
  object-fit: contain;
  object-position: center;
  padding: clamp(.5rem, 1.5vw, 1.1rem);
}
.band--automation .band-media--ui picture {
  position: absolute;
  inset: 0;
  display: block;
}
.band--automation .band-media--ui picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 959px) {
  .band--automation .band-media,
  .band--automation .band-media--ui {
    min-height: 0;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: min(78vh, 720px);
    height: auto;
  }
  .band--automation .band-media--ui img,
  .band--automation .band-media--ui picture img {
    padding: .5rem;
  }
}
@media (min-width: 960px) {
  .band--automation .band-media--ui img {
    object-fit: contain;
    object-position: center;
    padding: .75rem;
    background: transparent;
  }
}
.band--automation .band-title { color: #fff; max-width: 24ch; }
.band--automation .case { color: var(--blue); }
.band--automation .dek { color: rgba(255,255,255,.62); }
.band--automation .feature-list li { color: rgba(255,255,255,.8); }
.band--automation .feature-list li::before { background: var(--blue); border-radius: 2px; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin: 0 0 1.75rem;
  max-width: 44rem;
}
.stat-row > div {
  padding: .85rem .9rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  border-radius: 10px;
}
.stat-row span {
  display: block;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 650;
  margin-bottom: .35rem;
}
.stat-row strong {
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #fff;
}
.stat-row > div:first-child strong { color: #4ade80; }
.stat-row > div:nth-child(3) strong { color: var(--blue); }
.btn-auto {
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
}
.btn-auto:hover { background: #4a96ff; }

/* ========== 05 WhatsApp — dark desk + green ========== */
.band--whatsapp {
  background: #0a0a0b;
  color: #fff;
}
.band--whatsapp .band-media {
  background: #0e1510;
}
.band--whatsapp.is-upsell .band-media {
  /* Match wa-upsell.jpg green so the media column reads as one field */
  background: #50ac2c;
}
.band--whatsapp.is-recovery .band-media {
  background: #0e1510;
}
.band--whatsapp .band-media--device img,
.band--whatsapp .band-media--device .slide img {
  object-fit: contain;
  padding: clamp(.75rem, 2vw, 1.5rem);
}
.band--whatsapp .band-copy {
  background: #0a0a0b;
  color: #fff;
}
@media (min-width: 960px) {
  .band--whatsapp {
    align-items: stretch;
    column-gap: 0;
    padding-inline: 0;
    background: linear-gradient(90deg, #0e1510 50%, #0a0a0b 50%);
  }
  .band--whatsapp.is-upsell {
    background: linear-gradient(90deg, #50ac2c 50%, #0a0a0b 50%);
  }
  .band--whatsapp .band-media {
    border-radius: 0;
    min-height: 100%;
    height: 100%;
    align-self: stretch;
  }
  .band--whatsapp .band-copy {
    border-radius: 0;
    align-self: stretch;
    min-height: 100%;
    height: 100%;
    justify-self: stretch;
    padding-inline: clamp(2rem, 4vw, 4.5rem);
  }
}
.band--whatsapp .band-title { color: #fff; }
.band--whatsapp .case { color: var(--wa); }
.band--whatsapp .dek { color: rgba(255,255,255,.65); }
.band--whatsapp .feature-list li { color: rgba(255,255,255,.8); }
.band--whatsapp .feature-list li::before {
  background: var(--wa);
  border-radius: 50%;
}
.band--whatsapp .tabs-hint {
  color: #0a0a0b;
  background: rgba(255,255,255,.92);
}
.band--whatsapp.is-recovery .tabs-hint {
  color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.45);
}
.band--whatsapp .tabs button {
  background: rgba(10,10,11,.72);
  border-color: rgba(255,255,255,.28);
  padding: var(--tab-pad-y) var(--tab-pad-x);
  min-height: var(--tab-min-h);
  font-size: var(--tab-font);
  font-weight: 700;
  gap: var(--tab-gap);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.band--whatsapp .tabs button.is-active {
  background: var(--wa);
  color: #0a0a0b;
  border-color: #fff;
}
.band--whatsapp.is-upsell .tabs button.is-active {
  background: #0a0a0b;
  color: #fff;
  border-color: #0a0a0b;
}
.band--whatsapp .tabs button.is-active .tabs-dot { background: #0a0a0b; }
.band--whatsapp.is-upsell .tabs button.is-active .tabs-dot { background: var(--wa); }
.btn-wa {
  background: var(--wa);
  color: #0a0a0b;
}
.btn-wa:hover { background: #3be07a; }

/* How / trust / about / contact */
.block {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--surface);
  color: var(--ink);
}
.block h2 {
  margin: 0 0 2rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 14ch;
}
.block--how {
  padding: clamp(5.5rem, 12vw, 9rem) 0;
  background:
    radial-gradient(1200px 480px at 12% 0%, rgba(196,90,171,.12), transparent 60%),
    radial-gradient(900px 420px at 88% 100%, rgba(43,128,255,.1), transparent 55%),
    var(--surface);
}
.how-cta {
  max-width: min(100%, 52rem);
}
.how-cta-label {
  margin: 0 0 1rem;
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.how-cta-title {
  margin: 0 0 1.25rem;
  max-width: 16ch;
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: .95;
  color: var(--ink);
}
.how-cta-dek {
  margin: 0 0 2.25rem;
  max-width: 34ch;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink-soft);
}
.how-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.how-cta-btn {
  min-height: 3.4rem;
  padding: 1.05rem 1.85rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.trusted {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  background: #0a0a0b;
  color: #fff;
  border-top: none;
  overflow: visible;
}
.trusted .wrap,
.trusted-inner {
  width: min(100% - 2rem, 1560px);
  max-width: 1560px;
  margin-inline: auto;
  overflow: visible;
}
.trusted-inner {
  text-align: center;
}
.trusted-label {
  margin: 0 0 .75rem;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--accent);
}
.trusted-title {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: .95;
}
.trusted-dek {
  margin: 0 auto 2.75rem;
  max-width: 34ch;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.55);
}
.logo-board {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
  overflow: visible;
}
.logo-tier {
  margin-top: 0;
  text-align: center;
}
.logo-tier + .logo-tier {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(10,10,11,.08);
}
.logo-tier-label {
  margin: 0 0 .85rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 650;
  color: rgba(10,10,11,.4);
}
.logo-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  max-width: 100%;
}
.logo-rail img {
  height: 100px;
  max-height: 100px;
  max-width: min(220px, 28vw);
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform .25s var(--ease), opacity .25s;
}
.logo-rail img:hover {
  transform: scale(1.04);
  opacity: 1;
  filter: none;
}
.logo-tier--advertisers .logo-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.1rem;
  align-items: stretch;
  justify-items: stretch;
  padding: 0;
  overflow: visible;
}
.logo-tier--advertisers .logo-rail img {
  width: 100%;
  height: 92px;
  max-height: 92px;
  max-width: none;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}
@media (min-width: 900px) {
  .logo-rail {
    gap: 2rem 2.75rem;
    padding: 0;
  }
  .logo-rail img {
    height: 100px;
    max-height: 100px;
    max-width: 220px;
  }
  .logo-tier--advertisers .logo-rail {
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 1rem 1.15rem;
    padding: 0;
  }
  .logo-tier--advertisers .logo-rail img {
    height: 100px;
    max-height: 100px;
    max-width: none;
    width: 100%;
  }
}
.logo-tier--agencies .logo-rail {
  flex-wrap: nowrap;
  gap: .75rem 1rem;
  padding: 0;
  overflow: visible;
  justify-content: space-between;
}
.logo-tier--agencies .logo-rail img {
  height: 80px;
  max-height: 80px;
  max-width: 120px;
  min-width: 0;
  width: auto;
  flex: 1 1 0;
  object-fit: contain;
}
@media (min-width: 900px) {
  .logo-tier--agencies .logo-rail {
    gap: .85rem 1.25rem;
    padding: 0;
  }
  .logo-tier--agencies .logo-rail img {
    height: 80px;
    max-height: 80px;
    max-width: 150px;
  }
}

.about {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg);
  color: #fff;
}
.about-grid {
  display: grid; gap: 2.5rem;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 1.3fr .7fr; align-items: end; gap: 4rem; }
}
.about .eyebrow {
  margin: 0 0 1rem;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); font-weight: 650;
}
.about h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 12ch;
}
.about .dek {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 1.15rem;
  max-width: 40ch;
}
.about-meta { display: grid; gap: 1.25rem; }
.about-meta span {
  display: block;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 650; margin-bottom: .25rem;
}
.about-meta strong {
  font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em;
}

.contact {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--surface);
  color: var(--ink);
  border-top: 1px solid var(--line-dark);
}
.contact-grid {
  display: grid; gap: 2.5rem;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; }
}
.contact .eyebrow {
  margin: 0 0 1rem;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: #8a2a78; font-weight: 650;
}
.contact h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 12ch;
}
.contact .dek { margin: 0; color: var(--ink-soft); font-size: 1.1rem; max-width: 34ch; }
.contact a.mail {
  display: inline-block; margin-top: 1.5rem;
  font-size: 1.15rem; font-weight: 650;
  text-decoration: underline; text-underline-offset: 4px;
}
.form { display: grid; gap: 1rem; }
.form label {
  display: grid; gap: .35rem;
  font-size: .85rem; font-weight: 650;
}
.form input, .form textarea {
  width: 100%; padding: 1rem 1.05rem;
  border: 1px solid var(--line-dark);
  background: #fff; color: var(--ink);
  font-size: 1rem;
  border-radius: 8px;
}
.form input:focus, .form textarea:focus {
  outline: 2px solid var(--ink); outline-offset: 1px;
}
.form .check {
  display: flex; gap: .55rem; align-items: flex-start;
  font-weight: 400; font-size: .9rem; color: var(--ink-soft);
}
.form .check input { width: auto; margin-top: .2rem; }
.captcha {
  display: grid;
  gap: .45rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: #fff;
}
.captcha label {
  font-size: .85rem;
  font-weight: 650;
}
.captcha-q {
  display: block;
  margin-top: .45rem;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: .02em;
  color: var(--ink);
}
.captcha-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem;
  align-items: center;
}
.captcha-row input {
  margin: 0;
}
.captcha-refresh {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  background: var(--surface);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}
.captcha-refresh:hover { background: #fff; }
.form-status { min-height: 1.3em; font-size: .95rem; }
.form-status.error { color: #b91c1c; }
.form-status.ok { color: #15803d; }

.legal-meta {
  margin: 0 0 1rem;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
}

.footer {
  padding: 1.75rem 0;
  background: var(--bg);
  color: var(--muted);
  font-size: .85rem;
}
.footer-inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
}
.footer a:hover { color: #fff; }

.legal {
  padding: 4rem 0 5rem;
  width: min(100% - 2.5rem, 720px);
  margin: 0 auto;
  color: #fff;
  background: var(--bg);
  min-height: 60vh;
}
.legal h1 { font-size: 2.25rem; margin-bottom: 1.25rem; letter-spacing: -0.03em; }
.legal h2 { font-size: 1.1rem; margin: 1.75rem 0 .6rem; color: var(--accent); }
.legal p, .legal li { color: rgba(255,255,255,.6); }
.legal a { color: #fff; text-decoration: underline; }

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .band, .band-media, .band-copy .band-title { transition: none; }
}
