/* ============================================================
   AI Upskill Coach | Site stylesheet
   ------------------------------------------------------------
   Contents
   1. Design tokens
   2. Base and reset
   3. Utilities
   4. Buttons
   5. Home page (.page-home)
   6. Sales pages (.page-sales)
   7. Accessibility and motion preferences
   ============================================================ */

/* 1. Design tokens
   ============================================================ */
:root {
  --onyx: #0D0D0F;
  --rich: #16161A;
  --surface: #1C1C21;
  --gold: #C8A24B;
  --gold-bright: #E6C778;
  --gold-deep: #A67C2E;
  --gold-grad: linear-gradient(120deg, #E6C778 0%, #C8A24B 48%, #A67C2E 100%);
  --ivory: #F4EFE6;
  --ivory-soft: #cfcabf;
  --warm-grey: #A6A29A;
  --line: rgba(244, 239, 230, 0.10);
  --line-gold: rgba(200, 162, 75, 0.22);
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
}

/* 2. Base and reset
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--onyx);
  color: var(--ivory);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a, a:hover, a:focus, a:active, a *, a:hover * { text-decoration: none !important; }

p { color: var(--warm-grey); }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

/* 3. Utilities
   ============================================================ */
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 56px; }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.rule { height: 1px; background: var(--line); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 4. Buttons
   ============================================================ */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  padding: 15px 28px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.btn-sm { padding: 11px 20px; font-size: 14px; }

.btn-primary {
  background: var(--gold-grad);
  color: #000000;
  border: none;
  box-shadow: 0 8px 30px rgba(200, 162, 75, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(200, 162, 75, 0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--line-gold);
}
.btn-ghost:hover {
  background: rgba(200, 162, 75, 0.08);
  border-color: var(--gold);
}

.btn-stack {
  flex-direction: column;
  gap: 3px;
  padding-top: 13px;
  padding-bottom: 13px;
  line-height: 1.1;
}
.btn-stack .bmain { display: inline-flex; align-items: center; gap: 9px; }
.btn-stack .bsub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  opacity: 0.72;
}
.arr { font-size: 1.05em; line-height: 1; }

/* 5. Home page
   ============================================================ */
.page-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-home h1, .page-home h2, .page-home h3 { line-height: 1.06; }
.page-home .eyebrow { letter-spacing: 0.32em; }

.page-home::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 720px;
  background: radial-gradient(46% 52% at 50% 36%, rgba(230, 199, 120, 0.15), rgba(200, 162, 75, 0.05) 44%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Top bar */
.top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 48px;
  border-bottom: 1px solid var(--line);
}
.top .brand img { height: 150px; width: auto; display: block; }

/* Hero intro */
.intro { position: relative; z-index: 2; text-align: center; padding: 70px 32px 30px; }
.intro .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid var(--line-gold);
  border-radius: 30px;
  background: rgba(200, 162, 75, 0.06);
  margin-bottom: 26px;
}
.intro .pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px 2px rgba(200, 162, 75, 0.7);
}
.intro .pill .eyebrow { letter-spacing: 0.2em; }
.intro h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: 25ch;
  margin: 0 auto;
}
.intro p {
  font-size: 18px;
  color: var(--ivory-soft);
  max-width: 56ch;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* Self-selection personas */
.select {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 8px auto 0;
  padding: 24px 48px 48px;
  width: 100%;
}
.personas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--rich);
}
.persona {
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .25s;
}
.persona + .persona { border-left: 1px solid var(--line); }
.persona::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 50% 120%, rgba(200, 162, 75, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.persona:hover::before { opacity: 1; }

.persona .ptag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.persona h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; margin: 14px 0 28px; }

.plabel {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plabel.present { color: var(--warm-grey); }
.plabel.future { color: var(--gold); }

.ptext { font-size: 15.5px; line-height: 1.62; color: var(--warm-grey); }
.ptext.relief { color: var(--ivory); font-weight: 500; }
.pflip { margin: 22px 0; color: var(--gold); font-size: 20px; }
.persona .hook {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.36;
  color: var(--ivory);
  margin: 30px 0 32px;
}
.learn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ivory);
  padding: 18px 24px;
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  transition: background .2s, border-color .2s, transform .2s;
}
.learn .arr-icon {
  display: inline-flex;
  transition: transform .22s cubic-bezier(.22, .61, .36, 1);
  color: var(--gold);
}
.persona:hover .learn { background: rgba(200, 162, 75, 0.08); border-color: var(--gold); }
.persona:hover .learn .arr-icon { transform: translateX(5px); }

/* Footer reassure */
.foot { position: relative; z-index: 2; text-align: center; padding: 4px 32px 44px; }
.foot p { font-size: 14.5px; color: var(--warm-grey); }
.foot a { color: var(--gold); font-weight: 500; }
.foot a:hover { color: var(--gold-bright); }

@media (max-width: 880px) {
  .personas { grid-template-columns: 1fr; }
  .persona + .persona { border-left: none; border-top: 1px solid var(--line); }
  .intro { padding-top: 50px; }
}
@media (max-width: 560px) {
  .top { padding: 22px 16px; }
  .intro { padding: 44px 16px 24px; }
  .select { padding: 20px 16px 36px; }
  .persona { padding: 34px 22px; }
}

/* 6. Sales pages
   ============================================================ */

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 15, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.wordmark { display: inline-flex; align-items: center; }
.wordmark img { height: 60px; width: auto; display: block; }
.site-footer .wordmark img { height: 66px; }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--warm-grey); transition: color .15s; }
.nav-links a:hover { color: var(--ivory); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: #000000; }

/* Hero, editorial split */
.hero {
  padding: 92px 0 76px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(200, 162, 75, 0.14), transparent 62%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  max-width: 880px;
}
.hero .kick { display: flex; align-items: center; gap: 14px; }
.hero .kick .ln { height: 1px; width: 46px; background: var(--line-gold); }
.hero h1 {
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 24px 0 0;
}
.hero h1 .serif { font-size: 1.02em; letter-spacing: -0.01em; }
.hero .lede {
  max-width: 48ch;
  margin-top: 28px;
  font-size: 18px;
  color: var(--ivory-soft);
  line-height: 1.62;
}
.hero-cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .micro { margin-top: 20px; font-size: 13.5px; color: var(--warm-grey); }

/* Hero media (ready for the sales video) */
.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  background: linear-gradient(180deg, var(--rich), var(--onyx));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}
.hero-media .ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: radial-gradient(80% 70% at 50% 40%, rgba(200, 162, 75, 0.12), transparent 70%);
}
.hero-media .play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 34px rgba(200, 162, 75, 0.4);
  cursor: pointer;
  transition: transform .18s;
}
.hero-media .play:hover { transform: scale(1.06); }
.hero-media .vlabel {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.hero-media .vsub {
  font-size: 11.5px;
  color: rgba(166, 162, 154, 0.55);
  font-style: italic;
  margin-top: -10px;
}
.hero-media video, .hero-media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 340px; }
}

/* Marquee proof */
.proof { border-bottom: 1px solid var(--line); background: var(--rich); }
.proof .wrap { display: flex; align-items: stretch; flex-wrap: wrap; }
.proof .stat {
  flex: 1;
  min-width: 160px;
  padding: 34px 8px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.proof .stat:first-child { border-left: none; }
.proof .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.proof .cap {
  font-size: 12px;
  color: var(--warm-grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Section shell, numbered editorial */
.sec { padding: 104px 0; position: relative; }
.sec-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: start;
  max-width: 920px;
}
.sec-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  padding-top: 6px;
}
.sec-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.sec-head .sub {
  grid-column: 2;
  font-size: 17px;
  color: var(--warm-grey);
  margin-top: 18px;
  max-width: 60ch;
  line-height: 1.62;
}

/* Problem */
.problem .body { max-width: 62ch; margin-left: 108px; margin-top: 8px; }
.problem .body p {
  font-size: 18px;
  color: var(--ivory-soft);
  margin-top: 20px;
  line-height: 1.66;
}
.problem .body .kick {
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 760px) { .problem .body { margin-left: 0; } }

/* Present / future fork */
.fork {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.col { padding: 46px 42px; display: flex; flex-direction: column; }
.col + .col { border-left: 1px solid var(--line); }
.col.future { background: linear-gradient(180deg, rgba(200, 162, 75, 0.06), transparent 50%); }
.col .ptag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.col.present .ptag { color: var(--warm-grey); }
.col.future .ptag { color: var(--gold); }
.col h3 { font-size: 25px; font-weight: 700; margin-bottom: 20px; line-height: 1.18; }
.col p { font-size: 15.5px; line-height: 1.62; color: var(--warm-grey); }
.col.future p { color: var(--ivory); }
.col .hook {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.36;
  color: var(--ivory);
  margin: 0;
  margin-top: auto;
  padding-top: 26px;
}
@media (max-width: 760px) {
  .fork { grid-template-columns: 1fr; }
  .col + .col { border-left: none; border-top: 1px solid var(--line); }
}
.fork-cta { display: flex; justify-content: center; margin-top: 40px; }

/* Solution reasons */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.reason { background: var(--onyx); padding: 38px 32px; }
.reason .rn {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}
.reason h3 { font-size: 19px; font-weight: 600; margin: 18px 0 10px; }
.reason p { font-size: 14.5px; line-height: 1.58; }
@media (max-width: 820px) { .reasons { grid-template-columns: 1fr; } }

/* How timeline */
.how {
  background: var(--rich);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.timeline {
  list-style: none;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.tstep { padding: 38px 34px; position: relative; }
.tstep + .tstep { border-left: 1px solid var(--line); }
.tstep .when {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.tstep .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--onyx);
  background: var(--gold-grad);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.tstep h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.tstep p { font-size: 14.5px; line-height: 1.58; }

.workshops {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ws {
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  padding: 24px 22px;
  background: linear-gradient(180deg, rgba(200, 162, 75, 0.05), transparent);
}
.ws .tag {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 10px;
}
.ws h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.ws p { font-size: 13.5px; line-height: 1.55; }
@media (max-width: 820px) {
  .timeline, .workshops { grid-template-columns: 1fr; }
  .tstep + .tstep { border-left: none; border-top: 1px solid var(--line); }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 8px;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  background: linear-gradient(180deg, var(--surface), var(--onyx));
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 14px;
  margin-bottom: 8px;
}
.about-text p { font-size: 15.5px; margin-top: 14px; line-height: 1.66; }
.about-text .lead {
  font-size: 18px;
  color: var(--ivory-soft);
  margin-top: 18px;
  line-height: 1.62;
}
.about-text .sig {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ivory);
  margin-top: 26px;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { max-width: 320px; }
}

/* Testimonials (ready for video testimonials) */
.testi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tcard .tvid {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  background: linear-gradient(180deg, var(--rich), var(--onyx));
}
.tvid .ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: radial-gradient(80% 70% at 50% 42%, rgba(200, 162, 75, 0.1), transparent 70%);
}
.tvid .tplay {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s;
}
.tvid .tplay:hover { transform: scale(1.07); }
.tvid .tlabel {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.tquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ivory);
  line-height: 1.5;
  margin: 22px 0 14px;
}
.tname { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.trole { font-size: 13px; color: var(--warm-grey); margin-top: 2px; }
@media (max-width: 820px) { .testi { grid-template-columns: 1fr; max-width: 360px; } }

/* FAQ */
.faq { background: var(--rich); border-top: 1px solid var(--line); }
.faq-list { margin-top: 48px; max-width: 880px; margin-left: 108px; }
.faq-list details { border-top: 1px solid var(--line); padding: 6px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 22px;
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform .2s;
}
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list details p {
  padding: 0 30px 24px 0;
  font-size: 15px;
  line-height: 1.66;
  max-width: 68ch;
}
@media (max-width: 760px) { .faq-list { margin-left: 0; } }

/* Final CTA */
.final {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-gold);
}
.final::before {
  content: "";
  position: absolute;
  bottom: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 560px;
  background: radial-gradient(circle, rgba(200, 162, 75, 0.16), transparent 62%);
  pointer-events: none;
}
.final h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 18px auto 0;
  line-height: 1.04;
  position: relative;
}
.final p {
  max-width: 54ch;
  margin: 22px auto 0;
  font-size: 17px;
  position: relative;
}
.final .micro {
  font-size: 13.5px;
  color: var(--warm-grey);
  max-width: 52ch;
  margin: 18px auto 0;
  position: relative;
}
.booking {
  max-width: 920px;
  margin: 48px auto 0;
  position: relative;
  border: 1px solid var(--line-gold);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.booking iframe { display: block; width: 100%; height: 640px; border: 0; }

/* Footer */
.site-footer { padding: 48px 0; border-top: 1px solid var(--line); }
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer p { font-size: 13px; color: var(--warm-grey); }

/* Small-screen refinements for sales pages */
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .site-nav .wrap { height: 70px; }
  .nav-links { gap: 0; }
  .nav-links a:not(.btn-primary) { display: none; }
  .col { padding: 34px 22px; }
  .reason { padding: 30px 22px; }
  .tstep { padding: 30px 22px; }
  .faq-list summary { font-size: 17px; }
}

/* 7. Accessibility and motion preferences
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
