/* ============================================================
   Rewire - sales page styles (index.html only)
   Ported 1:1 from the signed-off July 2026 sales-page design
   (Claude Artifact export). Legal/contact pages keep styles.css.
   ============================================================ */

/* ---- Fonts ---- */
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Light.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
/* League Spartan - wordmark only (subset files) */
@font-face {
  font-family: "League Spartan";
  src: url("assets/fonts/LeagueSpartan-latin.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "League Spartan";
  src: url("assets/fonts/LeagueSpartan-latinext.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "League Spartan";
  src: url("assets/fonts/LeagueSpartan-viet.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* ---- Design tokens (Rewire Brand Guidelines V3, 2026) ---- */
:root {
  /* Base */
  --dark: #141414;
  --charcoal: #121212;
  --charcoal-2: #1c1b1a;
  --charcoal-3: #262422;
  --ivory: #F6F3EE;
  --ivory-2: #FBF9F5;
  --white: #FFFFFF;

  /* Accent - luminous light on dark; charcoal on light */
  --accent: #F1ECE2;
  --accent-bright: #FFFFFF;
  --accent-on-light: #141414;

  /* Warm tone (this page) */
  --warm-accent: #E9B872;
  --warm-accent-on-light: #8A6A2F;

  /* Text - dark surfaces */
  --text-on-dark: #F6F3EE;
  --text-on-dark-muted: rgba(246, 243, 238, 0.62);
  --text-on-dark-faint: rgba(246, 243, 238, 0.38);

  /* Text - light surfaces */
  --text-on-light: #141414;
  --text-on-light-muted: rgba(20, 20, 20, 0.60);
  --text-on-light-faint: rgba(20, 20, 20, 0.38);

  /* Semantic aliases */
  --surface-card: var(--ivory-2);
  --surface-card-dark: var(--charcoal-2);
  --border-on-dark: rgba(246, 243, 238, 0.12);
  --border-on-light: rgba(20, 20, 20, 0.10);

  /* Type */
  --font-sans: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;
  --font-wordmark: 'League Spartan', var(--font-sans);
  --text-display: clamp(36px, 5vw, 64px);
  --text-h2: clamp(28px, 3.4vw, 44px);
  --text-body-lg: 19px;
  --text-label: 12px;
  --leading-tight: 1.05;
  --leading-heading: 1.15;
  --leading-body: 1.6;
  --tracking-label: 0.16em;
  --tracking-tight: -0.02em;

  /* Space + shape */
  --space-10: 140px;
  --container-max: 1120px;
  --container-pad: clamp(20px, 5vw, 48px);
  --radius-card: 20px;
  --radius-card-lg: 28px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 200ms;
}

/* ---- Base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-on-light);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* rotated phone mockups can poke past the viewport */
}
a { color: inherit; text-decoration: none; transition: opacity var(--duration-fast) var(--ease-out); }
a:hover { opacity: 0.92; }
a.nav-link:hover { opacity: 0.7; }
::selection { background: var(--dark); color: var(--ivory); }
img, video { max-width: 100%; }
h1, h2, p { margin: 0; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---- Components ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  padding: 13px 28px;
  font-size: 15px;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform var(--duration-fast) var(--ease-out), opacity var(--duration-fast) var(--ease-out);
}
.btn:hover { opacity: 0.85; }
.btn:active { transform: scale(0.98); }
.btn--lg { padding: 16px 34px; font-size: 17px; }
.btn--sm { padding: 9px 20px; font-size: 13px; }
.btn--light { background: var(--accent); color: var(--dark); }
.btn--ghost { background: transparent; color: var(--text-on-dark); border-color: var(--border-on-dark); }

.badge--outline {
  display: inline-block;
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid currentColor;
  opacity: 0.7;
}

.eyebrow {
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-on-dark-muted);
}
.eyebrow--warm {
  font-size: 13px;
  font-weight: 600;
  color: rgba(233, 184, 114, 0.85);
}

.stars { color: var(--accent); letter-spacing: 0.25em; font-size: 14px; }

.wordmark {
  font-family: var(--font-wordmark);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ivory);
}
.wordmark i { font-style: normal; color: var(--accent); }

/* Floating beige app-track card (Community section) */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(242, 232, 216, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 18px 10px 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}
.float-card__thumb {
  width: 46px; height: 46px; border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(135deg, #2a2118 0%, #8a6a3a 60%, #d9b878 100%);
}
.float-card__title { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.25; }
.float-card__meta { font-size: 12px; color: var(--text-on-light-muted); margin-top: 4px; }

/* ---- Responsive grids ---- */
.grid-2, .grid-3, .grid-4 { display: grid; grid-template-columns: 1fr; }
.split { display: grid; grid-template-columns: 1fr; }
.comp-row { display: grid; grid-template-columns: 1fr; }
.float-card { display: none; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .comp-row { grid-template-columns: 1.1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .float-card { display: flex; }
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(20, 20, 20, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav__links { display: flex; gap: 12px; align-items: center; }
.nav__links .nav-link { color: var(--text-on-dark-muted); font-size: 14px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-drift { position: absolute; inset: 0; }
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0.44;
  filter: brightness(0.74) saturate(0.85);
}
/* Phones deliberately share this grading. They load the portrait encode (see
   source[media] in index.html), which is already framed on the women, so they
   need neither a scale() crop nor a darker grade. The old phone-only override
   (opacity 0.3 x brightness(0.55)) left the footage at ~16% of source luminance
   under both scrims - it played, but read as a black box. */
.hero__scrim-a {
  position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 108%, rgba(107, 51, 18, 0.46) 0%, rgba(58, 28, 10, 0.36) 38%, rgba(13, 6, 3, 0.45) 72%, rgba(13, 6, 3, 0.82) 100%);
}
.hero__scrim-b {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 6, 3, 0.5) 0%, rgba(13, 6, 3, 0.12) 45%, rgba(13, 6, 3, 0.62) 88%, var(--dark) 100%);
}
.hero .container {
  position: relative;
  width: 100%; /* .hero is a flex row; without this the container shrink-wraps and the signup row wraps early */
  padding: 150px var(--container-pad) 110px;
  text-align: center;
}
.hero h1 {
  font: 300 var(--text-display)/var(--leading-tight) var(--font-sans);
  letter-spacing: var(--tracking-tight);
  color: var(--text-on-dark);
  margin: 30px auto 0;
  max-width: 860px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}
.hero h1 .glow {
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 0 36px rgba(255, 255, 255, 0.45);
}
.hero__sub {
  font: 400 var(--text-body-lg)/var(--leading-body) var(--font-sans);
  color: rgba(246, 243, 238, 0.82);
  max-width: 560px;
  margin: 26px auto 0;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
  flex-wrap: wrap;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-drift { animation: drift 30s ease-in-out infinite alternate; }
  @keyframes drift { from { transform: scale(1); } to { transform: scale(1.05) translateY(-1.2%); } }
}

/* ---- Method ---- */
.method {
  background: radial-gradient(130% 130% at 50% 120%, #6b3312 0%, #3a1c0a 38%, #170b04 76%, #0d0603 100%);
  padding: var(--space-10) 0;
}
.method .container { text-align: center; }
.method h2 {
  font: 400 var(--text-h2)/var(--leading-heading) var(--font-sans);
  letter-spacing: var(--tracking-tight);
  color: var(--text-on-dark);
  margin: 18px auto 14px;
  max-width: 760px;
}
.method h2 em { font-weight: 500; font-style: italic; color: var(--white); }
.method__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  max-width: 600px;
  margin: 0 auto 52px;
}
.method__grid { gap: 16px; text-align: left; }
.method-card {
  border: 1px solid rgba(246, 243, 238, 0.28);
  border-radius: 18px;
  padding: 26px 24px;
  background: rgba(0, 0, 0, 0.18);
}
.method-card__name {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
}
.method-card__name sup { font-size: 13px; color: var(--warm-accent); margin-left: 3px; }
.method-card__lead { font-size: 15.5px; font-weight: 600; line-height: 1.5; color: var(--text-on-dark); margin-top: 14px; }
.method-card__body { font-size: 14.5px; line-height: 1.65; color: var(--text-on-dark-muted); margin-top: 12px; }
.method__cta { margin-top: 48px; }
.btn--warm {
  display: inline-block;
  background: var(--warm-accent);
  color: #141414;
  border-radius: 999px;
  padding: 16px 38px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.method__credential {
  font-size: 13px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-on-dark-faint);
  margin-top: 26px;
}

/* ---- Data ---- */
.data { background: #F1E7D6; padding: var(--space-10) 0; }
.data h2 {
  font: 500 var(--text-h2)/var(--leading-heading) var(--font-sans);
  letter-spacing: var(--tracking-tight);
  color: var(--text-on-light);
  margin: 0 0 40px;
}
.data__grid { gap: 18px; }
.data-card--light {
  background: #FDFBF6;
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 10px 34px rgba(84, 58, 28, 0.10);
}
.data-card--dark {
  background: var(--dark);
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.data-card__orb {
  position: absolute;
  top: -50px; right: -30px;
  width: 190px; height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #FBF6EC 0%, #E8CFA0 55%, #C9A870 100%);
}
.data-card__stat {
  position: relative;
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.data-card--light .data-card__stat { color: var(--text-on-light); }
.data-card--dark .data-card__stat { color: var(--text-on-dark); }
.data-card__body { position: relative; font-size: 16px; line-height: 1.6; margin: 18px 0 0; }
.data-card--light .data-card__body { color: var(--text-on-light-muted); max-width: 380px; }
.data-card--dark .data-card__body { color: var(--text-on-dark-muted); max-width: 400px; }
.data__note {
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-light-faint);
  margin-top: 20px;
}

/* ---- Struggle (statement) ---- */
.struggle {
  background: radial-gradient(120% 90% at 50% 0%, #3c1d0b 0%, #190c04 55%, #0d0603 100%);
  padding: var(--space-10) 0;
  text-align: center;
}
.struggle h2 {
  font: 300 clamp(30px, 4vw, 52px)/1.2 var(--font-sans);
  letter-spacing: var(--tracking-tight);
  color: var(--text-on-dark);
  margin: 22px auto 0;
  max-width: 780px;
}
.struggle p { font-size: 17px; line-height: 1.7; color: var(--text-on-dark-muted); margin: 24px auto 0; max-width: 620px; }
.struggle .struggle__pull {
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55;
  color: var(--white);
  margin: 40px auto 0;
  max-width: 680px;
}
.struggle__pull em { font-weight: 300; font-style: italic; }

/* ---- Comparison (editorial) ---- */
.comparison {
  background: var(--charcoal);
  padding: var(--space-10) 0;
  border-top: 1px solid var(--border-on-dark);
}
.comparison .eyebrow--warm { margin-bottom: 12px; }
.comp-rows { display: flex; flex-direction: column; }
.comp-row { gap: 18px; align-items: center; padding: 32px 0; border-top: 1px solid var(--border-on-dark); }
.comp-row__tool {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 300;
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  color: var(--text-on-dark);
}
.comp-row__desc { font-size: 15.5px; line-height: 1.65; color: var(--text-on-dark-muted); max-width: 460px; }
.comparison__claim { border-top: 1px solid rgba(233, 184, 114, 0.4); padding: 40px 0 0; }
.comparison__claim-lead {
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.35;
  font-weight: 300;
  color: var(--white);
  max-width: 900px;
}
.comparison__claim-lead em { font-weight: 500; font-style: italic; color: var(--warm-accent); }
.comparison__claim-sub { font-size: 16px; color: var(--text-on-dark-muted); margin-top: 16px; }

/* ---- Capable (lines) ---- */
.capable { background: var(--dark); padding: var(--space-10) 0; }
.capable .container { max-width: 860px; }
.capable h2 {
  font: 500 var(--text-h2)/var(--leading-heading) var(--font-sans);
  letter-spacing: var(--tracking-tight);
  color: var(--text-on-dark);
  margin: 18px 0 34px;
  max-width: 640px;
}
.capable-line {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--border-on-dark);
}
.capable-line__num { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; color: var(--warm-accent); }
.capable-line__text { font-size: clamp(17px, 1.9vw, 21px); line-height: 1.55; font-weight: 300; color: var(--text-on-dark); }

/* ---- Results (steps) ---- */
.results {
  background: var(--charcoal);
  padding: var(--space-10) 0;
  border-top: 1px solid var(--border-on-dark);
}
.results h2 {
  font: 500 var(--text-h2)/var(--leading-heading) var(--font-sans);
  color: var(--text-on-dark);
  margin: 18px 0 48px;
}
.results h2 em { font-weight: 300; font-style: normal; color: var(--white); }
.results__steps { gap: 28px; position: relative; }
.result-step { display: flex; flex-direction: column; }
.result-step__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.result-step__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.result-step:hover .result-step__media img { transform: scale(1.04); }
.result-step__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 6, 3, 0) 55%, rgba(13, 6, 3, 0.45) 100%);
}
.result-step__connector { display: flex; align-items: center; gap: 12px; margin: 22px 0 14px; }
.result-step__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--warm-accent);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--warm-accent);
}
.result-step__line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(233, 184, 114, 0.4), transparent);
}
.result-step__phase {
  font-size: 13px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--warm-accent);
}
.result-step__desc { font-size: 16px; line-height: 1.6; font-weight: 300; color: var(--text-on-dark); margin: 10px 0 0; }

/* ---- Practice ---- */
.practice {
  background: radial-gradient(130% 130% at 50% 120%, #6b3312 0%, #3a1c0a 38%, #170b04 76%, #0d0603 100%);
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}
.practice .split { gap: 48px; align-items: center; }
.practice h2 {
  font: 500 var(--text-h2)/var(--leading-heading) var(--font-sans);
  color: var(--text-on-dark);
  margin: 18px 0 16px;
}
.practice__sub { font-size: 16px; line-height: 1.6; color: var(--text-on-dark-muted); margin-bottom: 28px; }
.practice__feats { display: flex; flex-direction: column; gap: 12px; }
.practice__feat { display: flex; gap: 12px; font-size: 15px; line-height: 1.55; color: var(--text-on-dark-muted); }
.practice__feat span:first-child { color: var(--warm-accent); }
.practice__cta { margin-top: 32px; }

/* Phone mockups */
.phones {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone {
  width: 250px;
  border-radius: 32px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.phone img { display: block; width: 100%; height: auto; }
.phone--left { position: relative; z-index: 2; margin-right: -50px; transform: rotate(-7deg); }
.phone--right { position: relative; z-index: 1; margin-top: 70px; opacity: 0.95; transform: rotate(6deg); }
@media (max-width: 519px) {
  .phones { min-height: 440px; }
  .phone { width: 185px; border-radius: 30px; }
  .phone--left { margin-right: -36px; }
  .phone__title { font-size: 15px; }
}
.phone__notch-row { height: 26px; display: flex; align-items: center; justify-content: center; }
.phone__notch { width: 74px; height: 16px; border-radius: 999px; background: #262220; margin-top: 6px; }
.phone__screen { padding: 12px 14px 22px; }
.phone__title { font-size: 20px; font-weight: 600; color: var(--ivory); }
.phone__chips { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.phone__chip {
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(246, 243, 238, 0.10);
  color: rgba(246, 243, 238, 0.75);
}
.phone__chip--on { background: var(--warm-accent); color: #141414; }
.phone__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.app-tile { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 1 / 1.15; }
.app-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.app-tile__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13, 6, 3, 0) 40%, rgba(13, 6, 3, 0.75) 100%); }
.app-tile__play {
  position: absolute; top: 8px; right: 8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #141414;
  font-size: 9px;
  display: flex; align-items: center; justify-content: center;
  padding-left: 1px;
}
.app-tile__text { position: absolute; left: 10px; right: 10px; bottom: 9px; }
.app-tile__title { font-size: 11px; font-weight: 600; line-height: 1.3; color: #fff; }
.app-tile__meta { font-size: 9px; color: rgba(255, 255, 255, 0.7); margin-top: 3px; }
.player-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1 / 1.3; }
.player-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}
.player-card__text { position: absolute; left: 14px; bottom: 14px; right: 14px; }
.player-card__title { font-size: 15px; font-weight: 600; color: #fff; }
.player-card__meta { font-size: 10px; color: rgba(255, 255, 255, 0.75); margin-top: 4px; }
.player__progress-wrap { margin: 16px 6px 0; }
.player__progress { height: 3px; border-radius: 999px; background: rgba(246, 243, 238, 0.15); }
.player__progress-fill { width: 38%; height: 100%; border-radius: 999px; background: var(--warm-accent); }
.player__times { display: flex; justify-content: space-between; font-size: 9px; color: rgba(246, 243, 238, 0.5); margin-top: 6px; }
.player__controls { display: flex; justify-content: center; align-items: center; gap: 22px; margin-top: 10px; }
.player__skip { color: rgba(246, 243, 238, 0.6); font-size: 13px; }
.player__pause {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ivory);
  color: #141414;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* ---- Community ---- */
.community {
  background: #131110;
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}
.community__glow {
  position: absolute; inset: 0;
  background: radial-gradient(90% 60% at 50% 50%, rgba(107, 51, 18, 0.22), rgba(19, 17, 16, 0) 70%);
}
.community .container { position: relative; text-align: center; max-width: 860px; }
.community__block { padding: 70px 0 40px; }
.community__block:first-child { padding: 40px 0; }
.community__eyebrow { font-size: 15px; color: var(--text-on-dark-muted); }
.community__statement {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ivory);
  margin-top: 14px;
}

/* ---- Testimonials ---- */
.testimonials {
  background: radial-gradient(130% 130% at 50% -20%, #55280f 0%, #2e1607 45%, #120904 100%);
  padding: var(--space-10) 0;
}
.testimonials__head { text-align: center; margin-bottom: 44px; }
.testimonials__head .stars { display: flex; justify-content: center; }
.testimonials h2 {
  font: 400 var(--text-h2)/var(--leading-heading) var(--font-sans);
  color: var(--text-on-dark);
  margin: 16px 0 8px;
}
.testimonials__sub { font-size: 14px; color: var(--text-on-dark-faint); }
.testimonials__quotes { gap: 14px; }
.quote-card {
  border-radius: var(--radius-card);
  background: var(--surface-card);
  color: var(--text-on-light);
  border: 1px solid var(--border-on-light);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-card .stars { color: var(--dark); font-size: 12px; }
.quote-card__quote { font-size: 15px; line-height: 1.55; }
.quote-card__by { margin-top: auto; font-size: 13px; color: var(--text-on-light-muted); }
.quote-card__by b { font-weight: 500; color: var(--text-on-light); }

/* ---- Closer ---- */
.closer { background: var(--dark); padding: var(--space-10) 0; }
.closer .container { max-width: 760px; }
.closer__lead { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.55; color: var(--text-on-dark); }
.closer__body { font-size: 17px; line-height: 1.7; color: var(--text-on-dark-muted); margin-top: 28px; }
.closer__punch { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.5; color: var(--text-on-dark); margin-top: 36px; }
.closer__body--tail { margin-top: 24px; }
.closer__stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--text-on-dark-muted);
}
.closer__stats b { color: var(--warm-accent); font-weight: 500; }

/* ---- Founder ---- */
.founder {
  background: var(--charcoal);
  padding: var(--space-10) 0;
  border-top: 1px solid var(--border-on-dark);
}
.founder .split { gap: 48px; align-items: start; }
.founder__photo { width: 100%; border-radius: var(--radius-card-lg); display: block; filter: grayscale(1); }
.founder h2 {
  font: 500 var(--text-h2)/var(--leading-heading) var(--font-sans);
  color: var(--text-on-dark);
  margin: 18px 0 20px;
}
.founder h2 em { font-weight: 300; font-style: normal; color: var(--white); }
.founder__story {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.founder__story .lift { color: var(--text-on-dark); }
.founder__sig { margin-top: 26px; font-size: 14px; color: var(--text-on-dark-faint); }
.founder__sig b { color: var(--text-on-dark); font-weight: 500; }

/* ---- Newsletter (replaces pricing until launch) ---- */
.newsletter { background: #111010; padding: var(--space-10) 0; }
.newsletter .container { max-width: 720px; text-align: center; }
.newsletter h2 {
  font: 500 var(--text-h2)/var(--leading-heading) var(--font-sans);
  color: var(--text-on-dark);
  margin: 0 0 14px;
}
.newsletter__sub { font-size: 16px; line-height: 1.6; color: var(--text-on-dark-muted); max-width: 520px; margin: 0 auto 36px; }
.newsletter__note { font-size: 13px; color: var(--text-on-dark-faint); margin-top: 18px; }

/* ---- Signup form (hero + newsletter section) ---- */
.signup-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.signup-form__row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.signup-form__input {
  flex: 0 1 270px;
  min-width: 210px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.97);
  padding: 15px 24px;
  font: 400 16px/1.2 var(--font-sans);
  color: var(--text-on-light);
  outline: none;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
.signup-form__input--name { flex: 0 1 150px; min-width: 140px; }
.signup-form__input::placeholder { color: rgba(20, 20, 20, 0.45); }
.signup-form__input:focus {
  border-color: var(--warm-accent);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(233, 184, 114, 0.25);
}
.signup-form__msg { font-size: 14.5px; margin: 16px 0 0; color: var(--warm-accent); }
.signup-form__msg.is-error { color: #E8998A; }
@media (max-width: 719px) {
  /* Phones: the three different-width pills look ragged stacked loose, so the
     form becomes a glass card with equal full-width fields. */
  .signup-form {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 18px;
    border-radius: 28px;
    background: rgba(20, 20, 20, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  .signup-form__row { flex-direction: column; align-items: stretch; gap: 10px; }
  .signup-form__input,
  .signup-form__input--name { flex: none; width: 100%; min-width: 0; box-shadow: none; }
  .signup-form__row .btn { width: 100%; justify-content: center; }
}
.hero__signup { margin-top: 38px; }
.hero__note { font-size: 13px; color: rgba(246, 243, 238, 0.55); margin-top: 16px; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5); }
.hero__ctas { margin-top: 22px; }

/* ---- FAQ ---- */
.faq { background: #F1E7D6; padding: var(--space-10) 0; }
.faq h2 {
  font: 500 var(--text-h2)/var(--leading-heading) var(--font-sans);
  color: var(--text-on-light);
  margin-bottom: 48px;
}
.faq__grid { gap: 40px 56px; }
.faq-item { border-top: 1px solid rgba(20, 20, 20, 0.16); padding-top: 22px; }
.faq-item__q { font-size: 18px; font-weight: 600; color: var(--text-on-light); letter-spacing: -0.01em; }
.faq-item__lead { font-size: 15.5px; font-weight: 500; color: var(--warm-accent-on-light); margin-top: 12px; }
.faq-item__body { font-size: 15px; line-height: 1.65; color: var(--text-on-light-muted); margin: 8px 0 0; }

/* ---- Final CTA ---- */
.final-cta {
  background: radial-gradient(130% 130% at 50% 120%, #6b3312 0%, #3a1c0a 38%, #170b04 76%, #0d0603 100%);
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}
.final-cta__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  opacity: 0.14;
  filter: brightness(0.8);
}
.final-cta__scrim {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10, 8, 6, 0.15), rgba(10, 8, 6, 0.82) 82%);
}
.final-cta .container {
  position: relative;
  text-align: center;
  padding: 60px var(--container-pad);
}
.final-cta h2 {
  font: 400 var(--text-display)/var(--leading-tight) var(--font-sans);
  letter-spacing: var(--tracking-tight);
  color: var(--text-on-dark);
  max-width: 780px;
  margin: 0 auto;
}
.final-cta h2 em {
  font-weight: 300;
  font-style: normal;
  color: var(--white);
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.35);
}
.final-cta__sub { font-size: 16px; color: var(--text-on-dark-muted); margin: 22px auto 36px; }

/* ---- Modernisation: scroll reveals + gentle hovers ---- */
/* .reveal is added by JS only, so no-JS visitors always see content. */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

.method-card,
.quote-card,
.data-card--light,
.data-card--dark,
.faq-item {
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 243, 238, 0.45);
}
.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .method-card:hover, .quote-card:hover,
  .result-step:hover .result-step__media img { transform: none; }
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border-on-dark);
  padding: 48px 0;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-on-dark-faint);
}
