/* ── _ds/ffc-design-system-63f8d30f-41dc-4bbe-bdae-ce7c2154f06f/tokens/fonts.css ── */
/* ============================================================
   FFC — Webfonts
   Display/titles: Space Grotesk (geometric, tech, the signature)
   — self-hosted variable font (weights 300–700).
   Body: SF Pro — Apple system font, loaded via the system stack
   (-apple-system / "SF Pro Text"). On non-Apple environments it
   falls back to Helvetica Neue / Arial, exactly as specified in
   the FFC briefing.
   ============================================================ */

@font-face {
  font-family: "Space Grotesk";
  src: url("SpaceGrotesk-VariableFont_wght.ttf") format("truetype-variations"),
       url("../fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}


/* ── _ds/ffc-design-system-63f8d30f-41dc-4bbe-bdae-ce7c2154f06f/tokens/colors.css ── */
/* ============================================================
   FFC — Color tokens
   The brand is black & white with ONE accent: electric blue.
   Neutrals carry ~90% of any piece; blue is the ~10% accent
   that never competes with anything (60-30-10 rule).
   Never: cream/beige backgrounds, colorful gradients, a second
   saturated color competing with the blue.
   ============================================================ */

:root {
  /* --- Base neutrals (the foundation — ~90% of every piece) --- */
  --ffc-black: #000000;          /* dominant bg for impact / open / close */
  --ffc-white: #ffffff;          /* dominant bg for content slides; text on dark */
  --ffc-near-black: #080808;     /* deepest subtle card on black */
  --ffc-panel: #222222;          /* card / panel surface on black */
  --ffc-gray-900: #2f2f2f;       /* body text on white */
  --ffc-gray-600: #5c5c5c;       /* secondary text, captions, metadata */
  --ffc-gray-500: #4b4b4b;       /* secondary alt */
  --ffc-gray-300: #b0b0b0;       /* inactive / "switched off" / placeholders */

  /* --- The single accent (~10% of every piece) --- */
  --ffc-blue: #0529f6;           /* Electric Blue — signature accent, use by default */
  --ffc-blue-pure: #0000ff;      /* legacy block blue — deprecated, migrate to --ffc-blue */
  --ffc-indigo-soft: #9ba1e2;    /* rare table-header tint — use with extreme restraint */

  /* hairline borders */
  --ffc-hairline-on-dark: rgba(255, 255, 255, 0.16);
  --ffc-hairline-on-light: rgba(0, 0, 0, 0.12);

  /* ============================================================
     Semantic aliases — reference THESE in components & layouts
     ============================================================ */

  /* Surfaces / backgrounds */
  --surface-base-dark: var(--ffc-black);
  --surface-base-light: var(--ffc-white);
  --surface-accent: var(--ffc-blue);
  --surface-card: var(--ffc-panel);        /* card on a dark canvas */
  --surface-card-deep: var(--ffc-near-black);

  /* Text — on light canvas */
  --text-primary: var(--ffc-gray-900);
  --text-secondary: var(--ffc-gray-600);
  --text-muted: var(--ffc-gray-300);

  /* Text — on dark / accent canvas */
  --text-on-dark: var(--ffc-white);
  --text-on-dark-secondary: var(--ffc-gray-300);
  --text-on-accent: var(--ffc-white);

  /* Accent roles */
  --accent: var(--ffc-blue);
  --accent-text: var(--ffc-blue);
  --accent-on: var(--ffc-white);

  /* Borders */
  --border-on-dark: var(--ffc-hairline-on-dark);
  --border-on-light: var(--ffc-hairline-on-light);
}


/* ── _ds/ffc-design-system-63f8d30f-41dc-4bbe-bdae-ce7c2154f06f/tokens/typography.css ── */
/* ============================================================
   FFC — Typography tokens
   Display/titles: Space Grotesk (Bold for keywords, Light to breathe).
   Body: SF Pro via the system stack.
   Everything left-aligned; centering reserved for short impact lines.
   Emphasis trick: keyword in the title goes Bold, the rest stays
   regular/light — focus without changing color.
   ============================================================ */

:root {
  /* Families */
  --font-display: "Space Grotesk", "Archivo", "Inter", system-ui, sans-serif;
  /* SF Pro is Apple's system font: -apple-system / BlinkMacSystemFont
     resolve to it on Apple platforms (no font file needed). Helvetica
     Neue / Arial are the cross-platform fallbacks per the FFC briefing. */
  --font-body: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Weights */
  --fw-light: 300; /* @kind other */
  --fw-regular: 400; /* @kind other */
  --fw-medium: 500; /* @kind other */
  --fw-semibold: 600; /* @kind other */
  --fw-bold: 700; /* @kind other */

  /* Display / type scale — proportions that scale with format.
     Use clamp so heroes breathe on large canvases and survive on small. */
  --type-hero:      clamp(3.5rem, 12vw, 11rem);   /* hero word — can bleed / rotate */
  --type-display:   clamp(2.5rem, 6vw, 5rem);     /* cover / section titles */
  --type-title:     clamp(1.75rem, 3.2vw, 2.75rem);/* slide title, left-aligned bold */
  --type-subtitle:  clamp(1.25rem, 2vw, 1.75rem); /* display subtitle, light */
  --type-lead:      1.375rem;                      /* lead paragraph */
  --type-body:      1.0625rem;                     /* body copy */
  --type-small:     0.9375rem;                     /* captions */
  --type-meta:      0.75rem;                        /* uppercase metadata / labels */

  /* Line heights */
  --lh-tight: 0.95; /* @kind other */    /* hero words */
  --lh-snug: 1.08; /* @kind other */     /* display & titles */
  --lh-normal: 1.5; /* @kind other */     /* body copy, generous leading */

  /* Letter spacing */
  --tracking-tight: -0.03em; /* @kind other */  /* large display set tight */
  --tracking-normal: 0; /* @kind other */
  --tracking-meta: 0.14em; /* @kind other */     /* uppercase metadata, wide */
}


/* ── _ds/ffc-design-system-63f8d30f-41dc-4bbe-bdae-ce7c2154f06f/tokens/spacing.css ── */
/* ============================================================
   FFC — Spacing tokens
   Generous margins (min ~5% of the canvas). Empty black/white IS
   the premium look — don't fill every corner. 4px base rhythm.
   ============================================================ */

:root {
  --space-0: 0;
  --space-1: 0.25rem;   /* 4  */
  --space-2: 0.5rem;    /* 8  */
  --space-3: 0.75rem;   /* 12 */
  --space-4: 1rem;      /* 16 */
  --space-5: 1.5rem;    /* 24 */
  --space-6: 2rem;      /* 32 */
  --space-7: 3rem;      /* 48 */
  --space-8: 4rem;      /* 64 */
  --space-9: 6rem;      /* 96 */
  --space-10: 8rem;     /* 128 */

  /* Canvas margin — ~5% breathing room on slides/pages */
  --margin-canvas: 5%;

  /* Content max width for body copy */
  --measure: 62ch;
}


/* ── _ds/ffc-design-system-63f8d30f-41dc-4bbe-bdae-ce7c2154f06f/tokens/effects.css ── */
/* ============================================================
   FFC — Effects: radii, borders, shadows, motion
   Cards have subtle rounded corners and a near-imperceptible
   hairline border — never heavy drop shadows or glow. Imagery
   inside cards gets a rounded frame. Motion is restrained:
   clean fades and short ease-outs, no bounce, no decorative loops.
   ============================================================ */

:root {
  /* Corner radii */
  --radius-xs: 4px;     /* tags, small chips */
  --radius-sm: 8px;     /* buttons, inputs */
  --radius-md: 14px;    /* cards, image frames */
  --radius-lg: 22px;    /* large panels / app-icon style */
  --radius-pill: 999px; /* circular markers, avatars */

  /* Borders */
  --border-width: 1px;
  --border-hairline-dark: 1px solid var(--border-on-dark);
  --border-hairline-light: 1px solid var(--border-on-light);

  /* Shadows — used sparingly. Soft elevation only; the brand
     leans on contrast, not shadow. */
  --shadow-none: none;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-pop: 0 12px 40px rgba(0, 0, 0, 0.28);

  /* The ONLY blue glow — reserved for the focus ring / active accent */
  --ring-accent: 0 0 0 3px rgba(5, 41, 246, 0.35);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 220ms; /* @kind other */
  --dur-slow: 420ms; /* @kind other */
}


/* ── page.css ── */
/* ============================================================
   Plano 3S — sales page. Built on FFC tokens (loaded before this).
   Mobile-first, content register: black/white/blue, Space Grotesk
   display, one electric-blue accent. Single readable column that
   widens galleries; full-bleed colored sections build the rhythm.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ffc-black);
  color: var(--ffc-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
b, strong { font-weight: 700; }

/* ---------- layout primitives ---------- */
.sec { position: relative; padding: clamp(64px, 13vw, 120px) 0; overflow: hidden; }
.sec--dark  { background: var(--ffc-black);     color: #fff; }
.sec--deep  { background: var(--ffc-near-black); color: #fff; }
.sec--light { background: var(--ffc-white);     color: var(--text-primary); }
.sec--blue  { background: var(--ffc-blue);      color: #fff; }
.sec--tight { padding-top: clamp(40px, 8vw, 72px); padding-bottom: clamp(40px, 8vw, 72px); }

.wrap { width: 100%; max-width: 680px; margin: 0 auto; padding: 0 22px; }
.wrap--wide { max-width: 1080px; }
.wrap--narrow { max-width: 560px; }

/* ---------- type ---------- */
.kicker {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(11px, 2.8vw, 13px); letter-spacing: .16em;
  text-transform: uppercase; color: var(--ffc-blue);
  display: inline-flex; align-items: center; gap: .6em;
}
.kicker--ondark  { color: var(--ffc-blue); }
.kicker--onblue  { color: rgba(255,255,255,.78); }
.kicker--onlight { color: var(--ffc-blue); }
.kicker::before {
  content: ""; width: 26px; height: 2px; background: currentColor; opacity: .85;
}

.display {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.1rem, 8.2vw, 4rem); line-height: 1.02;
  letter-spacing: -.03em; margin: .35em 0 0; text-wrap: balance;
}
.display b { font-weight: 700; }
.title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.7rem, 6vw, 2.9rem); line-height: 1.06;
  letter-spacing: -.025em; margin: .3em 0 0; text-wrap: balance;
}
.title b { font-weight: 700; }
.lead {
  font-size: clamp(1.05rem, 3.6vw, 1.3rem); line-height: 1.5;
  margin: 1.1em 0 0; max-width: 40ch; color: var(--ffc-gray-300);
  text-wrap: pretty;
}
.sec--light .lead { color: var(--text-secondary); }
.sec--blue .lead { color: rgba(255,255,255,.85); }
.body {
  font-size: clamp(1rem, 3.4vw, 1.1rem); line-height: 1.6;
  color: var(--ffc-gray-300); text-wrap: pretty;
}
.sec--light .body { color: var(--text-secondary); }
.sec--blue .body { color: rgba(255,255,255,.88); }
.muted-meta {
  font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ffc-gray-500);
}

/* signature highlight already from DS .ffc-highlight; helper for inline */
mark.hl { background: var(--accent); color:#fff; font-weight:700; padding:.04em .2em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* ---------- sticky header ---------- */
.topbar {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 13px 18px;
  background: rgba(0,0,0,.66); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-on-dark);
}
.topbar__logo { height: 22px; width: auto; object-fit: contain; }

/* ---------- CTA blocks ---------- */
.ctarow { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.ctarow--inline { flex-direction: row; flex-wrap: wrap; align-items: center; }
.ctanote {
  display: flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: 13.5px; color: var(--ffc-gray-500); font-weight: 500;
}
.sec--blue .ctanote { color: rgba(255,255,255,.72); }
.ctanote .dot { width: 7px; height: 7px; border-radius: 50%; background: #16c172; flex: none; box-shadow: 0 0 0 4px rgba(22,193,114,.18); }
.ctanote--ondark .dot { background:#16c172; }

/* big hero word behind content */
.ghostword {
  position: absolute; pointer-events: none; user-select: none;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: -.05em; line-height: .8;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.10);
}

/* ---------- hero ---------- */
.hero { padding-top: clamp(48px, 12vw, 96px); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--border-on-dark); border-radius: var(--radius-pill);
  padding: 8px 15px 8px 11px;
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  letter-spacing: .06em; text-transform: uppercase; color: #fff;
}
.hero__badge .spk { color: var(--ffc-blue); font-size: 15px; line-height: 1; }
.hero__h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.3rem, 9.5vw, 4.6rem); line-height: 1.0;
  letter-spacing: -.035em; margin: 22px 0 0; text-wrap: balance;
}
.hero__h1 b { font-weight: 700; }
.hero__3s {
  position: absolute; right: -2vw; top: 4vw; z-index: 0;
  font-size: clamp(13rem, 46vw, 34rem);
}
.hero__promise {
  list-style: none; margin: 34px 0 0; padding: 0;
  display: grid; gap: 1px; background: var(--border-on-dark);
  border: 1px solid var(--border-on-dark); border-radius: var(--radius-md);
  overflow: hidden;
}
.hero__promise li {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 18px; background: var(--ffc-near-black);
  font-size: 15.5px; line-height: 1.35;
}
.hero__promise .pico {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; font-size: 19px;
  background: rgba(5,41,246,.16); color: #fff;
  border: 1px solid rgba(5,41,246,.4);
}
.hero__promise b { font-weight: 700; }
.hero__promise em { font-style: italic; color: var(--ffc-gray-300); }

/* ---------- problem (drama) ---------- */
.drama { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.drama__stats { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 28px; margin-bottom: 8px; }
.drama__line2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.5rem, 6vw, 2.4rem); letter-spacing: -.02em; line-height: 1.1; margin: 18px 0 0; max-width: 18ch; }
.painlist { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 12px; }
.painlist li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md); background: rgba(255,255,255,.02);
  font-size: 15.5px; line-height: 1.45; color: #e7e7e7;
}
.painlist .x {
  flex: none; width: 24px; height: 24px; border-radius: 50%; margin-top: 1px;
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
  color: var(--ffc-gray-300); border: 1px solid var(--border-on-dark);
}

/* ---------- transformation: benefit + proof ---------- */
.benefit {
  display: grid; gap: 18px; padding: clamp(22px, 6vw, 34px) 0;
  border-top: 1px solid var(--border-on-light);
}
.benefit:first-of-type { border-top: 0; }
.benefit__text { display: flex; gap: 16px; align-items: flex-start; }
.benefit__num { flex: none; }
.benefit__t {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.15rem, 4.4vw, 1.5rem); line-height: 1.25;
  letter-spacing: -.01em; color: var(--text-primary); margin: 2px 0 0;
  text-wrap: pretty;
}
.proofshot {
  border: 1px solid var(--border-on-light); border-radius: var(--radius-md);
  overflow: hidden; background: #fff; box-shadow: var(--shadow-card);
}
.proofshot img { width: 100%; }
.proofshot--pad { padding: 14px 16px; }
.proofcap {
  display: flex; align-items: center; gap: 8px; padding: 9px 14px;
  border-top: 1px solid var(--border-on-light);
  font-size: 12px; letter-spacing: .04em; color: var(--text-muted);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
}

/* ---------- platform / authority ---------- */
.platgrid { display: grid; grid-template-columns: 1fr; gap: 1px; margin-top: 34px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); overflow: hidden; }
.platcard { background: var(--ffc-blue); padding: 22px 20px; display: flex; flex-direction: column; gap: 4px; }
.platcard__net { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.78); }
.platcard__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem,9vw,3rem); line-height: .95; letter-spacing: -.03em; }
.platcard__sub { font-size: 13.5px; color: rgba(255,255,255,.82); line-height: 1.35; }

.gallery { columns: 2; column-gap: 12px; margin-top: 12px; }
.gallery > * { break-inside: avoid; margin-bottom: 12px; }
.shot { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-on-dark); background: #111; }
.shot img { width: 100%; }
.gallery-wide { margin-top: 14px; display: grid; gap: 12px; }
.galhead { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 6.4vw, 2.4rem); line-height: 1.08; letter-spacing: -.025em; margin: 48px 0 0; text-wrap: balance; }

/* ---------- client results (whatsapp) ---------- */
.wagrid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
.wacard { border: 1px solid var(--border-on-light); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.wacard__top { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--border-on-light); }
.wacard__name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text-primary); }
.wacard__role { font-size: 12px; color: var(--text-muted); }
.wacard__img { background: #ece5dd; }
.wacard__img img { width: 100%; }

/* ---------- method (4 weeks) ---------- */
.week { display: grid; gap: 12px; padding: clamp(22px,6vw,30px) 0; border-top: 1px solid var(--border-on-light); }
.week:first-of-type { border-top: 0; padding-top: 8px; }
.week__head { display: flex; gap: 16px; align-items: center; }
.week__tag { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ffc-blue); }
.week__t { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem,4.6vw,1.55rem); line-height: 1.15; letter-spacing: -.015em; color: var(--text-primary); margin: 2px 0 0; }
.week__body { color: var(--text-secondary); font-size: clamp(1rem,3.4vw,1.08rem); line-height: 1.6; padding-left: 58px; }
.week__body ul { margin: 10px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.week__body li { position: relative; padding-left: 20px; }
.week__body li::before { content: "↗"; position: absolute; left: 0; color: var(--ffc-blue); font-weight: 700; }
@media (max-width: 480px){ .week__body { padding-left: 0; } }

/* ---------- deliverables ---------- */
.deliv { display: grid; gap: 12px; margin-top: 28px; }
.deliv__item { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: start; padding: 18px; border: 1px solid var(--border-on-dark); border-radius: var(--radius-md); background: var(--ffc-near-black); }
.deliv__check { flex: none; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: rgba(5,41,246,.16); border: 1px solid rgba(5,41,246,.4); color:#fff; font-weight: 700; font-size: 15px; }
.deliv__t { font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1.25; color: #fff; }
.deliv__d { font-size: 14px; line-height: 1.5; color: var(--ffc-gray-300); margin-top: 6px; }
.deliv__val { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--ffc-blue); white-space: nowrap; text-align: right; }
.deliv__val small { display:block; font-weight:600; font-size:10px; letter-spacing:.1em; color: var(--ffc-gray-500); text-transform: uppercase; }
.subhead { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ffc-blue); margin: 30px 0 4px; }
.bonuslist { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 1px; background: var(--border-on-dark); border: 1px solid var(--border-on-dark); border-radius: var(--radius-md); overflow: hidden; }
.bonuslist li { background: var(--ffc-near-black); padding: 13px 16px; font-size: 14.5px; display: flex; gap: 12px; align-items: center; }
.bonuslist .c { color: var(--ffc-blue); font-weight: 700; }

/* highlighted "turma formadora" bonus */
.bigbonus { margin-top: 16px; border: 1px solid rgba(5,41,246,.55); border-radius: var(--radius-lg); padding: 22px; background: linear-gradient(180deg, rgba(5,41,246,.14), rgba(5,41,246,.03)); }
.bigbonus__tag { display:inline-flex; align-items:center; gap:8px; font-family: var(--font-display); font-weight:700; font-size:11.5px; letter-spacing:.12em; text-transform: uppercase; color:#fff; background: var(--ffc-blue); padding:5px 11px; border-radius: var(--radius-pill); }
.bigbonus__t { font-family: var(--font-display); font-weight:700; font-size: clamp(1.15rem,4.4vw,1.4rem); line-height:1.2; margin:14px 0 0; }
.bigbonus__d { color: var(--ffc-gray-300); font-size:14.5px; line-height:1.55; margin-top:10px; }

/* ---------- offer / pricing ---------- */
.offer__card { margin-top: 30px; background: #fff; color: var(--text-primary); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-pop); }
.offer__stack { padding: 24px 22px 4px; }
.offer__stack h4 { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-secondary); margin: 0 0 14px; }
.stacklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.stacklist li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.4; color: var(--text-primary); }
.stacklist .c { color: var(--ffc-blue); font-weight: 700; flex: none; }
.stacklist .v { margin-left: auto; font-family: var(--font-display); font-weight: 600; font-size: 12.5px; color: var(--text-muted); white-space: nowrap; }
.offer__price { padding: 24px 22px 26px; border-top: 1px dashed var(--border-on-light); margin-top: 18px; text-align: center; }
.offer__from { font-size: 14px; color: var(--text-muted); }
.offer__from s { color: var(--text-muted); }
.offer__now { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin: 6px 0 2px; }
.offer__now .cur { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--text-primary); }
.offer__now .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(3.2rem,15vw,4.4rem); line-height: .9; letter-spacing: -.04em; color: var(--text-primary); }
.offer__inst { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }
.offer__founder { display:inline-block; margin-top:14px; font-family: var(--font-display); font-weight:700; font-size:12px; letter-spacing:.08em; text-transform: uppercase; color: var(--ffc-blue); background: rgba(5,41,246,.1); padding:7px 13px; border-radius: var(--radius-pill); }
.scarcity { margin-top: 22px; display: flex; gap: 12px; align-items: center; padding: 15px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-md); background: rgba(0,0,0,.18); font-size: 14px; line-height: 1.4; }
.scarcity .clock { flex: none; font-size: 19px; }

/* ---------- guarantee ---------- */
.glevels { display: grid; gap: 14px; margin-top: 30px; }
.glevel { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 20px; border: 1px solid var(--border-on-light); border-radius: var(--radius-md); background: #fff; }
.glevel__n { width: 44px; height: 44px; border-radius: 12px; background: var(--ffc-blue); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 17px; flex: none; }
.glevel__t { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text-primary); }
.glevel__d { font-size: 14.5px; line-height: 1.55; color: var(--text-secondary); margin-top: 6px; }
.gclose { margin-top: 26px; font-family: var(--font-display); font-weight: 300; font-size: clamp(1.4rem,5.5vw,2.1rem); letter-spacing: -.02em; line-height: 1.15; }
.gclose b { font-weight: 700; }

/* ---------- future pacing ---------- */
.fork { display: grid; gap: 14px; margin-top: 30px; }
.forkcard { padding: 24px 22px; border-radius: var(--radius-lg); }
.forkcard--bad { background: var(--ffc-near-black); border: 1px solid var(--border-on-dark); }
.forkcard--good { background: var(--ffc-blue); }
.forkcard__tag { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.forkcard--bad .forkcard__tag { color: var(--ffc-gray-500); }
.forkcard--good .forkcard__tag { color: rgba(255,255,255,.75); }
.forkcard__b { font-size: 15.5px; line-height: 1.55; margin-top: 12px; }
.forkcard--bad .forkcard__b { color: var(--ffc-gray-300); }
.forkcard--good .forkcard__b { color: #fff; }

/* ---------- qualify ---------- */
.qualcols { display: grid; gap: 16px; margin-top: 30px; }
.qualcol { border-radius: var(--radius-lg); padding: 22px; }
.qualcol--no { background: var(--ffc-near-black); border: 1px solid var(--border-on-dark); }
.qualcol--yes { background: #fff; color: var(--text-primary); }
.qualcol__head { font-family: var(--font-display); font-weight: 700; font-size: 15px; display: flex; gap: 9px; align-items: center; margin-bottom: 6px; }
.qualcol--yes .qualcol__head { color: var(--text-primary); }
.qitem { padding: 14px 0; border-top: 1px solid var(--border-on-dark); }
.qualcol--yes .qitem { border-top-color: var(--border-on-light); }
.qitem:first-of-type { border-top: 0; }
.qitem__t { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; line-height: 1.3; }
.qualcol--no .qitem__t { color: #fff; }
.qitem__d { font-size: 13.5px; line-height: 1.5; margin-top: 5px; }
.qualcol--no .qitem__d { color: var(--ffc-gray-500); }
.qualcol--yes .qitem__d { color: var(--text-secondary); }

/* ---------- faq ---------- */
.faq { margin-top: 30px; border-top: 1px solid var(--border-on-dark); }
.faqi { border-bottom: 1px solid var(--border-on-dark); }
.faqi summary { list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative; font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem,3.8vw,1.15rem); line-height: 1.3; color: #fff; }
.faqi summary::-webkit-details-marker { display: none; }
.faqi summary::after { content: "+"; position: absolute; right: 6px; top: 18px; font-size: 24px; font-weight: 400; color: var(--ffc-blue); transition: transform var(--dur-base) var(--ease-out); }
.faqi[open] summary::after { content: "−"; }
.faqi__a { padding: 0 0 22px; color: var(--ffc-gray-300); font-size: 15px; line-height: 1.62; }
.faqi__a p { margin: 0 0 10px; }
.faqi__a ul { margin: 8px 0 0; padding-left: 18px; }

/* ---------- final cta ---------- */
.finalcta { text-align: center; }
.finalcta .display { margin-left: auto; margin-right: auto; }
.footer__base { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--border-on-dark); }
.footer__logo { height: 24px; width: auto; object-fit: contain; }
.footer__meta { font-family: var(--font-display); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ffc-gray-500); text-align: center; line-height: 1.8; }

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference){
  .rv { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
  .rv.in { opacity: 1; transform: none; }
}

/* ---------- responsive up-scaling ---------- */
@media (min-width: 720px){
  .hero__promise { grid-template-columns: 1fr 1fr; }
  .platgrid { grid-template-columns: repeat(3, 1fr); }
  .gallery { columns: 3; }
  .wagrid { grid-template-columns: 1fr 1fr; align-items: start; }
  .qualcols { grid-template-columns: 1fr 1fr; }
  .fork { grid-template-columns: 1fr 1fr; }
  .benefit { grid-template-columns: 1fr 1fr; align-items: center; gap: 32px; }
}
@media (min-width: 720px){
  .deliv { grid-template-columns: 1fr 1fr; }
  .deliv__item--full { grid-column: 1 / -1; }
}

/* ---------- countdown ---------- */
.cd--panel { border: 1px solid rgba(255,255,255,.24); border-radius: var(--radius-lg); padding: 22px; background: rgba(0,0,0,.18); }
.cd-top { display: flex; gap: 10px; align-items: center; font-size: 14.5px; color: #fff; margin-bottom: 16px; line-height: 1.35; }
.cd-top b { font-weight: 700; }
.cd-clock { font-size: 20px; flex: none; }
.cd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cd-cell { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md); padding: 16px 6px; text-align: center; }
.cd-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 12vw, 2.9rem); line-height: 1; letter-spacing: -.03em; color: #fff; font-variant-numeric: tabular-nums; }
.cd-lab { display: block; margin-top: 8px; font-family: var(--font-display); font-weight: 600; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.66); }
.cd-foot { margin: 15px 0 0; font-size: 13.5px; line-height: 1.45; color: rgba(255,255,255,.78); }

.cd--slim { display: flex; align-items: flex-start; justify-content: center; gap: 12px; margin-bottom: 6px; }
.cd-slimcell { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.cd-slimcell b { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -.02em; color: #fff; font-variant-numeric: tabular-nums; }
.cd-slimcell i { font-style: normal; margin-top: 7px; font-family: var(--font-display); font-weight: 600; font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ffc-gray-500); }
.cd-sep { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--ffc-blue); transform: translateY(-2px); }

/* ---------- desktop layer ---------- */
@media (min-width: 1000px){
  .sec { padding: clamp(104px, 9vw, 160px) 0; }
  .wrap { max-width: 780px; }
  .wrap--wide { max-width: 1160px; }
  .wrap--narrow { max-width: 620px; }
  .lead { font-size: 1.3rem; }

  .topbar { padding: 16px clamp(28px, 5vw, 64px); }
  .topbar__logo { height: 26px; }

  /* hero → two columns */
  .hero { padding-top: clamp(72px, 9vw, 120px); }
  .hero__wrap { max-width: 1160px; }
  .hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 64px; align-items: center; }
  .hero__h1 { font-size: clamp(3rem, 4.1vw, 4.5rem); margin-top: 26px; }
  .hero__copy .lead { font-size: 1.35rem; max-width: 32ch; }
  .hero__aside .hero__promise { grid-template-columns: 1fr; }
  .hero__aside .hero__promise li { padding: 20px 22px; font-size: 16.5px; }
  .hero__3s { font-size: clamp(22rem, 30vw, 40rem); top: -8vh; right: -2vw; }

  /* breathing room on multi-col blocks */
  .benefit { gap: 52px; }
  .gallery-wide { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .galhead { margin-top: 64px; }
  .wagrid { gap: 24px; }
  .glevels, .fork, .qualcols { gap: 20px; }
  .deliv { gap: 14px; }

  /* keep the offer card from stretching too wide */
  .offer__card { max-width: 640px; margin-left: auto; margin-right: auto; }
  #oferta .cd--panel { max-width: 640px; margin-left: auto; margin-right: auto; }
  #oferta .ctarow { max-width: 640px; margin-left: auto; margin-right: auto; }
}

@media (min-width: 1280px){
  .hero__h1 { font-size: 4.7rem; }
  .wrap--wide { max-width: 1240px; }
}


