/* =============================================================
   Patrick Moore Coaching — Finished dark build
   Premium, restrained, mature, high-contrast.
   Type-driven: single sans family, weight contrast for hierarchy.
   No decorative icons, badges, or illustrations.
   ============================================================= */

/* Fonts: General Sans (Fontshare). Body + display from one family. */
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap');

:root {
  /* -------- Type scale -------- */
  --fs-xs: 0.8125rem;       /* 13px */
  --fs-sm: 0.9375rem;       /* 15px */
  --fs-base: 1.0625rem;     /* 17px */
  --fs-lg: 1.25rem;         /* 20px */
  --fs-xl: clamp(1.375rem, 1.1rem + 0.9vw, 1.75rem);
  --fs-2xl: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
  --fs-3xl: clamp(2.25rem, 1.5rem + 2.6vw, 3.5rem);
  --fs-hero: clamp(2.5rem, 1.4rem + 3.4vw, 4.25rem);

  /* -------- Spacing -------- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.75rem;
  --sp-8: 3.5rem;
  --sp-10: 5rem;
  --sp-12: 6.5rem;
  --sp-14: 8rem;
  --sp-16: 10rem;

  /* -------- Dark premium system -------- */
  --paper: #111211;
  --paper-2: #171817;
  --surface: #1D1F1E;
  --surface-2: #242625;
  --ink: #0E0F0E;
  --ink-2: #1A1B1A;
  --ink-soft: #242725;
  --rule: #3B3E3C;
  --rule-soft: #2B2E2C;
  --text: #F3EFE6;
  --text-muted: #C9C4B9;
  --text-faint: #9C9A93;
  --on-ink: #F3EFE6;
  --on-ink-muted: #C0BBAF;

  --accent: #74A3A8;
  --accent-hover: #8DB8BC;
  --accent-on: #050505;

  /* -------- Layout tokens -------- */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* -------- Type family -------- */
  --font-sans: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* =============================================================
   Reset / base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 2%, rgba(116, 163, 168, 0.13), transparent 34rem),
    linear-gradient(180deg, #111211 0%, #151615 46%, #111211 100%);
  font-feature-settings: "ss01", "ss02", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--ink); }

/* =============================================================
   Typography defaults
   ============================================================= */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
}
h1 { font-size: var(--fs-hero); letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: var(--fs-3xl); letter-spacing: -0.025em; line-height: 1.05; }
h3 { font-size: var(--fs-xl); letter-spacing: -0.015em; line-height: 1.2; font-weight: 600; }
h4 { font-size: var(--fs-lg); letter-spacing: -0.01em; line-height: 1.25; font-weight: 600; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  background: var(--text-muted);
}

.lead {
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 56ch;
  font-weight: 400;
}

.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }

/* =============================================================
   Layout
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-hairline { border-top: 1px solid var(--rule-soft); }
.section-alt { background: var(--paper-2); }
.section-ink { background: #171817; color: var(--on-ink); }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: var(--on-ink); }
.section-ink .eyebrow { color: var(--on-ink-muted); }
.section-ink .eyebrow::before { background: var(--on-ink-muted); }
.section-ink .lead { color: var(--on-ink-muted); }

.section-header { display: grid; gap: var(--sp-4); margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header .eyebrow { margin-bottom: var(--sp-2); }

/* Two-col header: eyebrow + heading on left, supporting text on right */
.section-header-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 880px) {
  .section-header-split { grid-template-columns: 1.2fr 1fr; gap: var(--sp-8); }
}

/* =============================================================
   Navigation
   ============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, #111211 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.nav.scrolled { border-bottom-color: var(--rule-soft); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
}
.brand-mark { display: none; }
.nav-links {
  display: none;
  gap: var(--sp-6);
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--text); }
@media (min-width: 760px) {
  .nav-links { display: inline-flex; }
}
.nav-cta { display: inline-flex; align-items: center; gap: var(--sp-4); }

/* =============================================================
   Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.95em 1.5em;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--text);
  color: var(--ink);
  border-color: var(--text);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}
.btn-primary:hover { background: #FFFFFF; border-color: #FFFFFF; }

.btn-accent {
  background: var(--accent);
  color: var(--accent-on);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--rule);
}
.btn-ghost:hover { border-color: var(--text); }

.btn-link {
  padding: 0;
  font-weight: 500;
  color: var(--text);
  border: 0;
  background: transparent;
  position: relative;
}
.btn-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  transition: opacity .18s ease;
}
.btn-link:hover::after { opacity: 1; }

.btn-sm { padding: 0.65em 1.1em; font-size: 0.875rem; }
.btn-lg { padding: 1.05em 1.7em; font-size: 1rem; }

/* On dark sections */
.section-ink .btn-primary,
.cta-band .btn-primary,
.closing .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.section-ink .btn-primary:hover,
.cta-band .btn-primary:hover,
.closing .btn-primary:hover { background: #fff; border-color: #fff; }
.section-ink .btn-ghost,
.cta-band .btn-ghost,
.closing .btn-ghost { color: var(--on-ink); border-color: rgba(241,241,238,0.2); }
.section-ink .btn-ghost:hover,
.cta-band .btn-ghost:hover,
.closing .btn-ghost:hover { border-color: var(--paper); }
.section-ink .btn-link,
.cta-band .btn-link,
.closing .btn-link { color: var(--on-ink); }

/* Featured (dark) plan CTA inverts to light surface */
.plan-coaching .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.plan-coaching .btn-primary:hover { background: #fff; border-color: #fff; }
.plan-coaching .btn-ghost { color: var(--on-ink); border-color: rgba(241,241,238,0.25); }
.plan-coaching .btn-ghost:hover { border-color: var(--paper); }

/* =============================================================
   Hero
   ============================================================= */
.hero {
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6.5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: start;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1.06fr) minmax(23rem, 0.94fr); gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
}
.hero h1 {
  max-width: 18ch;
}
.hero-sub {
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 46ch;
  margin-top: var(--sp-5);
}
.hero-support {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 48ch;
  margin-top: var(--sp-4);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.hero-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--rule-soft);
  margin-top: var(--sp-7);
}
.hero-aside {
  display: grid;
  gap: var(--sp-4);
  padding-top: var(--sp-4);
  align-self: center;
}
.hero-aside dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  border-top: 1px solid var(--rule);
  padding-top: var(--sp-5);
}
.hero-aside .pair {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  align-items: baseline;
}
.hero-aside dt {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-aside dd {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
}
.hero-index {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
}

/* =============================================================
   Pain section
   ============================================================= */
.pain-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 760px) {
  .pain-list { grid-template-columns: 1fr 1fr; }
  .pain-list > .pain-item:nth-child(odd) { border-right: 1px solid var(--rule); }
}
.pain-item {
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-5);
  align-items: baseline;
}
@media (min-width: 760px) {
  .pain-item { padding: var(--sp-6) var(--sp-6) var(--sp-6) 0; }
  .pain-item:nth-child(even) { padding-left: var(--sp-6); padding-right: 0; }
}
.pain-num {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  padding-top: 0.45em;
}
.pain-text {
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--text);
}
.pain-prompt {
  margin-top: var(--sp-8);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4) var(--sp-5);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--rule-soft);
}
.pain-prompt p { margin: 0; color: var(--text-muted); max-width: 52ch; }

/* =============================================================
   Reasons grid (Why other approaches fail)
   ============================================================= */
.reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 760px) { .reasons { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .reasons { grid-template-columns: repeat(4, 1fr); } }

.reason {
  padding: var(--sp-6) var(--sp-5) var(--sp-7) 0;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 760px) {
  .reason { padding: var(--sp-6) var(--sp-5) var(--sp-7); }
  .reason:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--rule); }
  .reason:nth-child(even) { padding-right: 0; }
}
@media (min-width: 1080px) {
  .reason { padding: var(--sp-6) var(--sp-5) var(--sp-7) var(--sp-5); border-right: 1px solid var(--rule); }
  .reason:first-child { padding-left: 0; }
  .reason:last-child { padding-right: 0; border-right: 0; }
  .reason:nth-child(even) { padding-right: var(--sp-5); }
}
.reason-num {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.reason h3 {
  margin: var(--sp-4) 0 var(--sp-3);
  font-size: 1.25rem;
}
.reason p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; }

.reason-foot {
  margin-top: var(--sp-8);
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 760px) {
  .reason-foot { grid-template-columns: 1fr auto; gap: var(--sp-6); }
}
.reason-foot p { color: var(--text-muted); margin: 0; max-width: 64ch; }

/* =============================================================
   Method — three steps
   ============================================================= */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  counter-reset: step;
}
@media (min-width: 880px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
}
.step {
  padding: var(--sp-6);
  border: 1px solid var(--rule);
  background: var(--paper);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-height: 100%;
  transition: border-color .2s ease, transform .2s ease;
}
.step:hover { border-color: var(--ink); }
.step-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--accent);
}
.step h3 { font-size: 1.2rem; line-height: 1.3; }
.step p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; }
.steps-prompt { margin-top: var(--sp-8); display: flex; justify-content: flex-start; }

/* On dark variant of method */
.section-ink .step {
  background: transparent;
  border-color: rgba(241,241,238,0.14);
}
.section-ink .step:hover { border-color: var(--paper); }
.section-ink .step p { color: var(--on-ink-muted); }

/* =============================================================
   What you get — offer list
   ============================================================= */
.offer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.offer {
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 760px) {
  .offer {
    grid-template-columns: auto 1fr 2fr;
    gap: var(--sp-6);
    align-items: baseline;
  }
}
.offer-num {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  padding-top: 0.3em;
}
.offer h3 { font-size: 1.15rem; }
.offer p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; margin: 0; }

.offer-foot { margin-top: var(--sp-7); }

/* =============================================================
   CTA band (accent / ink)
   ============================================================= */
.cta-band {
  background: var(--ink);
  color: var(--on-ink);
}
.cta-band .container {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}
.cta-band-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 880px) {
  .cta-band-grid { grid-template-columns: 1.4fr 1fr; gap: var(--sp-8); }
}
.cta-band h2 {
  color: var(--on-ink);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
  max-width: 18ch;
}
.cta-band p { color: var(--on-ink-muted); max-width: 50ch; font-size: var(--fs-lg); }
.cta-band-action { display: flex; justify-content: flex-start; }
@media (min-width: 880px) {
  .cta-band-action { justify-content: flex-end; }
}

/* =============================================================
   Process — what happens next
   ============================================================= */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  counter-reset: proc;
}
@media (min-width: 880px) {
  .process { grid-template-columns: repeat(3, 1fr); border-top: 0; }
}
.process-item {
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 880px) {
  .process-item {
    padding: 0 var(--sp-6) 0 var(--sp-6);
    border-bottom: 0;
    border-left: 1px solid var(--rule);
  }
  .process-item:first-child { padding-left: 0; border-left: 0; }
  .process-item:last-child { padding-right: 0; }
}
.process-num {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  display: block;
  margin-bottom: var(--sp-4);
}
.process-item h3 { font-size: 1.15rem; margin-bottom: var(--sp-3); }
.process-item p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; margin: 0; }
.process-foot { margin-top: var(--sp-8); display: flex; flex-wrap: wrap; gap: var(--sp-4) var(--sp-5); align-items: center; padding-top: var(--sp-6); border-top: 1px solid var(--rule-soft); }
.process-foot p { color: var(--text-muted); margin: 0; }

/* =============================================================
   About / bio
   ============================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 960px) {
  .about-grid { grid-template-columns: 5fr 7fr; gap: var(--sp-10); }
}
.about-header h2 { max-width: 16ch; }
.about-intro { color: var(--text-muted); font-size: var(--fs-base); line-height: 1.65; max-width: 52ch; }

.about-bio { font-size: var(--fs-base); line-height: 1.65; }
.about-bio p { color: var(--text); max-width: 60ch; }

.credentials {
  list-style: none;
  padding: 0;
  margin: var(--sp-6) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.credentials li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  align-items: baseline;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.9375rem;
}
.credentials .cred-label {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.005em;
  min-width: 12ch;
}
.credentials .cred-body { color: var(--text-muted); line-height: 1.55; }

/* =============================================================
   Testimonials (templates only)
   ============================================================= */
.tmpl-note {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border: 1px dashed var(--rule);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.005em;
  margin-bottom: var(--sp-6);
}
.tmpl-note strong { color: var(--text); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.6875rem; }

.tcards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 880px) {
  .tcards { grid-template-columns: repeat(3, 1fr); }
}
.tcard {
  padding: var(--sp-6);
  background: var(--paper);
  border: 1px dashed var(--rule);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.tcard-tag {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
}
.tcard h3 { font-size: 1.05rem; line-height: 1.3; color: var(--text); }
.tcard-quote {
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--text);
  border-left: 2px solid var(--rule);
  padding-left: var(--sp-4);
  margin: 0;
}
.tcard-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--rule-soft);
}
.tcard-meta div { display: grid; grid-template-columns: 10ch 1fr; gap: var(--sp-3); }
.tcard-meta dt { color: var(--text-faint); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.6875rem; padding-top: 0.15em; }
.tcard-meta dd { margin: 0; }

/* =============================================================
   Pricing
   ============================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: stretch;
}
@media (min-width: 880px) {
  .pricing-grid { grid-template-columns: 1.05fr 1fr; gap: var(--sp-6); align-items: stretch; }
}
.plan {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  background: var(--paper);
  position: relative;
}
.plan-starter {
  /* keeps a credible, calm presence */
}
.plan-coaching {
  background: var(--ink);
  color: var(--on-ink);
  border-color: var(--ink);
  /* slightly taller / featured */
}
@media (min-width: 880px) {
  .plan-coaching { transform: none; }
}
.plan-coaching h3, .plan-coaching .plan-price { color: var(--on-ink); }
.plan-coaching .plan-desc, .plan-coaching .features li { color: var(--on-ink-muted); }
.plan-coaching .features li::before { background: var(--paper); }
.plan-coaching .plan-foot { border-color: rgba(241,241,238,0.16); color: var(--on-ink-muted); }

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.plan-name {
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.plan-coaching .plan-name { color: var(--on-ink-muted); }
.plan-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4em 0.7em;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--accent-on);
}

.plan h3 {
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}

.plan-price {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}
.plan-price .plan-price-sub {
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--text-muted);
  letter-spacing: 0;
  margin-left: 0.35em;
}
.plan-coaching .plan-price-sub { color: var(--on-ink-muted); }

.plan-desc {
  margin-top: var(--sp-3);
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 38ch;
}

.features {
  list-style: none;
  padding: 0;
  margin: var(--sp-5) 0 var(--sp-6);
  display: grid;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--text);
}
.features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3);
  align-items: baseline;
  line-height: 1.5;
}
.features li::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: var(--ink);
  margin-top: 0.7em;
}
.plan-coaching .features li { color: var(--paper); }

.plan-cta { margin-top: auto; display: flex; }
.plan-cta .btn { width: 100%; }

.plan-foot {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--rule-soft);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pricing-lead { color: var(--text-muted); max-width: 58ch; }

/* =============================================================
   Guarantee
   ============================================================= */
.guarantee {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 880px) {
  .guarantee { grid-template-columns: 5fr 7fr; gap: var(--sp-10); align-items: start; }
}
.guarantee p { font-size: var(--fs-lg); line-height: 1.55; color: var(--text); max-width: 60ch; }

/* =============================================================
   FAQs
   ============================================================= */
.faqs {
  border-top: 1px solid var(--rule);
}
.faq {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-5);
  padding: var(--sp-5) 0;
  cursor: pointer;
  list-style: none;
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.4;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--text);
  transition: transform .25s ease, opacity .2s ease;
}
.faq-toggle::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }
.faq-toggle::after { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.faq[open] .faq-toggle::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-answer {
  color: var(--text-muted);
  font-size: var(--fs-base);
  line-height: 1.65;
  max-width: 70ch;
  padding: 0 0 var(--sp-6) 0;
}
.faq-answer p { margin: 0; }

/* =============================================================
   Training review form
   ============================================================= */
.form-section {
  background: var(--paper-2);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 960px) {
  .form-grid { grid-template-columns: 5fr 7fr; gap: var(--sp-10); align-items: start; }
}
.form-header h2 { max-width: 18ch; }
.form-header p { color: var(--text-muted); max-width: 44ch; }

.form-note {
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--rule);
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 46ch;
  line-height: 1.55;
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.field {
  display: grid;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.field:last-of-type { margin-bottom: var(--sp-6); }
.field label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
}
.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: var(--sp-3) 0;
  border-radius: 0;
  transition: border-color .15s ease;
}
.field textarea {
  border: 1px solid var(--rule);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  resize: vertical;
  min-height: 110px;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.hp { position: absolute; left: -9999px; }
.form-submit { display: flex; }
.form-submit .btn { width: 100%; }
@media (min-width: 520px) {
  .form-submit { justify-content: flex-start; }
  .form-submit .btn { width: auto; min-width: 220px; }
}

/* =============================================================
   Closing CTA + Footer
   ============================================================= */
.closing {
  background: var(--ink);
  color: var(--on-ink);
}
.closing-inner {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  padding: clamp(4rem, 8vw, 7rem) 0;
  align-items: end;
}
@media (min-width: 880px) {
  .closing-inner { grid-template-columns: 1.4fr 1fr; gap: var(--sp-8); }
}
.closing h2 {
  color: var(--on-ink);
  font-size: clamp(2.25rem, 1.6rem + 3vw, 4rem);
  letter-spacing: -0.03em;
  max-width: 14ch;
  line-height: 1.02;
}
.closing p {
  color: var(--on-ink-muted);
  font-size: var(--fs-lg);
  max-width: 40ch;
}
.closing-action { display: flex; }
@media (min-width: 880px) { .closing-action { justify-content: flex-end; } }

.footer {
  background: var(--ink);
  color: var(--on-ink-muted);
  border-top: 1px solid rgba(241,241,238,0.08);
  padding: var(--sp-6) 0 var(--sp-7);
  font-size: 0.875rem;
}
.footer-inner {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: auto 1fr auto; align-items: center; gap: var(--sp-6); }
}
.footer-brand { color: var(--on-ink); font-weight: 600; letter-spacing: -0.01em; }
.footer-meta { line-height: 1.6; max-width: 70ch; }
.footer-copy { font-variant-numeric: tabular-nums; }

/* =============================================================
   Thank-you page
   ============================================================= */
.thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.thanks-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: var(--sp-12) 0;
}
.thanks-card {
  max-width: 640px;
  text-align: left;
}
.thanks-card h1 {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-5);
  max-width: 18ch;
}
.thanks-card p { font-size: var(--fs-lg); color: var(--text-muted); max-width: 56ch; }
.thanks-card .actions { margin-top: var(--sp-7); display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* =============================================================
   Utilities & motion
   ============================================================= */
.hidden { display: none !important; }

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

/* Small details: tabular figures on price/numbered chrome */
.tabular { font-variant-numeric: tabular-nums; }

/* =============================================================
   Final dark-finish overrides
   ============================================================= */
.section-hairline { border-top-color: var(--rule-soft); }
.section-alt { background: #171817; }

.nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-links { color: var(--text-muted); }
.nav-links a:hover { color: var(--text); }

.hero {
  min-height: min(820px, calc(100vh - 68px));
  display: grid;
  align-items: center;
  padding-top: clamp(4.25rem, 7vw, 6rem);
  padding-bottom: clamp(4.25rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 30%, rgba(247, 241, 230, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(0, 0, 0, 0.22)),
    #111211;
  opacity: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--paper));
}
.hero h1 {
  max-width: 14.6ch;
  font-weight: 700;
  letter-spacing: -0.055em;
}
.hero-sub {
  max-width: 48ch;
  color: var(--text-muted);
}
.hero-meta {
  max-width: 68ch;
  color: var(--text-faint);
  border-top-color: var(--rule);
}
.hero-aside {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--rule);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  border-radius: 18px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
}
.hero-aside dl { border-top-color: var(--rule); }

.hero-visual-wrap {
  position: relative;
  min-height: clamp(28rem, 47vw, 42rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(45vw, 36rem);
  aspect-ratio: 1.16 / 1;
  transform: translate(-42%, 3%);
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(247, 241, 230, 0.13);
  box-shadow: 0 4rem 9rem rgba(0, 0, 0, 0.58);
  opacity: 0.92;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 18, 17, 0.06), rgba(17, 18, 17, 0.00) 42%, rgba(17, 18, 17, 0.28)),
    linear-gradient(180deg, rgba(17, 18, 17, 0.00) 0%, rgba(17, 18, 17, 0.20) 100%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 36%;
  display: block;
}

.hero-visual-wrap .hero-aside {
  position: relative;
  z-index: 2;
  width: min(100%, 28rem);
  margin-left: auto;
  transform: translateY(5.5rem);
  backdrop-filter: blur(16px);
}

.section-header-split {
  align-items: start;
}
.lead,
.pricing-lead,
.about-intro,
.form-header p,
.pain-prompt p,
.process-foot p,
.reason-foot p {
  color: var(--text-muted);
}

.pain-list,
.reasons,
.offer-list,
.process,
.credentials {
  border-top-color: var(--rule);
}

.pain-item,
.reason,
.offer,
.process-item,
.credentials li {
  border-bottom-color: var(--rule-soft);
}

@media (min-width: 760px) {
  .pain-list {
    gap: var(--sp-4);
    border-top: 0;
  }
  .pain-list > .pain-item:nth-child(odd) { border-right: 0; }
  .pain-item {
    padding: var(--sp-5) !important;
    background: var(--surface);
    border: 1px solid var(--rule-soft);
    border-radius: 16px;
  }
}

@media (min-width: 1080px) {
  .reasons {
    gap: var(--sp-4);
    border-top: 0;
  }
  .reason {
    padding: var(--sp-5) !important;
    border: 1px solid var(--rule-soft) !important;
    border-radius: 16px;
    background: var(--surface);
  }
}

.reason p,
.offer p,
.process-item p,
.plan-desc,
.features,
.credentials .cred-body,
.tcard-meta,
.form-note,
.footer {
  color: var(--text-muted);
}

.reason-num,
.offer-num,
.process-num,
.hero-index {
  color: var(--accent);
}

.offer-list {
  gap: var(--sp-4);
  border-top: 0;
}
.offer {
  border: 1px solid var(--rule-soft);
  border-radius: 16px;
  background: var(--surface);
  padding: var(--sp-5);
}
@media (min-width: 760px) {
  .offer { padding: var(--sp-5); }
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(116, 163, 168, 0.12), transparent 38%),
    #171817;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

@media (min-width: 880px) {
  .process {
    gap: var(--sp-4);
  }
  .process-item {
    border: 1px solid var(--rule-soft);
    background: var(--surface);
    border-radius: 16px;
    padding: var(--sp-5) !important;
  }
}

.about-bio p,
.credentials .cred-label {
  color: var(--text);
}

.tmpl-note,
.tcard {
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--rule);
}
.tmpl-note strong,
.tcard h3,
.tcard-quote {
  color: var(--text);
}

.plan {
  background: var(--surface);
  border-color: var(--rule);
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}
.plan-coaching {
  background:
    linear-gradient(145deg, rgba(116, 163, 168, 0.17), transparent 42%),
    #F4F1EA;
  color: #050505;
  border-color: rgba(255, 255, 255, 0.45);
}
.plan-coaching h3,
.plan-coaching .plan-price,
.plan-coaching .features li {
  color: #050505;
}
.plan-coaching .plan-name,
.plan-coaching .plan-desc,
.plan-coaching .plan-price-sub,
.plan-coaching .plan-foot {
  color: rgba(5, 5, 5, 0.68);
}
.plan-coaching .features li::before {
  background: #050505;
}
.plan-coaching .btn-primary {
  background: #050505;
  color: #F4F1EA;
  border-color: #050505;
}
.plan-coaching .btn-primary:hover {
  background: #1C1C1C;
  border-color: #1C1C1C;
}
.plan-badge {
  background: rgba(5, 5, 5, 0.08);
  color: #050505;
}

.guarantee,
.faq-list details,
.form-card {
  background: var(--surface);
  border-color: var(--rule);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

input,
textarea {
  color: var(--text);
  background: #0A0B0C;
  border-color: var(--rule);
}
input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 0;
}

.footer,
.closing {
  background: #0F100F;
}

@media (max-width: 759px) {
  .hero {
    min-height: auto;
    padding-top: var(--sp-8);
  }
  .hero-aside,
  .pain-item,
  .reason,
  .offer,
  .process-item,
  .plan,
  .form-card {
    border-radius: 14px;
  }
}

/* =============================================================
   Conversion polish — stronger CTAs and subtle section reactions
   ============================================================= */
.btn {
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn-primary {
  background:
    linear-gradient(135deg, #FFFFFF 0%, #F4EFE4 54%, #D8EEF0 100%) !important;
  color: #050505 !important;
  border-color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 700;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 34px rgba(116, 163, 168, 0.28);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-130%);
  transition: transform .55s ease;
}

.btn-primary:hover {
  background:
    linear-gradient(135deg, #FFFFFF 0%, #FBF5E8 44%, #C9EAED 100%) !important;
  transform: translateY(-2px);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 46px rgba(116, 163, 168, 0.42);
}

.btn-primary:hover::after {
  transform: translateX(130%);
}

.btn-ghost:hover,
.btn-link:hover {
  transform: translateY(-1px);
}

.nav-cta .btn {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.hero-ctas .btn-primary,
.steps-prompt .btn-primary,
.offer-foot .btn-primary,
.cta-band-action .btn-primary,
.process-foot .btn-primary,
.form-submit .btn-primary,
.closing-action .btn-primary {
  min-width: 190px;
}

.plan-coaching .btn-primary {
  background: #050505 !important;
  color: #F8F3E8 !important;
  border-color: #050505 !important;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(5, 5, 5, 0.12);
}

.plan-coaching .btn-primary:hover {
  background: #151515 !important;
  border-color: #151515 !important;
  transform: translateY(-2px);
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(5, 5, 5, 0.18);
}

.plan-starter .btn-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.045);
}

.plan-starter .btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(116, 163, 168, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .hero-aside,
  .pain-item,
  .reason,
  .step,
  .offer,
  .process-item,
  .tcard,
  .plan,
  .form-card,
  .guarantee {
    transition:
      transform .22s ease,
      border-color .22s ease,
      background .22s ease,
      box-shadow .22s ease;
  }

  .hero-aside:hover,
  .pain-item:hover,
  .reason:hover,
  .step:hover,
  .offer:hover,
  .process-item:hover,
  .tcard:hover,
  .form-card:hover,
  .guarantee:hover {
    transform: translateY(-4px);
    border-color: rgba(116, 163, 168, 0.48) !important;
    box-shadow:
      0 32px 70px rgba(0, 0, 0, 0.30),
      0 0 0 1px rgba(116, 163, 168, 0.08);
  }

  .pain-item:hover,
  .reason:hover,
  .step:hover,
  .offer:hover,
  .process-item:hover,
  .tcard:hover {
    background:
      linear-gradient(145deg, rgba(116, 163, 168, 0.075), transparent 48%),
      var(--surface);
  }

  .plan:hover {
    transform: translateY(-5px);
    border-color: rgba(116, 163, 168, 0.50);
    box-shadow:
      0 42px 96px rgba(0, 0, 0, 0.38),
      0 0 0 1px rgba(116, 163, 168, 0.10);
  }

  .plan-coaching:hover {
    transform: translateY(-17px);
    box-shadow:
      0 48px 110px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(255, 255, 255, 0.36),
      0 0 54px rgba(116, 163, 168, 0.22);
  }

  .faq {
    transition: background .2s ease, border-color .2s ease;
  }

  .faq:hover {
    background: rgba(116, 163, 168, 0.055);
    border-color: rgba(116, 163, 168, 0.38);
  }
}

/* =============================================================
   Scroll legibility pass — less "lost in space", more structure
   ============================================================= */
main > section:not(.hero) {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 18rem),
    #181A19;
  position: relative;
}

main > section:nth-of-type(even):not(.hero) {
  background:
    linear-gradient(180deg, rgba(116,163,168,0.035), transparent 20rem),
    #20231F;
}

main > section:not(.hero)::before {
  content: "";
  position: absolute;
  left: clamp(1.25rem, 4vw, 2.5rem);
  right: clamp(1.25rem, 4vw, 2.5rem);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  pointer-events: none;
}

.section-alt,
.form-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.024), transparent 18rem),
    #20231F !important;
}

.section-ink,
.cta-band,
.closing {
  background:
    linear-gradient(135deg, rgba(116, 163, 168, 0.11), transparent 36%),
    #1A1E1D !important;
}

.pain-item,
.reason,
.step,
.offer,
.process-item,
.tcard,
.form-card,
.hero-aside {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)) !important;
  border-color: rgba(255, 255, 255, 0.125) !important;
}

.plan:not(.plan-coaching) {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.026)),
    #242725 !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
}

.guarantee {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    #222522 !important;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.faqs {
  border-top-color: rgba(255,255,255,0.14);
}

.faq {
  border-bottom-color: rgba(255,255,255,0.12);
}

.credentials li,
.pain-item,
.reason,
.offer,
.process-item {
  border-color: rgba(255,255,255,0.11);
}

.lead,
.hero-sub,
.hero-support,
.pain-prompt p,
.reason p,
.reason-foot p,
.offer p,
.process-item p,
.process-foot p,
.about-intro,
.plan-desc,
.features,
.credentials .cred-body,
.faq-answer,
.form-header p,
.form-note,
.footer-meta {
  color: #D8D2C6;
}

.eyebrow,
.plan-name,
.pain-num,
.text-faint,
.footer {
  color: #B8B3A8;
}

@media (hover: hover) and (pointer: fine) {
  .pain-item:hover,
  .reason:hover,
  .step:hover,
  .offer:hover,
  .process-item:hover,
  .tcard:hover,
  .form-card:hover,
  .hero-aside:hover {
    background:
      linear-gradient(145deg, rgba(116, 163, 168, 0.13), rgba(255,255,255,0.036)) !important;
  }
}

/* =============================================================
   Option A rebuild — premium adventure-coaching editorial
   Dark photographic hero, calm stone body, selective dark bands.
   ============================================================= */
html {
  background: #ECE6D8;
}

body {
  background:
    linear-gradient(180deg, #111211 0 48rem, #ECE6D8 48rem 100%);
  color: #171817;
}

.nav {
  background: rgba(17, 18, 17, 0.88) !important;
  border-bottom-color: rgba(255, 255, 255, 0.09) !important;
}

.nav .brand,
.nav-links a,
.nav-cta .btn {
  color: #F7F1E6;
}

.nav-links {
  color: rgba(247, 241, 230, 0.74);
}

.nav-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.48);
}

.hero {
  background: #111211 !important;
  color: #F7F1E6;
}

.hero h1,
.hero h2,
.hero h3,
.hero .eyebrow,
.hero .hero-sub,
.hero .hero-support,
.hero .hero-meta,
.hero-aside,
.hero-aside dd {
  color: #F7F1E6;
}

.hero .hero-sub,
.hero .hero-support,
.hero .hero-meta,
.hero-aside dt {
  color: rgba(247, 241, 230, 0.74);
}

.hero .btn-primary {
  background: #F7F1E6 !important;
  color: #111211 !important;
  border-color: #F7F1E6 !important;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34), 0 0 42px rgba(247, 241, 230, 0.15);
}

.hero .btn-primary:hover {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) {
  background: #ECE6D8 !important;
  color: #171817;
}

main > section:nth-of-type(even):not(.hero):not(.section-ink):not(.cta-band):not(.closing) {
  background: #F6F1E8 !important;
}

main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing)::before {
  background: linear-gradient(90deg, transparent, rgba(23, 24, 23, 0.18), transparent);
}

main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) h1,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) h2,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) h3,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) h4 {
  color: #171817;
}

main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .lead,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) p,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .pricing-lead,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .about-intro,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .plan-desc,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .features,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .faq-answer,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .form-note,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .credentials .cred-body {
  color: #4E514B;
}

main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .eyebrow,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .pain-num,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .reason-num,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .offer-num,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .process-num,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .plan-name,
main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .tcard-tag {
  color: #6E7764;
}

main > section:not(.hero):not(.section-ink):not(.cta-band):not(.closing) .eyebrow::before {
  background: #6E7764;
}

.pain-item,
.reason,
.offer,
.process-item,
.tcard,
.form-card,
.plan:not(.plan-coaching) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    #F9F5EC !important;
  border-color: rgba(23, 24, 23, 0.13) !important;
  color: #171817;
  box-shadow: 0 18px 45px rgba(57, 51, 41, 0.08) !important;
}

.pain-list,
.reasons,
.offer-list,
.process,
.credentials,
.faqs {
  border-color: rgba(23, 24, 23, 0.14) !important;
}

.credentials li,
.faq,
.pain-item,
.reason,
.offer,
.process-item {
  border-color: rgba(23, 24, 23, 0.13) !important;
}

.credentials .cred-label,
.about-bio p,
.pain-text,
.tcard h3,
.tcard-quote,
.faq summary {
  color: #171817 !important;
}

.features li::before,
.plan-coaching .features li::before {
  background: currentColor;
  opacity: 0.65;
}

.section-ink,
.cta-band,
.closing {
  background:
    radial-gradient(circle at 80% 0%, rgba(116, 163, 168, 0.12), transparent 30rem),
    linear-gradient(180deg, #171A19 0%, #111211 100%) !important;
  color: #F7F1E6;
}

.section-ink h1,
.section-ink h2,
.section-ink h3,
.section-ink h4,
.cta-band h1,
.cta-band h2,
.cta-band h3,
.cta-band h4,
.closing h1,
.closing h2,
.closing h3,
.closing h4 {
  color: #F7F1E6;
}

.section-ink .lead,
.section-ink p,
.cta-band p,
.closing p,
.section-ink .step p {
  color: rgba(247, 241, 230, 0.74);
}

.section-ink .step {
  background: rgba(255, 255, 255, 0.045) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: none !important;
}

.section-ink .step-label {
  color: #9BBABE;
}

.btn-primary {
  background: #171817 !important;
  color: #F7F1E6 !important;
  border-color: #171817 !important;
  box-shadow: 0 18px 42px rgba(23, 24, 23, 0.22), 0 0 0 1px rgba(23, 24, 23, 0.08);
}

.btn-primary:hover {
  background: #30342F !important;
  border-color: #30342F !important;
  box-shadow: 0 24px 54px rgba(23, 24, 23, 0.28), 0 0 0 1px rgba(23, 24, 23, 0.12);
}

.section-ink .btn-primary,
.cta-band .btn-primary,
.closing .btn-primary {
  background: #F7F1E6 !important;
  color: #111211 !important;
  border-color: #F7F1E6 !important;
}

.section-ink .btn-primary:hover,
.cta-band .btn-primary:hover,
.closing .btn-primary:hover {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

.btn-link {
  color: inherit;
}

.plan-coaching {
  background:
    radial-gradient(circle at 92% 0%, rgba(137, 206, 216, 0.18), transparent 17rem),
    linear-gradient(145deg, rgba(116, 163, 168, 0.16), transparent 42%),
    #171817 !important;
  color: #F7F1E6 !important;
  border-color: rgba(137, 206, 216, 0.28) !important;
  box-shadow:
    0 34px 90px rgba(23, 24, 23, 0.28),
    0 0 0 1px rgba(137, 206, 216, 0.10),
    0 0 34px rgba(137, 206, 216, 0.10) !important;
  overflow: hidden;
  isolation: isolate;
}

.plan-coaching::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    radial-gradient(circle at 88% 8%, rgba(137, 206, 216, 0.26), transparent 18rem),
    linear-gradient(135deg, rgba(137, 206, 216, 0.16), transparent 42%);
  opacity: 0.52;
  transition: opacity .32s ease, transform .32s ease;
}

.plan-coaching h3,
.plan-coaching .plan-price,
.plan-coaching .features li,
.plan-coaching .plan-name {
  color: #F7F1E6 !important;
}

.plan-coaching .plan-desc,
.plan-coaching .plan-price-sub,
.plan-coaching .plan-foot {
  color: rgba(247, 241, 230, 0.72) !important;
}

.plan-coaching .btn-primary {
  background: #F7F1E6 !important;
  color: #111211 !important;
  border-color: #F7F1E6 !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(137, 206, 216, 0.12) !important;
}

.plan-badge {
  background: rgba(247, 241, 230, 0.12) !important;
  color: #F7F1E6 !important;
}

.guarantee {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    #F9F5EC !important;
  border-color: rgba(23, 24, 23, 0.13) !important;
  box-shadow: 0 18px 45px rgba(57, 51, 41, 0.08) !important;
}

.guarantee p {
  color: #31342F;
}

.field input,
.field textarea {
  color: #171817 !important;
  background: rgba(255, 255, 255, 0.45) !important;
  border-color: rgba(23, 24, 23, 0.28) !important;
}

.field input:focus,
.field textarea:focus {
  border-color: #171817 !important;
}

.field label {
  color: #171817;
}

.footer {
  background: #111211 !important;
  color: rgba(247, 241, 230, 0.68) !important;
}

.footer-brand {
  color: #F7F1E6;
}

@media (hover: hover) and (pointer: fine) {
  .pain-item:hover,
  .reason:hover,
  .offer:hover,
  .process-item:hover,
  .tcard:hover,
  .form-card:hover,
  .plan:not(.plan-coaching):hover,
  .guarantee:hover {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58)),
      #FFF9EE !important;
    border-color: rgba(23, 24, 23, 0.22) !important;
    box-shadow: 0 28px 64px rgba(57, 51, 41, 0.13) !important;
  }

  .section-ink .step:hover {
    background: rgba(255, 255, 255, 0.075) !important;
    border-color: rgba(247, 241, 230, 0.30) !important;
  }
}

@media (max-width: 759px) {
  body {
    background: #ECE6D8;
  }

  .hero {
    background: #111211 !important;
  }
}

/* =============================================================
   Final polish pass — spacing, pricing, form, live-page cleanup
   ============================================================= */
:root {
  --stone: #ECE6D8;
  --stone-light: #F7F1E6;
  --stone-card: #FCF7EE;
  --stone-rule: rgba(23, 24, 23, 0.14);
  --stone-text: #171817;
  --stone-muted: #4B5049;
}

section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-header,
.section-header-split {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-header-split .lead {
  max-width: 48ch;
}

.pain-list,
.reasons,
.offer-list,
.process,
.pricing-grid {
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.pain-item,
.reason,
.step,
.offer,
.process-item,
.plan,
.form-card,
.guarantee {
  border-radius: 18px !important;
}

.pain-item,
.reason,
.offer,
.process-item {
  padding: clamp(1.25rem, 2.2vw, 1.75rem) !important;
}

.pain-text,
.reason p,
.offer p,
.process-item p,
.plan-desc,
.features,
.faq-answer {
  line-height: 1.58;
}

.cta-band .container,
.closing-inner {
  padding-top: clamp(3.25rem, 6vw, 5.25rem);
  padding-bottom: clamp(3.25rem, 6vw, 5.25rem);
}

.btn {
  border-radius: 999px;
  letter-spacing: 0;
}

.btn-primary {
  background: #171817 !important;
  color: var(--stone-light) !important;
  border-color: #171817 !important;
  box-shadow: 0 16px 36px rgba(23, 24, 23, 0.20) !important;
}

.btn-primary:hover {
  background: #2C302B !important;
  border-color: #2C302B !important;
  box-shadow: 0 22px 48px rgba(23, 24, 23, 0.26) !important;
}

.hero .btn-primary,
.section-ink .btn-primary,
.cta-band .btn-primary,
.closing .btn-primary {
  background: var(--stone-light) !important;
  color: #111211 !important;
  border-color: var(--stone-light) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.30), 0 0 34px rgba(247, 241, 230, 0.12) !important;
}

.hero .btn-primary:hover,
.section-ink .btn-primary:hover,
.cta-band .btn-primary:hover,
.closing .btn-primary:hover {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

.btn-primary::after {
  opacity: 0.55;
}

.plan {
  padding: clamp(1.6rem, 2.8vw, 2.25rem);
}

.plan:not(.plan-coaching) {
  box-shadow: 0 18px 44px rgba(57, 51, 41, 0.09) !important;
}

.plan-starter .btn-ghost {
  width: 100%;
  color: #171817 !important;
  border-color: rgba(23, 24, 23, 0.26) !important;
  background: rgba(255, 255, 255, 0.42) !important;
  font-weight: 700;
}

.plan-starter .btn-ghost:hover {
  color: var(--stone-light) !important;
  background: #171817 !important;
  border-color: #171817 !important;
}

.plan-coaching {
  border-width: 1px !important;
}

.plan-coaching .btn-primary {
  background: var(--stone-light) !important;
  color: #111211 !important;
  border-color: var(--stone-light) !important;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24) !important;
}

.plan-coaching .btn-primary:hover {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

.plan-price {
  margin-top: 0.1rem;
}

.features {
  margin-bottom: var(--sp-5);
}

.form-grid {
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 960px) {
  .form-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
    align-items: start;
  }
}

.form-card {
  padding: clamp(1.25rem, 2.4vw, 1.8rem);
}

.field {
  margin-bottom: 1.05rem;
  gap: 0.35rem;
}

.field label {
  font-size: 0.78rem;
}

.field input,
.field textarea {
  font-size: 1rem;
  padding: 0.72rem 0;
}

.field textarea {
  min-height: 78px;
  padding: 0.75rem 0.85rem;
}

.field:last-of-type {
  margin-bottom: 1.25rem;
}

.form-submit .btn {
  min-width: 100%;
}

@media (min-width: 560px) {
  .form-submit .btn {
    min-width: 220px;
  }
}

.faqs {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid var(--stone-rule) !important;
  border-radius: 18px;
  overflow: hidden;
}

.faq summary {
  padding: 1.15rem 1.25rem;
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
}

.footer {
  border-top: 0;
}

@media (hover: hover) and (pointer: fine) {
  .pain-item:hover,
  .reason:hover,
  .offer:hover,
  .process-item:hover,
  .form-card:hover,
  .plan:not(.plan-coaching):hover,
  .guarantee:hover {
    transform: translateY(-3px);
  }

  .plan-coaching:hover {
    transform: translateY(-5px);
    border-color: rgba(137, 206, 216, 0.52) !important;
    box-shadow:
      0 44px 104px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(137, 206, 216, 0.24),
      0 0 56px rgba(137, 206, 216, 0.20) !important;
  }

  .plan-coaching:hover::before {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

@media (max-width: 759px) {
  section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 4.25rem;
    padding-bottom: 4.5rem;
  }

  .hero-ctas .btn,
  .pain-prompt .btn,
  .reason-foot .btn,
  .steps-prompt .btn,
  .offer-foot .btn,
  .process-foot .btn,
  .closing-action .btn,
  .form-submit .btn {
    width: 100%;
  }

  .plan-coaching {
    transform: none !important;
    border-color: rgba(137, 206, 216, 0.42) !important;
    box-shadow:
      0 28px 72px rgba(23, 24, 23, 0.28),
      0 0 0 1px rgba(137, 206, 216, 0.16),
      0 0 46px rgba(137, 206, 216, 0.16) !important;
  }

  .plan-coaching::before {
    opacity: 0.76;
  }

  .plan-coaching:active {
    transform: translateY(-2px) !important;
    border-color: rgba(137, 206, 216, 0.60) !important;
  }

  .hero-aside {
    padding: 1.35rem !important;
  }

  .hero-aside dl {
    gap: 1.1rem;
  }

  .hero-aside .pair {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hero-aside dt {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .hero-aside dd {
    font-size: 1rem;
    line-height: 1.35;
  }
}

/* =============================================================
   Photo story section
   ============================================================= */
.photo-story {
  background:
    linear-gradient(180deg, #F7F1E6 0%, #ECE3D3 100%) !important;
  border-top: 1px solid rgba(23, 24, 23, 0.08);
  border-bottom: 1px solid rgba(23, 24, 23, 0.10);
}

#what-you-get {
  background: #E8DFCF !important;
}

#process,
#guarantee,
.form-section {
  background: #F6F1E8 !important;
}

#about,
#faqs {
  background: #ECE3D3 !important;
}

#pricing {
  background:
    radial-gradient(circle at 82% 0%, rgba(116, 163, 168, 0.12), transparent 30rem),
    linear-gradient(180deg, #171A19 0%, #111211 100%) !important;
  color: #F7F1E6;
}

#pricing::before {
  background: linear-gradient(90deg, transparent, rgba(247, 241, 230, 0.16), transparent) !important;
}

#pricing h1,
#pricing h2,
#pricing h3,
#pricing h4 {
  color: #F7F1E6 !important;
}

#pricing .pricing-lead,
#pricing .eyebrow {
  color: rgba(247, 241, 230, 0.74) !important;
}

#pricing .eyebrow::before {
  background: rgba(247, 241, 230, 0.74) !important;
}

#pricing .plan:not(.plan-coaching) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.64)),
    #F9F5EC !important;
  color: #171817;
  border-color: rgba(247, 241, 230, 0.22) !important;
}

#pricing .plan:not(.plan-coaching) h3,
#pricing .plan:not(.plan-coaching) .plan-price,
#pricing .plan:not(.plan-coaching) .features li,
#pricing .plan:not(.plan-coaching) .plan-foot {
  color: #171817 !important;
}

#pricing .plan:not(.plan-coaching) .plan-name,
#pricing .plan:not(.plan-coaching) .plan-desc,
#pricing .plan:not(.plan-coaching) .plan-price-sub {
  color: rgba(23, 24, 23, 0.68) !important;
}

#pricing .plan-coaching {
  border-color: rgba(137, 206, 216, 0.34) !important;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(137, 206, 216, 0.12),
    0 0 40px rgba(137, 206, 216, 0.12) !important;
}

#what-you-get::before,
#process::before,
#about::before,
#pricing::before,
#guarantee::before,
#faqs::before,
.form-section::before,
.photo-story::before {
  background: linear-gradient(90deg, transparent, rgba(23, 24, 23, 0.16), transparent) !important;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 1.6vw, 1rem);
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(180px, 0.85fr) minmax(260px, 1.15fr);
  }

  .photo-card-wide {
    grid-column: 1 / -1;
  }
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  margin: 0;
  border-radius: 18px;
  background: #171817;
  border: 1px solid rgba(23, 24, 23, 0.12);
  box-shadow: 0 20px 54px rgba(57, 51, 41, 0.13);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
  transition: transform .45s ease, filter .45s ease;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 48%);
  pointer-events: none;
}

.photo-card figcaption {
  position: absolute;
  left: clamp(1rem, 2vw, 1.35rem);
  right: clamp(1rem, 2vw, 1.35rem);
  bottom: clamp(1rem, 2vw, 1.25rem);
  z-index: 1;
  margin: 0;
  color: #F7F1E6;
  font-size: clamp(0.9rem, 0.9vw, 1rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  max-width: 28ch;
}

@media (hover: hover) and (pointer: fine) {
  .photo-card:hover img {
    transform: scale(1.035);
    filter: saturate(0.98) contrast(1.08);
  }
}

@media (max-width: 759px) {
  .photo-card {
    min-height: 180px;
    border-radius: 16px;
  }

  .photo-card-large {
    min-height: 240px;
  }

  .photo-card-wide {
    min-height: 220px;
  }
}

/* =============================================================
   Hero final direction — broad lifestyle/adventure background
   ============================================================= */
.hero {
  background: #111211;
  min-height: min(780px, calc(100vh - 68px));
  padding-top: clamp(4rem, 6vw, 5.75rem);
  padding-bottom: clamp(4rem, 6vw, 5.75rem);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(17, 18, 17, 0.92) 0%, rgba(17, 18, 17, 0.78) 35%, rgba(17, 18, 17, 0.22) 72%, rgba(17, 18, 17, 0.36) 100%),
    linear-gradient(180deg, rgba(17, 18, 17, 0.10) 0%, rgba(17, 18, 17, 0.66) 100%),
    radial-gradient(circle at 80% 18%, rgba(247, 241, 230, 0.20), transparent 28rem),
    url("assets/photos/hero-soldier-dog-sunset-sharp.jpg") 58% 38% / cover no-repeat,
    #111211 !important;
}

@media (min-width: 960px) {
  .hero .container {
    max-width: 1320px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(28rem, 0.97fr);
    gap: clamp(2.75rem, 5vw, 5.5rem);
  }

  .hero h1 {
    font-size: clamp(3.45rem, 4.6vw, 5rem);
    max-width: 14ch;
  }

  .hero-sub {
    font-size: clamp(1.05rem, 1.05vw, 1.18rem);
  }
}

@media (max-width: 759px) {
  .hero-grid {
    gap: 2.5rem;
  }
}

/* ── Currency Toggle ─────────────────────────────────────────── */
.currency-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(243,239,230,0.15);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}

.currency-btn {
  background: transparent;
  border: none;
  color: #C9C4B9;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.25rem;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s;
}

.currency-btn:hover {
  background: rgba(116,163,168,0.12);
  color: #F3EFE6;
}

.currency-btn.active {
  background: #74A3A8;
  color: #111211;
}
