/* ════════════════════════════════════════════════════════════
   PRETTY MAITY · prettymaity.com  ·  V2 — GRACE × GRIT
   Editorial glamour that rides a motorcycle.
   Warm sodium-amber over night tarmac, ignition orange, bone.
   Type pairing IS the concept:
     · Instrument Serif italic = GRACE (her voice, soft, glow)
     · Archivo Black italic    = GRIT  (her voice, loud, hammer)
     · JetBrains Mono          = stamps
     · Inter                   = body
   ════════════════════════════════════════════════════════════ */

:root {
  --night:    #0d0b0e;
  --night-2:  #13101a;
  --night-3:  #1a1421;
  --ink-edge: #2a2233;
  --orange:   #ff6a13;
  --orange-hot:#ff8a3d;
  --bone:     #f2ede4;
  --amber:    #e39b4d;
  --amber-2:  #f0b86b;
  --chrome:   #a8abb2;
  --violet:   #a48cf0;
  --dim:      #8a8f96;

  --disp:  'Archivo', sans-serif;
  --grace: 'Instrument Serif', 'Times New Roman', serif;
  --mono:  'JetBrains Mono', monospace;
  --body:  'Inter', sans-serif;

  --pad: clamp(20px, 5vw, 72px);
  --warm-grad: radial-gradient(120% 80% at 70% 20%, rgba(227,155,77,.18) 0%, transparent 55%),
               radial-gradient(80% 60% at 20% 110%, rgba(255,106,19,.14) 0%, transparent 60%);
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--night);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain — softer than v1, still alive */
body::after {
  content: ""; position: fixed; inset: -50%; pointer-events: none; z-index: 60;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  animation: grain 1.4s steps(4) infinite;
  mix-blend-mode: overlay;
}
@keyframes grain {
  0%{transform:translate(0,0)} 25%{transform:translate(-2%,1.5%)}
  50%{transform:translate(1.5%,-1%)} 75%{transform:translate(-1%,-2%)}
  100%{transform:translate(2%,1%)}
}

em { font-style: inherit; color: var(--orange); }
.mono { font-family: var(--mono); font-size: 12.5px; letter-spacing: .32em; text-transform: uppercase; }
.dim  { color: var(--dim); }
.accent { color: var(--orange); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.inline-orange { color: var(--orange); font-weight: 600; font-style: normal; }

/* GRACE — the serif italic, the soft voice (her name + her spoken lines) */
.grace {
  font-family: var(--grace);
  font-style: italic;
  font-weight: 400;
  color: var(--bone);
  text-shadow: 0 0 28px rgba(240,184,107,.25), 0 0 2px rgba(240,184,107,.18);
  letter-spacing: 0;
}
.grace.inline { text-shadow: none; color: var(--amber-2); }

/* GRIT — the archivo italic hammer (headlines only, never on a grace line) */
.grit {
  font-family: var(--disp);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .005em;
  color: var(--bone);
}

/* ════════ SIGNATURE WORDMARK — live editorial serif italic ════════ */
.head-wordmark,
.foot-wordmark {
  font-family: var(--grace);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.005em;
  color: var(--bone);
  /* weight-bump via stroke (lead's spec) */
  -webkit-text-stroke: 0.5px currentColor;
  paint-order: stroke fill;
}
.head-wordmark { font-size: 22px; line-height: 1; }
.foot-wordmark { font-size: 30px; line-height: 1; margin-top: 14px; }

/* ════════ SPARK DUO — the system mark, twinkles ════════ */
.spark-o {
  transform-box: fill-box; transform-origin: center;
  animation: twinkle 4.4s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255,106,19,.55));
}
.spark-v {
  transform-box: fill-box; transform-origin: center;
  animation: twinkle 5.2s ease-in-out infinite 1.4s;
  filter: drop-shadow(0 0 5px rgba(164,140,240,.55));
}
@keyframes twinkle {
  0%, 100% { opacity: 1;   transform: scale(1)   rotate(0deg); }
  48%      { opacity: .55; transform: scale(.78) rotate(18deg); }
  62%      { opacity: 1;   transform: scale(1.06) rotate(0deg); }
}
.spark-mark   { display: block; }
.inline-spark { display: inline-block; vertical-align: middle; margin-left: 8px; }

/* ════════ HEADER ════════ */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 14px var(--pad);
  background: color-mix(in srgb, var(--night) 76%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ink-edge);
}
.head-mark { display: flex; align-items: center; gap: 12px; }
.head-nav { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap; }
.head-nav a {
  font-family: var(--mono); font-size: 11px; letter-spacing: .28em; color: var(--dim);
  transition: color .2s;
}
.head-nav a:hover { color: var(--orange); }
.btn-dm {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .22em;
  border: 1px solid var(--orange); color: var(--orange);
  padding: 9px 16px; transition: .2s; white-space: nowrap;
}
.btn-dm:hover { background: var(--orange); color: var(--night); }

/* ════════ HERO ════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 16%;
  animation: heroDrift 28s ease-out both;
  filter: saturate(1.04) contrast(1.02);
}
@keyframes heroDrift { from { transform: scale(1.12); } to { transform: scale(1.02); } }

/* the dark grade — keeps the type readable */
.hero-grade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(13,11,14,.35) 0%,
      rgba(13,11,14,.08) 28%,
      rgba(13,11,14,.55) 70%,
      rgba(13,11,14,.96) 92%,
      var(--night) 100%),
    linear-gradient(105deg,
      rgba(13,11,14,.78) 0%,
      rgba(13,11,14,.55) 36%,
      rgba(13,11,14,0) 60%);
}
/* the warm sodium glow — golden-hour Mumbai, not warehouse */
.hero-warm {
  position: absolute; inset: 0; mix-blend-mode: soft-light; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 22%, rgba(240,184,107,.55) 0%, transparent 60%),
    radial-gradient(70% 60% at 18% 90%, rgba(255,106,19,.30) 0%, transparent 65%);
}

.hero-inner {
  position: relative; z-index: 2;
  padding: 0 var(--pad) 130px;
  max-width: 1320px;
  width: 100%;
}
.hero-kicker { color: var(--amber-2); margin-bottom: 32px; font-size: 11.5px; }
.pm-clock { color: inherit; }

/* the headline — mixed type, the brand thesis */
.hero-word {
  font-weight: 900;
  line-height: .96;
  letter-spacing: 0;
  display: block;
}
.hero-word .line {
  display: block;
  font-size: clamp(46px, 7.6vw, 116px);
  position: relative;
}
.hero-word .grace {
  font-size: 1.18em;
  letter-spacing: -.01em;
  margin-right: .14em;
  display: inline-block;
  transform: translateY(.04em);
}
.hero-word .grit { font-style: italic; }

/* the throttle-line — pulls away from the headline, ends in the spark duo */
.hero-throttle {
  margin-top: 18px;
  margin-left: -6px;
  width: clamp(220px, 28vw, 320px);
  line-height: 0;
}
.hero-throttle svg { width: 100%; height: auto; }

.hero-sub {
  margin-top: 22px;
  max-width: 56ch;
  font-size: clamp(16px, 1.45vw, 20px);
  color: var(--bone);
  line-height: 1.55;
}
.hero-strap { margin-top: 22px; color: var(--chrome); font-size: 11.5px; }

.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.btn-solid {
  display: inline-block;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .22em;
  background: var(--orange); color: var(--night);
  padding: 16px 26px;
  transform: skewX(-6deg);
  transition: .2s;
  box-shadow: 0 8px 26px -10px rgba(255,106,19,.65);
}
.btn-solid:hover { background: var(--bone); transform: skewX(-6deg) translateX(4px); }
.btn-solid.big { padding: 18px 34px; font-size: 13px; }

.btn-ghost {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .22em;
  border: 1px solid var(--ink-edge); color: var(--bone);
  padding: 16px 26px;
  transform: skewX(-6deg); transition: .2s;
  background: color-mix(in srgb, var(--night) 50%, transparent);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* spark tile in the hero corner */
.spark-tile {
  position: absolute; right: var(--pad); bottom: 88px; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  padding: 14px 18px;
  background: color-mix(in srgb, var(--night) 60%, transparent);
  border: 1px solid var(--ink-edge);
  backdrop-filter: blur(10px);
}
.spark-tile .mono { color: var(--amber-2); font-size: 9.5px; letter-spacing: .28em; }

/* staggered load */
[class*="reveal-"] { opacity: 0; transform: translateY(28px); animation: rise 1s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal-1 { animation-delay: .18s } .reveal-2 { animation-delay: .34s }
.reveal-3 { animation-delay: .50s } .reveal-4 { animation-delay: .68s }
.reveal-5 { animation-delay: .82s } .reveal-6 { animation-delay: .96s }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ticker */
.ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  border-top: 1px solid var(--ink-edge);
  background: color-mix(in srgb, var(--night) 88%, transparent);
  overflow: hidden; padding: 13px 0;
}
.ticker-track { display: inline-flex; gap: 38px; white-space: nowrap; animation: slide 48s linear infinite; }
.ticker-track span { font-family: var(--mono); font-size: 12px; letter-spacing: .3em; color: var(--dim); }
.ticker-track i { color: var(--orange); font-style: normal; opacity: .9; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ════════ shared section bits ════════ */
section { padding: clamp(86px, 11vw, 150px) var(--pad); position: relative; }
.sec-head h2 {
  font-family: var(--disp);
  font-weight: 900; font-style: italic;
  font-size: clamp(36px, 5.6vw, 80px); line-height: 1.02; letter-spacing: .005em;
  margin: 18px 0 18px;
}
.sec-head h2 .grace { font-style: italic; font-weight: 400; }
.sec-sub { max-width: 60ch; color: var(--dim); font-size: 15.5px; }
.io { opacity: 0; transform: translateY(36px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.io.in { opacity: 1; transform: none; }

/* ════════ THE RANGE — filmstrip ════════ */
.range {
  background:
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 40%, var(--night) 100%);
  position: relative;
  overflow: hidden;
}
.range::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: var(--warm-grad);
  opacity: .9;
}
.range .sec-head { max-width: 1240px; }
.strip-wrap {
  margin: 56px calc(-1 * var(--pad)) 0;
  padding: 0 var(--pad);
  position: relative;
}
.strip-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: var(--pad);
  background: linear-gradient(90deg, transparent, var(--night));
  pointer-events: none;
}
.filmstrip {
  list-style: none; padding: 0 0 28px;
  display: flex; gap: 18px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
  -webkit-overflow-scrolling: touch;
}
.filmstrip::-webkit-scrollbar { height: 6px; }
.filmstrip::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
.filmstrip::-webkit-scrollbar-track { background: transparent; }
.filmstrip li { flex: 0 0 auto; scroll-snap-align: start; }

.frame {
  display: block;
  width: clamp(240px, 26vw, 340px);
  background: var(--night-2);
  border: 1px solid var(--ink-edge);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .25s;
  position: relative;
}
.frame:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
}
.frame-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--night-2);
}
.frame-img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 65%, rgba(13,11,14,.6) 100%),
    radial-gradient(80% 60% at 50% 0%, rgba(240,184,107,.12), transparent 65%);
}
.frame-img img {
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s;
  filter: saturate(1.04) contrast(1.02);
}
.frame:hover .frame-img img { transform: scale(1.05); }
.frame-cap {
  padding: 14px 16px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.frame-cap span:first-child {
  color: var(--orange);
  font-size: 10.5px;
  letter-spacing: .26em;
}
.frame-cap .quote {
  color: var(--bone);
  font-family: var(--grace);
  font-style: italic;
  font-size: 14.5px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
}

/* end-card */
.frame.end {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,106,19,.22), transparent 70%),
    var(--night-3);
  border-color: var(--orange);
}
.end-inner {
  aspect-ratio: 3/4;
  padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.end-arrow { color: var(--orange); font-size: 32px; }
.end-h {
  font-family: var(--disp);
  font-weight: 900; font-style: italic;
  font-size: 30px; line-height: 1.05;
}
.end-h .grace { font-size: 1.05em; }
.end-meta { color: var(--dim); font-size: 10.5px; }

/* ════════ TITLE PLATE — warm restyle ════════ */
.title-sec {
  display: grid; place-items: center;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(227,155,77,.10), transparent 60%),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 50%, var(--night) 100%);
}
.title-plate {
  text-align: center; max-width: 880px;
  border: 1px solid var(--ink-edge);
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 64px);
  position: relative;
  background:
    radial-gradient(90% 130% at 50% 0%, rgba(255,106,19,.10) 0%, transparent 55%),
    linear-gradient(180deg, #1a1421 0%, var(--night) 80%);
  box-shadow:
    inset 0 1px 0 rgba(240,184,107,.18),
    0 30px 80px -40px rgba(255,106,19,.35);
}
.title-plate::before, .title-plate::after {
  content: "·"; position: absolute; top: 10px; color: var(--orange); font-size: 22px;
}
.title-plate::before { left: 16px; } .title-plate::after { right: 16px; }
.title-plate h2 {
  font-family: var(--disp); font-weight: 900; font-style: italic;
  font-size: clamp(36px, 5.8vw, 82px); letter-spacing: .01em; line-height: 1;
  margin: 18px 0;
}
.title-plate h2 em {
  color: var(--orange);
  text-shadow: 0 0 32px rgba(255,106,19,.45);
}
.title-note {
  max-width: 56ch; margin: 22px auto 26px;
  color: var(--bone); opacity: .82;
  font-size: 15.5px; line-height: 1.6;
}
.partner { font-size: 11px; color: var(--dim); border-top: 1px solid var(--ink-edge); padding-top: 22px; }
.partner a { color: var(--amber-2); }
.partner a:hover { color: var(--orange); }

/* ════════ TRAIN WITH ME ════════ */
.training {
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(227,155,77,.10), transparent 60%),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 60%, var(--night) 100%);
  border-block: 1px solid var(--ink-edge);
}
.train-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin: 36px 0 64px;
}
.train-copy { padding-right: 8px; }
.train-lede {
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
  color: var(--bone);
  max-width: 52ch;
}
.train-fig {
  position: relative;
  border: 1px solid var(--ink-edge);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--night-2);
}
.train-fig img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%;
  filter: saturate(1.05) contrast(1.02);
}
.train-fig-warm {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(70% 60% at 70% 30%, rgba(240,184,107,.28), transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(13,11,14,.55) 100%);
  mix-blend-mode: soft-light;
}
.train-fig figcaption {
  position: absolute; left: 16px; bottom: 14px;
  color: var(--bone); font-size: 10.5px; letter-spacing: .28em;
  background: color-mix(in srgb, var(--night) 65%, transparent);
  padding: 6px 10px; border: 1px solid var(--ink-edge);
}

.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 36px;
}
.offer {
  border: 1px solid var(--ink-edge); padding: 34px 28px; background: var(--night);
  position: relative; transition: .28s;
}
.offer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 100% 0%, rgba(255,106,19,.08), transparent 60%);
  opacity: 0; transition: opacity .25s;
}
.offer:hover { border-color: var(--orange); transform: translateY(-4px); }
.offer:hover::before { opacity: 1; }
.offer .o-num { color: var(--orange); margin-bottom: 18px; }
.offer h3 {
  font-family: var(--disp); font-weight: 900; font-style: italic;
  font-size: 22px; margin-bottom: 14px; letter-spacing: .01em;
}
.offer p:last-child { color: var(--bone); opacity: .8; font-size: 14.8px; line-height: 1.6; }

.train-cta {
  margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

/* ════════ AFTER DARK ════════ */
.after-dark {
  background:
    radial-gradient(60% 50% at 20% 20%, rgba(255,106,19,.10), transparent 60%),
    linear-gradient(180deg, var(--night) 0%, #0a070d 100%);
}
.dark-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin: 46px 0 64px;
}
.dark-fig {
  position: relative; overflow: hidden;
  border: 1px solid var(--ink-edge);
  aspect-ratio: 4/3;
}
.dark-fig img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%;
}
.dark-fig-her img { filter: saturate(1.05); }
.dark-fig-her::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 75% 30%, rgba(255,106,19,.22), transparent 60%),
    linear-gradient(180deg, transparent 55%, rgba(13,11,14,.65) 100%);
  mix-blend-mode: soft-light;
}
.dark-fig-city img { filter: saturate(.95) contrast(1.05); opacity: .92; }
.dark-fig-city::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 30% 30%, rgba(227,155,77,.20), transparent 60%),
    linear-gradient(180deg, transparent 55%, rgba(13,11,14,.65) 100%);
}
.dark-fig figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  color: var(--bone); font-size: 10.5px; letter-spacing: .28em;
  background: color-mix(in srgb, var(--night) 65%, transparent);
  padding: 6px 10px; border: 1px solid var(--ink-edge);
}

.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.pillar {
  background: var(--night-2); border: 1px solid var(--ink-edge); padding: 28px 24px;
  transition: .25s; position: relative;
}
.pillar:hover { border-color: var(--orange); }
.pillar .p-num { color: var(--orange); font-size: 11px; margin-bottom: 14px; }
.pillar h3 {
  font-family: var(--disp); font-weight: 900; font-style: italic;
  font-size: 24px; margin-bottom: 10px;
}
.pillar p { color: var(--bone); opacity: .82; font-size: 14.5px; line-height: 1.55; }
.pillar .tag { color: var(--chrome); font-size: 10.5px; margin-top: 14px; }

/* ════════ STORY ════════ */
.story {
  background:
    radial-gradient(70% 60% at 80% 100%, rgba(227,155,77,.08), transparent 60%),
    var(--night);
  border-block: 1px solid var(--ink-edge);
}
.story-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 90px); align-items: start;
}
.story .sec-head h2 { margin-bottom: 22px; }
.facts {
  list-style: none; padding: 0;
  border-left: 2px solid var(--orange);
  background:
    linear-gradient(90deg, rgba(255,106,19,.04), transparent 50%);
}
.facts li {
  padding: 16px 22px; border-bottom: 1px solid var(--ink-edge);
  display: grid; grid-template-columns: 132px 1fr; gap: 14px; align-items: baseline;
  font-size: 14.8px; color: var(--bone);
}
.facts li:last-child { border-bottom: none; }
.facts li span { color: var(--orange); font-size: 10.5px; letter-spacing: .26em; }
.facts .grace.inline { color: var(--amber-2); font-size: 15.5px; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-top: clamp(50px, 7vw, 90px); border-top: 1px solid var(--ink-edge); padding-top: 40px;
}
.stats strong {
  font-family: var(--disp); font-weight: 900; font-style: italic;
  font-size: clamp(34px, 4vw, 60px); display: block; line-height: 1;
}
.stats div:nth-child(4) strong { color: var(--violet); }  /* the one violet tick on the page */
.stats span { color: var(--dim); font-size: 10.5px; margin-top: 10px; display: block; }

/* ════════ CREED WALL ════════ */
.creed {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(255,106,19,.12), transparent 65%),
    var(--night-2);
  border-top: 1px solid var(--ink-edge);
}
.creed-inner { max-width: 1100px; margin: 0 auto; }
.creed-text {
  font-family: var(--disp); font-weight: 900; font-style: italic;
  font-size: clamp(44px, 8.2vw, 122px); line-height: .98; letter-spacing: .005em;
}
.creed-text span { display: block; }
.creed-text .grow { color: var(--orange); text-shadow: 0 0 50px rgba(255,106,19,.35); }
.creed-inner .mono { margin-top: 34px; }

/* ════════ THE LAST WORD ════════ */
.last-word {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  display: grid; place-items: center;
  background:
    radial-gradient(70% 90% at 50% 50%, rgba(240,184,107,.16), transparent 65%),
    linear-gradient(180deg, var(--night-2) 0%, var(--night) 100%);
  border-top: 1px solid var(--ink-edge);
  text-align: center;
}
.last-inner { max-width: 1000px; }
.last-quote {
  font-family: var(--grace);
  font-style: italic;
  font-size: clamp(34px, 6vw, 86px);
  line-height: 1.12;
  color: var(--bone);
  text-shadow: 0 0 50px rgba(240,184,107,.4), 0 0 4px rgba(240,184,107,.22);
  margin-bottom: 28px;
  letter-spacing: -.005em;
}
.last-quote em.grace { text-shadow: inherit; color: inherit; }

/* ════════ FOOTER ════════ */
.site-foot {
  border-top: 1px solid var(--ink-edge);
  padding: 64px var(--pad) 28px;
  background: var(--night);
}
.foot-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 36px; align-items: start; }
.foot-brand .mono {
  font-family: var(--mono); font-weight: 400; font-style: normal; font-size: 10.5px;
  margin-top: 6px; letter-spacing: .28em;
}
.foot-links { display: flex; flex-direction: column; gap: 14px; font-size: 12px; letter-spacing: .24em; }
.foot-links a { color: var(--dim); transition: color .2s; }
.foot-links a:hover { color: var(--orange); }
.foot-creed { text-align: right; color: var(--chrome); font-size: 11px; max-width: 280px; justify-self: end; }
.foot-line {
  margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--ink-edge);
  color: var(--dim); font-size: 10px; letter-spacing: .2em;
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1100px) {
  .train-split { grid-template-columns: 1fr; }
  .train-fig { aspect-ratio: 16/11; }
  .train-fig img { object-position: 50% 30%; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .dark-split { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .head-nav { display: none; }
  .hero-inner { padding-bottom: 150px; }
  .spark-tile { display: none; }
  .hero-word .line { font-size: clamp(46px, 13vw, 80px); }
  .offer-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-creed { text-align: left; justify-self: start; }
  .facts li { grid-template-columns: 100px 1fr; font-size: 14px; }
  .frame { width: 78vw; }
  .train-fig figcaption,
  .dark-fig figcaption { font-size: 9px; letter-spacing: .22em; padding: 5px 8px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .io, [class*="reveal-"] { opacity: 1; transform: none; }
}

/* ── v2.1 polish: trim the two sags, tighten the CMO interstitial ── */
.after-dark { padding-bottom: clamp(56px, 7vw, 96px); }
.story { padding-top: clamp(56px, 7vw, 96px); }
.title-sec { padding-block: clamp(64px, 8vw, 112px); }
.training { padding-top: clamp(64px, 8vw, 110px); }
.foot-line { font-size: 11px; }

/* ── MAITY everyday mark in the header (one-word tier, GYMROB parity) ── */
.head-wordmark { display: inline-flex; align-items: baseline; gap: 2px; }
.head-swash { width: 44px; height: 16px; align-self: flex-end; margin-bottom: 1px; }
