/* ==========================================================================
   CueDeck marketing site — Stagelight (dark)
   Tokens are the contract in docs/specs/2026-07-19-ui-spec.md §1 and
   docs/specs/2026-07-20-marketing-site-design.md §2. Do not invent new ones.
   ========================================================================== */

@font-face {
  font-family: 'Sora';
  src: url('assets/Sora-var.woff2') format('woff2-variations'), url('assets/Sora-var.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/Inter-var.woff2') format('woff2-variations'), url('assets/Inter-var.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}

:root {
  /* ink surfaces */
  --ink-0: #0E0F12;
  --ink-1: #131417;
  --ink-2: #1B1D22;
  --ink-3: #22242A;
  --ink-deep: #0A0B0D;

  /* hairlines */
  --hairline: #1E2025;
  --hairline-2: #26282E;

  /* text */
  --text-hi: #F5F4F0;
  --text-body: #D6D8DD;
  --text-mid: #B9BDC6;
  --text-low: #8A8F98;
  --text-faint: #5C6068;

  /* accent — amber is THE accent, <=5 visible instances per viewport */
  --amber: #F5A623;
  --amber-tint: #2A2417;
  --on-amber: #1A1206;
  --teal: #2DD4BF;
  --coral: #E8604C;
  --coral-tint: #2A1714;
  --amber-glow: rgba(245, 166, 35, 0.14);

  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1120px;
  --prose: 620px;
  --section-pad: clamp(72px, 10vh, 140px);
  --gutter: clamp(20px, 5vw, 48px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------ reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--ink-0);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

/* visible, high-contrast focus ring everywhere — never suppressed */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--amber);
  color: var(--on-amber);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  z-index: 1000;
  transition: top 200ms var(--ease-out);
}
.skip-link:focus {
  top: 12px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ------------------------------ type ------------------------------ */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--text-hi); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 16px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
  max-width: 780px;
}

.lede, .section-head .body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: var(--prose);
  margin-top: 18px;
}

/* ------------------------------ buttons ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 150ms var(--ease-out), border-color 150ms var(--ease-out), transform 150ms var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-amber {
  background: var(--amber);
  color: var(--on-amber);
}
.btn-amber:hover { background: #ffb638; }
.btn-ghost {
  background: transparent;
  color: var(--text-hi);
  border-color: var(--hairline-2);
}
.btn-ghost:hover { border-color: var(--text-low); background: rgba(255,255,255,0.02); }
.btn-block { width: 100%; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 13, 0);
  transition: background 200ms var(--ease-out), backdrop-filter 200ms var(--ease-out);
  z-index: -1;
}
.nav.is-scrolled::before {
  background: rgba(10, 11, 13, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav.is-scrolled { border-bottom-color: var(--hairline); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  text-decoration: none;
  color: var(--text-hi);
  letter-spacing: -0.01em;
}
.wordmark span { color: var(--amber); }
.wordmark-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
  border-radius: 6px;
  flex: none;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  transition: color 150ms var(--ease-out);
}
.nav-links a:hover { color: var(--text-hi); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 150ms var(--ease-out);
}
.nav-signin:hover { color: var(--text-hi); }
.nav .btn { height: 40px; padding: 0 18px; font-size: 14px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: clamp(56px, 8vh, 96px);
  padding-bottom: 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ink-deep) 0%, var(--ink-0) 55%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero .lede {
  margin: 24px auto 0;
  max-width: 620px;
  font-size: 19px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 22px;
  font-size: 12px;
  color: var(--text-low); /* deviation: spec token text-faint is 3.04:1 on ink-0, fails AA; text-low (5.9:1) used instead — see report */
  letter-spacing: 0.01em;
}

/* --- hero visual: abstract call backdrop + HUD screenshot ---
   Panel is sized close to the HUD card itself (a little breathing room on
   every side, not a mostly-empty box the card floats inside) -- see
   feedback in the 2026-07-20 design review. */
.hero-visual {
  position: relative;
  margin: 40px auto 0;
  max-width: 700px;
  padding: 44px 0 56px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.call-backdrop {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 94%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 28% 18%, rgba(255,255,255,0.05), transparent 55%),
    linear-gradient(160deg, #1b1c21 0%, #100f13 55%, #0a0b0d 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 40px 90px rgba(0,0,0,0.5);
}
.call-backdrop .tile {
  position: absolute;
  border-radius: 20px;
  filter: blur(30px);
}
.call-backdrop .tile-a { top: 6%; left: 6%; width: 32%; height: 32%; background: rgba(255,255,255,0.10); }
.call-backdrop .tile-b { top: 9%; right: 8%; width: 24%; height: 26%; background: rgba(255,255,255,0.07); }
.call-backdrop .tile-c { bottom: 8%; left: 9%; width: 27%; height: 30%; background: rgba(245,166,35,0.09); }
.call-backdrop .tile-d { bottom: 5%; right: 11%; width: 38%; height: 26%; background: rgba(255,255,255,0.06); }
.call-backdrop .tile-e { top: 38%; left: 42%; width: 30%; height: 24%; background: rgba(255,255,255,0.045); }
.call-backdrop .tile-f { top: 22%; left: 20%; width: 20%; height: 18%; background: rgba(245,166,35,0.05); }
.call-backdrop .scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: overlay;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
}
.hero-hud-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55)) drop-shadow(0 4px 14px rgba(0,0,0,0.4));
}
.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--ink-0));
  z-index: 3;
  pointer-events: none;
}

/* ==========================================================================
   Sections generic
   ========================================================================== */
section { position: relative; }
.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.section-border-top { border-top: 1px solid var(--hairline); }

/* ------------------------------ problem ------------------------------ */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 56px;
}
.problem-card {
  background: var(--ink-0);
  padding: 32px 28px;
}
.problem-card .num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-low); /* deviation: text-faint is 3.03:1 on ink-0, fails AA; see report */
  letter-spacing: 0.05em;
}
.problem-card h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 14px;
}
.problem-card p {
  font-size: 15px;
  color: var(--text-low);
  margin-top: 10px;
  line-height: 1.55;
}

/* ------------------------------ how it works ------------------------------ */
.steps {
  margin-top: 64px;
  display: grid;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 36px 0;
}
.step + .step { border-top: 1px solid var(--hairline); }
.step-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
}
.step h3 {
  font-size: 20px;
  font-weight: 600;
}
.step p {
  margin-top: 10px;
  color: var(--text-mid);
  max-width: 640px;
  font-size: 16px;
}

/* ------------------------------ feature (image + copy) ------------------------------ */
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 440px) 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.feature-grid.is-reversed { grid-template-columns: 1fr minmax(0, 440px); }
.feature-grid.is-reversed .feature-copy { order: 2; }
.feature-grid.is-reversed .feature-media { order: 1; }

/* Dashboard-screenshot sections (Knowledge, Call transcript) carry denser
   UI than the HUD cue card -- a narrower copy column gives the image more
   room so the on-screen text in the screenshot itself stays legible instead
   of shrinking to the ~25% scale a 440px-constrained column would force. */
.feature-grid.is-wide-media { grid-template-columns: minmax(0, 360px) 1fr; }
.feature-grid.is-reversed.is-wide-media { grid-template-columns: 1fr minmax(0, 360px); }

.feature-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.feature-copy .body {
  margin-top: 16px;
  color: var(--text-mid);
  font-size: 17px;
  max-width: 520px;
}
.feature-bullets {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-bullets li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
  align-items: flex-start;
}
.feature-bullets li::before {
  content: '';
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 8px;
}

.feature-media {
  position: relative;
}
/* Inner matte: the screenshot sits on a dark mount inside the frame rather
   than flush against the hairline border, so it reads as presented-in-a-
   frame instead of cropped at the edge -- see 2026-07-20 design feedback. */
.shot {
  border-radius: 12px;
  border: 1px solid var(--hairline-2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 4px 14px rgba(0,0,0,0.3);
  overflow: hidden;
  background: var(--ink-2);
  padding: 20px;
}
.shot img { width: 100%; height: auto; display: block; border-radius: 8px; }

/* small HUD-style shot: centered, contained */
.shot--contained { max-width: 460px; margin: 0 auto; }

/* large dashboard shots: bleed toward the outer edge on desktop.
   Grid-item stretch ignores negative margins for overflow, so bleed is done
   with an explicit width (percentage resolves against the grid track) plus
   justify-self to anchor the non-bleeding edge. */
.feature-media--bleed {
  width: 100%;
}
@media (min-width: 1180px) {
  /* Extend the shot outward past the text column, but stop 32px short of the
     viewport edge so the full matte -- all four rounded corners and the
     hairline border -- stays on screen. Earlier this bled to 8px with the
     outer corners squared, which read as clipped at the edge. */
  :root { --bleed: calc((100vw - var(--max)) / 2 + var(--gutter) - 32px); }
  .feature-grid.is-bleed-right .feature-media--bleed {
    justify-self: start;
    width: calc(100% + var(--bleed));
  }
  .feature-grid.is-bleed-left .feature-media--bleed {
    justify-self: end;
    width: calc(100% + var(--bleed));
  }
}
.crop-window {
  overflow: hidden;
  border-radius: inherit;
}
.crop-window img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ------------------------------ privacy ------------------------------ */
.privacy-list {
  margin-top: 48px;
  border-top: 1px solid var(--hairline);
}
.privacy-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}
.privacy-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-hi);
}
.privacy-item p {
  color: var(--text-low);
  font-size: 15px;
  margin: 0;
}
.privacy-footnote {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-low); /* deviation: text-faint fails AA; see report */
  max-width: var(--prose);
  line-height: 1.6;
}

/* ------------------------------ request access / form ------------------------------ */
.request-panel {
  margin-top: 48px;
  max-width: 560px;
  background: var(--ink-1);
  border: 1px solid var(--hairline-2);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 40px);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--hairline-2);
  border-radius: 9px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-hi);
  transition: border-color 150ms var(--ease-out);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.field-hint {
  font-size: 12px;
  color: var(--text-low);
  margin-top: 6px;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-success {
  text-align: center;
  padding: 20px 0;
}
.form-success p {
  font-size: 17px;
  color: var(--text-hi);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
}
.form-error {
  font-size: 14px;
  color: var(--coral);
  margin-top: 14px;
  display: none;
}
.form-error.is-visible { display: block; }

/* ------------------------------ FAQ ------------------------------ */
.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--hairline);
  max-width: 820px;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-hi);
}
.faq-q .chev {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--text-low);
  transition: transform 250ms var(--ease-out);
}
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); color: var(--amber); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms var(--ease-out);
}
.faq-a[hidden] { display: block; }
.faq-a-inner {
  padding: 0 4px 24px;
  color: var(--text-mid);
  font-size: 15px;
  max-width: 640px;
  line-height: 1.6;
}

/* ------------------------------ footer ------------------------------ */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--ink-deep);
  padding: 56px 0 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer-links a {
  text-decoration: none;
  color: var(--text-mid);
  transition: color 150ms var(--ease-out);
}
.footer-links a:hover { color: var(--text-hi); }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-low);
  border: 1px solid var(--hairline-2);
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 12px;
}
.footer-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-low);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Default state is fully visible — content must never depend on JS to be
   seen (no-JS, slow JS, or an observer that never fires must still show the
   page). JS opts individual below-the-fold sections INTO the hidden-until-
   revealed state via .reveal-pending, so the failure mode is "no animation",
   never "invisible content". */
.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.reveal.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal.reveal-pending { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 860px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .problem-cards { grid-template-columns: 1fr; }
  .problem-card + .problem-card { border-top: 1px solid var(--hairline); }
  .step { grid-template-columns: 44px 1fr; gap: 18px; }
  .feature-grid, .feature-grid.is-reversed, .feature-grid.is-wide-media, .feature-grid.is-reversed.is-wide-media {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-grid .feature-copy, .feature-grid.is-reversed .feature-copy { order: 1; }
  .feature-grid .feature-media, .feature-grid.is-reversed .feature-media { order: 2; }
  .privacy-item { grid-template-columns: 1fr; gap: 8px; }
  .footer-links { gap: 16px 24px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .shot { padding: 12px; }
  .shot img { border-radius: 6px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .nav-signin { display: none; }
}

/* ==========================================================================
   Setup guide page (site/guide/index.html)
   Long-form reading layout reusing existing tokens; classes prefixed
   guide- to stay isolated from the homepage rules above.
   ========================================================================== */

/* ------------------------------ hero band ------------------------------ */
.guide-hero {
  padding-top: clamp(56px, 9vh, 96px);
  padding-bottom: clamp(48px, 7vh, 80px);
  background: linear-gradient(180deg, var(--ink-deep) 0%, var(--ink-0) 65%);
}
.guide-title {
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  text-wrap: balance;
  max-width: 780px;
}
.guide-intro {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: var(--prose);
}
.guide-intro a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
.guide-intro a:hover { color: #ffb638; }

/* ------------------------------ reading column ------------------------------ */
.guide-content {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.guide-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.guide-article a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.guide-article a:hover { color: #ffb638; }

/* ------------------------------ numbered steps ------------------------------ */
.guide-step {
  padding: 40px 0;
}
.guide-step + .guide-step,
.guide-step + .guide-section {
  border-top: 1px solid var(--hairline);
}
.guide-step:first-child { padding-top: 0; }
.guide-step-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.guide-step-num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
}
.guide-step-title {
  font-size: clamp(21px, 2.6vw, 26px);
  line-height: 1.25;
}
.guide-step-time {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-low);
  margin-left: 4px;
}
.guide-step-body {
  margin-top: 16px;
  padding-left: 44px;
}
.guide-step-body p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}
.guide-step-body p + p { margin-top: 14px; }

/* ------------------------------ lists (numbered + bulleted) ------------------------------ */
.guide-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-list li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
}
.guide-list--numbered {
  counter-reset: guide-step-list;
  list-style: none;
  padding-left: 0;
}
.guide-list--numbered li {
  position: relative;
  padding-left: 30px;
  counter-increment: guide-step-list;
}
.guide-list--numbered li::before {
  content: counter(guide-step-list) '.';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
ul.guide-list li {
  position: relative;
  padding-left: 20px;
}
ul.guide-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

/* ------------------------------ callout box ------------------------------ */
.guide-callout {
  margin-top: 20px;
  background: var(--ink-2);
  border: 1px solid var(--hairline-2);
  border-radius: 14px;
  padding: clamp(20px, 3vw, 28px);
}
.guide-callout-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-hi);
}
.guide-callout p:not(.guide-callout-title) {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ------------------------------ data / privacy section ------------------------------ */
.guide-section {
  padding: 40px 0;
}
.guide-section-title {
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.2;
}
.guide-data-list {
  margin-top: 28px;
  border-top: 1px solid var(--hairline);
}
.guide-data-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}
.guide-data-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-hi);
}
.guide-data-item p {
  color: var(--text-low);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* ------------------------------ closing callout ------------------------------ */
.guide-closing {
  margin-top: 40px;
}

/* ------------------------------ responsive ------------------------------ */
@media (max-width: 640px) {
  .guide-step-body { padding-left: 0; margin-top: 12px; }
  .guide-step-head { gap: 12px; }
  .guide-step-num { font-size: 21px; }
  .guide-data-item { grid-template-columns: 1fr; gap: 6px; }
}
