/* AI Content Builder — sales site. Shared stylesheet for all four variants.
   Light + dark via prefers-color-scheme. One accent (signal-orange), cool ink
   neutrals, serif body / sans headlines / mono utility. */

:root {
  --ground: #FBFAF8;
  --surface: #FFFFFF;
  --ink: #16181D;
  --slate: #5A6270;
  --muted: #7C8290;
  --hairline: #E4E1DA;
  --accent: #D8461B;
  --accent-soft: rgba(216, 70, 27, 0.10);
  --good: #2E7D5B;
  --shadow: 0 1px 2px rgba(22,24,29,.05), 0 8px 30px rgba(22,24,29,.06);
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #14161B; --surface: #1C1F26; --ink: #E9E7E2; --slate: #B4BAC5;
    --muted: #9AA0AB; --hairline: #2A2E37; --accent: #FF6A3D;
    --accent-soft: rgba(255,106,61,.12); --good: #4FB286;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 10px 34px rgba(0,0,0,.35);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.page { padding: 0 24px 96px; }
.wrap { max-width: 680px; margin: 0 auto; }

.eyebrow {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .10em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 8px; margin: 0 0 14px;
}
.eyebrow::before { content: ">"; color: var(--accent); font-weight: 700; }

h1 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(34px, 6.4vw, 53px); line-height: 1.03;
  letter-spacing: -0.022em; text-wrap: balance; margin: 0 0 22px;
}
h1 .hl { color: var(--accent); }
.subhead {
  font-family: var(--sans); font-weight: 450;
  font-size: clamp(18px, 2.6vw, 21px); line-height: 1.4;
  color: var(--slate); margin: 0 0 32px; text-wrap: pretty;
}
p { margin: 0 0 18px; }
.lead p:first-child::first-letter {
  font-family: var(--sans); font-weight: 800; font-size: 4.8em; line-height: .70;
  float: left; padding: 8px 14px 0 0; color: var(--accent);
}

header.hero { padding: 44px 0 38px; text-align: center; }
header.hero .eyebrow { justify-content: center; }
header.hero .hero-cta-eyebrow { margin-top: -14px; }
section { margin-bottom: 48px; }

/* CTA */
.cta {
  display: inline-block; font-family: var(--mono); font-size: 15px; font-weight: 600;
  letter-spacing: .02em; color: #fff; background: var(--accent);
  border: none; border-radius: 10px; padding: 16px 34px; text-decoration: none;
  cursor: pointer; transition: transform .12s ease, filter .12s ease;
}
.cta:hover { filter: brightness(1.06); transform: translateY(-1px); }
.cta:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.cta-sub { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--muted); margin-top: 14px; text-transform: uppercase; }

/* proof strip */
.proof-cap { font-family: var(--sans); font-size: 15px; color: var(--muted); margin: 14px 0 0; text-align: center; }
/* video band breaks out wider than the reading column */
.proof-section { width: min(960px, calc(100vw - 40px)); margin-left: 50%; transform: translateX(-50%); }
.proof {
  display: grid; grid-auto-flow: column; grid-auto-columns: 172px; gap: 14px;
  overflow-x: auto; padding: 4px 2px 14px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
/* desktop: fit all five as an equal grid, no scrollbar */
@media (min-width: 640px) {
  .proof {
    grid-auto-flow: row;
    grid-template-columns: repeat(5, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
  }
}
.clip {
  scroll-snap-align: start; aspect-ratio: 9 / 16; border-radius: 12px;
  position: relative; overflow: hidden; border: 1px solid var(--hairline);
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; text-decoration: none;
}
.clip video, .clip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.clip .grad { position: absolute; inset: 0; z-index: 0; }
.clip .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 42px; height: 42px; border-radius: 50%; z-index: 1;
  background: rgba(255,255,255,.16);
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4);
}
.clip .play::after { content: ""; border-left: 12px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
.clip .badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: var(--mono); font-size: 10px; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.28);
  padding: 3px 8px; border-radius: 6px;
}
a.clip { transition: transform .12s ease; }
a.clip:hover { transform: translateY(-3px); }
a.clip:hover .play { background: rgba(255,255,255,.30); }
a.clip:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.clip .meta { position: relative; z-index: 1; padding: 12px; background: linear-gradient(transparent, rgba(0,0,0,.55)); }
.clip .meta .t { display: block; font-family: var(--sans); font-weight: 700; font-size: 13px; line-height: 1.25; }
.clip .meta .s { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .05em; opacity: .85; margin-top: 4px; text-transform: uppercase; }
.c1 .grad { background: linear-gradient(150deg, #1f6f43, #0c2b1a); }
.c2 .grad { background: linear-gradient(150deg, #2a3b7a, #0d1230); }
.c3 .grad { background: linear-gradient(150deg, #7a2a4d, #2a0d1c); }
.c4 .grad { background: linear-gradient(150deg, #8a4a12, #2b1705); }
.c5 .grad { background: linear-gradient(150deg, #275f6e, #0a2128); }

/* generic bulleted list */
ul.plain { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
ul.plain li { position: relative; padding-left: 26px; }
ul.plain li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); opacity: .85; }
ul.plain li b { font-family: var(--sans); font-weight: 700; }

/* numbered steps */
ol.steps { list-style: none; counter-reset: s; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
ol.steps li {
  counter-increment: s; display: grid; grid-template-columns: 52px 1fr; gap: 18px;
  align-items: start; padding: 18px 0; border-top: 1px solid var(--hairline);
}
ol.steps li:last-child { border-bottom: 1px solid var(--hairline); }
ol.steps li::before {
  content: counter(s, decimal-leading-zero); font-family: var(--mono);
  font-size: 14px; font-weight: 600; color: var(--accent); padding-top: 4px; font-variant-numeric: tabular-nums;
}
ol.steps li b { font-family: var(--sans); font-weight: 700; }

/* fit / not-fit */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.fit-card { background: var(--surface); border: 1px solid var(--hairline); border-radius: 10px; padding: 22px; }
.fit-card .tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.fit-card.yes .tag { color: var(--good); }
.fit-card.no .tag { color: var(--muted); }
.fit-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-family: var(--sans); font-size: 16px; line-height: 1.45; color: var(--slate); }
.fit-card li { padding-left: 22px; position: relative; }
.fit-card.yes li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 700; }
.fit-card.no li::before { content: "✕"; position: absolute; left: 0; color: var(--muted); }
@media (max-width: 560px) { .fit-grid { grid-template-columns: 1fr; } }

/* what you get */
.inside { background: var(--surface); border: 1px solid var(--hairline); border-radius: 12px; padding: 8px 26px; margin-top: 22px; }
.inside-row { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--hairline); }
.inside-row:last-child { border-bottom: none; }
.inside-row .what { font-family: var(--sans); font-size: 16.5px; }
.inside-row .what b { font-weight: 700; }
.inside-row .what span { display: block; color: var(--muted); font-size: 14.5px; margin-top: 2px; }
.inside-row .val { font-family: var(--mono); font-size: 13px; color: var(--muted); white-space: nowrap; }

/* offer / price */
.offer { background: var(--surface); border: 1px solid var(--hairline); border-radius: 14px; box-shadow: var(--shadow); padding: 34px 30px 32px; text-align: center; margin-top: 24px; }
.founder-badge { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); border-radius: 999px; padding: 6px 14px; margin-bottom: 18px; }
.price { font-family: var(--mono); display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 8px; }
.price .was { font-size: 22px; color: var(--muted); text-decoration: line-through; }
.price .amt { font-size: 56px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
.price .unit { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.offer .terms { font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--muted); text-transform: uppercase; margin: 0 0 22px; }
.offer .anchor-note { font-family: var(--sans); font-size: 15px; color: var(--slate); max-width: 44ch; margin: 18px auto 0; line-height: 1.5; }

/* faq */
.faq { display: flex; flex-direction: column; gap: 20px; margin-top: 22px; }
.faq .q { font-family: var(--sans); font-weight: 700; font-size: 17px; margin: 0 0 4px; }
.faq .a { font-family: var(--sans); font-weight: 400; font-size: 16.5px; color: var(--slate); margin: 0; line-height: 1.5; }

/* legal pages */
.legal { padding-top: 40px; }
.legal-back { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); text-decoration: none; }
.legal-back:hover { color: var(--accent); }
.legal h1 { font-size: clamp(30px, 5vw, 40px); margin: 20px 0 6px; }
.legal .legal-date { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin: 0 0 32px; }
.legal h2 { font-family: var(--sans); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; margin: 30px 0 8px; }
.legal p { font-size: 16.5px; line-height: 1.6; color: var(--slate); }
.legal .site { margin-top: 44px; }
.legal .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.legal .legal-links a { font-family: var(--sans); font-size: 14px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

/* lightbox / video modal */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(8,9,12,.82); }
.lightbox-inner { position: relative; z-index: 1; width: min(90vw, 420px); }
.lightbox-frame { position: relative; aspect-ratio: 9 / 16; background: #000; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 70px rgba(0,0,0,.55); }
.lightbox-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox-close {
  position: absolute; top: -12px; right: -12px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: #fff; color: #111; font-size: 26px; line-height: 38px; text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.lightbox-close:hover { background: #f0f0f0; }
.lightbox-close:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
@media (max-width: 480px) { .lightbox-close { top: 8px; right: 8px; } }

/* footer */
footer.site { border-top: 1px solid var(--hairline); padding-top: 28px; }
footer.site p { font-family: var(--sans); font-size: 13.5px; color: var(--muted); line-height: 1.55; }
footer.site .legal { display: flex; gap: 18px; margin-top: 12px; flex-wrap: wrap; }
footer.site a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

h2.section-h { font-family: var(--sans); font-weight: 750; font-size: 0; height: 0; margin: 0; overflow: hidden; } /* eyebrows carry the labels; keep an a11y h2 */

@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }
