/* Talk Whiz — shared site styles
   Mirrors the iOS app's design system (SWTheme.swift): warm blush canvas,
   aubergine ink, peach as the single action colour, deep-plum gradient bands,
   Clash Display headings + Instrument Serif italic accents.
   Tokens below are the same hex values as SWTheme in the app. */

:root {
  /* Canvas & surfaces (light-first, like the app) */
  --canvas:      #FBF6F1;   /* warm off-white */
  --surface:     #FFFFFF;   /* card surface */
  --chip:        #EDEBE4;   /* neutral chip */
  --tint:        #F5EBF3;   /* tinted icon ground */

  /* Type */
  --ink:         #2A1430;
  --body:        #54395A;
  --muted:       #8F7591;
  --subtle:      #B29AB0;
  --hairline:    rgba(42,20,48,0.08);

  /* Brand */
  --aubergine:   #5B2A6E;
  --plum-hi:     #38173F;
  --plum-lo:     #26102E;
  --plum-deep:   #170B1D;

  /* Action + accents (fixed in both modes in the app) */
  --peach:       #FF6B35;
  --peach-light: #FF9866;
  --peach-deep:  #E1531F;
  --mint:        #5AD79B;
  --amber:       #FFA928;
  --lilac:       #C08BD6;
  --sky:         #5FC3E8;

  /* On-dark type (dark-band variants of ink/muted) */
  --ink-dark:    #F8F1F7;
  --muted-dark:  #9A7FA6;
  --body-dark:   #CBB4CE;

  --font-display: 'Clash Display', 'Avenir Next', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif:   'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-ui:      -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Inter, sans-serif;

  --card-shadow:    0 10px 30px rgba(42,20,48,0.07);
  --card-shadow-hi: 0 18px 44px rgba(42,20,48,0.12);

  --radius:      20px;   /* cardRadius */
  --radius-lg:   24px;   /* deepCardRadius */
  --radius-row:  18px;   /* rowRadius */
  --radius-btn:  16px;   /* buttonRadius */
  --maxw:        1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--aubergine); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 2px solid var(--peach); outline-offset: 3px; border-radius: 6px; }

/* Uppercase kicker — the app's swKicker */
.kicker {
  font-family: var(--font-ui); font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.13em; color: var(--peach);
}
/* Instrument Serif italic accent line — the app's prompt style */
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,241,0.82);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  border-bottom: 1px solid var(--hairline);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.12rem;
  color: var(--ink); letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand .whiz { color: var(--peach); }
.nav-links { display: flex; gap: 26px; align-items: center; list-style: none; }
.nav-links a { color: var(--body); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-cta {
  background: var(--peach); color: #fff !important; font-weight: 700;
  padding: 9px 18px; border-radius: var(--radius-btn); font-size: 0.88rem;
  transition: background .15s ease, transform .15s ease;
}
.nav-cta:hover { background: var(--peach-deep); transform: translateY(-1px); text-decoration: none; }
@media (max-width: 800px) { .nav-links li:not(.nav-cta-li) { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 700;
  border-radius: var(--radius-btn); padding: 15px 28px; font-size: 1rem;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: var(--peach); color: #fff;
  box-shadow: 0 12px 30px rgba(255,107,53,0.32);
}
.btn-primary:hover { background: var(--peach-deep); }
.btn-ghost { background: var(--surface); color: var(--ink); box-shadow: var(--card-shadow); }
.btn-ghost:hover { box-shadow: var(--card-shadow-hi); }
.btn svg { flex-shrink: 0; }
/* On the dark hero band */
.btn-ghost.on-dark { background: rgba(255,255,255,0.10); color: var(--ink-dark); box-shadow: none; }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,0.16); }

/* ---------- Hero (deep plum band, like the app's header card) ---------- */
.hero {
  position: relative; overflow: hidden; padding: 84px 0 0;
  background: linear-gradient(180deg, var(--plum-hi), var(--plum-lo) 62%, var(--plum-deep));
  color: var(--ink-dark);
}
/* peach glow, echoing the recording orb */
.hero::before {
  content: ""; position: absolute; right: -12%; top: -18%;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,107,53,0.34), rgba(255,107,53,0.10) 42%, transparent 68%);
  pointer-events: none;
}
.hero .container {
  position: relative; display: grid;
  grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
@media (max-width: 920px) {
  .hero { padding-top: 56px; }
  .hero .container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-actions, .hero-proof { justify-content: center; }
}
.hero-copy { padding-bottom: 84px; }
@media (max-width: 920px) { .hero-copy { padding-bottom: 0; } }
.hero .kicker { color: var(--peach-light); margin-bottom: 20px; display: inline-block; }
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4rem); line-height: 1.02; margin-bottom: 18px;
  color: #fff;
}
.hero h1 .accent { color: var(--peach); }
.hero-sub {
  font-family: var(--font-serif); font-style: italic;
  color: var(--body-dark); font-size: 1.45rem; line-height: 1.35;
  max-width: 30rem; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }
.hero-proof { display: flex; gap: 34px; flex-wrap: wrap; color: var(--muted-dark); font-size: 0.84rem; }
.hero-proof strong {
  color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: 1.3rem; display: block; letter-spacing: -0.01em;
}

/* ---------- Hero phone mockup (the Today screen, rebuilt in HTML) ---------- */
.hero-media { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.phone {
  width: min(330px, 82vw);
  background: var(--canvas);
  border-radius: 44px 44px 0 0;
  border: 10px solid #0e0512; border-bottom: none;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
  overflow: hidden;
  font-size: 14px;
}
.phone .screen-top {
  background: linear-gradient(160deg, #4a1f56, var(--plum-hi) 55%, var(--plum-lo));
  color: var(--ink-dark); padding: 46px 20px 20px;
}
.phone .greeting { font-family: var(--font-serif); font-style: italic; color: var(--body-dark); font-size: 0.95rem; }
.phone .day-row { display: flex; align-items: center; justify-content: space-between; margin-top: 2px; }
.phone .day { font-family: var(--font-display); font-weight: 600; font-size: 2.1rem; color: #fff; letter-spacing: -0.01em; }
.phone .day small { font-size: 1.05rem; color: var(--muted-dark); font-weight: 500; }
.phone .ring { position: relative; width: 64px; height: 64px; }
.phone .ring svg { transform: rotate(-90deg); display: block; }
.phone .ring .pct {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; color: #fff; line-height: 1.1;
}
.phone .ring .pct span { font-size: 0.42rem; letter-spacing: 0.1em; color: var(--muted-dark); font-weight: 600; }
.phone .streak {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  background: rgba(255,169,40,0.16); color: var(--amber);
  font-weight: 600; font-size: 0.78rem; padding: 5px 12px; border-radius: 999px;
}
.phone .screen-body { padding: 16px 14px 20px; }
.phone .card {
  background: var(--surface); border-radius: var(--radius-row);
  box-shadow: 0 6px 18px rgba(42,20,48,0.06); padding: 14px 14px 12px; margin-bottom: 12px;
}
.phone .card-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.phone .card-head h4 { font-size: 1rem; color: var(--ink); }
.phone .card-head span { color: var(--peach); font-weight: 600; font-size: 0.76rem; }
.phone .task { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; }
.phone .task .dot {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.72rem;
}
.phone .task .dot.done { background: var(--mint); color: #fff; }
.phone .task .dot.now  { background: var(--peach); color: #fff; }
.phone .task .dot.next { background: var(--chip); color: var(--muted); }
.phone .task .t { flex: 1; min-width: 0; }
.phone .task .t b { display: block; font-size: 0.86rem; color: var(--ink); font-weight: 600; }
.phone .task .t.strike b { color: var(--muted); text-decoration: line-through; font-weight: 500; }
.phone .task .t i { font-family: var(--font-serif); color: var(--body); font-size: 0.84rem; }
.phone .task .t small { color: var(--muted); font-size: 0.76rem; }
.phone .task .min { color: var(--muted); font-size: 0.76rem; white-space: nowrap; padding-top: 2px; }
.phone .task.active {
  background: #FFF0E8; border-radius: 14px; padding: 10px; margin: 4px -4px;
}
.phone .task.active .min { color: var(--peach); font-weight: 700; }
.phone .bars { display: flex; align-items: flex-end; gap: 9px; height: 58px; padding-top: 6px; }
.phone .bars i {
  flex: 1; border-radius: 6px; background: linear-gradient(180deg, var(--peach-light), var(--peach));
}
.phone .bars i.off { background: var(--chip); height: 8% !important; }
.phone .bars-labels { display: flex; gap: 9px; margin-top: 6px; }
.phone .bars-labels span { flex: 1; text-align: center; font-size: 0.62rem; color: var(--muted); font-weight: 600; }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-alt { background: #F6EFE8; }
.section-head { max-width: 46rem; margin: 0 auto 54px; text-align: center; }
.section-head .kicker { display: block; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); line-height: 1.08; margin-bottom: 14px; color: var(--ink); }
.section-head h2 .accent { color: var(--peach); }
.section-head p { color: var(--body); font-size: 1.05rem; }
.section-head p.serif { font-size: 1.25rem; color: var(--muted); }

/* ---------- Steps (the daily session) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--card-shadow); padding: 26px 22px;
}
.step .num {
  width: 36px; height: 36px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--peach); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--ink); }
.step .mins { color: var(--peach); font-weight: 600; font-size: 0.78rem; margin-bottom: 8px; display: block; }
.step p { color: var(--body); font-size: 0.92rem; }

/* ---------- Dark band (roleplay) ---------- */
.band-dark {
  background: linear-gradient(180deg, var(--plum-hi), var(--plum-lo));
  color: var(--ink-dark);
}
.band-dark .section-head h2 { color: #fff; }
.band-dark .section-head p { color: var(--body-dark); }
.band-dark .section-head p.serif { color: var(--body-dark); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 44px; } }
.split .side-head { text-align: left; margin: 0; }
@media (max-width: 900px) { .split .side-head { text-align: center; } }

/* Roleplay chat mockup */
.chat {
  background: var(--canvas); border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  padding: 18px; max-width: 420px; margin: 0 auto; width: 100%;
  color: var(--ink); font-size: 0.92rem;
}
.chat .chat-top { display: flex; align-items: center; gap: 11px; padding: 2px 4px 14px; border-bottom: 1px solid var(--hairline); margin-bottom: 14px; }
.chat .avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #7C3B92, var(--plum-hi));
  color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.chat .who b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.chat .who small { color: var(--muted); font-size: 0.78rem; }
.chat .scenario {
  margin-left: auto; background: var(--tint); color: var(--aubergine);
  font-weight: 600; font-size: 0.74rem; padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}
.chat .bubble {
  background: var(--surface); border-radius: 16px; padding: 12px 15px;
  box-shadow: 0 4px 14px rgba(42,20,48,0.05);
  margin-bottom: 10px; max-width: 88%; color: var(--body);
}
.chat .bubble.me {
  background: var(--aubergine); color: #F3E8F5; margin-left: auto;
  border-bottom-right-radius: 6px;
}
.chat .bubble.them { border-bottom-left-radius: 6px; }
.chat .listening {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border-radius: 16px; padding: 12px 15px;
  box-shadow: 0 8px 22px rgba(42,20,48,0.08);
}
.chat .listening .mic {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 35% 30%, var(--peach-light), var(--peach) 60%, var(--peach-deep));
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.chat .listening b { display: block; font-size: 0.88rem; }
.chat .listening small { color: var(--muted); font-size: 0.76rem; }
.chat .eq { margin-left: auto; display: flex; gap: 2.5px; align-items: flex-end; height: 18px; }
.chat .eq i { width: 3px; border-radius: 2px; background: var(--peach); }

/* Scenario chips under roleplay copy */
.scenarios { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
@media (max-width: 900px) { .scenarios { justify-content: center; } }
.scenarios span {
  background: rgba(255,255,255,0.08); color: var(--body-dark);
  border-radius: 999px; padding: 8px 16px; font-size: 0.85rem; font-weight: 500;
}
.scenarios span.on { background: var(--peach); color: #fff; font-weight: 600; }

/* ---------- Feedback / metrics ---------- */
.report {
  background: linear-gradient(180deg, var(--plum-hi), var(--plum-lo));
  border-radius: var(--radius-lg); box-shadow: var(--card-shadow-hi);
  color: var(--ink-dark); padding: 30px 28px; max-width: 440px; margin: 0 auto; width: 100%;
}
.report .score-row { display: flex; align-items: center; gap: 20px; margin-bottom: 22px; }
.report .score-ring { position: relative; width: 92px; height: 92px; flex-shrink: 0; }
.report .score-ring svg { transform: rotate(-90deg); display: block; }
.report .score-ring .val {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; line-height: 1;
  font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; color: #fff;
}
.report .score-ring .val small { font-size: 0.62rem; color: var(--muted-dark); font-family: var(--font-ui); font-weight: 600; margin-top: 4px; }
.report .verdict h3 { font-size: 1.35rem; color: #fff; margin-bottom: 8px; }
.report .delta {
  display: inline-block; background: rgba(90,215,155,0.16); color: var(--mint);
  font-weight: 600; font-size: 0.8rem; padding: 4px 11px; border-radius: 999px;
}
.report .tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.report .tile {
  background: rgba(255,255,255,0.06); border-radius: 14px; text-align: center; padding: 13px 6px;
}
.report .tile b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; line-height: 1.1; }
.report .tile small { color: var(--muted-dark); font-size: 0.74rem; }
.report .tile b.mint { color: var(--mint); } .report .tile b.amber { color: var(--amber); } .report .tile b.sky { color: var(--sky); }
.report .coach {
  border-top: 1px solid rgba(255,255,255,0.09); padding-top: 16px;
}
.report .coach .kicker { color: var(--peach-light); font-size: 0.68rem; display: block; margin-bottom: 8px; }
.report .coach p { font-family: var(--font-serif); font-style: italic; color: var(--body-dark); font-size: 1.02rem; line-height: 1.45; }

/* Metric axis chips */
.axes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
@media (max-width: 900px) { .axes { justify-content: center; } }
.axes span {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); box-shadow: var(--card-shadow);
  border-radius: 999px; padding: 8px 16px; font-size: 0.85rem; font-weight: 600; color: var(--ink);
}
.axes i { width: 9px; height: 9px; border-radius: 50%; }
.axes .c-peach i { background: var(--peach); } .axes .c-mint i { background: var(--mint); }
.axes .c-amber i { background: var(--amber); } .axes .c-lilac i { background: var(--lilac); }
.axes .c-sky i { background: var(--sky); }

/* ---------- Progress ---------- */
.progress-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; max-width: 880px; margin: 0 auto; }
@media (max-width: 800px) { .progress-grid { grid-template-columns: 1fr; } }
.pcard {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--card-shadow); padding: 24px;
}
.pcard .pcard-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.pcard h3 { font-size: 1.05rem; color: var(--ink); }
.pcard .down { color: var(--mint); font-weight: 700; font-size: 0.95rem; }
.pcard svg.trend { width: 100%; height: auto; display: block; }
.pcard .x-labels { display: flex; justify-content: space-between; color: var(--subtle); font-size: 0.76rem; margin-top: 8px; }
.pcard .best { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--hairline); font-size: 0.94rem; color: var(--body); }
.pcard .best:last-child { border-bottom: none; }
.pcard .best b { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.pcard .best b.mint { color: var(--mint); }
.pcard .streak-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.pcard .streak-line { display: flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; font-size: 0.95rem; }
.pcard .streak-head .month { color: var(--muted); font-size: 0.82rem; }
/* Contribution heatmap — the app's ContributionGrid */
.contrib { display: flex; gap: 8px; }
.contrib .wd {
  display: grid; grid-template-rows: repeat(7, 1fr); gap: 6px;
  font-size: 0.62rem; font-weight: 600; color: var(--subtle);
}
.contrib .wd span { display: flex; align-items: center; }
.contrib .cells {
  flex: 1; display: grid; grid-template-rows: repeat(7, 1fr);
  grid-auto-flow: column; grid-auto-columns: 1fr; gap: 6px;
}
.contrib .cells i { aspect-ratio: 1; border-radius: 26%; background: #F1EEE7; }
.contrib i.l1 { background: #E4C9F0; }
.contrib i.l2 { background: #7C3B92; }
.contrib i.l3 { background: var(--peach); }
.contrib i.today { box-shadow: 0 0 0 2.5px var(--peach-deep); }
.contrib-legend {
  display: flex; align-items: center; justify-content: flex-end; gap: 5px;
  margin-top: 12px; font-size: 0.72rem; color: var(--subtle);
}
.contrib-legend i { width: 12px; height: 12px; border-radius: 4px; background: #F1EEE7; }
.contrib-legend span:first-child { margin-right: 3px; }
.contrib-legend span:last-child { margin-left: 3px; }

/* ---------- Learn ---------- */
.learn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .learn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .learn-grid { grid-template-columns: 1fr; } }
.lesson {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--card-shadow); padding: 24px 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.lesson:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hi); }
.lesson .cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; display: block; margin-bottom: 10px; }
.lesson .cat.clarity { color: var(--mint); } .lesson .cat.energy { color: var(--amber); } .lesson .cat.structure { color: var(--lilac); }
.lesson h3 { font-size: 1.04rem; color: var(--ink); margin-bottom: 5px; }
.lesson p { font-family: var(--font-serif); font-style: italic; color: var(--muted); font-size: 0.98rem; }

/* ---------- Screenshots (store cards cropped to the device) ---------- */
.shots { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: start; }
@media (max-width: 1020px) { .shots { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .shots { grid-template-columns: repeat(2, 1fr); } }
.shot { text-align: center; }
.shot .frame {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 9 / 13;
  box-shadow: var(--card-shadow-hi);
  transition: transform .25s ease;
}
.shot:hover .frame { transform: translateY(-6px); }
.shot .frame img { width: 100%; height: 100%; object-fit: cover; object-position: bottom; }
.shot figcaption { margin-top: 13px; color: var(--muted); font-size: 0.88rem; font-weight: 500; }
.shot figcaption strong { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; margin-bottom: 1px; }

/* ---------- FAQ ---------- */
.faq { max-width: 740px; margin: 0 auto; }
.faq details {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--card-shadow);
  padding: 20px 24px; margin-bottom: 12px;
}
.faq details[open] { box-shadow: var(--card-shadow), inset 0 0 0 1px rgba(255,107,53,0.35); }
.faq summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 600;
  font-size: 1.04rem; list-style: none; position: relative; padding-right: 34px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--peach); font-size: 1.5rem; font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { margin-top: 12px; color: var(--body); font-size: 0.95rem; }

/* ---------- Big CTA (deep plum, orb glow) ---------- */
.cta-band {
  position: relative; text-align: center; padding: 96px 0; overflow: hidden;
  background: linear-gradient(180deg, var(--plum-hi), var(--plum-deep));
  color: var(--ink-dark);
}
.cta-band::before {
  content: ""; position: absolute; left: 50%; top: 58%; transform: translate(-50%,-50%);
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.20), transparent 62%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band img.icon { width: 84px; height: 84px; border-radius: 21px; margin: 0 auto 26px; box-shadow: 0 18px 44px rgba(0,0,0,0.5); }
.cta-band h2 { font-size: clamp(2rem, 4.2vw, 2.8rem); margin-bottom: 14px; color: #fff; }
.cta-band p { font-family: var(--font-serif); font-style: italic; color: var(--body-dark); font-size: 1.25rem; max-width: 32rem; margin: 0 auto 34px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--plum-deep); color: var(--muted-dark); padding: 54px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: var(--ink-dark); }
.footer-grid h4 {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.13em;
  color: var(--muted-dark); margin-bottom: 14px; font-weight: 600; font-family: var(--font-ui);
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--body-dark); font-size: 0.9rem; }
.footer-grid a:hover { color: #fff; text-decoration: none; }
.footer-about p { color: var(--muted-dark); font-size: 0.89rem; margin-top: 12px; max-width: 22rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 0.82rem;
}

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