/* ==========================================================================
   FUTURE PROOF FOUNDERS — DESIGN ENGINE
   The single source of truth for the brand. Import this into any new asset:
       <link rel="stylesheet" href="design-system.css">
   Aesthetic: DropZone. Dark, flamingo pink, sharp corners, condensed display
   type. Black + one accent. Honest scarcity. No generic-AI blandness.
   See design-system.html for a live visual reference of everything below.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:wght@400;500;700&family=Space+Mono:wght@400;700&display=swap');

/* ---- TOKENS ---------------------------------------------------------------
   Use the variables, never raw hex, so a brand change is one edit here.       */
:root {
  /* surfaces (dark to light) */
  --bg: #121212;          /* page background */
  --surface: #1A1A1A;     /* raised card */
  --surface2: #1E1E1E;    /* secondary surface / bars */
  --border: #333333;      /* default hairline */
  --border2: #444444;     /* stronger hairline */

  /* brand */
  --pink: #F0437A;        /* the one accent. CTAs, highlights, accents */
  --yellow: #F5C518;      /* clarity / attention (billing, scarcity, badges) */
  --green: #4CAF50;       /* success / confirmation */

  /* text */
  --wht: #FAFAFA;         /* primary text */
  --muted: #B0B0B0;       /* body text */
  --dim: #8A8A8A;         /* hints, captions, disabled */

  /* partner brand colors (use only for their buttons/logos) */
  --discord: #5865F2;
  --telegram: #229ED9;
  --stripe: #635BFF;
  --meta: #0866FF;
  --lovable: #FF6154;

  /* type */
  --font-display: 'Bebas Neue', sans-serif;  /* big condensed caps */
  --font-body: 'Work Sans', sans-serif;      /* everything readable */
  --font-mono: 'Space Mono', monospace;      /* labels, eyebrows, code, prices */

  /* layout */
  --maxw: 640px;          /* conversion column. 660-980 for app/dashboard */
  --radius: 0;            /* SHARP CORNERS. This is a brand rule. */
}

/* ---- RESET ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--wht); font-family: var(--font-body); -webkit-font-smoothing: antialiased; line-height: 1.5; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes shine { 0% { left: -60%; } 55% { left: 120%; } 100% { left: 120%; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* ---- LAYOUT --------------------------------------------------------------- */
/* Centered conversion column with side rails. Mobile-first. */
.page { max-width: var(--maxw); margin: 0 auto; min-height: 100vh; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
@media (max-width: 640px) { .page { border-left: none; border-right: none; } }
/* A section. Stack these down the page. */
.sec { padding: 42px 24px; border-bottom: 1px solid var(--border); }

/* ---- TYPOGRAPHY -----------------------------------------------------------
   Display = Bebas, ALL CAPS, tight leading. Accent one word in --pink.
   Eyebrows + labels = Space Mono, uppercase, wide tracking.
   Body = Work Sans. Never use display type for paragraphs.                    */
.eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 14px; }
.h-big { font-family: var(--font-display); font-size: clamp(46px, 11vw, 80px); line-height: 0.9; letter-spacing: 0.02em; color: var(--wht); margin-bottom: 16px; }
.h-mid { font-family: var(--font-display); font-size: clamp(30px, 7vw, 48px); line-height: 0.96; letter-spacing: 0.02em; color: var(--wht); margin-bottom: 16px; }
.h-sm  { font-family: var(--font-display); font-size: 22px; line-height: 1; letter-spacing: 0.02em; color: var(--wht); }
.h-big .accent, .h-mid .accent, .h-big span, .h-mid span { color: var(--pink); }
.lede { font-size: clamp(16px, 4vw, 19px); line-height: 1.6; color: var(--wht); margin-bottom: 18px; }
p.body { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 14px; }
p.body:last-child { margin-bottom: 0; }
p.body strong, .lede strong { color: var(--wht); font-weight: 500; }
.mono-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }
/* COPY RULE: no em dashes anywhere. Use commas, colons, periods, parentheses. */

/* ---- BUTTONS -------------------------------------------------------------- */
/* Primary CTA: solid pink, white text, glow, animated shine sweep.
   IMPORTANT: use <a class="btn-cta"> not <button> (hosts override <button>).  */
.btn-cta { position: relative; display: block; width: 100%; font-family: var(--font-display); font-size: 28px; letter-spacing: 0.05em; background-color: var(--pink); color: #fff; border: none; padding: 18px; text-align: center; cursor: pointer; text-decoration: none; overflow: hidden; box-shadow: 0 6px 28px #F0437A66; }
.btn-cta::after { content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent); transform: skewX(-20deg); animation: shine 3.4s ease-in-out infinite; }
.btn-cta:active { transform: scale(0.98); }
/* Secondary: ghost outline. */
.btn-ghost { display: block; width: 100%; font-family: var(--font-display); font-size: 22px; letter-spacing: 0.05em; color: var(--wht); background: transparent; border: 1px solid var(--border2); padding: 15px; text-align: center; text-decoration: none; cursor: pointer; }
/* Caption under a CTA. Highlight a key phrase with <strong>. */
.cta-sub { font-size: 12px; color: var(--dim); text-align: center; margin-top: 12px; }
.cta-sub strong { color: var(--yellow); font-weight: 500; }

/* ---- PILLS / TAGS / CHIPS ------------------------------------------------- */
.tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); border: 1px solid var(--pink); padding: 5px 11px; }
.tag-solid { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #1a1400; background: var(--yellow); padding: 5px 11px; }
.chip { font-family: var(--font-mono); font-size: 12px; padding: 7px 11px; border: 1px solid var(--border2); color: #cfcfcf; display: inline-flex; align-items: center; gap: 7px; }
.chip .dot { width: 7px; height: 7px; border-radius: 50%; }

/* ---- BARS ----------------------------------------------------------------- */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: rgba(18,18,18,0.92); backdrop-filter: blur(8px); z-index: 50; }
.nav-logo { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.06em; color: var(--wht); text-decoration: none; }
.nav-logo span { color: var(--pink); }
.nav-cta { font-family: var(--font-mono); font-size: 11px; color: var(--pink); border: 1px solid var(--pink); padding: 7px 14px; border-radius: 9999px; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.live-dot, .nav-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); animation: pulse 1.5s infinite; }
.live-dot { background: var(--green); }
.founder-bar { background: var(--surface2); border-bottom: 1px solid var(--border); padding: 10px 22px; display: flex; align-items: center; justify-content: space-between; }
.founder-bar .count { font-family: var(--font-mono); font-size: 12px; color: var(--wht); } .founder-bar .count span { color: var(--pink); font-weight: 700; }
.founder-bar .live { font-size: 11px; color: var(--dim); display: flex; align-items: center; gap: 6px; }

/* ---- CARDS / BOXES -------------------------------------------------------- */
.card { background: var(--surface); border: 1px solid var(--border); padding: 18px; }
/* Price box: 2px pink, tinted bg, centered. The only place 2px borders live. */
.pricebox { border: 2px solid var(--pink); background: #F0437A0F; padding: 26px; text-align: center; }
.price-now { font-family: var(--font-display); font-size: clamp(56px, 16vw, 76px); color: var(--pink); line-height: 1; }
.price-was { font-size: 22px; color: var(--dim); text-decoration: line-through; }
/* Billing clarity box: yellow = "read this carefully". Use for recurring terms. */
.billing { border: 2px solid var(--yellow); background: #F5C5180d; padding: 16px; }
.billing-h { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }
/* Scarcity strip: honest urgency only. */
.scarcity { background: var(--surface2); border: 1px solid var(--pink); padding: 15px 17px; display: flex; gap: 12px; align-items: center; }
.scarcity strong { color: var(--pink); font-weight: 700; }
/* Milestone / community callout: dashed pink. */
.milestone { background: #F0437A12; border: 1px dashed var(--pink); padding: 16px 18px; display: flex; gap: 14px; align-items: center; }

/* ---- LISTS ---------------------------------------------------------------- */
/* Pain list: pink x marks, never side-stripe borders. */
.pain-list { list-style: none; }
.pain-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.55; color: var(--muted); margin-bottom: 13px; }
.pain-list .x { color: var(--pink); font-weight: 700; flex-shrink: 0; }
.pain-list strong { color: var(--wht); font-weight: 500; }
/* Numbered / code row: mono number + Bebas title + dim subline. */
.row-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.row-item:first-of-type { border-top: 1px solid var(--border); }
.row-num { font-family: var(--font-mono); font-size: 12px; color: var(--pink); flex-shrink: 0; width: 58px; padding-top: 3px; }
.row-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.02em; color: var(--wht); line-height: 1; }
.row-sub { font-size: 13px; color: var(--dim); margin-top: 4px; } .row-sub b { color: var(--muted); font-weight: 500; }

/* ---- QUOTE / TESTIMONIAL -------------------------------------------------- */
.quote { border: 1px solid var(--border2); padding: 18px; }
.quote-stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; margin-bottom: 9px; }
.quote-text { font-size: 14px; line-height: 1.6; color: var(--muted); font-style: italic; margin-bottom: 11px; }
.quote-av { width: 32px; height: 32px; border-radius: 50%; background: #F0437A22; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--pink); }

/* ---- FAQ (accordion: add .open with JS) ---------------------------------- */
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; cursor: pointer; }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-q span { font-size: 15px; color: var(--wht); font-weight: 500; line-height: 1.4; }
.faq-q .pm { color: var(--pink); font-size: 22px; line-height: 1; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { font-size: 14px; line-height: 1.6; color: var(--muted); max-height: 0; overflow: hidden; transition: max-height 0.25s ease, padding 0.25s ease; }
.faq-item.open .faq-a { max-height: 280px; padding-top: 11px; }

/* ---- METRIC / STAT -------------------------------------------------------- */
.stat { background: var(--surface); padding: 18px 14px; text-align: center; }
.stat .n { font-family: var(--font-display); font-size: 34px; color: var(--pink); line-height: 1; }
.stat .l { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.4; }

/* ---- FOOTER --------------------------------------------------------------- */
.footer { padding: 28px 24px; text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.06em; color: var(--dim); margin-bottom: 9px; }
.footer-logo span { color: var(--pink); }
.footer-links { font-size: 11px; color: var(--dim); line-height: 1.9; }
.footer-links a { color: var(--dim); text-decoration: none; }
