/* ============================================================
   AKURU FOUNDRY - landing page (v2)
   Single self-contained file. Drop into any stack.
   Palette derived from the product's own status system:
   warm ochre brand accent (Made in WA), with green/amber
   reserved for the assurance report's semantic states.

   v2 structure changes vs v1:
   - The "Describe it" prompt is the star of the hero.
   - The deploy report card is demoted to a below-the-fold payoff.
   - Hero prompt and waitlist are ONE progressive form: idea first,
     then reveal name / email / mobile + a multi-select of goals.
   - Content is visible by default; scroll animation is a JS-only
     enhancement (nothing is hidden without JS).
   ============================================================ */

:root{
  --ink:        #0B0C0F;
  --ink-2:      #0E1014;
  --surface:    #15181E;
  --surface-2:  #1B1F27;
  --line:       rgba(255,255,255,0.09);
  --line-solid: #24282F;

  --text:       #ECEDEF;
  --text-dim:   #9BA1AA;
  --text-faint: #626973;

  --accent:     #ED8F5C;   /* warm apricot - brand */
  --accent-hi:  #F2A776;
  --accent-soft:rgba(237,143,92,0.13);

  --pass:       #5FB98A;   /* assurance: passed */
  --pass-soft:  rgba(95,185,138,0.12);
  --flag:       #E8B24C;   /* assurance: flagged */
  --flag-soft:  rgba(232,178,76,0.12);

  --maxw: 1160px;
  --pad: clamp(20px, 5vw, 40px);
  --section-y: clamp(76px, 10vw, 132px);
  --radius: 14px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body{
  background:var(--ink);
  color:var(--text);
  font-family:'Inter', system-ui, sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* ambient warm glow behind the hero */
body::before{
  content:"";
  position:fixed;
  top:-32vh; left:50%;
  width:120vw; height:90vh;
  transform:translateX(-50%);
  background:radial-gradient(60% 55% at 50% 30%, rgba(237,143,92,0.10), transparent 70%);
  pointer-events:none; z-index:0;
}

.wrap{ max-width:var(--maxw); margin:0 auto; padding-inline:var(--pad); position:relative; z-index:1; }

h1,h2,h3{ font-family:'Fraunces', Georgia, serif; font-weight:500; letter-spacing:-0.01em; line-height:1.08; }
a{ color:inherit; text-decoration:none; }

.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.72rem; font-weight:500;
  letter-spacing:0.2em; text-transform:uppercase;
  color:var(--accent);
  display:inline-flex; align-items:center; gap:9px;
}
.eyebrow::before{ content:""; width:22px; height:1px; background:var(--accent); opacity:0.6; }

.lead{ color:var(--text-dim); font-size:clamp(1.02rem,1.6vw,1.15rem); max-width:60ch; }

/* ---- buttons ---- */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  font-family:'Inter',sans-serif; font-weight:600; font-size:0.95rem;
  padding:12px 20px; border-radius:10px; cursor:pointer;
  border:1px solid transparent; transition:.18s ease; white-space:nowrap;
}
.btn-primary{ background:var(--accent); color:#160b04; }
.btn-primary:hover{ background:var(--accent-hi); transform:translateY(-1px); }
.btn-ghost{ background:transparent; color:var(--text); border-color:var(--line-solid); }
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }

/* ============================ NAV ============================ */
header.nav{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid transparent;
  transition:background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
header.nav.scrolled{
  background:rgba(11,12,15,0.72);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height:66px; }
.brand{ display:flex; align-items:center; gap:10px; font-family:'Fraunces',Georgia,serif; font-weight:600; font-size:1.15rem; letter-spacing:0; }
.brand .mark{ width:26px; height:26px; flex:none; }
.brand small{ color:var(--text-faint); font-weight:400; font-family:'IBM Plex Mono',monospace; font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{ color:var(--text-dim); font-size:0.9rem; transition:.15s; }
.nav-links a:hover{ color:var(--text); }
.nav-cta{ display:flex; align-items:center; gap:14px; }

/* ============================ HERO ============================ */
/* Prompt-first: a single centred column, the prompt is the star. */
.hero{ padding-top:clamp(56px,9vw,104px); padding-bottom:clamp(56px,8vw,96px); text-align:center; }
.hero .wrap{ display:flex; flex-direction:column; align-items:center; }
.hero .eyebrow{ justify-content:center; }
.hero h1{ font-size:clamp(2.4rem,6vw,4.4rem); margin:22px 0 0; max-width:16ch; }
.hero h1 .warm{ color:var(--accent); }
.hero .lead{ margin:22px auto 0; text-align:center; }

/* THE STAR: describe-it prompt / progressive form */
.foundry-form{ width:100%; max-width:720px; margin:40px auto 0; text-align:left; }
.prompt{
  /* Lifted off the body with more contrast than the other surfaces so the
     input reads as the single obvious thing to interact with, plus a faint
     always-on accent ring to pull the eye before any focus. */
  background:#1D222B; border:1px solid #333A45;
  border-radius:18px; padding:18px; transition:.2s ease;
  box-shadow:0 0 0 3px rgba(237,143,92,0.07), 0 30px 80px -46px rgba(0,0,0,0.95);
}
.prompt:focus-within{ border-color:var(--accent); background:#20262F; box-shadow:0 0 0 4px var(--accent-soft), 0 30px 80px -46px rgba(0,0,0,0.95); }
.prompt-head{ display:flex; align-items:center; gap:9px; margin:2px 6px 12px; font-family:'IBM Plex Mono',monospace; font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--accent); }
.prompt-head .dot{ width:7px;height:7px;border-radius:50%;background:var(--accent);box-shadow:0 0 8px var(--accent); }
.prompt-row{ display:flex; gap:12px; align-items:flex-end; }
.prompt textarea{
  flex:1; background:transparent; border:none; resize:none; color:var(--text);
  font-family:'Inter',sans-serif; font-size:clamp(1.02rem,1.6vw,1.16rem); line-height:1.5; padding:8px 8px;
  min-height:58px; max-height:180px;
}
.prompt textarea:focus{ outline:none; }
.prompt textarea::placeholder{ color:var(--text-faint); }
.prompt-send{
  flex:none; width:52px; height:52px; border-radius:12px; border:none; cursor:pointer;
  background:var(--accent); color:#160b04; font-size:1.35rem; display:grid; place-items:center;
  transition:.18s ease;
}
.prompt-send:hover{ background:var(--accent-hi); transform:translateY(-1px); }
.prompt-help{ margin-top:12px; font-size:0.86rem; color:var(--text-faint); padding-inline:6px; }
.prompt-help b{ color:var(--text-dim); font-weight:500; }

/* step 2: revealed after the idea is entered */
.ff-step2{ display:none; margin-top:16px; padding:20px; background:var(--surface); border:1px solid var(--line-solid); border-radius:18px; }
.foundry-form.expanded .ff-step2{ display:block; animation:ff-in .35s ease; }
@keyframes ff-in{ from{ opacity:0; transform:translateY(8px);} to{ opacity:1; transform:none;} }
.ff-step2-head{ font-family:'Fraunces',Georgia,serif; font-size:1.25rem; font-weight:500; }
.ff-step2-sub{ color:var(--text-dim); font-size:0.9rem; margin-top:6px; margin-bottom:18px; }
.ff-idea-echo{ display:flex; gap:10px; align-items:flex-start; margin-bottom:20px; padding:12px 14px; border-radius:11px; background:var(--accent-soft); border:1px solid rgba(237,143,92,0.28); font-size:0.9rem; color:#f0dcc9; }
.ff-idea-echo .lbl{ font-family:'IBM Plex Mono',monospace; font-size:0.62rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--accent); flex:none; margin-top:3px; }
.ff-idea-echo .edit{ margin-left:auto; flex:none; font-size:0.78rem; color:var(--accent); cursor:pointer; border:none; background:none; font-family:'IBM Plex Mono',monospace; }

.ff-fields{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.ff-field{ display:flex; flex-direction:column; }
.ff-field.full{ grid-column:1 / -1; }
.ff-field label{ font-family:'IBM Plex Mono',monospace; font-size:0.68rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-dim); margin-bottom:8px; }
.ff-field input{
  width:100%; background:var(--ink); border:1px solid var(--line-solid); border-radius:10px;
  padding:12px 14px; color:var(--text); font-family:'Inter',sans-serif; font-size:0.98rem; transition:.15s;
}
.ff-field input:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-soft); }

/* multi-select goal chips */
.ff-goals{ margin-top:18px; }
.ff-goals > .lbl{ display:block; font-family:'IBM Plex Mono',monospace; font-size:0.68rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-dim); margin-bottom:10px; }
.chips{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{ position:relative; }
.chip input{ position:absolute; opacity:0; width:0; height:0; }
.chip span{
  display:inline-flex; align-items:center; gap:8px; cursor:pointer;
  padding:10px 15px; border-radius:40px; border:1px solid var(--line-solid);
  background:var(--surface-2); color:var(--text-dim); font-size:0.9rem; transition:.15s ease;
}
.chip span::before{ content:""; width:15px; height:15px; border-radius:5px; border:1.5px solid var(--text-faint); flex:none; transition:.15s; }
.chip input:checked + span{ border-color:var(--accent); color:var(--text); background:var(--accent-soft); }
.chip input:checked + span::before{ background:var(--accent); border-color:var(--accent); box-shadow:inset 0 0 0 2px var(--surface-2); }
.chip input:focus-visible + span{ outline:2px solid var(--accent); outline-offset:2px; }

/* single-select variant (radio-style): same pills, but a round indicator so it
   reads as pick-one, distinct from the square-checkbox multi-select goals. */
.chips.single .chip span::before{ border-radius:50%; }

.ff-submit{ width:100%; justify-content:center; padding:15px; font-size:1rem; margin-top:22px; }
.ff-fine{ margin-top:13px; font-size:0.78rem; color:var(--text-faint); text-align:center; }

/* success state (replaces the form contents) */
.ff-success{ display:none; text-align:center; padding:30px 8px; background:var(--surface); border:1px solid var(--line-solid); border-radius:18px; }
.foundry-form.done .prompt,
.foundry-form.done .ff-step2,
.foundry-form.done .prompt-help{ display:none; }
.foundry-form.done .ff-success{ display:block; animation:ff-in .35s ease; }
.ff-success .big{ width:58px;height:58px;border-radius:50%;background:var(--pass-soft);color:var(--pass);display:grid;place-items:center;font-size:1.6rem;margin:0 auto 18px; }
.ff-success h3{ font-size:1.4rem; margin-bottom:10px; }
.ff-success p{ color:var(--text-dim); font-size:0.95rem; max-width:46ch; margin:0 auto; }

.trust{ margin-top:30px; display:flex; flex-wrap:wrap; justify-content:center; gap:8px 22px; align-items:center; font-family:'IBM Plex Mono',monospace; font-size:0.76rem; letter-spacing:0.06em; color:var(--text-faint); }
.trust span{ display:inline-flex; align-items:center; gap:7px; }
.trust .tick{ color:var(--pass); }

/* ============================ SECTIONS ============================ */
section{ padding-block:var(--section-y); position:relative; }
.section-alt{ background:var(--ink-2); border-block:1px solid var(--line); }
.section-head{ max-width:62ch; }
.section-head.center{ margin:0 auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head h2{ font-size:clamp(1.85rem,3.6vw,2.85rem); margin:18px 0 0; }
.section-head .lead{ margin-top:18px; }
.section-head.center .lead{ margin-inline:auto; }

/* ---- the payoff: deploy report card (demoted from hero) ---- */
.payoff-grid{ display:grid; grid-template-columns:0.92fr 1.08fr; gap:clamp(32px,5vw,64px); align-items:center; margin-top:8px; }
.report{
  background:linear-gradient(180deg, var(--surface) 0%, #12141a 100%);
  border:1px solid var(--line-solid); border-radius:16px; overflow:hidden;
  box-shadow:0 30px 80px -40px rgba(0,0,0,0.9);
}
.report-top{ display:flex; align-items:center; gap:12px; padding:14px 16px; border-bottom:1px solid var(--line); background:rgba(255,255,255,0.015); }
.lights{ display:flex; gap:6px; }
.lights i{ width:10px;height:10px;border-radius:50%; background:#2c3038; display:block; }
.report-title{ font-family:'IBM Plex Mono',monospace; font-size:0.78rem; color:var(--text-dim); flex:1; }
.report-title b{ color:var(--text); font-weight:500; }
.pill{ font-family:'IBM Plex Mono',monospace; font-size:0.66rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--accent); border:1px solid var(--accent-soft); background:var(--accent-soft); padding:3px 8px; border-radius:20px; }
.report-body{ padding:8px 6px; }
.check{
  display:flex; gap:12px; align-items:flex-start; padding:11px 12px; border-radius:9px;
}
.js .check{ opacity:0; transform:translateY(6px); transition:opacity .45s ease, transform .45s ease; }
.js .check.show{ opacity:1; transform:none; }
.check .ico{ flex:none; width:22px; height:22px; border-radius:50%; display:grid; place-items:center; font-size:0.72rem; margin-top:1px; }
.check.ok .ico{ background:var(--pass-soft); color:var(--pass); }
.check.warn{ background:var(--flag-soft); border:1px solid rgba(232,178,76,0.22); }
.check.warn .ico{ background:rgba(232,178,76,0.18); color:var(--flag); }
.check p{ font-size:0.9rem; line-height:1.5; color:var(--text-dim); }
.check.warn p{ color:#e7dcc4; }
.check p b{ color:var(--text); font-weight:600; }
.report-foot{ padding:12px 16px; border-top:1px solid var(--line); font-family:'IBM Plex Mono',monospace; font-size:0.72rem; color:var(--text-faint); display:flex; justify-content:space-between; }

/* problem / fears */
.fears{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:52px; }
.fear{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:26px 24px; transition:.2s ease; }
.fear:hover{ border-color:var(--line-solid); transform:translateY(-2px); }
.fear .k{ font-family:'IBM Plex Mono',monospace; font-size:0.7rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--accent); }
.fear h3{ font-size:1.18rem; margin:14px 0 10px; }
.fear p{ color:var(--text-dim); font-size:0.94rem; }
/* the turn: one line under the cards that lands the promise, positively,
   before the "what's built in" section spells out the how. */
.problem-turn{ margin-top:40px; max-width:62ch; font-family:'Fraunces',Georgia,serif; font-size:clamp(1.2rem,2.3vw,1.55rem); font-weight:400; line-height:1.4; color:var(--text); }
.problem-turn b{ color:var(--accent); font-weight:600; }

/* inherit / compliant-by-default */
.inherit-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin-top:48px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.inherit{ background:var(--ink); padding:26px 24px; }
.inherit .ico{ color:var(--pass); font-size:0.85rem; display:inline-flex; align-items:center; gap:8px; font-family:'IBM Plex Mono',monospace; letter-spacing:0.05em; }
.inherit h3{ font-size:1.05rem; margin:12px 0 8px; }
.inherit p{ color:var(--text-dim); font-size:0.9rem; }
.inherit.wide{ grid-column:span 3; background:var(--surface); display:flex; gap:22px; align-items:flex-start; flex-wrap:wrap; }
.inherit.wide .body{ flex:1; min-width:260px; }
.inherit.wide .quote{ flex:1; min-width:240px; font-family:'IBM Plex Mono',monospace; font-size:0.86rem; color:var(--accent); border-left:2px solid var(--accent); padding-left:16px; line-height:1.6; }

/* the shelf / primitives */
.shelf{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:48px; }
.brick{ background:var(--surface); border:1px solid var(--line); border-radius:12px; padding:20px; transition:.2s ease; }
.brick:hover{ border-color:var(--accent); background:var(--surface-2); transform:translateY(-2px); }
.brick .name{ font-family:'IBM Plex Mono',monospace; font-size:0.9rem; color:var(--accent); font-weight:500; }
.brick p{ color:var(--text-dim); font-size:0.86rem; margin-top:10px; line-height:1.5; }

/* evidence of pull */
.pull{ text-align:center; }
.stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin:52px auto 0; max-width:820px; }
.stat .n{ font-family:'Fraunces',Georgia,serif; font-weight:500; font-size:clamp(2.6rem,6vw,3.8rem); color:var(--accent); line-height:1; letter-spacing:-0.02em; }
.stat .l{ font-family:'IBM Plex Mono',monospace; font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-faint); margin-top:12px; }
.pull-quote{ max-width:60ch; margin:44px auto 0; font-family:'Fraunces',Georgia,serif; font-size:clamp(1.2rem,2.4vw,1.5rem); font-weight:400; line-height:1.4; color:var(--text); }
.pull-quote span{ color:var(--text-faint); }

/* three ways in */
.ways{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:48px; }
.way{ border:1px solid var(--line); border-radius:var(--radius); padding:28px 24px; background:var(--surface); }
.way .t{ font-family:'IBM Plex Mono',monospace; font-size:0.7rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--text-faint); }
.way h3{ font-size:1.3rem; margin:10px 0 12px; }
.way p{ color:var(--text-dim); font-size:0.92rem; }
.way.featured{ border-color:var(--accent); background:linear-gradient(180deg, var(--accent-soft), var(--surface) 60%); }

/* jump-scroll divider into builders zone */
.jump{ text-align:center; padding-block:clamp(40px,6vw,64px); }
.jump a{
  display:inline-flex; align-items:center; gap:12px; font-family:'IBM Plex Mono',monospace;
  font-size:0.86rem; letter-spacing:0.08em; color:var(--text-dim);
  border:1px solid var(--line-solid); border-radius:40px; padding:12px 22px; transition:.2s;
}
.jump a:hover{ color:var(--accent); border-color:var(--accent); }
.jump .arw{ animation:bob 1.6s ease-in-out infinite; }
@keyframes bob{ 50%{ transform:translateY(4px);} }

/* BUILDERS ZONE - darker, mono-forward */
.builders{ background:#07080A; border-block:1px solid var(--line); }
.builders .eyebrow{ color:var(--pass); }
.builders .eyebrow::before{ background:var(--pass); }
.build-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,4vw,52px); margin-top:52px; align-items:start; }
.terminal{ background:#0c0e12; border:1px solid var(--line-solid); border-radius:12px; overflow:hidden; font-family:'IBM Plex Mono',monospace; }
.terminal .bar{ display:flex; gap:6px; padding:12px 14px; border-bottom:1px solid var(--line); }
.terminal .bar i{ width:11px;height:11px;border-radius:50%;background:#2c3038; }
.terminal .body{ padding:18px 16px; font-size:0.84rem; line-height:1.9; }
.terminal .body .c{ color:var(--text-faint); }
.terminal .body .p{ color:var(--pass); }
.terminal .body .u{ color:var(--text); }
.terminal .body .a{ color:var(--accent); }
.build-list{ display:flex; flex-direction:column; gap:22px; }
.build-item{ display:flex; gap:16px; }
.build-item .n{ font-family:'IBM Plex Mono',monospace; color:var(--pass); font-size:0.9rem; flex:none; width:24px; }
.build-item h3{ font-size:1.08rem; margin-bottom:6px; }
.build-item p{ color:var(--text-dim); font-size:0.9rem; }
.build-item code{ font-family:'IBM Plex Mono',monospace; color:var(--accent); background:var(--accent-soft); padding:1px 6px; border-radius:5px; font-size:0.82em; }

/* JOIN */
.join{ background:var(--ink-2); }
.join .section-head{ margin:0 auto 40px; text-align:center; }
.join .section-head .eyebrow{ justify-content:center; }
.join-note{ margin:24px auto 0; max-width:640px; display:flex; flex-wrap:wrap; justify-content:center; gap:8px 22px; font-family:'IBM Plex Mono',monospace; font-size:0.78rem; color:var(--text-faint); line-height:1.7; }
.join-note span.item{ display:inline-flex; align-items:center; gap:7px; }
.join-note .tick{ color:var(--pass); }

/* FOOTER */
footer{ border-top:1px solid var(--line); padding-block:44px; }
.foot-inner{ display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap; }
.foot-meta{ font-family:'IBM Plex Mono',monospace; font-size:0.74rem; color:var(--text-faint); letter-spacing:0.05em; }
.foot-meta span{ color:var(--text-dim); }

/* reveal on scroll - JS-only enhancement; visible by default without JS */
.js .reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.js .reveal.in{ opacity:1; transform:none; }

/* ---- IDEAS: below-fold inspiration carousel ----
   A bank of ideas (built in JS) shuffled into pages of one "bigger build"
   plus two "quick tools". Swipeable for more; tapping a card drops the idea
   straight into the hero prompt. Without JS, one static set is shown. */
#ideas{ scroll-margin-top:80px; }
.ideas-carousel{ position:relative; margin-top:44px; }
.ideas-track{
  display:flex; gap:0;
  overflow-x:auto; overflow-y:hidden;
  scroll-snap-type:x mandatory; scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch; scrollbar-width:none;
  padding-block:8px;
}
.ideas-track::-webkit-scrollbar{ display:none; }
.ideas-page{
  flex:0 0 100%; scroll-snap-align:start;
  display:grid; grid-template-columns:1.35fr 1fr; grid-template-rows:1fr 1fr;
  gap:16px;
}
.idea-card{
  text-align:left; cursor:pointer; font:inherit; color:var(--text); width:100%;
  background:var(--surface); border:1px solid var(--line); border-radius:14px;
  padding:24px 22px; display:flex; flex-direction:column; gap:11px;
  transition:.2s ease;
}
.idea-card:hover{ border-color:var(--accent); background:var(--surface-2); transform:translateY(-2px); }
.idea-card.big{
  grid-column:1; grid-row:1 / span 2; padding:28px 26px;
  background:linear-gradient(180deg, var(--accent-soft), var(--surface) 62%);
  border-color:rgba(237,143,92,0.35);
}
.idea-card.small{ grid-column:2; }
.idea-kind{ font-family:'IBM Plex Mono',monospace; font-size:0.62rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--text-faint); }
.idea-card.big .idea-kind{ color:var(--accent); }
.idea-tag{ font-family:'IBM Plex Mono',monospace; font-size:0.72rem; letter-spacing:0.06em; color:var(--text-dim); }
.idea-text{ font-family:'Fraunces',Georgia,serif; font-weight:400; line-height:1.34; color:var(--text); font-size:1.04rem; }
.idea-card.big .idea-text{ font-size:clamp(1.3rem,2.1vw,1.66rem); font-weight:500; letter-spacing:-0.01em; }
.idea-cta{ margin-top:auto; font-family:'IBM Plex Mono',monospace; font-size:0.72rem; letter-spacing:0.06em; color:var(--accent); opacity:0; transform:translateY(4px); transition:.18s ease; }
.idea-card:hover .idea-cta, .idea-card:focus-visible .idea-cta{ opacity:1; transform:none; }

/* controls live in a bottom bar (prev . dots . next), not overlaying the
   cards, so they never sit on top of a card's text at this max-width. */
.ideas-controls{ display:flex; align-items:center; justify-content:center; gap:20px; margin-top:24px; }
.ideas-nav{
  flex:none; width:42px; height:42px; border-radius:50%;
  background:var(--surface); border:1px solid var(--line-solid); color:var(--text);
  display:grid; place-items:center; cursor:pointer; font-size:1.05rem; transition:.18s ease;
}
.ideas-nav:hover{ border-color:var(--accent); color:var(--accent); transform:translateY(-1px); }
.ideas-nav[disabled]{ opacity:0.3; cursor:default; }
.ideas-nav[disabled]:hover{ border-color:var(--line-solid); color:var(--text); transform:none; }
.ideas-dots{ display:flex; justify-content:center; gap:9px; }
.ideas-dot{ width:8px; height:8px; border-radius:50%; background:var(--line-solid); border:none; padding:0; cursor:pointer; transition:.18s ease; }
.ideas-dot.active{ background:var(--accent); transform:scale(1.3); }
.ideas-swipe-hint{ display:none; }

/* above-fold nudge for people who aren't sure what to build - a proper
   invitation pill (not faint text), styled off the site's .jump divider so
   it reads as an obvious secondary action under the trust row. */
.hero-hint{
  margin-top:26px; display:inline-flex; align-items:center; gap:10px;
  font-family:'IBM Plex Mono',monospace; font-size:0.84rem; letter-spacing:0.05em;
  color:var(--text); background:var(--accent-soft);
  border:1px solid rgba(237,143,92,0.4); border-radius:40px;
  padding:11px 20px; transition:.18s ease;
}
.hero-hint:hover{ color:var(--accent); border-color:var(--accent); transform:translateY(-1px); }
.hero-hint .arw{ color:var(--accent); animation:bob 1.6s ease-in-out infinite; }

@media (max-width: 900px){
  .ideas-page{ grid-template-columns:1fr; grid-template-rows:none; }
  .idea-card.big{ grid-column:auto; grid-row:auto; }
  .idea-card.small{ grid-column:auto; }
  /* arrows stay (they're in a bottom bar, no overlap): a mouse on a narrow
     desktop can't drag a scroll-snap carousel, so the buttons are the only
     way to navigate there. Touch users get swipe + these as a bonus. */
  .ideas-swipe-hint{ display:block; text-align:center; margin-top:16px; font-family:'IBM Plex Mono',monospace; font-size:0.72rem; letter-spacing:0.08em; color:var(--text-faint); }
}
@media (max-width: 560px){
  .idea-card{ padding:20px 18px; }
  .idea-card.big{ padding:22px 20px; }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 900px){
  .payoff-grid{ grid-template-columns:1fr; }
  .build-grid{ grid-template-columns:1fr; }
  .fears, .shelf, .ways, .stats, .inherit-grid{ grid-template-columns:1fr 1fr; }
  .inherit.wide{ grid-column:span 2; }
  .nav-links{ display:none; }
}
@media (max-width: 560px){
  .fears, .shelf, .ways, .stats, .inherit-grid{ grid-template-columns:1fr; }
  .inherit.wide{ grid-column:span 1; }
  .ff-fields{ grid-template-columns:1fr; }
  .brand small{ display:none; }

  /* Mobile above-the-fold is a tighter edit: the phone screen is scarce, so
     drop the second-order compliance clause and the eyebrow, shorten the
     lead's measure, and lift the input higher up the fold. The full copy is
     still one scroll away in the payoff / inherit sections.

     The hero is sized to own exactly one screen: nav (66px) + hero = 100svh,
     with the content vertically centred in the space below the nav. `svh`
     (small viewport height) measures the fold with the browser's address/tool
     bars showing, so nothing clips on a real phone and the payoff section
     always starts cleanly below the fold. min-height (not height) lets the
     hero grow on very short screens rather than clip its content. */
  .hero{
    min-height:calc(100svh - 66px);
    display:flex; flex-direction:column; justify-content:center;
    padding-top:20px; padding-bottom:32px;
    text-align:left;
  }
  .hero .wrap{ align-items:stretch; width:100%; }
  .hero .eyebrow{ display:none; }
  .hero h1{ margin-top:0; max-width:none; }
  .hero .lead{ text-align:left; }
  .lead-more{ display:none; }
  .foundry-form{ margin-top:clamp(20px,4.5vh,30px); }
  .trust{ justify-content:flex-start; margin-top:clamp(16px,3vh,24px); }
}

/* Very short viewports (small phones, landscape): don't force a full-height
   hero that would push the prompt off-screen; let it size to content. */
@media (max-width: 560px) and (max-height: 620px){
  .hero{ min-height:0; padding-top:24px; padding-bottom:32px; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto; }
  .js .reveal{ opacity:1; transform:none; }
  .js .check{ opacity:1; transform:none; }
}

*:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; border-radius:4px; }

/* =========================================================================
   FNDY-155: classes extracted from inline style attributes
   ========================================================================= */
.inherit-wide-h3{ margin-top:0 }
.inherit-wide-p{ color:var(--text-dim); font-size:0.94rem; }