/* =================================================================
   AMIPLAY.NET — Global Stylesheet
   Editorial cream / navy system, aligned with AdServ
   Brand mark color: #472068
   ================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --brand:        #472068;
  --brand-soft:   #3d5c4a;

  /* Accent spectrum (kept as token names so existing HTML still works) */
  --violet:       #1c2a4a;
  --indigo:       #1c2a4a;
  --magenta:      #3d5c4a;
  --pink:         #3d5c4a;
  --cyan:         #3d5c4a;
  --amber:        #c4a15a;

  /* Surfaces */
  --bg:           #f3eee4;
  --bg-1:         #f8f4ec;
  --bg-2:         #fffdf8;
  --bg-3:         #eef4ec;
  --surface:      rgba(255,255,255,.82);
  --surface-2:    rgba(255,255,255,.94);
  --border:       rgba(28,42,74,.08);
  --border-2:     rgba(28,42,74,.14);

  /* Text */
  --text:         #1c2a4a;
  --muted:        #5c6578;
  --muted-2:      #8a8378;

  /* Gradients */
  --grad-main:    linear-gradient(110deg, #1c2a4a 0%, #243656 100%);
  --grad-cool:    linear-gradient(120deg, #1c2a4a 0%, #3d5c4a 120%);
  --grad-text:    linear-gradient(100deg, #1c2a4a 0%, #3d5c4a 100%);
  --grad-brand:   linear-gradient(135deg, #1c2a4a 0%, #472068 100%);

  /* Effects */
  --shadow-sm:    0 10px 28px -18px rgba(28,42,74,.35);
  --shadow:       0 24px 60px -28px rgba(28,42,74,.28);
  --glow-violet:  0 0 40px rgba(28,42,74,.12);
  --glow-magenta: 0 0 40px rgba(61,92,74,.10);

  --radius:       22px;
  --radius-sm:    14px;
  --maxw:         1200px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: rgba(28,42,74,.16); color: #1c2a4a; }

/* Decorative animated page background */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 12% 8%,  rgba(28,42,74,.08), transparent 60%),
    radial-gradient(55% 45% at 88% 4%,  rgba(61,92,74,.10), transparent 60%),
    radial-gradient(60% 55% at 50% 100%, rgba(196,161,90,.10), transparent 65%),
    var(--bg);
}
/* Subtle grain overlay */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { position: relative; padding: clamp(70px, 10vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -.02em; }
.display { font-size: clamp(2.7rem, 6.4vw, 5.3rem); font-weight: 500; }
h2.h-sec { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 60ch; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: .76rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--violet);
  padding: 8px 16px; margin-bottom: 22px;
  border: 1px solid var(--border-2); border-radius: 100px;
  background: rgba(28,42,74,.05);
  backdrop-filter: blur(6px);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: none; }

.section-head { max-width: 720px; margin: 0 auto clamp(44px, 6vw, 70px); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 18px; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 15px 28px; border-radius: 100px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, border-color .25s;
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s; }
.btn:hover svg.arr { transform: translateX(4px); }

.btn-primary {
  color: #fff;
  background: #1c2a4a;
  box-shadow: 0 12px 34px rgba(28,42,74,.18);
}
.btn-primary:hover { transform: translateY(-2px); background: #152038; }

.btn-ghost {
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(28,42,74,.28); background: #fff; }

.btn-lg { padding: 18px 38px; font-size: 1.08rem; }
.btn-sm { padding: 11px 20px; font-size: .92rem; }

.btn-link { color: var(--violet); font-family: var(--font-display); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.btn-link svg { width: 16px; height: 16px; transition: transform .25s; }
.btn-link:hover { color: var(--magenta); }
.btn-link:hover svg { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, backdrop-filter .35s, border-color .35s, padding .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(248,244,236,.88);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 22px; width: auto; }
.brand .tld { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--violet); letter-spacing: -.01em; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: .95rem; color: var(--muted); font-weight: 500; transition: color .2s; position: relative; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background: var(--grad-main); transition: width .25s; border-radius:2px; }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* Mobile menu */
.nav__mobile {
  position: fixed; inset: 74px 0 auto 0; z-index: 99;
  background: rgba(248,244,236,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: none; flex-direction: column; padding: 18px 24px 28px; gap: 6px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: 13px 4px; color: var(--muted); border-bottom: 1px solid var(--border); font-weight: 500; }
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile .btn { margin-top: 14px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 150px; padding-bottom: 90px; overflow: hidden; }
.hero__inner { position: relative; z-index: 2; }
.hero--center { text-align: center; }
.hero--center .lead { margin-inline: auto; }
.hero--center .hero__cta { justify-content: center; }

.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 38px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* animated orbs */
.orbs { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; animation: float 16s ease-in-out infinite; }
.orb.o1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(28,42,74,.22), transparent 70%); top: -120px; left: -80px; }
.orb.o2 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(61,92,74,.20), transparent 70%); top: -60px; right: -120px; animation-delay: -4s; }
.orb.o3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(196,161,90,.28), transparent 70%); bottom: -160px; left: 30%; opacity: .35; animation-delay: -8s; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.08); }
  66%     { transform: translate(-30px,25px) scale(.95); }
}
@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
}

#hero-canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; opacity: .22; }

/* floating glass stat chips on hero */
.hero__chips { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.chip {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border-2);
  backdrop-filter: blur(12px); box-shadow: var(--shadow-sm);
}
.chip b { font-family: var(--font-display); font-size: 1.05rem; color: var(--text); }
.chip span { font-size: .85rem; color: var(--muted); }
.chip .ico { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: rgba(28,42,74,.08); color: var(--violet); }
.chip .ico svg { width: 16px; height: 16px; }

/* ---------- Marquee ---------- */
.marquee-wrap { padding: 30px 0; border-block: 1px solid var(--border); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-label { text-align: center; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px; }
.marquee { display: flex; gap: 60px; width: max-content; animation: scroll-x 34s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--muted-2); opacity: .75; white-space: nowrap; transition: color .2s, opacity .2s; }
.marquee span:hover { color: var(--text); opacity: 1; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 32px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); text-align: center; position: relative; overflow: hidden; }
.stat::before { content:""; position:absolute; inset:0; background: var(--grad-cool); opacity:0; transition:opacity .3s; z-index:-1; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip:text; -webkit-text-fill-color: transparent; }
.stat .lbl { margin-top: 12px; font-size: .95rem; color: var(--muted); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; padding: 32px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, background .3s;
  overflow: hidden;
}
.card::after { content:""; position:absolute; inset:0; border-radius:inherit; padding:1px; background: var(--grad-main); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity:0; transition: opacity .3s; pointer-events:none; }
.card:hover { transform: translateY(-6px); background: var(--surface-2); }
.card:hover::after { opacity:.9; }

.card .ico-box {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(28,42,74,.08), rgba(61,92,74,.10));
  border: 1px solid var(--border-2); margin-bottom: 22px; color: var(--violet);
}
.card .ico-box svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: .98rem; }

/* feature list with checks */
.checklist { display: grid; gap: 14px; margin-top: 6px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--muted); }
.checklist li b { color: var(--text); font-weight: 600; }
.check { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: rgba(28,42,74,.08); color: var(--violet); margin-top: 2px; }
.check svg { width: 13px; height: 13px; }

/* ---------- Split audience cards (home) ---------- */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.aud-card {
  position: relative; padding: 44px; border-radius: 28px; overflow: hidden;
  border: 1px solid var(--border-2); background: var(--bg-2);
  transition: transform .35s, box-shadow .35s;
}
.aud-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.aud-card .glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(80px); opacity: .4; top: -120px; right: -80px; z-index: 0; }
.aud-card.adv .glow { background: var(--violet); }
.aud-card.pub .glow { background: var(--cyan); }
.aud-card > * { position: relative; z-index: 1; }
.aud-card .tag { font-family: var(--font-display); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.aud-card h3 { font-size: 1.9rem; margin: 10px 0 14px; }
.aud-card .price { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); margin: 18px 0; display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 100px; background: var(--surface-2); border: 1px solid var(--border-2); }
.aud-card .price em { font-style: normal; color: var(--violet); }
.aud-card .actions {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: stretch;
}
.aud-card .actions .btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 13px 12px;
  font-size: .88rem;
  white-space: nowrap;
}
.aud-card .actions .btn svg { width: 16px; height: 16px; flex: none; }

/* ---------- Steps / timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.step .n { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip:text; -webkit-text-fill-color: transparent; opacity: .9; }
.step h3 { font-size: 1.15rem; margin: 14px 0 8px; }
.step p { font-size: .94rem; }

/* ---------- Format showcase ---------- */
.formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fmt { padding: 26px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border); display: flex; gap: 16px; align-items: flex-start; transition: border-color .3s, transform .3s; }
.fmt:hover { transform: translateY(-4px); border-color: var(--border-2); }
.fmt .ico-box { width: 46px; height: 46px; margin: 0; border-radius: 13px; }
.fmt .ico-box svg { width: 22px; height: 22px; }
.fmt h4 { font-size: 1.05rem; margin-bottom: 5px; }
.fmt p { font-size: .9rem; }

/* ---------- Highlight / banner ---------- */
.banner {
  position: relative; overflow: hidden; border-radius: 30px;
  padding: clamp(40px, 6vw, 70px);
  background: #1c2a4a;
  border: 1px solid var(--border-2);
  text-align: center;
}
.banner h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 18px; }
.banner p { font-size: 1.1rem; max-width: 56ch; margin: 0 auto 32px; }
.banner .hero__cta { justify-content: center; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { padding: 32px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.quote .stars { color: var(--amber); letter-spacing: 3px; margin-bottom: 16px; font-size: 1rem; }
.quote p { color: var(--text); font-size: 1.02rem; line-height: 1.6; }
.quote .who { margin-top: 22px; display: flex; align-items: center; gap: 13px; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; background: var(--grad-main); }
.quote .who b { display: block; font-size: .95rem; color: var(--text); }
.quote .who span { font-size: .82rem; color: var(--muted-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--border-2); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 26px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--text); }
.faq-q .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(28,42,74,.08); color: var(--violet); transition: transform .3s, background .3s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--grad-main); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 26px 24px; font-size: .98rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 70px 0 36px; margin-top: 40px; background: linear-gradient(180deg, transparent, rgba(28,42,74,.04)); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand img { height: 24px; }
.footer__about { max-width: 34ch; }
.footer__about p { margin-top: 18px; font-size: .94rem; }
.footer h4 { font-family: var(--font-display); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.footer__col a { display: block; color: var(--muted); font-size: .95rem; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer__bottom p { font-size: .88rem; color: var(--muted-2); }
.footer__legal { display: flex; align-items: center; gap: 22px; }
.footer__legal > a { font-size: .85rem; color: var(--muted-2); font-family: var(--font-display); font-weight: 500; transition: color .2s; }
.footer__legal > a:hover { color: var(--text); }
.socials { display: flex; gap: 12px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border-2); color: var(--muted); transition: .25s; }
.socials a:hover { color: #fff; border-color: transparent; background: var(--grad-main); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }

/* ---------- Misc page intro band ---------- */
.pagehero { position: relative; padding: 160px 0 70px; overflow: hidden; }
.back-home { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); margin-bottom: 22px; transition: color .2s; }
.back-home:hover { color: var(--violet); }
.back-home svg { width: 15px; height: 15px; }

/* split content row */
.row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.row.reverse .row__media { order: -1; }
.row__media { position: relative; }
.media-card { border-radius: var(--radius); border: 1px solid var(--border-2); background: var(--bg-2); padding: 30px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.media-card .glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; filter: blur(70px); opacity: .35; top: -100px; right: -60px; background: var(--violet); }

/* mock dashboard bits */
.mock-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 16px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); margin-bottom: 12px; position: relative; z-index: 1; }
.mock-row:last-child { margin-bottom: 0; }
.mock-row .lhs { display: flex; align-items: center; gap: 12px; }
.mock-row .d { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(28,42,74,.08); color: var(--violet); }
.mock-row .d svg { width: 18px; height: 18px; }
.mock-row .t b { display: block; font-size: .92rem; color: var(--text); font-family: var(--font-display); }
.mock-row .t span { font-size: .78rem; color: var(--muted-2); }
.mock-row .v { font-family: var(--font-display); font-weight: 700; color: var(--text); }
.mock-row .v.up { color: #4ade80; }
.bar { height: 10px; border-radius: 6px; background: var(--surface); overflow: hidden; position: relative; z-index: 1; margin-top: 6px; }
.bar > i { display: block; height: 100%; border-radius: 6px; background: var(--grad-main); }

/* big number callout */
.callout { display: inline-flex; flex-direction: column; gap: 4px; padding: 22px 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border-2); }
.callout .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem,4vw,3rem); background: var(--grad-text); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color: transparent; line-height: 1; }
.callout .cap { color: var(--muted); font-size: .95rem; }

/* pill list inline */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 9px 16px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border-2); font-size: .9rem; color: var(--muted); font-family: var(--font-display); font-weight: 500; }
.pill:hover { color: var(--text); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* scroll progress bar */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--grad-main); box-shadow: 0 0 12px rgba(217,70,239,.6); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .formats { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 820px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
  .row.reverse .row__media { order: 0; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .formats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__cta .btn { width: 100%; }
  .aud-card { padding: 32px 26px; }
}

/* =================================================================
   Forms · Contact · Legal · Policy notice  (added)
   ================================================================= */

/* ---- Contact layout ---- */
.contact-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 44px; align-items: start; }
.form-card { padding: clamp(28px, 4vw, 42px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border-2); }

/* ---- Form ---- */
.form { display: grid; gap: 18px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-display); font-size: .85rem; font-weight: 600; color: var(--muted); }
.field label .req { color: var(--magenta); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border-2); color: var(--text);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 150px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--violet); background: #fff;
  box-shadow: 0 0 0 4px rgba(28,42,74,.10);
}
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b4a7cf' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.field select option { background: #fff; color: var(--text); }
.field.error input, .field.error select, .field.error textarea { border-color: #f87171; box-shadow: 0 0 0 4px rgba(248,113,113,.14); }
.field .err-msg { display: none; font-size: .82rem; color: #fca5a5; }
.field.error .err-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted-2); }
.form-note a { color: var(--violet); }
.form .btn { justify-self: start; }

.form-success { display: none; text-align: center; padding: clamp(30px,5vw,48px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border-2); }
.form-success.show { display: block; animation: pop .4s cubic-bezier(.2,.8,.2,1); }
.form-success .ic { width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center; background: var(--grad-main); color: #fff; box-shadow: var(--glow-violet); }
.form-success .ic svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 10px; }
@keyframes pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }

/* ---- Support side cards ---- */
.support-list { display: grid; gap: 16px; }
.support-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border); transition: border-color .3s, transform .3s; }
.support-card:hover { transform: translateY(-3px); border-color: var(--border-2); }
.support-card .ico-box { width: 46px; height: 46px; margin: 0; border-radius: 13px; }
.support-card .ico-box svg { width: 22px; height: 22px; }
.support-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.support-card p { font-size: .92rem; margin: 0; }
.support-card a { color: var(--violet); }

/* ---- Prohibited / acceptable content notice ---- */
.notice { display: flex; gap: 20px; padding: 32px 34px; border-radius: var(--radius); background: #fffdf8; border: 1px solid rgba(28,42,74,.12); box-shadow: var(--shadow); }
.notice .ic { flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: #1c2a4a; color: #fff; }
.notice .ic svg { width: 26px; height: 26px; }
.notice h3 { font-size: 1.18rem; margin-bottom: 8px; color: #1c2a4a; }
.notice p { font-size: .98rem; margin: 0; color: #5c6578; }
.notice strong { color: #1c2a4a; }
.notice .badlist { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.notice .badp { padding: 16px 18px; border-radius: 16px; background: #1c2a4a; border: none; font-size: .95rem; color: #fff; font-family: var(--font-display); font-weight: 500; display: flex; align-items: center; justify-content: center; text-align: center; min-height: 64px; }
.notice .badp svg { width: 13px; height: 13px; }
@media (max-width: 720px) { .notice .badlist { grid-template-columns: 1fr; } }

/* ---- Legal / prose ---- */
.prose { max-width: 800px; margin-inline: auto; }
.prose .updated { color: var(--muted-2); font-size: .9rem; margin-bottom: 34px; }
.prose h2 { font-size: 1.45rem; margin: 40px 0 14px; }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 22px 0 10px; }
.prose p, .prose li { color: var(--muted); font-size: 1rem; line-height: 1.78; }
.prose p { margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; display: grid; gap: 9px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--violet); }
.prose a:hover { color: var(--magenta); }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .form .row2 { grid-template-columns: 1fr; }
  .notice { flex-direction: column; gap: 14px; }
}

/* ---- Honeypot (spam trap) — visually hidden ---- */
.hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ---- Form submit states / error ---- */
.btn.is-loading { opacity: .7; pointer-events: none; }
.form-error {
  display: none; margin-bottom: 18px; padding: 14px 18px; border-radius: 14px;
  background: #f8e8e6; border: 1px solid #d9a39c;
  color: #7a2e28; font-size: .92rem;
}
.form-error.show { display: block; }

/* =================================================================
   Cookie consent banner  (added)
   ================================================================= */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  max-width: 920px; margin-inline: auto;
  border-radius: 20px;
  background: rgba(255,253,248,.94);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow);
  opacity: 0; transform: translateY(24px);
  transition: opacity .45s cubic-bezier(.2,.8,.2,1), transform .45s cubic-bezier(.2,.8,.2,1);
}
.cookie-banner.show { opacity: 1; transform: none; }
.cookie-banner__inner { display: flex; align-items: center; gap: 26px; padding: 20px 24px; }
.cookie-banner__ic { flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(28,42,74,.06); border: 1px solid var(--border-2); color: var(--violet); }
.cookie-banner__ic svg { width: 24px; height: 24px; }
.cookie-banner__text { flex: 1 1 auto; }
.cookie-banner__text strong { font-family: var(--font-display); display: block; margin-bottom: 3px; color: var(--text); font-size: 1rem; }
.cookie-banner__text p { font-size: .88rem; margin: 0; line-height: 1.55; }
.cookie-banner__text a { color: var(--violet); }
.cookie-banner__text a:hover { color: var(--magenta); }
.cookie-banner__actions { display: flex; gap: 10px; flex: none; }
@media (max-width: 680px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner__ic { display: none; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}

.hero-photo { margin: 48px auto 0; max-width: 920px; border-radius: 28px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 280px; object-cover; }
@media (max-width: 560px) { .hero-photo img { height: 180px; } }
.aud-card { background: var(--surface-2); }
.aud-card .cover { height: 176px; margin: -44px -44px 28px; overflow: hidden; }
.aud-card .cover img { width: 100%; height: 176px; object-cover; }
.aud-card .glow { opacity: .12 !important; }
.quote .stars { font-family: var(--font-display); letter-spacing: .12em; font-size: .78rem; text-transform: uppercase; color: var(--amber); }
.banner h2, .banner .grad-text { color: #fff; -webkit-text-fill-color: #fff; background: none; }
.banner p { color: rgba(255,255,255,.72); }
.banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
.banner .btn-primary { background: #fff; color: #1c2a4a; }
.banner .btn-primary:hover { background: #f3eee4; color: #1c2a4a; }
.form-card, .card, .stat, .step, .fmt, .quote, .faq-item { box-shadow: var(--shadow-sm); }
.progress { background: #1c2a4a; box-shadow: none; }
.socials a:hover { background: #1c2a4a; }

.banner .card {
  background: #fffdf8 !important;
  color: #1c2a4a;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 16px 40px -24px rgba(0,0,0,.45);
}
.banner .card h3,
.banner .card p,
.banner .card .cap {
  color: #1c2a4a !important;
  -webkit-text-fill-color: #1c2a4a;
  background: none;
  max-width: none;
  margin: 0;
}
.banner .card p { color: #5c6578 !important; -webkit-text-fill-color: #5c6578; margin-top: 8px; }
.banner .card .ico-box { background: #f3eee4; color: #1c2a4a; }
.banner .callout { background: #f3eee4; border: 1px solid rgba(28,42,74,.1); }
.banner .callout .big { color: #1c2a4a; -webkit-text-fill-color: #1c2a4a; background: none; }
.banner .eyebrow { color: #f3eee4; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }

.hero--bleed .hero__inner,
.pagehero--bleed .hero__inner { position: relative; z-index: 2; }
.hero-bleed {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bleed img {
  position: absolute;
  top: 0;
  right: 0;
  width: min(78%, 980px);
  height: 100%;
  object-fit: cover;
  object-position: 72% 38%;
  opacity: .88;
  -webkit-mask-image:
    linear-gradient(to left, #000 18%, rgba(0,0,0,.55) 42%, transparent 78%),
    linear-gradient(to bottom, #000 62%, transparent 100%);
  mask-image:
    linear-gradient(to left, #000 18%, rgba(0,0,0,.55) 42%, transparent 78%),
    linear-gradient(to bottom, #000 62%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.hero--bleed #hero-canvas,
.pagehero--bleed #hero-canvas { opacity: .08; }
@media (max-width: 720px) {
  .hero-bleed img {
    width: 100%;
    opacity: .55;
    object-position: 80% 30%;
    -webkit-mask-image:
      linear-gradient(to bottom, rgba(0,0,0,.35) 0%, transparent 72%),
      linear-gradient(to left, #000 30%, transparent 88%);
    mask-image:
      linear-gradient(to bottom, rgba(0,0,0,.35) 0%, transparent 72%),
      linear-gradient(to left, #000 30%, transparent 88%);
  }
}
