/* styles.css — The Daily Reset landing page
   Editorial "slide" design: full-viewport photo heroes with tinted side panels
   and hatch textures, alternating with cream editorial sections built around
   huge outlined numerals, mixed-tone headlines, and giant watermark letters.
   The app itself uses app.css — this file styles index.html only. */

:root {
  --ink: #111827;
  --muted: #6b7280;
  --paper: #f6f2ec;
  --card: #ffffff;
  --line: #e3ddd2;
  --accent: #0d7d6e;
  --accent-dark: #095e52;
  --on-accent: #ffffff;
  --slide-ink: #f4f2ee;          /* text on photo slides */
  --panel-tint: rgba(17, 20, 26, .58);
  --charcoal: #14171c;           /* pricing + footer */
  --charcoal-2: #1b1f26;
  --outline-num: rgba(17, 24, 39, .18);
  --watermark: rgba(17, 24, 39, .05);
  --nav-bg: rgba(246, 242, 236, .94);
  --shadow: 0 20px 70px rgba(17, 24, 39, .10);
}

:root[data-theme="dark"] {
  --ink: #e9e6df;
  --muted: #98a0ac;
  --paper: #0e1116;
  --card: #171b21;
  --line: #262d38;
  --accent: #d4a24e;
  --accent-dark: #e0b366;
  --on-accent: #14171c;
  --outline-num: rgba(233, 230, 223, .22);
  --watermark: rgba(233, 230, 223, .05);
  --nav-bg: rgba(14, 17, 22, .92);
  --shadow: 0 20px 70px rgba(0, 0, 0, .45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Safety net against any stray horizontal overflow. `clip` (not `hidden`)
   because overflow-x:hidden creates a scroll container, which would break
   the position:sticky roll-over slides. */
html, body { overflow-x: clip; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease;
}
.nav.scrolled { background: var(--nav-bg); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; gap: 28px;
}
.nav-logo {
  font-weight: 800; font-size: 21px; letter-spacing: -.015em;
  color: var(--slide-ink); text-decoration: none; margin-right: auto;
  transition: color .35s ease, opacity .35s ease;
}
/* Over the hero the big in-panel brand mark owns the branding — the nav copy
   would double it up, so it only appears once the nav goes solid on scroll. */
.nav:not(.scrolled) .nav-logo { opacity: 0; pointer-events: none; }
.nav.scrolled .nav-logo { color: var(--ink); }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: var(--slide-ink); text-decoration: none; font-size: 13.5px; font-weight: 500;
  opacity: .85; transition: color .35s ease, opacity .2s ease;
}
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { opacity: 1; }
.theme-toggle-btn {
  background: none; border: none; font-size: 17px; cursor: pointer; line-height: 1;
  padding: 4px;
}
.nav-cta {
  color: var(--slide-ink); text-decoration: none; font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid rgba(244, 242, 238, .55); padding: 9px 20px;
  transition: color .35s ease, border-color .35s ease, background .2s ease;
}
.nav-cta:hover { background: rgba(244, 242, 238, .12); }
.nav.scrolled .nav-cta { color: var(--ink); border-color: var(--ink); }
.nav.scrolled .nav-cta:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ---------- Photo slides ----------
   Slides are sticky: each pins to the top of the viewport and the section
   after it scrolls up OVER it — the roll-over/overlap effect from the
   reference design. Later sections need position + an opaque background so
   they actually cover the pinned slide (see the section rules below). */
.slide {
  position: sticky; top: 0; min-height: 100vh; display: flex; align-items: stretch;
  background-size: cover; background-position: center;
  isolation: isolate;
}
.slide::after { /* soft edge tint over the whole photo so text always reads */
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(15, 18, 24, .45) 0%, rgba(15, 18, 24, .12) 55%, rgba(15, 18, 24, .25) 100%);
}
.slide-learning  { background-image: url('images/audio-learning.jpg'); }

/* ---------- Hero: two portraits + spoken intro ----------
   The woman zooms in while Imogen speaks the headline; the man fades in and
   zooms while Edmund speaks the tagline. Both sit behind a heavier tint so
   the type stays prominent. Idle state (audio blocked / not played yet)
   shows everything static. */
.slide-hero::after { background: linear-gradient(rgba(15, 18, 24, .52), rgba(15, 18, 24, .62)); }
/* Slightly under one viewport so the next section peeks at the bottom —
   a built-in "there's more below" signal. */
.slide-hero { min-height: 93vh; }
/* overflow hidden: the Ken Burns zoom scales these past their box — without
   clipping, the scaled edges widen the page and create a horizontal scrollbar */
.hero-duo { position: absolute; inset: 0; z-index: -2; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.hero-img {
  background-size: cover; background-position: 50% 22%;
  transform-origin: 50% 25%; transition: opacity .9s ease;
}
.hero-img-woman { background-image: url('images/hero-woman.jpg'); }
.hero-img-man   { background-image: url('images/hero-man.jpg'); }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.16); } }
.hero-img.zooming { animation: heroZoom 4.2s ease-out forwards; }
.seq .hero-img-man { opacity: 0; }
.seq.half .hero-img-man { opacity: 1; }

.hero-center {
  position: relative; z-index: 1; margin: auto; text-align: center;
  color: var(--slide-ink); padding: 130px 28px 90px; max-width: 760px;
}
.hero-center .brand-mark::after { left: 50%; transform: translateX(-50%); }
.hero-center h1 {
  font-weight: 300; font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.16; letter-spacing: -.015em; margin-bottom: 20px;
}
.hero-center h1 strong { font-weight: 600; }
.hero-center .slide-actions { justify-content: center; margin-top: 34px; }
.hero-tagline {
  font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: #d8d4cc; margin-top: 6px;
}
.hero-play {
  margin-top: 26px; background: var(--accent); border: 1px solid var(--accent);
  color: var(--on-accent); font: inherit; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 11px 22px; cursor: pointer;
  animation: chip-glow 2.4s ease-out infinite;
  transition: background .2s ease;
}
.hero-play:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
@keyframes chip-glow {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent); }
  70%  { box-shadow: 0 0 0 16px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
@media (prefers-reduced-motion: reduce) { .hero-play { animation: none; } }

/* Scroll cue: bouncing chevron at the base of the hero; fades away once the
   visitor starts scrolling (driven by the nav's existing .scrolled toggle). */
.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--slide-ink); font-size: 10.5px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; opacity: .75;
  transition: opacity .4s ease; pointer-events: none;
}
.cue-chevron {
  width: 12px; height: 12px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); animation: cue-bounce 1.9s ease-in-out infinite;
}
@keyframes cue-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .9; }
  50%      { transform: rotate(45deg) translate(7px, 7px); opacity: .35; }
}
.nav.scrolled ~ .slide-hero .scroll-cue { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .cue-chevron { animation: none; } }

/* Word-by-word reveal, timed to the voice in JS */
.w { display: inline-block; }
.seq .w { opacity: 0; transform: translateY(14px); transition: opacity .38s ease, transform .38s ease; }
.seq .w.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-img.zooming { animation: none; }
  .seq .w { opacity: 1; transform: none; }
}

/* Breaks slide: two photos side by side — a female executive pausing at the
   window, and a male executive listening, eyes off the screen. */
.slide-duo { position: absolute; inset: 0; z-index: -2; display: grid; grid-template-columns: 1fr 1fr; }
.duo-img { background-size: cover; background-position: center; }
.duo-window { background-image: url('images/break-window.jpg'); }
/* left-biased crop keeps his face clear of the centered panel */
.duo-listen { background-image: url('images/break-listening.jpg'); background-position: left center; }
/* Center the panel over the seam so both executives stay visible beside it */
.slide-breaks .slide-panel { margin-left: auto; margin-right: auto; }
@media (max-width: 700px) {
  .slide-duo { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .slide-breaks .slide-panel { margin: 0; }
}

/* Sections that scroll over the pinned slides: positioned (so DOM order wins
   the paint order) and opaquely filled (so the slide behind can't show through). */
.editorial, .strip, .pricing, .cta-band, .footer { position: relative; }
.editorial, .strip { background: var(--paper); }

.slide-panel {
  position: relative; width: min(520px, 88%);
  margin: 0 0 0 max(28px, 6vw);
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 48px 90px;
  background: var(--panel-tint);
  color: var(--slide-ink);
}
.slide-panel::before { /* diagonal hatch texture, like the reference panels */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 8px);
}
.brand-mark {
  font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -.01em;
  margin-bottom: 26px; padding-bottom: 18px; position: relative;
}
.brand-mark span { color: #4cc4a8; } /* lighter tint of the accent — the base teal is too dark on the panel */
:root[data-theme="dark"] .brand-mark span { color: var(--accent); }
.brand-mark::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 54px; height: 3px; background: var(--accent);
}
.slide-eyebrow {
  font-size: 11.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  opacity: .8; margin-bottom: 22px;
}
.slide-panel h1, .slide-panel h2 {
  font-weight: 300; font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.16; letter-spacing: -.015em; margin-bottom: 22px;
}
.slide-panel h1 strong, .slide-panel h2 strong { font-weight: 600; }
.slide-sub { font-size: 15.5px; line-height: 1.7; opacity: .85; margin-bottom: 34px; max-width: 40ch; }
.slide-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.slide-note { font-size: 12.5px; opacity: .65; margin-top: 18px; }

.btn-ghost {
  display: inline-block; color: var(--slide-ink); text-decoration: none;
  font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid rgba(244, 242, 238, .5); padding: 13px 26px;
  transition: background .2s ease, border-color .2s ease; cursor: pointer;
}
.btn-ghost::before { content: '/ '; opacity: .55; }
.btn-ghost:hover { background: rgba(244, 242, 238, .14); border-color: rgba(244, 242, 238, .9); }

.btn-solid {
  display: inline-block; background: var(--accent); color: var(--on-accent); text-decoration: none;
  font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 28px; border: 1px solid var(--accent);
  transition: background .2s ease; cursor: pointer;
}
.btn-solid:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

@media (max-width: 700px) {
  .slide { min-height: 92vh; }
  .slide-panel { width: 100%; margin: 0; padding: 120px 30px 70px; }
}

/* ---------- Editorial (cream) sections ---------- */
.editorial { position: relative; padding: 110px 28px; overflow: hidden; }
.editorial .container { max-width: 1080px; margin: 0 auto; position: relative; }
.watermark {
  position: absolute; top: -40px; right: -60px; z-index: 0;
  font-size: clamp(300px, 42vw, 560px); font-weight: 700; line-height: .8;
  color: var(--watermark); pointer-events: none; user-select: none;
}
.ed-head {
  font-weight: 300; font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.25;
  letter-spacing: -.01em; max-width: 30ch; margin-bottom: 18px; position: relative; z-index: 1;
}
.ed-head strong { font-weight: 600; }
.ed-head .head-muted { color: var(--muted); }
.ed-sub { color: var(--muted); max-width: 62ch; margin-bottom: 56px; position: relative; z-index: 1; }
.ed-link { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.ed-link:hover { color: var(--accent); }

/* Huge outlined stats (problem section) */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; z-index: 1; }
.stat-num {
  font-size: clamp(4rem, 8vw, 6.4rem); font-weight: 700; line-height: 1; letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 2px var(--outline-num); margin-bottom: 14px;
}
@supports not (-webkit-text-stroke: 2px black) {
  .stat-num { color: var(--outline-num); }
}
.stat-label { font-size: 15px; font-weight: 600; margin-bottom: 8px; max-width: 30ch; }
.stat-source { font-size: 12px; color: var(--muted); }
.ed-close { margin-top: 60px; color: var(--muted); font-size: 17px; max-width: 58ch; position: relative; z-index: 1; }
.ed-close strong { color: var(--ink); }
@media (max-width: 820px) { .stat-row { grid-template-columns: 1fr; gap: 40px; } }

/* Numbered editorial list (the five breaks, how it works) */
.num-list { position: relative; z-index: 1; display: flex; flex-direction: column; }
.num-item {
  display: grid; grid-template-columns: 150px 1fr auto; gap: 30px; align-items: start;
  padding: 38px 0; border-top: 1px solid var(--line);
}
.num-item:last-child { border-bottom: 1px solid var(--line); }
.num-digit {
  font-size: clamp(3.4rem, 6vw, 5rem); font-weight: 700; line-height: 1; letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 2px var(--outline-num);
}
@supports not (-webkit-text-stroke: 2px black) {
  .num-digit { color: var(--outline-num); }
}
.num-body h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.num-body p { color: var(--muted); font-size: 15px; max-width: 62ch; }
.num-meta {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap; padding-top: 8px;
}
@media (max-width: 700px) {
  .num-item { grid-template-columns: 1fr; gap: 10px; }
  .num-digit { font-size: 3rem; }
}

/* Science citations */
.science-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; position: relative; z-index: 1; }
.science-card {
  background: var(--card); border: 1px solid var(--line); padding: 26px 28px;
}
.science-card .tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: var(--accent); border: 1px solid currentColor; padding: 3px 10px; margin-bottom: 14px;
}
.science-card p { font-size: 14px; color: var(--muted); }
.science-card p strong { color: var(--ink); }
.science-aside {
  display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: center; margin-bottom: 56px;
  position: relative; z-index: 1;
}
.science-aside img { width: 100%; display: block; filter: saturate(.9); }
@media (max-width: 860px) {
  .science-grid { grid-template-columns: 1fr; }
  .science-aside { grid-template-columns: 1fr; }
}

/* Learning features strip (under learning slide) */
.strip { padding: 90px 28px; }
.strip .container { max-width: 1080px; margin: 0 auto; }
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-bottom: 60px; }
.feature h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 14.5px; }
.topics-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.topic-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.topic-chips span {
  font-size: 13px; color: var(--ink); border: 1px solid var(--line); background: var(--card);
  padding: 9px 16px;
}
@media (max-width: 820px) { .feature-row { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Pricing (charcoal) ---------- */
.pricing { background: var(--charcoal); color: #e8e6e1; padding: 110px 28px; position: relative; }
.pricing::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 1px, transparent 1px 9px);
}
.pricing .container { max-width: 1000px; margin: 0 auto; position: relative; }
.pricing .ed-head { color: #f4f2ee; }
.pricing .ed-head .head-muted { color: #8d939e; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 56px; }
.pricing-card {
  background: var(--charcoal-2); border: 1px solid #2a2f38; padding: 42px 40px;
  display: flex; flex-direction: column;
}
.pricing-card.paid-card { border-color: var(--accent); }
.pricing-badge {
  align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); border: 1px solid currentColor; padding: 4px 12px; margin-bottom: 20px;
}
.pricing-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; color: #f4f2ee; }
.price { font-size: 54px; font-weight: 300; letter-spacing: -.02em; color: #f4f2ee; margin: 10px 0 24px; }
.price-period { font-size: 16px; color: #8d939e; font-weight: 400; }
.pricing-card ul { list-style: none; margin-bottom: 34px; }
.pricing-card li {
  font-size: 14px; color: #b9bec7; padding: 9px 0 9px 26px; position: relative;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.pricing-card li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.pricing-card .btn-solid, .pricing-card .btn-ghost { text-align: center; margin-top: auto; font-family: inherit; }
.annual-option { text-align: center; margin-top: 16px; font-size: 13.5px; color: #8d939e; }
.annual-option a { color: #e8e6e1; font-weight: 600; }
.pricing-note { margin-top: 40px; font-size: 13px; color: #8d939e; text-align: center; }
@media (max-width: 820px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { position: relative; z-index: 1; max-width: 780px; }
.faq-item { border-top: 1px solid var(--line); padding: 30px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.faq-item p { color: var(--muted); font-size: 15px; max-width: 68ch; }

/* ---------- About ---------- */
.about-card {
  position: relative; z-index: 1; background: var(--card); border: 1px solid var(--line);
  padding: 54px 58px; max-width: 900px;
  display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start;
}
.about-photo { margin: 0; }
.about-photo img { width: 100%; display: block; }
.about-photo figcaption {
  margin-top: 14px; font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.about-lead { font-size: 20px; font-weight: 600; margin-bottom: 20px; }
.about-card p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }
.about-close { color: var(--ink) !important; font-weight: 600; margin-bottom: 0 !important; }
@media (max-width: 700px) {
  .about-card { padding: 36px 28px; grid-template-columns: 1fr; gap: 28px; }
  .about-photo { max-width: 240px; }
}

/* ---------- Final CTA band ---------- */
.cta-band {
  position: relative; min-height: 64vh; display: flex; align-items: center; justify-content: center;
  background: url('images/cta-office.jpg') center/cover; text-align: center; isolation: isolate;
}
.cta-band::after { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(15, 18, 24, .62); }
.cta-inner { padding: 90px 28px; color: var(--slide-ink); }
.cta-inner h2 { font-weight: 300; font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 24ch; margin: 0 auto 30px; }
.cta-inner h2 strong { font-weight: 600; }

/* ---------- Footer (slate, 3-column like the reference) ---------- */
.footer { background: var(--charcoal); color: #b9bec7; padding: 80px 28px 40px; }
.footer .container { max-width: 1080px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer h4 {
  font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: #8d939e; margin-bottom: 20px;
}
.footer-logo { font-weight: 700; font-size: 17px; color: #f4f2ee; margin-bottom: 10px; }
.footer-tagline { font-size: 13.5px; color: #8d939e; max-width: 34ch; }
.footer-col a { display: block; color: #b9bec7; text-decoration: none; font-size: 14px; padding: 5px 0; }
.footer-col a:hover { color: #f4f2ee; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; }
.footer-bottom p { font-size: 12px; color: #8d939e; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Modals (kept functional from the previous page) ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(15, 18, 24, .6);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.modal {
  background: var(--card); color: var(--ink); max-width: 440px; width: 100%;
  padding: 44px 42px; position: relative; box-shadow: var(--shadow);
}
.modal-close {
  position: absolute; top: 14px; right: 18px; background: none; border: none;
  font-size: 26px; color: var(--muted); cursor: pointer;
}
.modal h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.modal-price { font-size: 15px; font-weight: 600; color: var(--accent); margin-bottom: 8px; }
.modal-desc { font-size: 14.5px; color: var(--muted); margin-bottom: 26px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 7px; }
.form-field input {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); background: var(--paper);
  color: var(--ink); font: inherit; font-size: 15px;
}
.form-field input:focus { outline: 2px solid var(--accent); outline-offset: -1px; border-color: transparent; }
.modal .btn-primary, .modal .btn-secondary {
  display: block; width: 100%; text-align: center; cursor: pointer; font: inherit;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 15px; border: 1px solid var(--accent); margin-bottom: 12px;
}
.modal .btn-primary { background: var(--accent); color: var(--on-accent); }
.modal .btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.modal .btn-secondary { background: none; color: var(--ink); border-color: var(--line); }
.modal .btn-secondary:hover { border-color: var(--ink); }
.modal-code-link { text-align: center; font-size: 13px; margin-top: 6px; }
.modal-code-link a { color: var(--muted); }
.modal-cancel-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 6px; }
