/* ============================================================
   StellAurator — website theme "Starlit Gilt"
   Deep stage black · gilt edges that glow · silver structure · star glints

   The system in one line: black is the stage, GOLD is anything that acts or
   glows (buttons, live edges, the wordmark's AURATOR), SILVER is structure
   (rules, nav, plaques — the wordmark's STELL), and starlight is the sparkle.
   Tokens first; every colour and size below derives from them.
   Single-theme by design: the page paints its own ground everywhere.
   ============================================================ */
:root {
  --stage: #050609;        /* page ground: black with a breath of night blue */
  --velvet: #0B0D14;       /* panel */
  --velvet-2: #12141D;     /* raised / hover */
  --gilt: #E6C168;         /* primary gold: edges, actions */
  --candle: #F7E7B0;       /* gold highlight: hot core of a glow */
  --bullion: #9A7A2E;      /* deep gold: shadows inside gilt */
  --sterling: #C7CFD9;     /* silver: structure */
  --pewter: #6E7684;       /* muted silver: captions */
  --ivory: #F3EFE5;        /* text */
  --ash: #A3A9B4;          /* secondary text */
  --glow: 230, 193, 104;   /* gilt as rgb, for rgba() glows */
  --silver: 199, 207, 217; /* sterling as rgb */

  --font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-caps: 'Cinzel', 'Trajan Pro', 'Georgia', serif;
  --font-body: 'Instrument Sans', 'Segoe UI', system-ui, sans-serif;

  --wrap: 1120px;
  --measure: 64ch;
  --r: 2px;                /* gilded frames are square; the radius is a whisper */
  color-scheme: dark;
}

/* ---- base ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { background: var(--stage); scroll-behavior: smooth; }
body {
  margin: 0; background: var(--stage); color: var(--ivory);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--candle); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(var(--glow), .6); }
:focus-visible { outline: 2px solid var(--candle); outline-offset: 3px; }
p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

#stars { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.page { position: relative; z-index: 1; }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }

/* ---- type ------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-caps); font-weight: 500; font-size: 12px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--gilt); margin: 0 0 14px;
}
.display {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(36px, 4.4vw, 56px); line-height: 1.06; letter-spacing: -.005em;
  text-wrap: balance; margin: 0; color: var(--ivory);
}
.display em, .title em { font-style: italic; font-weight: 500; }
.title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4vw, 46px); line-height: 1.08; margin: 0; text-wrap: balance;
}
h3 { font-family: var(--font-display); font-weight: 600; font-size: 25px; line-height: 1.15; margin: 0 0 8px; }
.lede { font-size: 19px; line-height: 1.55; color: var(--ash); max-width: var(--measure); margin: 18px 0 0; }
.lede + .lede { margin-top: 12px; }
.muted { color: var(--ash); }
.small { font-size: 14px; }
.tnum { font-variant-numeric: tabular-nums; }

/* gilt text: a slow single sweep of light across the gold, then it rests */
.gilt-text {
  background: linear-gradient(100deg, var(--bullion) 0%, var(--gilt) 32%, var(--candle) 47%, #FFF8DC 51%, var(--candle) 55%, var(--gilt) 68%, var(--bullion) 100%);
  background-size: 220% 100%; background-position: 0% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer { 0% { background-position: 110% 0; } 45%, 100% { background-position: 0% 0; } }

/* ---- the rule: the wordmark's own underline motif (line · diamond · line) */
.rule {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px;
  width: min(var(--wrap), calc(100% - 48px)); margin: 76px auto;
}
.rule::before, .rule::after { content: ''; height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--glow), .8)); }
.rule::after { background: linear-gradient(90deg, rgba(var(--glow), .8), transparent); }
.rule i { width: 7px; height: 7px; background: var(--candle); transform: rotate(45deg); box-shadow: 0 0 12px rgba(var(--glow), .9); }

/* ---- buttons: gold acts ------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px;
  border-radius: var(--r); border: 1px solid transparent; cursor: pointer;
  font-family: var(--font-caps); font-weight: 600; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  transition: box-shadow .25s, transform .25s, border-color .25s, background .25s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-gold {
  color: #1A1406; background: linear-gradient(180deg, var(--candle), var(--gilt) 45%, #C9A24C);
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 0 0 1px rgba(var(--glow), .5), 0 0 26px rgba(var(--glow), .35), inset 0 1px 0 rgba(255,255,255,.55);
}
.btn-gold:hover { box-shadow: 0 0 0 1px rgba(var(--glow), .85), 0 0 42px rgba(var(--glow), .55), inset 0 1px 0 rgba(255,255,255,.6); }
.btn-line {
  color: var(--ivory); background: rgba(var(--glow), .04); border-color: rgba(var(--glow), .55);
  box-shadow: 0 0 18px rgba(var(--glow), .10);
}
.btn-line:hover { border-color: var(--candle); box-shadow: 0 0 30px rgba(var(--glow), .32); }

/* ---- frames: the glowing edge ------------------------------------------ */
@property --glint { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.frame {
  position: relative; isolation: isolate; border-radius: 3px;
  background: linear-gradient(180deg, var(--velvet-2), var(--velvet));
  border: 1px solid rgba(var(--glow), .42);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.7), 0 0 30px rgba(var(--glow), .14), 0 30px 80px rgba(0,0,0,.65);
  transition: box-shadow .35s, border-color .35s;
}
.frame:hover { border-color: rgba(var(--glow), .7); box-shadow: inset 0 0 0 1px rgba(0,0,0,.7), 0 0 44px rgba(var(--glow), .24), 0 30px 80px rgba(0,0,0,.65); }
/* a spark that runs the border: a conic sweep masked down to the 1px ring */
.frame::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none; z-index: 1;
  background: conic-gradient(from var(--glint), transparent 0 64%, rgba(var(--glow), .0) 68%, rgba(var(--glow), .95) 79%, #FFFFFF 82%, rgba(var(--glow), .95) 85%, transparent 93%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude;
  opacity: 0; transition: opacity .4s;
}
.frame:hover::before { opacity: 1; animation: glint 3.2s linear infinite; }
.frame.is-lit::before { opacity: .9; animation: glint 7s linear infinite; }
@keyframes glint { to { --glint: 360deg; } }

/* ---- nav: silver structure --------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 5;
  background: rgba(5,6,9,.74); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(var(--silver), .12);
}
.nav .wrap { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 40px; height: 40px; filter: drop-shadow(0 0 10px rgba(var(--glow), .4)); }
.brand .word { height: 20px; width: auto; }
.nav nav { display: flex; gap: 26px; margin-left: auto; }
.nav nav a { font-family: var(--font-caps); font-weight: 500; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--sterling); }
.nav nav a:hover { color: var(--candle); text-decoration: none; text-shadow: 0 0 12px rgba(var(--glow), .6); }
.nav .btn { padding: 11px 16px; font-size: 11px; }

/* ---- hero -------------------------------------------------------------- */
.hero {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 48px; align-items: center; padding: 76px 0 36px;
}
.hero::before {
  content: ''; position: absolute; z-index: -1; left: -20%; top: -30%; width: 90%; height: 150%; pointer-events: none;
  background: radial-gradient(55% 45% at 35% 45%, rgba(var(--glow), .11), transparent 70%);
}
.hero .wordmark { width: min(560px, 100%); margin: 16px 0 26px; filter: drop-shadow(0 0 22px rgba(var(--glow), .28)); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.proof { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-wrap: wrap; gap: 10px 24px; color: var(--ash); font-size: 14px; }
.proof li::before { content: '✦'; color: var(--gilt); margin-right: 8px; }
.frame-hero { padding: 10px; }
.frame-hero img { border-radius: 2px; border: 1px solid rgba(var(--silver), .14); }
.frame-hero figcaption { font-size: 13px; color: var(--pewter); padding: 10px 4px 2px; }

/* ---- sections ---------------------------------------------------------- */
.section-head { max-width: 760px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 40px; }
.panel { padding: 26px 24px 28px; }
.panel .glyph { width: 54px; height: 54px; margin-bottom: 16px; filter: drop-shadow(0 0 10px rgba(var(--glow), .3)); }
.panel p { color: var(--ash); font-size: 15px; }
.panel p + p { margin-top: 10px; }
.tag-strip { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 14px 0 12px; }
.tag-strip img { width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,.55)); }
.tag-strip img.chip { height: 40px; }
.tag-strip img.portrait { height: 62px; }
.frame-wide { margin-top: 28px; padding: 10px; }
.frame-wide img { border-radius: 2px; border: 1px solid rgba(var(--silver), .14); }
.frame-wide figcaption { font-size: 13px; color: var(--pewter); padding: 10px 4px 2px; }

/* provider plaques: silver, because they are structure, not action */
.plaques { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin-top: 36px; }
.plaque {
  border: 1px solid rgba(var(--silver), .22); border-radius: var(--r); padding: 16px 18px;
  background: rgba(var(--silver), .03); box-shadow: 0 0 20px rgba(var(--silver), .05);
}
.plaque b { display: block; font-family: var(--font-caps); font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--sterling); }
.plaque span { display: block; font-size: 13px; color: var(--ash); margin-top: 6px; }
.plaque span em { font-style: normal; color: var(--gilt); }

/* theme swatches */
.themes { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 40px; align-items: start; margin-top: 40px; }
.swatches { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.swatch { border: 1px solid rgba(var(--silver), .18); border-radius: var(--r); overflow: hidden; background: var(--velvet); }
.swatch i { display: block; height: 58px; background: var(--sw); }
.swatch b { display: block; font-family: var(--font-caps); font-weight: 500; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; color: var(--sterling); padding: 9px 8px; overflow-wrap: anywhere; }
.frame-thumb { padding: 8px; }
.frame-thumb img { border-radius: 2px; }
.frame-thumb figcaption { font-size: 13px; color: var(--pewter); padding: 8px 4px 0; }

/* pricing */
.plans { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, .95fr); gap: 22px 28px; align-items: start; margin-top: 40px; }
.plan-notes { padding-top: 6px; display: grid; gap: 8px; }
.notes-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px 40px; margin-top: 40px; }
.notes-2 h3 { font-size: 22px; }
.cast-names { margin-top: 36px; }
.cast-names h3 { font-size: 22px; }
.cast-names p { max-width: 72ch; }
.plan-notes h3 { font-size: 22px; margin-top: 10px; }
.plan-notes h3:first-child { margin-top: 0; }
.price-card .eyebrow .tag { margin-left: 10px; vertical-align: 1px; }
.price-card { padding: 30px 28px 28px; }
.price-card .eyebrow { margin-bottom: 18px; }
.price { font-family: var(--font-display); font-weight: 600; font-size: 58px; line-height: 1; color: var(--candle); font-variant-numeric: tabular-nums; }
.price small { font-family: var(--font-caps); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ash); margin-left: 12px; }
.includes { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 10px; }
.includes li { display: flex; gap: 12px; font-size: 15px; }
.includes li::before { content: '✦'; color: var(--gilt); flex: none; }
.tag { display: inline-block; font-family: var(--font-caps); font-weight: 600; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--stage); background: var(--gilt); padding: 4px 8px; border-radius: 2px; vertical-align: middle; }
.tag-ghost { color: var(--ash); background: transparent; border: 1px solid rgba(var(--silver), .3); }
.fineprint { font-size: 13.5px; color: var(--pewter); }
.fineprint a { color: var(--sterling); }

/* legal list */
.legal { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
.legal .panel h3 { font-size: 22px; }

/* ---- footer ------------------------------------------------------------ */
footer { margin-top: 96px; border-top: 1px solid rgba(var(--silver), .12); padding: 30px 0 56px; color: var(--pewter); font-size: 13px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: space-between; align-items: center; }
footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
footer a { color: var(--sterling); }

/* ---- responsive -------------------------------------------------------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
  .plans, .themes, .notes-2 { grid-template-columns: 1fr; }
  .grid-3, .legal { grid-template-columns: 1fr 1fr; }
  .swatches { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nav nav { display: none; }
  .rule { margin: 56px auto; }
}
@media (max-width: 640px) {
  .grid-3, .legal { grid-template-columns: 1fr; }
  .swatches { grid-template-columns: 1fr 1fr; }
  .brand .word { display: none; }
}

/* ---- motion courtesy --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gilt-text { animation: none; background-position: 0% 0; }
  .frame::before, .frame:hover::before, .frame.is-lit::before { animation: none; }
  .btn:hover { transform: none; }
}

/* ---- pages -------------------------------------------------------------- */
.page-head { padding-top: 56px; }
.nav nav a[aria-current="page"] { color: var(--candle); text-shadow: 0 0 12px rgba(var(--glow), .5); }
.nav .nav-account { display: inline-flex; align-items: center; gap: 8px; }
.avatar { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--gilt); color: #1A1406; font-family: var(--font-caps); font-weight: 700; font-size: 11px; }
.avatar-lg { width: 52px; height: 52px; font-size: 22px; }
.cta-band { text-align: center; padding: 24px 0 10px; }
.cta-band .lede, .cta-band .cta-row { margin-left: auto; margin-right: auto; justify-content: center; }
.cta-band .lede { text-align: center; }
.config-note { margin-top: 18px; }
code { font-family: ui-monospace, 'JetBrains Mono', Consolas, monospace; font-size: .9em; color: var(--candle); }

/* intro / title screen */
.intro { min-height: 100vh; display: grid; align-content: center; justify-items: center; gap: 26px; padding: 40px 24px 72px; }
.intro-video { width: min(980px, 100%); aspect-ratio: 1344 / 768; border-radius: 6px; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(var(--glow), .18); }
.intro-title { text-align: center; }
.intro-title.no-mark .wordmark { display: none; }
.intro-title .wordmark { width: min(640px, 92vw); margin: 0 auto 10px; filter: drop-shadow(0 0 22px rgba(var(--glow), .3)); }
.intro-tagline { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 3.4vw, 40px); line-height: 1.15; margin: 0 0 22px; color: var(--ivory); }
.intro-tagline em { font-style: italic; font-weight: 500; }
.intro-links { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 6px 22px; justify-content: center; font-family: var(--font-caps); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.intro-links a { color: var(--sterling); }
.intro-links a:hover { color: var(--candle); text-decoration: none; }

/* forms */
.contact-grid, .account-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 40px; align-items: start; margin-top: 40px; }
.contact-form { padding: 26px 26px 22px; display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 6px; font-family: var(--font-caps); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--sterling); }
.contact-form input, .contact-form select, .contact-form textarea {
  font: 500 15px/1.5 var(--font-body); color: var(--ivory); background: rgba(var(--silver), .04);
  border: 1px solid rgba(var(--silver), .22); border-radius: var(--r); padding: 10px 12px; letter-spacing: 0; text-transform: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gilt); box-shadow: 0 0 18px rgba(var(--glow), .2); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-status { font-size: 13.5px; color: var(--ash); }
.form-status[data-tone="ok"] { color: #7BD48B; }
.form-status[data-tone="error"] { color: #FF7A8A; }
.contact-aside h3 { font-size: 22px; }
.contact-aside h3 + p { margin-bottom: 20px; }

/* account */
.account-card { padding: 28px 28px 26px; }
.account-card h3 { margin-top: 22px; font-size: 22px; }
.google-button { min-height: 44px; margin: 8px 0 14px; }
.profile-row { display: flex; align-items: center; gap: 16px; margin: 6px 0 4px; }
.profile-name { font-family: var(--font-display); font-weight: 600; font-size: 26px; line-height: 1.1; }

/* terms */
.toc { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; font-family: var(--font-caps); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.toc a { color: var(--sterling); }
.legal-doc { max-width: 72ch; }
.legal-doc h1 { margin-bottom: 8px; }
.legal-doc h2 { font-family: var(--font-display); font-weight: 600; font-size: 26px; margin: 34px 0 10px; }
.legal-doc h3 { font-size: 20px; margin: 22px 0 8px; }
.legal-doc p { color: var(--ash); font-size: 15.5px; line-height: 1.65; margin: 0 0 14px; max-width: none; }
.legal-doc strong { color: var(--ivory); }
.legal-doc ul, .legal-doc ol { color: var(--ash); padding-left: 22px; margin: 0 0 14px; }
.legal-doc li { margin: 4px 0; }
@media (max-width: 900px) { .contact-grid, .account-grid { grid-template-columns: 1fr; } }

/* ---- feature page: screenshots carry the page ---------------------------
   The old brochure described the studio in theatre metaphors and showed three
   pictures. These rules are for the rebuild, where the software does the
   talking: alternating shot/copy rows, dense capability lists, and full-bleed
   strips for the wide art (the timeline) that a card would crush. */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; margin-top: 46px; }
.split.flip > .split-art { order: -1; }
.split h3 { font-family: var(--font-display); font-size: 27px; letter-spacing: .01em; margin-bottom: 12px; }
.split p { color: var(--ash); font-size: 15.5px; max-width: 46ch; }
.split p + p { margin-top: 12px; }
.split-art { padding: 9px; }
.split-art img { display: block; width: 100%; height: auto; border-radius: 2px; border: 1px solid rgba(var(--silver), .14); }
.split-art figcaption { font-size: 12.5px; color: var(--pewter); padding: 9px 3px 1px; }
/* a portrait crop (the mixer column, the cast column) must not balloon */
.split-art.tall { max-width: 330px; margin: 0 auto; }

.strip { margin-top: 30px; padding: 9px; }
.strip img { display: block; width: 100%; height: auto; border-radius: 2px; border: 1px solid rgba(var(--silver), .14); }
.strip figcaption { font-size: 12.5px; color: var(--pewter); padding: 9px 3px 1px; }

/* the capability list: what the buttons actually do, named as the app names them */
.spec { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0 30px; margin-top: 26px; list-style: none; }
.spec li { position: relative; padding: 9px 0 9px 20px; border-bottom: 1px solid rgba(var(--silver), .09); color: var(--ash); font-size: 14.5px; }
.spec li::before { content: '·'; position: absolute; left: 4px; top: 8px; color: rgba(var(--glow), .85); font-size: 18px; line-height: 1.2; }
.spec b { color: var(--ivory); font-weight: 600; }

/* numbered workflow: the order really is the order, so the numbers mean something */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin-top: 34px; }
.steps li { counter-increment: step; list-style: none; padding: 20px 18px; border: 1px solid rgba(var(--silver), .18); border-radius: var(--r); background: rgba(var(--silver), .03); }
.steps li::before {
  content: counter(step); display: block; font-family: var(--font-caps); font-size: 12px; letter-spacing: .18em;
  color: rgba(var(--glow), .95); margin-bottom: 9px;
}
.steps b { display: block; color: var(--ivory); font-size: 15.5px; margin-bottom: 5px; }
.steps span { color: var(--ash); font-size: 14px; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 24px; }
  .split.flip > .split-art { order: 0; }
  .split-art.tall { max-width: 280px; }
}

/* The features hero stacks instead of splitting: at 40% of a two-column row the
   studio screenshot is unreadable, which defeats the point of leading with it. */
.hero-stack { display: block; padding: 76px 0 0; }
.hero-stack::before { width: 70%; }
.hero-stack .hero-copy { max-width: 800px; }
.hero-stack .cta-row { margin-bottom: 46px; }
.frame-showcase { padding: 12px; }
.frame-showcase img { display: block; width: 100%; height: auto; border-radius: 2px; border: 1px solid rgba(var(--silver), .14); }
.frame-showcase figcaption { font-size: 13px; color: var(--pewter); padding: 12px 4px 2px; text-align: center; }

/* Themes are shown as screenshots, not swatches: a colour chip says nothing
   about what a theme does to icons, textures and panel art, which is most of
   what changes. The grid is deliberately uncounted - themes get added. */
.theme-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: 16px; margin-top: 34px; }
.theme-grid figure { padding: 7px; margin: 0; }
.theme-grid img { display: block; width: 100%; height: auto; border-radius: 2px; border: 1px solid rgba(var(--silver), .14); }
.theme-grid figcaption {
  font-family: var(--font-caps); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sterling); padding: 9px 3px 2px;
}
/* a feature whose screenshot is the point runs full width instead of splitting */
.showcase { margin-top: 48px; }
.showcase h3 { font-family: var(--font-display); font-size: 27px; margin-bottom: 12px; }
.showcase p { color: var(--ash); font-size: 15.5px; max-width: 62ch; }
.showcase p + p { margin-top: 12px; }
.showcase .spec { margin-bottom: 30px; }

/* ---- the home page as a sales page (2026-09-19): hero film, trial note, feature groups,
   price strip, FAQ, the before/after audio demo ------------------------------------------ */
.hero-home { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); padding: 64px 0 20px; }
.hero-home .display { font-size: clamp(38px, 4.4vw, 58px); }
.hero-home .lede { font-size: 18px; }
.hero-video { display: block; width: 100%; aspect-ratio: 1344 / 768; margin: 0; border-radius: 4px; background: #000; box-shadow: 0 24px 70px rgba(0,0,0,.65), 0 0 0 1px rgba(var(--glow), .18); }
.cta-note { margin: 14px 0 0; font-size: 14.5px; color: var(--ash); max-width: var(--measure); }
.nav .nav-signin { font-family: var(--font-caps); font-weight: 500; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--sterling); }
.nav .nav-signin:hover { color: var(--candle); text-decoration: none; }
.nav nav { gap: 22px; }
.group-head { display: flex; align-items: center; gap: 14px; margin: 64px 0 26px; max-width: none; font-family: var(--font-caps); font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--gilt); }
.group-head:first-of-type { margin-top: 40px; }
.group-head span { flex: none; width: 30px; height: 30px; border: 1px solid rgba(var(--glow), .6); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; letter-spacing: 0; color: var(--candle); }
.group-head::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(var(--glow), .5), transparent); }
details.more { margin: 34px 0 0; border: 1px solid rgba(var(--silver), .16); border-radius: var(--r); background: rgba(255,255,255,.02); }
details.more > summary, .faq summary { cursor: pointer; list-style: none; padding: 16px 20px; font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--ivory); display: flex; align-items: center; gap: 12px; }
details.more > summary::-webkit-details-marker, .faq summary::-webkit-details-marker { display: none; }
details.more > summary::before, .faq summary::before { content: '+'; flex: none; width: 22px; color: var(--gilt); font-family: var(--font-body); font-weight: 400; }
details[open].more > summary::before, .faq details[open] > summary::before { content: '\2212'; }
details.more > .spec, details.more > ul { padding: 0 20px 20px 54px; margin: 0; }
.faq { display: grid; gap: 10px; max-width: 900px; margin-top: 34px; }
.faq details { border: 1px solid rgba(var(--silver), .16); border-radius: var(--r); background: rgba(255,255,255,.02); }
.faq details[open] { border-color: rgba(var(--glow), .45); }
.faq details p { margin: 0; padding: 0 20px 18px 54px; color: var(--ash); font-size: 16px; line-height: 1.6; max-width: none; }
.price-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 36px; padding: 0; }
.price-strip > div { padding: 26px 28px; border-left: 1px solid rgba(var(--silver), .12); }
.price-strip > div:first-child { border-left: none; }
.price-strip .price { font-size: 46px; }
.price-strip p { margin: 10px 0 0; font-size: 14.5px; }
.voice-split { margin: 30px 0 34px; }
.voice-split .panel { padding: 24px 26px; }
.trial-first { margin-top: 40px; padding: 34px 32px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px 40px; align-items: center; }
.trial-first h2 { margin: 0 0 8px; }
.trial-first p { margin: 0; color: var(--ash); font-size: 17px; max-width: 56ch; }
.ready-head { margin: 56px 0 0; font-family: var(--font-caps); font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--sterling); }
.plans.two { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 22px; }
.demo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; margin-top: 36px; }
.demo-card { padding: 22px 24px; }
.demo-line { font-family: var(--font-display); font-size: 22px; line-height: 1.35; color: var(--ivory); margin: 0 0 16px; }
.demo-pair { display: grid; gap: 12px; }
.demo-pair label { display: grid; gap: 6px; font-family: var(--font-caps); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--sterling); }
.demo-pair audio { width: 100%; height: 38px; }
@media (max-width: 860px) {
  .price-strip, .plans.two, .trial-first { grid-template-columns: 1fr; }
  .price-strip > div { border-left: none; border-top: 1px solid rgba(var(--silver), .12); }
  .price-strip > div:first-child { border-top: none; }
  .nav nav { display: none; }
}
