/* =============================================================================
   CHARMING MODELS - premium agency landing
   Design system: dark, single magenta accent, Clash Display + General Sans.
   Shape rule (locked): interactive = pill, panels = 20px, media = 18px, inputs = 12px.
   Theme lock: dark only. Accent lock: --accent everywhere.
   ========================================================================== */

/* ---------- Fonts (self-hosted, variable) -------------------------------- */
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/clash-display.woff2") format("woff2-variations");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans.woff2") format("woff2-variations");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans-italic.woff2") format("woff2-variations");
  font-weight: 200 700;
  font-display: swap;
  font-style: italic;
}

/* ---------- Tokens ------------------------------------------------------- */
:root {
  --bg:        #09090c;
  --bg-1:      #0d0d12;
  --bg-2:      #111118;
  --surface:   #16161f;
  --surface-2: #1c1c27;

  --text:      #f5f3f8;
  --dim:       #aeaaba;
  --faint:     #76717f;

  --accent:      #f31ca1;
  --accent-2:    #ff5ac4;
  --accent-deep: #b80d78;
  --accent-soft: rgba(243, 28, 161, 0.14);
  --accent-line: rgba(243, 28, 161, 0.32);
  --accent-glow: rgba(243, 28, 161, 0.40);
  /* brand gradient, derived from the logo. Used very sparingly. */
  --brand-indigo: #6a4bf2;

  --line:    rgba(255, 255, 255, 0.08);
  --line-2:  rgba(255, 255, 255, 0.14);
  --hi:      rgba(255, 255, 255, 0.04);

  --r-pill:  999px;
  --r-panel: 20px;
  --r-media: 18px;
  --r-input: 12px;
  --r-chip:  999px;

  --font-display: "Clash Display", system-ui, -apple-system, sans-serif;
  --font-sans: "General Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1240px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(5rem, 10vw, 9rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 24px 60px -28px rgba(0, 0, 0, 0.7);
  --shadow-accent: 0 22px 50px -20px var(--accent-glow);
}

/* ---------- Reset / base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  font-weight: 420;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* fixed grain overlay (never on scrolling containers) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.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='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: #0a0a0c; }

/* ---------- Typography helpers ------------------------------------------ */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.04; }

.h-xl { font-size: clamp(2.6rem, 1.7rem + 4.4vw, 5rem); line-height: 0.98; letter-spacing: -0.03em; }
.h-lg { font-size: clamp(2.1rem, 1.5rem + 2.9vw, 3.6rem); }
.h-md { font-size: clamp(1.6rem, 1.3rem + 1.5vw, 2.3rem); }
.h-sm { font-size: clamp(1.2rem, 1.08rem + 0.6vw, 1.45rem); line-height: 1.15; }

.accent-word { color: var(--accent); }
.italic-em { font-style: italic; font-weight: 500; }

.lead { font-size: clamp(1.06rem, 1rem + 0.5vw, 1.3rem); color: var(--dim); line-height: 1.55; max-width: 56ch; }
.muted { color: var(--dim); }
.faint { color: var(--faint); }
.balance { text-wrap: balance; }

/* ---------- Layout ------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 560;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--accent-line);
}

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lead { margin-top: 1.25rem; }

/* ---------- Icons ------------------------------------------------------- */
.ic { width: 1.4em; height: 1.4em; flex: none; fill: currentColor; }
.ic-lg { width: 1.7rem; height: 1.7rem; }

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-pill);
  font-weight: 560;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.2s;
  will-change: transform;
}
.btn .ic { width: 1.15rem; height: 1.15rem; }
.btn-primary {
  background: var(--accent);
  color: #0a0a0c;
  box-shadow: 0 14px 34px -16px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 20px 44px -16px var(--accent-glow); }
.btn-primary:active { transform: translateY(0) scale(0.985); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.28); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0) scale(0.985); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--accent-2); font-weight: 540;
  transition: gap 0.25s var(--ease), color 0.2s;
}
.text-link:hover { gap: 0.65rem; color: var(--accent); }

/* ---------- Chips / pills ----------------------------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-chip);
  font-size: 0.85rem; color: var(--dim);
  background: rgba(255, 255, 255, 0.02);
}
.chip .ic { width: 1rem; height: 1rem; color: var(--accent-2); }

/* =============================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(9, 9, 12, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav.scrolled { height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand img { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.95rem; color: var(--dim); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; border: 1px solid var(--line-2); }
.nav-toggle .ic { width: 1.5rem; height: 1.5rem; }

/* language switch */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--line-2); border-radius: var(--r-pill); background: rgba(255, 255, 255, 0.02); }
.lang-btn { padding: 0.34rem 0.6rem; border-radius: var(--r-pill); font-size: 0.76rem; font-weight: 580; letter-spacing: 0.04em; color: var(--dim); line-height: 1; transition: color 0.2s, background 0.2s; }
.lang-btn:hover:not(.active) { color: var(--text); }
.lang-btn.active { background: var(--accent); color: #0a0a0c; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(9, 9, 12, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(1.8rem, 8vw, 2.6rem); padding: 0.5rem 0; color: var(--text); border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 1.6rem; }
.mobile-menu-close { position: absolute; top: 1.4rem; right: var(--gutter); width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 12px; }

/* =============================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
}
.hero-copy { max-width: 600px; }
.hero h1 { margin-top: 1.4rem; font-size: clamp(2.5rem, 1.6rem + 3.1vw, 3.7rem); line-height: 1.0; }
.hero .lead { margin-top: 1.6rem; max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }

/* hero ambient glow (brand-derived, used once) */
.hero-glow {
  position: absolute; pointer-events: none; z-index: 0;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  right: -12vw; top: -10vw;
  background: radial-gradient(circle at center, var(--accent-glow), transparent 62%);
  filter: blur(30px);
  opacity: 0.7;
}
.hero-glow.two {
  left: -20vw; right: auto; top: auto; bottom: -25vw;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle at center, rgba(106, 75, 242, 0.28), transparent 64%);
}
.hero > .container { position: relative; z-index: 1; }

/* hero visual */
.hero-visual { position: relative; }
.hero-portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-panel);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-soft);
}
.hero-portrait::before {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 1px 0 var(--hi);
  pointer-events: none;
}
.float-card {
  position: absolute;
  left: -8%; bottom: 8%;
  width: min(74%, 320px);
  background: rgba(20, 20, 27, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-soft);
}
.float-card .fc-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.float-card .fc-label { font-size: 0.8rem; color: var(--dim); }
.float-card .fc-value { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; letter-spacing: -0.02em; }
.float-card .fc-delta { color: var(--accent-2); display: inline-flex; align-items: center; gap: 0.25rem; font-weight: 560; font-size: 0.9rem; }
.spark { width: 100%; height: 40px; margin-top: 0.7rem; overflow: visible; }

/* ---------- Hero animated business dashboard ---------------------------- */
.hero-dash {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: var(--r-panel);
  background:
    radial-gradient(120% 80% at 82% 0%, rgba(243, 28, 161, 0.16), transparent 55%),
    linear-gradient(180deg, var(--surface-2), var(--bg-1));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.3rem, 3vw, 1.9rem);
  overflow: hidden;
}
.hero-dash::before { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 1px 0 var(--hi); pointer-events: none; }
.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.dash-head .dh-left { display: flex; align-items: center; gap: 0.7rem; }
.dash-avatar { width: 38px; height: 38px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-2); }
.dash-avatar .ic { width: 1.15rem; height: 1.15rem; }
.dash-head .dh-name { font-weight: 560; font-size: 0.95rem; }
.dash-head .dh-sub { color: var(--faint); font-size: 0.8rem; }
.dash-live { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--dim); }
.dash-live .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; }
.dash-label { color: var(--dim); font-size: 0.85rem; }
.dash-value { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 1.7rem + 2.6vw, 3.3rem); letter-spacing: -0.03em; line-height: 1; margin-top: 0.25rem; }
.dash-delta { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--accent-2); font-weight: 540; font-size: 0.9rem; margin-top: 0.5rem; }
.dash-delta .ic { width: 1rem; height: 1rem; }
.dash-chart { width: 100%; height: 86px; margin: 1.1rem 0 1.3rem; overflow: visible; }
.dash-line { stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.dash-kpi { border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, 0.02); padding: 0.7rem 0.8rem; min-width: 0; }
.dash-kpi .k-val { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }
.dash-kpi .k-lab { color: var(--faint); font-size: 0.72rem; margin-top: 0.15rem; line-height: 1.2; }
.dash-payout { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; padding: 0.55rem 0.75rem; border: 1px solid var(--line); border-radius: 10px; background: rgba(52, 211, 153, 0.07); }
.dash-payout .t-ic { width: 26px; height: 26px; flex: none; border-radius: 50%; display: grid; place-items: center; background: rgba(52, 211, 153, 0.16); color: #34d399; }
.dash-payout .t-ic .ic { width: 0.95rem; height: 0.95rem; }
.dash-payout .dp-text { font-size: 0.82rem; color: var(--dim); line-height: 1.3; }
.dash-payout .dp-text b { color: var(--text); font-weight: 560; }

@media (prefers-reduced-motion: no-preference) {
  .dash-live .dot { animation: dashPulse 2.4s ease-out infinite; }
  .dash-line { stroke-dasharray: 1; stroke-dashoffset: 1; animation: dashDraw 1.7s var(--ease) 0.3s forwards; }
  .dash-area { opacity: 0; animation: dashFade 1.2s var(--ease) 0.5s forwards; }
  .dash-dot { opacity: 0; animation: dashFade 0.4s var(--ease) 1.7s forwards; }
  .dash-payout { opacity: 0; transform: translateY(8px); animation: dashRow 0.6s var(--ease) 1.9s forwards; }
}
@keyframes dashDraw { to { stroke-dashoffset: 0; } }
@keyframes dashFade { to { opacity: 1; } }
@keyframes dashPulse { 0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); } 70% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }
@keyframes dashRow { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* =============================================================================
   STATS
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { padding: clamp(1.6rem, 4vw, 2.6rem) 1.4rem; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.4rem); letter-spacing: -0.03em; line-height: 1; }
.stat-num .suffix { color: var(--accent); }
.stat-label { margin-top: 0.6rem; color: var(--dim); font-size: 0.95rem; }

/* =============================================================================
   PLATFORMS (centered logo row)
   ========================================================================== */
.platforms { padding-block: clamp(2rem, 4vw, 2.6rem); border-bottom: 1px solid var(--line); }
.platforms-kicker { text-align: center; color: var(--faint); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.6rem; }
.platform-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.8rem, 5vw, 3.6rem);
}
.platform-row img { height: 26px; width: auto; opacity: 0.5; filter: grayscale(1) brightness(2); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.platform-row img:hover { opacity: 1; transform: translateY(-2px); }

/* =============================================================================
   MEDIA SLOTS (clearly-labeled placeholders for real photos/videos)
   ========================================================================== */
.media-slot {
  position: relative; overflow: hidden;
  border-radius: var(--r-media);
  border: 1px solid var(--line-2);
  background:
    radial-gradient(120% 80% at 70% 10%, rgba(243, 28, 161, 0.16), transparent 55%),
    radial-gradient(100% 90% at 10% 100%, rgba(106, 75, 242, 0.14), transparent 60%),
    linear-gradient(160deg, var(--surface-2), var(--bg-1));
  display: grid; place-items: center; text-align: center;
}
.media-slot::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 1px 0 var(--hi); pointer-events: none;
}
.media-slot .ms-inner { display: grid; justify-items: center; gap: 0.7rem; padding: 1.4rem; }
.media-slot .ms-badge {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-2);
  color: var(--accent-2);
}
.media-slot .ms-badge .ic { width: 1.5rem; height: 1.5rem; }
.media-slot .ms-label { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--dim); max-width: 24ch; }
.media-slot.is-video { cursor: pointer; }
.media-slot.is-video .ms-badge { width: 66px; height: 66px; background: var(--accent); color: #0a0a0c; border: none; box-shadow: 0 14px 34px -14px var(--accent-glow); transition: transform 0.3s var(--ease); }
.media-slot.is-video:hover .ms-badge { transform: scale(1.08); }

/* =============================================================================
   RESULTS (bento)
   ========================================================================== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: start;
}
.results-feature { grid-column: span 7; min-width: 0; }
.results-feature .media-slot { aspect-ratio: 4 / 3; width: 100%; }
.results-side { grid-column: span 5; min-width: 0; display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
/* prevent CSS grid min-content blowout on text-heavy cells */
.results-grid > *, .serv-grid > *, .testi-grid > *, .steps > *, .pledge-points > *, .sec-list > * { min-width: 0; }
.result-card {
  border: 1px solid var(--line); border-radius: var(--r-panel);
  background: linear-gradient(180deg, var(--surface), var(--bg-1));
  padding: clamp(1.4rem, 3vw, 1.9rem);
}
.result-card .rc-from { color: var(--faint); font-size: 0.92rem; }
.result-card .rc-to { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.6rem); letter-spacing: -0.02em; line-height: 1.05; margin-top: 0.3rem; }
.result-card .rc-to b { color: var(--accent); font-weight: 600; }
.result-card .rc-meta { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.8rem; color: var(--accent-2); font-size: 0.9rem; font-weight: 540; }
.result-card .rc-note { color: var(--dim); margin-top: 0.6rem; font-size: 0.95rem; }
.result-vid .media-slot { aspect-ratio: 16 / 10; }

/* =============================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.testi-card {
  border: 1px solid var(--line); border-radius: var(--r-panel); overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--bg-1));
  display: flex; flex-direction: column;
}
.testi-card .media-slot { aspect-ratio: 4 / 5; border: none; border-radius: 0; border-bottom: 1px solid var(--line); }
.testi-body { padding: clamp(1.3rem, 2.5vw, 1.7rem); display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.testi-quote { font-size: 1.05rem; line-height: 1.5; color: var(--text); }
.testi-quote .ic { color: var(--accent); width: 1.5rem; height: 1.5rem; opacity: 0.8; }
.testi-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 0.6rem; border-top: 1px solid var(--line); }
.testi-who { font-weight: 560; }
.testi-role { color: var(--faint); font-size: 0.88rem; }
.stars { display: inline-flex; gap: 0.1rem; color: var(--accent); }
.stars .ic { width: 1rem; height: 1rem; }

/* single featured testimonial (video + quote side by side) */
.testi-grid.solo { grid-template-columns: 1fr; max-width: 900px; margin-inline: auto; }
.testi-grid.solo .testi-card { display: grid; grid-template-columns: minmax(0, 320px) 1fr; }
.testi-grid.solo .testi-card .media-slot { aspect-ratio: auto; min-height: 360px; border-bottom: none; border-right: 1px solid var(--line); }
.testi-grid.solo .testi-body { justify-content: center; padding: clamp(1.6rem, 3.5vw, 2.6rem); }
.testi-grid.solo .testi-quote { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.55rem); line-height: 1.45; }
@media (max-width: 720px) {
  .testi-grid.solo { max-width: 440px; }
  .testi-grid.solo .testi-card { grid-template-columns: 1fr; }
  .testi-grid.solo .testi-card .media-slot { min-height: 0; aspect-ratio: 4 / 5; border-right: none; border-bottom: 1px solid var(--line); }
}

/* =============================================================================
   LEISTUNGEN (asymmetric bento)
   ========================================================================== */
.serv-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.serv-card {
  border: 1px solid var(--line); border-radius: var(--r-panel);
  background: linear-gradient(180deg, var(--surface), var(--bg-1));
  padding: clamp(1.5rem, 3vw, 2.1rem);
  display: flex; flex-direction: column; gap: 0.85rem;
  position: relative; overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.serv-card:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.serv-icon { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-2); border: 1px solid var(--accent-line); }
.serv-icon .ic { width: 1.5rem; height: 1.5rem; }
.serv-card h3 { font-size: 1.25rem; }
.serv-card p { color: var(--dim); font-size: 0.98rem; }
.serv-feature { grid-column: span 3; grid-row: span 2; }
.serv-feature .serv-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(90% 70% at 80% 0%, rgba(243,28,161,0.16), transparent 60%); pointer-events: none; }
.serv-feature > * { position: relative; z-index: 1; }
.serv-span-3 { grid-column: span 3; }
.serv-span-2 { grid-column: span 2; }

/* =============================================================================
   SECURITY / DISCRETION
   ========================================================================== */
.sec { background: linear-gradient(180deg, var(--bg), var(--bg-1)); position: relative; }
.sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.sec-list { display: grid; gap: 1.1rem; }
.sec-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.sec-item:first-child { border-top: none; padding-top: 0; }
.sec-item .si-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-2); }
.sec-item h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.sec-item p { color: var(--dim); font-size: 0.96rem; }
.sec-pledge {
  border: 1px solid var(--accent-line); border-radius: var(--r-panel);
  background: linear-gradient(180deg, rgba(243,28,161,0.07), rgba(243,28,161,0.01));
  padding: clamp(1.6rem, 4vw, 2.4rem);
}
.sec-pledge .chip { margin-bottom: 1.2rem; }

/* =============================================================================
   PROCESS
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); counter-reset: step; }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--accent);
  letter-spacing: 0.05em;
}
.step::after { content: ""; position: absolute; top: 0.55rem; left: 2.6rem; right: -0.75rem; height: 1px; background: var(--line); }
.step:last-child::after { display: none; }
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--dim); font-size: 0.96rem; }

/* =============================================================================
   GUARANTEE / TRANSPARENCY
   ========================================================================== */
.pledge-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.pledge-points { display: grid; gap: 1rem; }
.pledge-point { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; padding: 1.15rem 1.3rem; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.pledge-point .ic { color: var(--accent); width: 1.5rem; height: 1.5rem; margin-top: 0.1rem; }
.pledge-point b { font-weight: 580; }
.pledge-point span { color: var(--dim); font-size: 0.96rem; display: block; margin-top: 0.15rem; }

/* =============================================================================
   FAQ
   ========================================================================== */
.faq { max-width: var(--container-narrow); margin-inline: auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; text-align: left; font-family: var(--font-display); font-weight: 540; font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); letter-spacing: -0.01em; }
.faq-q .ic { color: var(--accent-2); transition: transform 0.35s var(--ease); flex: none; }
.faq-item.open .faq-q .ic { transform: rotate(180deg); }
.faq-a { overflow: hidden; height: 0; transition: height 0.4s var(--ease); }
.faq-a-inner { padding: 0 0 1.6rem; color: var(--dim); max-width: 70ch; }

/* =============================================================================
   APPLY / FORM
   ========================================================================== */
.apply { position: relative; overflow: hidden; }
.apply-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.apply-copy .trust-row { display: grid; gap: 0.9rem; margin-top: 2rem; }
.apply-copy .trust-row li { display: flex; align-items: center; gap: 0.75rem; color: var(--dim); }
.apply-copy .trust-row .ic { color: var(--accent); flex: none; }

.form-card {
  border: 1px solid var(--line-2); border-radius: var(--r-panel);
  background: linear-gradient(180deg, var(--surface), var(--bg-1));
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}
.field { display: grid; gap: 0.45rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.9rem; font-weight: 540; color: var(--text); }
.field .req { color: var(--accent-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-input);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-error { color: #ff7a9c; font-size: 0.85rem; display: none; }
.field.invalid input, .field.invalid select { border-color: #ff5a7d; }
.field.invalid .field-error { display: block; }

.consent { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; align-items: start; margin: 0.4rem 0 1.3rem; }
.consent input { width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; accent-color: var(--accent); }
.consent label { font-size: 0.85rem; color: var(--dim); line-height: 1.5; }
.consent a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }

.form-error-msg { margin-top: 0.9rem; text-align: center; color: #ff5a7d; font-size: 0.9rem; }
.form-alt { margin-top: 1.1rem; text-align: center; color: var(--faint); font-size: 0.9rem; }
.form-divider { display: flex; align-items: center; gap: 1rem; margin: 1.3rem 0; color: var(--faint); font-size: 0.85rem; }
.form-divider::before, .form-divider::after { content: ""; height: 1px; background: var(--line); flex: 1; }

.form-status { display: none; text-align: center; padding: 1rem; }
.form-status.show { display: block; }
.form-status .ic { width: 3rem; height: 3rem; color: var(--accent); margin: 0 auto 1rem; }
.form-status h3 { margin-bottom: 0.5rem; }

/* =============================================================================
   FOOTER
   ========================================================================== */
.footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem; background: var(--bg-1); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 5vw, 3rem); }
.footer-brand img { height: 30px; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--dim); max-width: 38ch; font-size: 0.96rem; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--dim); transition: color 0.2s, border-color 0.2s, transform 0.2s; }
.footer-social a:hover { color: var(--accent-2); border-color: var(--accent-line); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); margin-bottom: 1.1rem; font-family: var(--font-sans); font-weight: 580; }
.footer-col a { display: block; color: var(--dim); padding: 0.35rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; color: var(--faint); font-size: 0.88rem; }
.footer-bottom .age { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-bottom .age b { color: var(--dim); }

/* =============================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 5, 8, 0.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: none; place-items: center; padding: var(--gutter);
}
.lightbox.open { display: grid; }
.lightbox-inner { width: min(900px, 100%); }
.lightbox-frame { aspect-ratio: 16 / 9; border-radius: var(--r-media); overflow: hidden; border: 1px solid var(--line-2); background: #000; }
.lightbox-frame iframe, .lightbox-frame video { width: 100%; height: 100%; border: none; }
.lightbox-note { text-align: center; color: var(--dim); margin-top: 1rem; font-size: 0.92rem; }
.lightbox-close { position: absolute; top: 1.4rem; right: 1.4rem; width: 48px; height: 48px; border-radius: 12px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text); background: rgba(255,255,255,0.04); }

/* =============================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); filter: blur(8px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .btn, .serv-card, .footer-social a, .text-link, .platform-row img { transition: none !important; }
  .hero-glow { display: none; }
}

/* =============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn { display: none; }
  .serv-feature { grid-column: span 6; grid-row: auto; }
  .serv-span-3 { grid-column: span 3; }
}

@media (max-width: 860px) {
  .hero { min-height: auto; padding-top: 120px; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-copy { max-width: none; }
  .hero-visual { max-width: 460px; }
  .float-card { left: auto; right: 4%; width: min(70%, 280px); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none; padding-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); padding-left: 1.4rem; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); padding-top: 1.6rem; }
  .results-grid { grid-template-columns: 1fr; }
  .results-feature, .results-side { grid-column: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .serv-grid { grid-template-columns: 1fr; }
  .serv-feature, .serv-span-3, .serv-span-2 { grid-column: auto; }
  .sec-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .pledge-grid { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

/* =============================================================================
   ROUND 2 - trust & premium upgrades
   ========================================================================== */

/* ---------- Scroll progress bar (CSS scroll-driven, progressive) ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--brand-indigo), var(--accent));
  z-index: 101; pointer-events: none;
}
@supports (animation-timeline: scroll()) {
  .scroll-progress { animation: progressGrow linear both; animation-timeline: scroll(root); }
}
@keyframes progressGrow { to { transform: scaleX(1); } }

/* ---------- Active nav underline ----------------------------------------- */
.nav-links a { position: relative; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px;
  height: 2px; border-radius: 2px; background: var(--accent);
}

/* ---------- Case study + earnings carousel ------------------------------- */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.case-timeline { display: grid; margin-top: 1.8rem; }
.case-step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding-bottom: 1.8rem; position: relative; }
.case-step:last-child { padding-bottom: 0; }
.case-step:not(:last-child)::before { content: ""; position: absolute; left: 1.1rem; top: 2.3rem; bottom: 0; width: 1px; background: var(--line-2); }
.case-step .cs-marker { width: 2.2rem; height: 2.2rem; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-2); font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; position: relative; z-index: 1; }
.case-step h3 { font-size: 1.12rem; margin-bottom: 0.3rem; }
.case-step p { color: var(--dim); font-size: 0.97rem; }
.case-transform { position: relative; border: 1px solid var(--accent-line); border-radius: var(--r-panel); background: linear-gradient(180deg, rgba(243, 28, 161, 0.08), rgba(243, 28, 161, 0.01)); padding: clamp(1.6rem, 4vw, 2.3rem); box-shadow: var(--shadow-soft); }
.case-tag { position: absolute; top: 1.1rem; right: 1.1rem; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 0.25rem 0.6rem; }
.case-transform .ct-row { display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; }
.case-transform .ct-from { color: var(--faint); font-size: 1rem; }
.case-transform .ct-arrow { color: var(--accent-2); }
.case-transform .ct-to { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem); letter-spacing: -0.02em; line-height: 1; }
.case-transform .ct-to b { color: var(--accent); font-weight: 600; }
.case-transform .ct-labels { display: flex; justify-content: space-between; color: var(--faint); font-size: 0.82rem; margin-top: 0.5rem; }
.case-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.3rem; }
.earnings { margin-top: clamp(2.2rem, 4vw, 3.2rem); }
.earnings-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.earnings-head p { color: var(--dim); font-size: 0.98rem; max-width: 52ch; }
.carousel-nav { display: flex; gap: 0.5rem; flex: none; }
.carousel-nav button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text); background: rgba(255, 255, 255, 0.02); transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.carousel-nav button:hover { border-color: var(--accent-line); background: rgba(255, 255, 255, 0.06); }
.carousel-nav button:active { transform: scale(0.94); }
.carousel-nav .ic { width: 1.1rem; height: 1.1rem; }
.carousel-nav .prev .ic { transform: rotate(90deg); }
.carousel-nav .next .ic { transform: rotate(-90deg); }
.earnings-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(248px, 1fr); gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 0.4rem; }
.earnings-track::-webkit-scrollbar { display: none; }
.earnings-track > * { scroll-snap-align: start; }
.earnings-slot { aspect-ratio: 4 / 3; }

/* ---------- Comparison table --------------------------------------------- */
.compare-wrap { overflow-x: auto; scrollbar-width: thin; border-radius: var(--r-panel); border: 1px solid var(--line); }
.compare-table { width: 100%; min-width: 660px; border-collapse: collapse; background: linear-gradient(180deg, var(--surface), var(--bg-1)); }
.compare-table th, .compare-table td { padding: 1.05rem 1.2rem; text-align: center; border-bottom: 1px solid var(--line); }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th { font-family: var(--font-display); font-weight: 560; font-size: 1rem; color: var(--dim); vertical-align: bottom; }
.compare-table tbody th { text-align: left; font-weight: 480; color: var(--text); font-family: var(--font-sans); font-size: 0.97rem; }
.compare-table .col-feature { color: var(--accent-2); }
.compare-table th.col-feature small { display: block; font-family: var(--font-sans); font-weight: 560; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.3rem; }
.compare-table thead th.col-feature, .compare-table tbody td.col-feature { background: rgba(243, 28, 161, 0.06); }
.compare-table tbody tr:first-child td.col-feature, .compare-table thead th.col-feature { box-shadow: inset 1px 0 0 var(--accent-line), inset -1px 0 0 var(--accent-line); }
.compare-table tbody tr:last-child td.col-feature { box-shadow: inset 1px 0 0 var(--accent-line), inset -1px 0 0 var(--accent-line), inset 0 -1px 0 var(--accent-line); }
.cmp-yes { color: var(--accent); }
.cmp-no { color: var(--faint); opacity: 0.6; }
.cmp-yes .ic, .cmp-no .ic { width: 1.45rem; height: 1.45rem; }

/* ---------- Guarantee seal (in transparency) ----------------------------- */
.guarantee { display: flex; gap: 1.1rem; align-items: center; margin-top: 2rem; padding: 1.15rem 1.3rem; border: 1px solid var(--accent-line); border-radius: var(--r-panel); background: linear-gradient(180deg, rgba(243, 28, 161, 0.09), transparent); }
.guarantee-seal { width: 60px; height: 60px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-2); box-shadow: inset 0 1px 0 var(--hi); }
.guarantee-seal .ic { width: 1.7rem; height: 1.7rem; }
.guarantee-text b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; letter-spacing: -0.01em; }
.guarantee-text span { color: var(--dim); font-size: 0.92rem; }

/* ---------- Payout & contracts ------------------------------------------- */
.payout-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.payout-points { display: grid; gap: 1rem; }
.payout-point { display: grid; grid-template-columns: auto 1fr; gap: 0.95rem; align-items: start; padding: 1.15rem 1.3rem; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.payout-point .pp-ic { width: 40px; height: 40px; flex: none; border-radius: 11px; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-2); }
.payout-point .pp-ic .ic { width: 1.3rem; height: 1.3rem; }
.payout-point b { font-weight: 580; }
.payout-point span { color: var(--dim); font-size: 0.95rem; display: block; margin-top: 0.15rem; }
.payout-card { position: relative; border: 1px solid var(--line-2); border-radius: var(--r-panel); background: linear-gradient(180deg, var(--surface), var(--bg-1)); padding: clamp(1.5rem, 4vw, 2rem); box-shadow: var(--shadow-soft); }
.payout-card .pc-label { color: var(--dim); font-size: 0.85rem; }
.payout-card .pc-value { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.1rem, 1.5rem + 2vw, 2.8rem); letter-spacing: -0.02em; line-height: 1.05; }
.payout-card .pc-meta { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--accent-2); font-size: 0.9rem; font-weight: 540; margin-top: 0.3rem; }
.payout-card .pc-rows { display: grid; gap: 0.7rem; margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.payout-card .pc-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--dim); font-size: 0.92rem; }
.payout-card .pc-row b { color: var(--text); font-weight: 560; }

/* ---------- Trust badges strip ------------------------------------------- */
.trust-badges { border-top: 1px solid var(--line); background: var(--bg-1); }
.trust-badges .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; padding-block: clamp(1.6rem, 3vw, 2.2rem); }
.trust-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1rem; border: 1px solid var(--line-2); border-radius: var(--r-pill); background: rgba(255, 255, 255, 0.02); color: var(--dim); font-size: 0.85rem; }
.trust-badge .ic { width: 1.05rem; height: 1.05rem; color: var(--accent-2); }

/* ---------- Form success animation --------------------------------------- */
.form-status.show .ic { animation: popIn 0.55s var(--ease) both; }
.form-status.show h3 { animation: fadeUp 0.5s var(--ease) 0.1s both; }
.form-status.show p { animation: fadeUp 0.5s var(--ease) 0.18s both; }
@keyframes popIn { 0% { transform: scale(0.4); opacity: 0; } 60% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Round 2 reduced motion + responsive -------------------------- */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .form-status.show .ic, .form-status.show h3, .form-status.show p { animation: none; }
  .carousel-nav button { transition: none; }
}
@media (max-width: 860px) {
  .case-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .payout-grid { grid-template-columns: 1fr; gap: 2.4rem; }
}

/* ---------- Real video poster in media slots + portrait lightbox --------- */
.media-slot .ms-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.media-slot.has-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(9, 9, 12, 0.05), rgba(9, 9, 12, 0.5)); }
.media-slot.has-media .ms-inner { position: relative; z-index: 2; }
.lightbox-frame video { object-fit: cover; background: #000; }
.lightbox-frame.portrait { aspect-ratio: 9 / 16; width: auto; height: min(82vh, 760px); max-width: 92vw; margin-inline: auto; }
.lightbox-frame.imageframe { aspect-ratio: auto; width: auto; height: auto; max-height: 84vh; max-width: 94vw; margin-inline: auto; background: #0a0a0c; }
.lightbox-frame.imageframe img { display: block; width: auto; height: auto; max-height: 84vh; max-width: 94vw; }
.earnings-shot { cursor: pointer; }
.earnings-shot .ms-poster { object-position: top center; }

/* ---------- Cookie notice + legal placeholders -------------------------- */
.cookie-bar {
  position: fixed; left: clamp(1rem, 4vw, 2rem); right: clamp(1rem, 4vw, 2rem); bottom: clamp(1rem, 4vw, 1.5rem);
  max-width: 760px; margin-inline: auto; z-index: 150;
  display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap;
  background: rgba(20, 20, 27, 0.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-2); border-radius: 16px; padding: 1rem 1.2rem; box-shadow: var(--shadow-soft);
  transform: translateY(160%); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.cookie-bar.show { transform: none; opacity: 1; }
.cookie-bar p { flex: 1; min-width: 240px; margin: 0; color: var(--dim); font-size: 0.9rem; line-height: 1.5; }
.cookie-bar a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar .cookie-ok { flex: none; padding: 0.7rem 1.5rem; font-size: 0.92rem; }
@media (prefers-reduced-motion: reduce) { .cookie-bar { transition: none; } }
.ph { color: var(--accent-2); border-bottom: 1px dashed var(--accent-line); font-style: normal; }

/* ---------- Income calculator ------------------------------------------- */
.calc { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: stretch; max-width: 1000px; margin-inline: auto; }
.calc-inputs { display: flex; flex-direction: column; gap: 1.8rem; justify-content: center; border: 1px solid var(--line); border-radius: var(--r-panel); background: linear-gradient(180deg, var(--surface), var(--bg-1)); padding: clamp(1.5rem, 3.5vw, 2.2rem); }
.calc-field { display: flex; flex-direction: column; gap: 0.9rem; }
.calc-field label { font-size: 0.9rem; font-weight: 540; color: var(--text); }
.calc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.calc-reach { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--accent-2); white-space: nowrap; }
.calc-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--accent) var(--fill, 8%), var(--surface-2) var(--fill, 8%)); outline: none; cursor: pointer; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg); box-shadow: 0 2px 10px -2px var(--accent-glow); cursor: pointer; }
.calc-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg); cursor: pointer; }
.calc-seg { display: flex; gap: 4px; padding: 4px; border: 1px solid var(--line-2); border-radius: var(--r-pill); background: rgba(255, 255, 255, 0.02); }
.calc-seg button { flex: 1; padding: 0.6rem 0.7rem; border-radius: var(--r-pill); font-size: 0.85rem; font-weight: 540; color: var(--dim); white-space: nowrap; transition: color 0.2s, background 0.2s; }
.calc-seg button:hover:not(.active) { color: var(--text); }
.calc-seg button.active { background: var(--accent); color: #0a0a0c; }
.calc-output { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid var(--accent-line); border-radius: var(--r-panel); background: linear-gradient(180deg, rgba(243, 28, 161, 0.09), rgba(243, 28, 161, 0.01)); padding: clamp(1.8rem, 4vw, 2.4rem); }
.calc-out-label { color: var(--dim); font-size: 0.9rem; max-width: 26ch; }
.calc-out-value { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.9rem); letter-spacing: -0.02em; line-height: 1.05; margin-top: 0.7rem; }
.calc-out-value .calc-sep { color: var(--accent-2); margin-inline: 0.1em; }
.calc-per { color: var(--faint); font-size: 0.9rem; margin-top: 0.2rem; }
.calc-output .btn { margin-top: 1.4rem; }
.calc-disclaimer { max-width: 70ch; margin: 1.4rem auto 0; text-align: center; color: var(--faint); font-size: 0.82rem; }
@media (max-width: 760px) { .calc { grid-template-columns: 1fr; } }

/* ---------- Guarantee band ---------------------------------------------- */
.guar-band { border-block: 1px solid var(--accent-line); background: radial-gradient(120% 100% at 50% 0%, rgba(243, 28, 161, 0.08), transparent 60%); }
.guar { max-width: 720px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.guar-seal { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-2); box-shadow: 0 0 50px -10px var(--accent-glow); margin-bottom: 1.1rem; }
.guar-seal .ic { width: 2.4rem; height: 2.4rem; }
.guar .eyebrow::before { display: none; }
.guar h2 { margin-top: 0.8rem; }
.guar .lead { margin-top: 1rem; margin-inline: auto; }
.guar .btn { margin-top: 1.8rem; }
.guar-fine { color: var(--faint); font-size: 0.8rem; max-width: 62ch; margin-top: 1.5rem; line-height: 1.5; }

/* ---------- Scarcity band ----------------------------------------------- */
.scarce-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.scarce-num { text-align: center; border: 1px solid var(--accent-line); border-radius: var(--r-panel); background: linear-gradient(180deg, rgba(243, 28, 161, 0.08), rgba(243, 28, 161, 0.01)); padding: clamp(1.8rem, 4vw, 2.8rem); }
.scarce-big { font-family: var(--font-display); font-weight: 600; font-size: clamp(4.5rem, 3rem + 8vw, 7.5rem); line-height: 1; letter-spacing: -0.04em; color: var(--accent); }
.scarce-big .scarce-sep { color: var(--accent-2); margin-inline: 0.06em; }
.scarce-cap { color: var(--dim); margin-top: 0.5rem; font-size: 1.05rem; }
.scarce-tag { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.3rem; font-size: 0.85rem; color: var(--faint); }
.scarce-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
@media (max-width: 760px) { .scarce-grid { grid-template-columns: 1fr; } }
