/* ==========================================================================
   Future Operator — squeeze page (dark "business" theme)
   Black + orange, clean sans type, rounded corners. Deliberately NOT a
   terminal/dev aesthetic — the target buyer is a non-technical owner, so no
   monospace body, no $ prompts, no code motifs.
   Single goal: email opt-in for the free "Operator's Map" PDF.
   ========================================================================== */

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

:root{
  --bg:#0a0a0a;            /* page background            */
  --surface:#141312;       /* cards / raised surfaces    */
  --surface-2:#1c1a17;     /* strip / secondary surface  */
  --line:#2a2723;          /* hairline borders           */
  --ink:#f5f3ee;           /* primary text               */
  --muted:#a8a29a;         /* body / secondary text      */
  --faint:#726c62;         /* labels, fine print         */
  --accent:#e07850;        /* orange accent + CTA        */
  --accent-hi:#ef8a63;     /* hover                      */
  --accent-tint:rgba(224,120,80,0.12);
  --on-accent:#0a0a0a;     /* text on the orange button  */

  --display:'Space Grotesk', system-ui, -apple-system, sans-serif;
  --sans:'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --r:10px; --r-lg:16px;
  --gutter:clamp(1.25rem,5vw,2.5rem);
  --section-y:clamp(3.5rem,8vw,5.5rem);
  --maxw:1120px;
}

html{ -webkit-text-size-adjust:100%; }
body{
  font-family:var(--sans);
  background:var(--bg); color:var(--ink);
  line-height:1.6; font-size:16px;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
::selection{ background:var(--accent); color:var(--on-accent); }
img{ max-width:100%; display:block; }

.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding-inline:var(--gutter); }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* --- nav ------------------------------------------------------------------ */
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding-block:clamp(1.1rem,4vw,1.6rem);
}
.logo{
  font-family:var(--display); font-weight:700; font-size:1.15rem;
  letter-spacing:-0.02em; display:inline-flex; align-items:center;
  color:inherit; text-decoration:none;
}
.logo::before{
  content:""; width:0.66em; height:0.66em; border-radius:3px;
  background:var(--accent); margin-right:0.55em;
}

/* --- shared type ---------------------------------------------------------- */
.badge{
  display:inline-block; font-size:0.72rem; font-weight:600;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--muted);
  border:1px solid var(--line); border-radius:999px; padding:7px 15px;
  background:var(--surface);
}
.eyebrow{
  font-size:0.75rem; font-weight:700; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--accent); margin-bottom:1rem;
}
h1{
  font-family:var(--display); font-weight:700;
  font-size:clamp(2.1rem,5.4vw,3.5rem); line-height:1.05;
  letter-spacing:-0.02em; margin:1.25rem 0 1.1rem;
}
h1 .accent{ color:var(--accent); }
h2{
  font-family:var(--display); font-weight:700;
  font-size:clamp(1.7rem,4vw,2.6rem); line-height:1.1;
  letter-spacing:-0.02em; margin-bottom:1rem;
}
h3{
  font-family:var(--display); font-weight:600;
  font-size:clamp(1.3rem,3vw,1.7rem); line-height:1.15;
  letter-spacing:-0.01em; margin-bottom:1rem;
}
.lead{ font-size:clamp(1rem,2vw,1.15rem); color:var(--muted); max-width:60ch; }

/* --- hero ----------------------------------------------------------------- */
.hero{ padding-top:clamp(2rem,5vw,3.5rem); padding-bottom:var(--section-y); }
.hero-grid{ max-width:760px; margin-inline:auto; text-align:center; }
.hero-copy h1{ max-width:20ch; margin:1.25rem auto 1.1rem; }
.hero .subhead{
  font-size:clamp(1rem,2.1vw,1.175rem); color:var(--muted);
  max-width:56ch; margin:0 auto 1.75rem;
}
.hero .signup{ margin-inline:auto; }
.hero .form-note, .hero .reassure-line{ margin-inline:auto; }

/* centered signup block under the whole hero (copy + mock) */
.hero-signup{ max-width:560px; margin:clamp(2.25rem,5vw,3.25rem) auto 0; text-align:center; }
.hero-signup .signup{ margin-inline:auto; }
.hero-signup .form-note, .hero-signup .reassure-line{ margin-inline:auto; }

/* hero cover image */
.hero-visual{ margin-top:clamp(2rem,5vw,2.75rem); }
.hero-visual img{
  display:block; width:100%; max-width:290px; height:auto; margin-inline:auto;
  border-radius:12px; border:1px solid var(--line);
  box-shadow:0 30px 60px -28px rgba(0,0,0,.85);
}

/* signup form */
.signup{ display:flex; flex-direction:column; gap:10px; max-width:520px; }
.signup input{
  width:100%; padding:15px 16px; font-size:1rem; font-family:inherit;
  color:#171512; background:#fff;
  border:1px solid #d9d2c4; border-radius:var(--r);
}
.signup input::placeholder{ color:#8a8276; }
.signup input:focus-visible{
  outline:none; border-color:var(--accent);
  box-shadow:0 0 0 3px var(--accent-tint);
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:15px 24px; font-size:1rem; font-weight:600;
  font-family:inherit; color:var(--on-accent); background:var(--accent);
  border:1px solid var(--accent); border-radius:var(--r);
  cursor:pointer; white-space:nowrap;
  transition:background .15s ease, transform .12s ease;
}
.btn:hover{ background:var(--accent-hi); border-color:var(--accent-hi); }
.btn:active{ transform:translateY(1px); }
.btn:focus-visible{ outline:3px solid var(--accent-tint); outline-offset:2px; }

.form-note{
  max-width:520px; margin-top:14px; padding:11px 14px; font-size:0.85rem;
  color:var(--ink); background:var(--accent-tint);
  border:1px solid var(--accent); border-radius:var(--r);
}
.form-note:empty{ display:none; }
.form-note.is-error{ border-color:#e0564e; background:rgba(224,86,78,.12); color:#f2cdc9; }

/* legal / long-form pages (e.g. /privacy) */
.legal-page{ padding-top:var(--section-y); padding-bottom:var(--section-y); }
.legal{ max-width:720px; margin-inline:auto; }
.legal h1{ font-family:var(--display); font-weight:700; font-size:clamp(1.8rem,4vw,2.4rem); letter-spacing:-0.02em; margin-bottom:.35rem; }
.legal .updated{ color:var(--faint); font-size:.85rem; margin-bottom:2rem; }
.legal h2{ font-family:var(--display); font-weight:600; font-size:1.15rem; margin:2rem 0 .6rem; }
.legal p, .legal li{ color:var(--muted); font-size:.98rem; line-height:1.7; }
.legal p{ margin-bottom:1rem; }
.legal strong{ color:var(--ink); font-weight:600; }
.legal ul{ margin:0 0 1rem 1.2rem; }
.legal li{ margin-bottom:.4rem; }
.legal a{ color:var(--accent); text-underline-offset:2px; }
.reassure-line{ font-size:0.85rem; color:var(--faint); margin-top:12px; max-width:52ch; }

/* long-form FOMO headline needs a tighter clamp than the display default */
.hero-h1-long{ font-size:clamp(1.75rem,4.2vw,2.9rem); line-height:1.12; max-width:24ch; }
.hero-copy .hero-h1-long{ margin:1.25rem auto 1.1rem; }

/* "who's behind this" quiet line (proof, relocated out of the hero) */
.behind{ padding-block:clamp(2rem,5vw,3rem); }
.behind-line{
  max-width:62ch; margin-inline:auto; text-align:center;
  color:var(--muted); font-size:0.98rem; line-height:1.7;
}

/* a page from the Map in a browser frame (hero visual) — LIGHT theme so it
   pops off the black page; sized to balance the hero copy column */
.mock{
  --mk-bg:#fbf8f2;      /* paper */
  --mk-chrome:#efe9de;  /* browser bar */
  --mk-line:#e3dcce;    /* hairlines */
  --mk-ink:#171512;     /* headings */
  --mk-muted:#6f695e;   /* body text */
  max-width:640px; margin-inline:auto; border:1px solid var(--mk-line);
  border-radius:var(--r-lg); overflow:hidden; background:var(--mk-bg);
  box-shadow:0 24px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
}
.mock-bar{
  display:flex; align-items:center; gap:6px; padding:12px 14px;
  background:var(--mk-chrome); border-bottom:1px solid var(--mk-line);
}
.mock-bar span{ width:10px; height:10px; border-radius:50%; background:#d9d0bf; }
.mock-bar em{
  font-style:normal; color:#8a8276; font-size:.74rem; margin-inline:auto;
  letter-spacing:.02em;
}
.mock-body{ padding:clamp(1.25rem,3.5vw,1.75rem); text-align:left; }
.mock-eyebrow{
  font-size:.64rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--accent); margin-bottom:.4rem;
}
.mock-title{
  font-family:var(--display); font-weight:700; font-size:1.15rem; color:var(--mk-ink);
  letter-spacing:-0.01em; margin-bottom:1rem;
}
.mock-flow{ display:flex; align-items:stretch; gap:6px; }
.mock-card{
  flex:1; border:1px solid var(--mk-line); border-radius:8px; background:#fff;
  padding:.65rem .65rem; min-width:0;
}
.mock-card.is-strategist{ border-color:var(--accent); background:rgba(224,120,80,.06); }
.mock-role{ font-weight:700; font-size:.72rem; color:var(--mk-ink); margin-bottom:3px; }
.mock-card.is-strategist .mock-role{ color:#c2603c; }
.mock-does{ color:var(--mk-muted); font-size:.64rem; line-height:1.4; }
.mock-arrow{ align-self:center; color:var(--accent); font-size:.85rem; flex-shrink:0; }
.mock-trust{
  margin-top:12px; border:1px solid var(--accent); border-left-width:5px;
  border-radius:8px; background:rgba(224,120,80,.08); padding:.65rem .75rem;
  font-size:.72rem; color:var(--mk-muted);
}
.mock-trust b{ color:#c2603c; text-transform:uppercase; letter-spacing:.08em; font-size:.64rem; }
.mock-blocks{
  display:flex; align-items:center; gap:7px; flex-wrap:wrap;
  margin-top:14px; padding-top:14px; border-top:1px solid var(--mk-line);
}
.mock-blocks-label{
  flex-basis:100%; font-size:.62rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:#8a8276;
}
.mock-blocks .chip{
  border:1px solid var(--mk-line); background:#fff; border-radius:999px;
  padding:4px 12px; font-size:.68rem; font-weight:600; color:var(--mk-ink);
}
.mock-blocks .sep{ color:var(--accent); font-size:.75rem; }
.mock-caption{
  margin-top:14px; color:var(--faint); font-size:.85rem; text-align:center;
}
@media (max-width:560px){
  .mock-flow{ flex-wrap:wrap; }
  .mock-card{ flex:1 1 40%; }
  .mock-arrow{ display:none; }
  .mock-rail{ display:none; }
}

/* hero cover image removed for now — PDF art to be redone */

/* --- sections ------------------------------------------------------------- */
.section{ padding-block:var(--section-y); }
.section.alt{ background:var(--surface); border-block:1px solid var(--line); }
.section > .wrap > .eyebrow{ text-align:center; }
.section > .wrap > h2{ text-align:center; max-width:20ch; margin-inline:auto; }
.section > .wrap > .lead{ text-align:center; margin:0 auto 0; }

/* the shift — two concept cards */
.cards{ display:grid; grid-template-columns:1fr; gap:16px; max-width:900px; margin:clamp(2rem,5vw,3rem) auto 0; }
.card{ border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(1.5rem,4vw,2rem); background:var(--surface); }
.section.alt .card{ background:var(--surface-2); }
.card.new{ border-color:var(--accent); }
.card-label{ font-size:0.72rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--faint); margin-bottom:0.5rem; }
.card.new .card-label{ color:var(--accent); }
.card h3{ margin-bottom:1.1rem; }
.card ul{ list-style:none; }
.card li{ position:relative; padding:6px 0 6px 26px; color:var(--muted); font-size:0.97rem; line-height:1.5; }
.card li::before{ content:""; position:absolute; left:2px; top:14px; width:7px; height:7px; border-radius:50%; background:var(--faint); }
.card.new li::before{ background:var(--accent); }

/* what you get */
.get-grid{ display:grid; grid-template-columns:1fr; gap:clamp(2rem,5vw,3rem); max-width:1000px; margin:clamp(2rem,5vw,3rem) auto 0; align-items:start; }
.ticks{ list-style:none; margin:1.25rem 0; }
.ticks li{ position:relative; padding:8px 0 8px 30px; color:var(--ink); font-size:1rem; line-height:1.5; }
.ticks li::before{
  content:"✓"; position:absolute; left:0; top:8px; width:20px; height:20px;
  color:var(--accent); font-weight:700; font-size:0.9rem;
}
.specs{ font-size:0.85rem; color:var(--faint); letter-spacing:0.02em; }

.get-preview{ display:flex; flex-direction:column; gap:clamp(1.5rem,3.5vw,2.25rem); }
.get-preview figure{ margin:0; }
.get-preview img{ max-width:480px; width:100%; height:auto; margin-inline:auto; border-radius:8px; border:1px solid var(--line); box-shadow:0 20px 50px -24px rgba(0,0,0,.8); }
.get-preview figcaption{ font-size:0.78rem; color:var(--faint); text-transform:uppercase; letter-spacing:0.1em; margin:0.7rem 0 0; text-align:center; }
.ba-arrow{ text-align:center; font-size:0.8rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--accent); margin:1.25rem 0; }

/* reassurance strip */
.strip{ background:var(--surface-2); border-block:1px solid var(--line); padding-block:clamp(2rem,5vw,3rem); }
.strip-grid{ display:grid; grid-template-columns:1fr; gap:clamp(1.25rem,3vw,2rem); }
.strip-item{ font-size:0.98rem; color:var(--muted); line-height:1.5; padding-left:20px; position:relative; }
.strip-item::before{ content:""; position:absolute; left:0; top:9px; width:8px; height:8px; border-radius:2px; background:var(--accent); }
.strip-item b{ color:var(--ink); font-weight:600; }

/* second CTA */
.cta-inner{ text-align:center; max-width:640px; margin-inline:auto; }
.cta-inner .signup{ margin:1.75rem auto 0; }
.cta-inner .form-note,
.cta-inner .reassure-line{ margin-inline:auto; text-align:center; }

/* footer */
footer{ padding-block:clamp(2.5rem,6vw,3.5rem); border-top:1px solid var(--line); text-align:center; }
.foot-logo{ font-family:var(--display); font-weight:700; font-size:1.05rem; letter-spacing:-0.02em; display:inline-flex; align-items:center; }
.foot-logo::before{ content:""; width:0.6em; height:0.6em; border-radius:3px; background:var(--accent); margin-right:0.5em; }
.foot-strap{ color:var(--muted); margin-top:8px; font-size:0.95rem; }
.foot-fine{ color:var(--faint); font-size:0.8rem; max-width:60ch; margin:1rem auto 0; line-height:1.6; }
.foot-fine a{ color:var(--muted); text-underline-offset:2px; }

/* ==========================================================================
   Breakpoints
   ========================================================================== */
@media (min-width:560px){
  .signup{ flex-direction:row; align-items:stretch; }
  .signup input{ flex:1; }
  .btn{ width:auto; }
  .cta-inner .signup{ max-width:520px; }
}
@media (min-width:860px){
  /* two-column hero: copy + form on the left, guide cover on the right */
  .hero-grid{
    max-width:1040px; display:grid; grid-template-columns:1.1fr 0.9fr;
    gap:clamp(2rem,5vw,4rem); align-items:center; text-align:left;
  }
  .hero-copy h1{ margin-inline:0; }
  .hero .subhead{ margin-inline:0; }
  /* the signup lives in .hero-signup below the grid and stays centered */
  .hero-visual{ margin-top:0; }
  .hero-visual img{ max-width:360px; }

  .cards{ grid-template-columns:1fr auto 1fr; align-items:stretch; }
  .cards .card{ grid-column:span 1; }
  .get-grid{ grid-template-columns:1fr 1fr; align-items:center; }
  .strip-grid{ grid-template-columns:repeat(3,1fr); }
}

/* the "vs" divider between the two concept cards on desktop */
@media (min-width:860px){
  .card-sep{ display:flex; align-items:center; justify-content:center; color:var(--accent); font-family:var(--display); font-weight:700; font-size:1.4rem; }
}
.card-sep{ display:none; }
@media (min-width:860px){ .card-sep{ display:flex; } }

@media (prefers-reduced-motion:reduce){
  *{ transition:none !important; }
  .hero-visual img{ transform:none; }
}
