/* Generated by scripts/bundle-public-css.js — edit main.source.css and sections/*.css */
/* section: hero.css */
.section--hero {
  position: relative;
  padding: clamp(48px, 8vw, 120px) 24px;
  padding-top: calc(var(--header-height, 92px) + clamp(48px, 8vw, 120px));
  overflow: hidden;
}
.section--hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.section--hero__overlay {
  position: absolute;
  inset: 0;
  background: #000;
}
.section--hero__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.section--hero__tagline {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.section--hero__headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 16px;
  line-height: 1.1;
}
.section--hero__subtitle {
  font-size: 1.125rem;
  max-width: 60ch;
  margin: 0 0 24px;
  opacity: 0.85;
}
.section--hero__cta {
  display: inline-block;
  padding: 12px 24px;
  background: #032d4e;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.section--hero__cta:hover {
  opacity: 0.9;
}
.section--hero-centered {
  text-align: center;
}
.section--hero-centered .section--hero__inner {
  text-align: center;
}
.section--hero-split-image .section--hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .section--hero-split-image .section--hero__inner {
    grid-template-columns: 1fr;
  }
}

/* section: stats.css */
.section--stats { padding: 64px 24px; }
.section--stats__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-item__icon { font-size: 1.5rem; opacity: 0.6; margin-bottom: 8px; }
.stat-item__value { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.stat-item__label { font-size: 0.875rem; margin-top: 8px; opacity: 0.7; }

/* section: cards-grid.css */
.section--cards-grid { padding: clamp(48px, 6vw, 96px) 24px; }
.section--cards-grid__inner { max-width: 1200px; margin: 0 auto; }
.section--cards-grid__heading { font-size: clamp(1.5rem, 3vw, 2.5rem); margin: 0 0 32px; text-align: center; }
.section--cards-grid__grid { display: grid; gap: 24px; }
.section--cards-grid__grid-2 { grid-template-columns: repeat(2, 1fr); }
.section--cards-grid__grid-3 { grid-template-columns: repeat(3, 1fr); }
.section--cards-grid__grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .section--cards-grid__grid-3,
  .section--cards-grid__grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .section--cards-grid__grid { grid-template-columns: 1fr !important; }
}
.card {
  background: #fff;
  border: 1px solid #e8e5e0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.card--linked:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.05); }
.card__image { aspect-ratio: 16/9; background-size: cover; background-position: center; }
.card__body { padding: 20px; flex: 1; }
.card__badge { display: inline-block; background: #032d4e; color: #fff; font-size: 0.7rem; padding: 2px 8px; border-radius: 999px; margin-bottom: 8px; }
.card__tag { display: inline-block; color: #032d4e; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; margin-left: 4px; }
.card__title { font-size: 1.125rem; margin: 0 0 8px; }
.card__description { margin: 0; font-size: 0.95rem; opacity: 0.85; }

/* section: rich-text.css */
.section--rich-text { width: 100%; }
.section--rich-text-sm { padding: 24px 16px; }
.section--rich-text-md { padding: 48px 16px; }
.section--rich-text-lg { padding: 80px 16px; }
.section--rich-text__inner-prose { max-width: 70ch; margin: 0 auto; }
.section--rich-text__inner-full  { max-width: 100%; }
.section--rich-text p,
.section--rich-text ul,
.section--rich-text ol { margin: 0 0 1em; line-height: 1.6; }
.section--rich-text h2 { font-size: 1.75rem; margin: 1.5em 0 0.5em; }
.section--rich-text h3 { font-size: 1.35rem; margin: 1.4em 0 0.5em; }
.section--rich-text a { color: #032d4e; text-decoration: underline; }

/* section: cta.css */
.section--cta { padding: clamp(48px, 6vw, 96px) 24px; }
.section--cta__inner { max-width: 960px; margin: 0 auto; }
.section--cta__heading { font-size: clamp(1.5rem, 3vw, 2.5rem); margin: 0 0 12px; }
.section--cta__description { margin: 0 0 24px; max-width: 60ch; opacity: 0.9; }
.section--cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.section--cta-centered .section--cta__actions { justify-content: center; }
.section--cta__button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.section--cta__button-primary { background: #fff; color: #032d4e; }
.section--cta__button-secondary { background: transparent; color: inherit; border: 1px solid currentColor; }
.section--cta-split .section--cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 640px) { .section--cta-split .section--cta__inner { grid-template-columns: 1fr; } }

/* section: video.css */
.section--video { padding: clamp(48px, 6vw, 96px) 24px; }
.section--video__inner { max-width: 960px; margin: 0 auto; }
.section--video__title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0 0 12px; }
.section--video__description { margin: 0 0 24px; opacity: 0.85; max-width: 60ch; }
.section--video__embed { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 8px; overflow: hidden; }
.section--video__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.section--video__player { width: 100%; border-radius: 8px; }
.section--video__thumb { width: 100%; aspect-ratio: 16/9; background-size: cover; background-position: center; border-radius: 8px; }

/* section: image-text.css */
.section--image-text { padding: clamp(48px, 6vw, 96px) 24px; }
.section--image-text__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.section--image-text__image img { width: 100%; height: auto; display: block; border-radius: 12px; }
.section--image-text__image-empty {
  aspect-ratio: 4/3;
  background: #f3f4f5;
  border-radius: 12px;
}
.section--image-text__heading { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0 0 16px; }
.section--image-text__body { margin: 0 0 16px; line-height: 1.6; }
.section--image-text__cta {
  display: inline-block;
  padding: 12px 24px;
  background: #032d4e;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 768px) {
  .section--image-text__inner { grid-template-columns: 1fr; gap: 24px; }
  .section--image-text-right .section--image-text__inner > * { order: initial; }
}

/* section: gallery.css */
.section--gallery { padding: clamp(48px, 6vw, 96px) 24px; }
.section--gallery__inner { max-width: 1200px; margin: 0 auto; }
.section--gallery__heading { font-size: clamp(1.5rem, 3vw, 2.5rem); margin: 0 0 32px; text-align: center; }
.section--gallery__grid { display: grid; gap: 16px; }
.section--gallery__grid-2 { grid-template-columns: repeat(2, 1fr); }
.section--gallery__grid-3 { grid-template-columns: repeat(3, 1fr); }
.section--gallery__grid-4 { grid-template-columns: repeat(4, 1fr); }
.section--gallery-masonry .section--gallery__grid { display: block; column-count: 3; column-gap: 16px; }
.section--gallery-masonry .gallery__item { break-inside: avoid; margin-bottom: 16px; }
.gallery__item { margin: 0; overflow: hidden; border-radius: 8px; }
.gallery__item img { width: 100%; height: auto; display: block; }
.gallery__item figcaption { padding: 8px 4px; font-size: 0.875rem; opacity: 0.7; }
@media (max-width: 900px) {
  .section--gallery__grid-3, .section--gallery__grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section--gallery-masonry .section--gallery__grid { column-count: 2; }
}
@media (max-width: 600px) {
  .section--gallery__grid { grid-template-columns: 1fr !important; }
  .section--gallery-masonry .section--gallery__grid { column-count: 1; }
}

/* section: spacer.css */
.section--spacer { width: 100%; display: block; }

/* section: pricing-tiers.css */
.section--pricing-tiers { padding: clamp(48px, 6vw, 96px) 24px; }
.section--pricing-tiers__inner { max-width: 1200px; margin: 0 auto; }
.section--pricing-tiers__heading { font-size: clamp(1.5rem, 3vw, 2.5rem); margin: 0 0 32px; text-align: center; }
.section--pricing-tiers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pricing-tier {
  background: #fff;
  border: 1px solid #e8e5e0;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-tier-highlighted {
  border-color: #032d4e;
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.12);
}
.pricing-tier__badge {
  position: absolute;
  top: -10px;
  left: 24px;
  background: #032d4e;
  color: #fff;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}
.pricing-tier__name { font-size: 1.25rem; margin: 0 0 16px; }
.pricing-tier__price { font-size: 2rem; font-weight: 600; }
.pricing-tier__cadence { font-size: 0.875rem; font-weight: 400; opacity: 0.7; margin-left: 4px; }
.pricing-tier__description { font-size: 0.9rem; opacity: 0.8; margin: 12px 0; }
.pricing-tier__features { list-style: none; padding: 0; margin: 16px 0; flex: 1; }
.pricing-tier__features li { padding: 4px 0 4px 24px; position: relative; }
.pricing-tier__features li::before { content: "✓"; position: absolute; left: 0; color: #032d4e; }
.pricing-tier__ctas { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.pricing-tier__cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.pricing-tier__cta-primary { background: #032d4e; color: #fff; }
.pricing-tier__cta-ghost { background: transparent; color: #032d4e; border: 1px solid #032d4e; }

/* section: testimonials.css */
.section--testimonials { padding: clamp(48px, 6vw, 96px) 24px; }
.section--testimonials__inner { max-width: 1200px; margin: 0 auto; }
.section--testimonials__heading { font-size: clamp(1.5rem, 3vw, 2.5rem); margin: 0 0 32px; text-align: center; }
.section--testimonials__list { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.section--testimonials-carousel .section--testimonials__list {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}
.section--testimonials-carousel .testimonial {
  flex: 0 0 320px;
  scroll-snap-align: start;
}
.testimonial {
  background: #fff;
  border: 1px solid #e8e5e0;
  border-radius: 12px;
  padding: 24px;
  margin: 0;
}
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}
.testimonial__quote {
  font-style: italic;
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.6;
}
.testimonial__author { font-size: 0.875rem; font-weight: 600; }
.testimonial__role { font-weight: 400; opacity: 0.7; font-size: 0.8125rem; }

/* section: contact-form.css */
.section--contact-form { padding: clamp(48px, 6vw, 96px) 24px; }
.section--contact-form__inner { max-width: 640px; margin: 0 auto; }
.section--contact-form__heading { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0 0 8px; }
.section--contact-form__description { margin: 0 0 24px; opacity: 0.85; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: 0.875rem; font-weight: 500; }
.field input,
.field textarea,
.field select {
  border: 1px solid #d4d4d8;
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  font-size: 16px;
  background: #fff;
  touch-action: manipulation;
}
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--accent, #b08c5d);
  outline-offset: 2px;
}
.field--checkbox .field__inline { flex-direction: row; align-items: center; gap: 8px; font-size: 0.875rem; }
.contact-form__submit {
  align-self: flex-start;
  min-height: 44px;
  padding: 12px 24px;
  background: #032d4e;
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
}
.contact-form__submit:focus-visible {
  outline: 2px solid var(--accent, #b08c5d);
  outline-offset: 2px;
}
.contact-form__submit:hover { opacity: 0.9; }
.contact-form__success {
  margin-top: 8px;
  padding: 12px;
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  border-radius: 8px;
}

/* section: features-grid.css */
.section--features-grid { padding: clamp(48px, 6vw, 96px) 24px; }
.section--features-grid__inner { max-width: 1200px; margin: 0 auto; }
.section--features-grid__heading { font-size: clamp(1.5rem, 3vw, 2.5rem); margin: 0 0 32px; text-align: center; }
.section--features-grid__grid { display: grid; gap: 32px; }
.section--features-grid__grid-2 { grid-template-columns: repeat(2, 1fr); }
.section--features-grid__grid-3 { grid-template-columns: repeat(3, 1fr); }
.section--features-grid__grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .section--features-grid__grid-3,
  .section--features-grid__grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .section--features-grid__grid { grid-template-columns: 1fr !important; }
}
.feature { text-align: left; }
.feature__icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f5;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: transparent;
}
.feature__icon[data-icon] { color: #032d4e; }
.feature__title { font-size: 1.125rem; margin: 0 0 6px; }
.feature__description { margin: 0; line-height: 1.6; opacity: 0.85; }

/* section: animated-counters.css */
.section--animated-counters { padding: clamp(48px, 6vw, 96px) 24px; }
.section--animated-counters__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.counter__value { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1; }
.counter__suffix { display: inline; font-size: 1.5rem; opacity: 0.7; margin-left: 4px; }
.counter__label { font-size: 0.875rem; margin-top: 8px; opacity: 0.75; }

/* section: section-shell.css */
.section-shell--hide-desktop,
.section-shell--hide-tablet,
.section-shell--hide-mobile {
  display: block;
}

@media (min-width: 1024px) {
  .section-shell--hide-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .section-shell--hide-tablet {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .section-shell--hide-mobile {
    display: none !important;
  }
}

.section-shell--animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-shell--animate:has(.hero) {
  opacity: 1;
  transform: none;
}

.section-shell--animate.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .section-shell--animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* section: reset-password.css */
.section--reset-password { padding: clamp(48px, 6vw, 96px) 24px; }
.section--reset-password__inner { max-width: 640px; margin: 0 auto; }
.reset-password-form { display: flex; flex-direction: column; gap: 16px; max-width: 420px; }
.reset-password-form__submit {
  align-self: flex-start;
  padding: 12px 24px;
  background: #032d4e;
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}
.reset-password-form__submit:hover { opacity: 0.9; }
.reset-password-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.reset-password-form__status { font-size: 0.875rem; min-height: 1.25rem; }
.reset-password-form__status.is-error { color: #b91c1c; }
.reset-password-form__status.is-success { color: #047857; }
.contact-form__status { font-size: 0.875rem; min-height: 1.25rem; }
.contact-form__status.is-error { color: #b91c1c; }
.contact-form__status.is-success { color: #047857; }

/* section: home-launch.css */
/* Launch design — the Trainer brand styles for the bespoke home-* sections.
 *
 * Loaded by both:
 *   - public/assets/main.css (live site)
 *   - admin/styles/page-preview.css (editor canvas)
 *
 * Contains only the class-based styles. Global resets, html/body styles, and
 * the film-grain body::after overlay live directly in main.css so they don't
 * leak into the admin shell. */

:root {
  --bg: #0D0D0D;
  --surface: #141414;
  --surface-2: #1A1A1A;
  --ink: #FFF;
  --ink-2: rgb(255 255 255 / 50%);
  --ink-3: rgb(255 255 255 / 25%);
  --border: rgb(255 255 255 / 8%);
  --accent: #B08C5D;
  --accent-dim: #7A5F3A;
  --accent-bg: #1A1510;
}

/* ===== UTILITIES ===== */
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.label--accent { color: var(--accent); margin-bottom: 20px; display: block; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

.img-reveal { overflow: hidden; position: relative; }
.img-reveal::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--bg);
  transform-origin: right;
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.18, 1);
}
.img-reveal.visible::after { transform: scaleX(0); }
.img-reveal img {
  transform: scale(1.12);
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-reveal.visible img { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .img-reveal::after, .img-reveal img { opacity: 1; transform: none; transition: none; }
  .hero-headline span, .hero-eyebrow, .hero-tagline, .hero-body, .hero-buttons, .hero-proof {
    opacity: 1; transform: none; animation: none;
  }
}

/* ===== HERO — SPLIT EDITORIAL ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%; right: 0; width: 60%; height: 80%;
  background: radial-gradient(ellipse 70% 70% at 70% 50%, rgb(176 140 93 / 4%), transparent);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 100px 48px;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: auto;
  padding-right: 64px;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(25%) brightness(0.85) contrast(1.05);
  transform: scale(1.02);
  transition: transform 0.1s linear;
}

.hero-portrait::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to right,
    var(--bg) 0%,
    rgb(13 13 13 / 70%) 12%,
    rgb(13 13 13 / 15%) 35%,
    transparent 55%
  );
  pointer-events: none;
}

.hero-portrait::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 30%; z-index: 2;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.hero-portrait-top-fade {
  position: absolute; top: 0; left: 0; right: 0;
  height: 15%; z-index: 2;
  background: linear-gradient(to bottom, rgb(13 13 13 / 50%), transparent);
  pointer-events: none;
}

.hero-divider {
  position: absolute;
  left: 50%; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), rgb(176 140 93 / 15%), var(--border), transparent);
  z-index: 3;
  pointer-events: none;
}

.hero-eyebrow {
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-headline {
  font-weight: 200;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-headline span {
  display: block;
  opacity: 0; transform: translateY(40px);
  animation: heroSlide 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-headline span:nth-child(2) { animation-delay: 0.08s; }

.hero-headline em { font-style: normal; color: var(--accent); }

.hero-tagline {
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: lowercase;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.8s 0.5s ease forwards;
}

.hero-body {
  font-size: 16px; font-weight: 300;
  color: var(--ink-2);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero-proof {
  margin-top: 24px;
  font-size: 12px; font-weight: 400;
  color: var(--ink-3);
  letter-spacing: 0.03em;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s ease forwards;
}
.hero-proof strong { color: var(--ink-2); font-weight: 500; }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 0.8s 1.4s ease forwards; z-index: 3;
}

.hero-scroll span {
  font-size: 9px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-3); writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--ink-3), transparent);
  position: relative; overflow: hidden;
}

.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 1px; height: 100%; background: var(--accent);
  animation: scrollDrop 2.5s ease-in-out infinite;
}

@keyframes scrollDrop { 0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes heroSlide { to { opacity: 1; transform: translateY(0); } }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--ink); color: var(--bg);
  padding: 16px 40px; border: none;
  font-family: Inter, sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-primary:hover { background: rgb(255 255 255 / 85%); transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.btn-ghost {
  display: inline-block;
  color: var(--ink-2); border: 1px solid var(--border);
  padding: 16px 40px;
  font-family: Inter, sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--ink); border-color: rgb(255 255 255 / 25%); background: rgb(255 255 255 / 3%); }
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.btn-magnetic { position: relative; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.btn-magnetic .btn-text { display: inline-block; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }

/* ===== SECTIONS ===== */
.section { padding: 120px 0; border-bottom: 1px solid var(--border); background: var(--bg); }

.section-title {
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}

.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--accent);
  margin-top: 20px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.section-title.visible::after { width: 48px; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 48px; }

/* ===== STATS BAR ===== */
.stats-bar { border-bottom: 1px solid var(--border); background: var(--bg); }

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.stat { padding: 56px 32px; background: var(--surface); text-align: center; }

.stat-number {
  font-weight: 200;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--ink); line-height: 1; margin-bottom: 8px;
  font-feature-settings: 'tnum' 1;
  transition: text-shadow 1.5s ease;
}
.stat.visible .stat-number { text-shadow: 0 0 40px rgb(176 140 93 / 15%); }

.stat-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ===== ABOUT — split editorial ===== */
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 96px; align-items: start; }
.about-image { position: relative; }

.about-image img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; filter: grayscale(20%);
}

.about-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--border); pointer-events: none;
}

.about-quote {
  font-weight: 200;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 40px;
  color: var(--ink);
}

.about-text p {
  font-size: 15px; font-weight: 300;
  color: var(--ink-2); line-height: 1.75;
  margin-bottom: 24px; max-width: 480px;
}

.about-standalone {
  font-size: 18px; font-weight: 300;
  color: var(--ink); letter-spacing: 0.02em;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ===== NARRATIVE BANNER ===== */
.narrative-banner {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.narrative-banner-bg {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  z-index: 0;
}

.ng-img { position: relative; overflow: hidden; will-change: transform; }

.ng-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(55%) brightness(0.55) contrast(1.1);
  transform: scale(1.04);
  transition: filter 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.narrative-banner:hover .ng-img img {
  filter: grayscale(35%) brightness(0.62) contrast(1.05);
  transform: scale(1.06);
}

.ng-img--center img { filter: grayscale(45%) brightness(0.6) contrast(1.1); }

.narrative-banner-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgb(13 13 13 / 72%) 0%, rgb(13 13 13 / 50%) 45%, rgb(13 13 13 / 30%) 75%, rgb(13 13 13 / 35%) 100%),
    linear-gradient(180deg, rgb(13 13 13 / 50%) 0%, rgb(13 13 13 / 30%) 30%, rgb(13 13 13 / 30%) 70%, rgb(13 13 13 / 60%) 100%);
  pointer-events: none;
}

.narrative-banner-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 35% at 50% 50%, rgb(176 140 93 / 8%), transparent 70%);
  pointer-events: none;
}

.narrative-banner-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 48px;
  text-align: center;
}

.ng-accent-mark {
  width: 48px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
  margin: 0 auto 48px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ng-accent-mark.visible { transform: scaleX(1); }

.ng-quote {
  font-weight: 200;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: rgb(255 255 255 / 96%);
  margin: 0 auto;
  max-width: 780px;
  text-shadow: 0 2px 30px rgb(0 0 0 / 40%);
}

.ng-bridge-dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  margin: 56px auto 0;
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  box-shadow: 0 0 12px rgb(176 140 93 / 40%);
}
.ng-bridge-dot.visible { transform: scale(1); }

@media (width <= 900px) {
  .narrative-banner { min-height: 70vh; }
  .narrative-banner-bg { grid-template-columns: 1fr; }
  .narrative-banner-bg .ng-img:nth-child(2),
  .narrative-banner-bg .ng-img:nth-child(3) { display: none; }
  .narrative-banner-content { padding: 80px 24px; }
  .narrative-banner-overlay {
    background: linear-gradient(180deg, rgb(13 13 13 / 55%) 0%, rgb(13 13 13 / 65%) 50%, rgb(13 13 13 / 80%) 100%);
  }
}

/* ===== PILLARS ===== */
.pillars-header { margin-bottom: 80px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }

.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.pillar {
  padding: 56px 48px;
  background: var(--bg);
  transition: border-color 0.4s ease;
  border-left: 2px solid transparent;
}
.pillar:hover { border-left-color: var(--accent); }

.pillar-num {
  font-weight: 200; font-size: 56px;
  color: var(--ink-3); line-height: 1;
  margin-bottom: 32px;
  font-feature-settings: 'tnum' 1;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.pillar.visible .pillar-num { opacity: 1; transform: translateX(0); }

.pillar h3 {
  font-weight: 300; font-size: 16px;
  letter-spacing: 0.06em; margin-bottom: 16px;
  color: var(--ink);
}
.pillar p { font-size: 14px; font-weight: 300; color: var(--ink-2); line-height: 1.75; }

/* ===== APP SHOWCASE (inside pricing) ===== */
.app-showcase {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
  margin: 56px 0 96px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.app-showcase::before {
  content: '';
  position: absolute;
  top: 50%; left: 20%; transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgb(176 140 93 / 5%), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.app-showcase-image { position: relative; z-index: 1; text-align: center; }
.app-showcase-image img { max-width: 340px; width: 100%; margin: 0 auto; filter: brightness(0.95); }

.app-showcase-content { position: relative; z-index: 1; }

.app-showcase-title {
  font-weight: 200;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

.app-showcase-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

.app-showcase-features { list-style: none; padding: 0; margin: 0; }

.app-showcase-features li {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 16px;
}
.app-showcase-features li:last-child { border-bottom: 1px solid var(--border); }

.app-showcase-features li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (width <= 900px) {
  .app-showcase { grid-template-columns: 1fr; gap: 48px; }
  .app-showcase-image img { max-width: 260px; }
}

/* ===== PRICING ===== */
.pricing-intro {
  font-size: 15px; font-weight: 300;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 72px;
  max-width: 560px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 48px;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface);
  padding: 56px 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  transition: background 0.3s ease;
}
.pricing-card:hover { background: var(--surface-2); }

.pricing-card--featured {
  background: linear-gradient(180deg, #1a1612 0%, var(--accent-bg) 100%);
  padding: 72px 44px 56px;
  margin: -24px -1px -1px;
  border: 1px solid var(--accent-dim);
  box-shadow: 0 0 0 1px var(--accent-dim), 0 24px 60px rgb(0 0 0 / 50%), 0 0 80px rgb(176 140 93 / 8%);
  z-index: 2;
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgb(176 140 93 / 12%), transparent);
  pointer-events: none;
}

.pricing-card--featured:hover {
  background: linear-gradient(180deg, #1f1914 0%, #201711 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 6px 14px;
  white-space: nowrap;
}

.pricing-tier-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}

.pricing-tier-label--featured { color: var(--accent); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pricing-amount {
  font-weight: 200;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  color: var(--ink);
  line-height: 1;
  font-feature-settings: 'tnum' 1;
}

.pricing-card--featured .pricing-amount { font-size: clamp(1.6rem, 2vw, 2rem); }

.pricing-amount--text {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.pricing-unit {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.pricing-fit {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.65;
  padding: 16px 18px;
  border-left: 2px solid var(--accent);
  background: rgb(176 140 93 / 4%);
}

.pricing-card--featured .pricing-fit {
  background: rgb(176 140 93 / 10%);
  color: rgb(255 255 255 / 80%);
}

.pricing-fit-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.pricing-features li {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.6;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pricing-card--featured .pricing-features li {
  border-top-color: rgb(176 140 93 / 15%);
  color: rgb(255 255 255 / 75%);
}

.pricing-features li strong { font-weight: 500; color: var(--ink); }

.pricing-features li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

.pricing-features li:last-child { border-bottom: 1px solid var(--border); }
.pricing-card--featured .pricing-features li:last-child { border-bottom-color: rgb(176 140 93 / 15%); }

.pricing-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.pricing-cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.pricing-cta-pair .pricing-cta { margin-top: 0; padding: 14px 16px; font-size: 10px; }

.pricing-cta-block { text-align: center; padding-top: 8px; }

.pricing-cta-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: 0.03em;
}

@media (width <= 1024px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { margin: 0; border: 1px solid var(--accent-dim); }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); margin-top: 64px;
}

.testimonial {
  padding: 48px 40px;
  background: var(--surface);
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.testimonial:hover {
  background: var(--surface-2);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgb(0 0 0 / 30%);
}

.testimonial-result {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}

.testimonial p {
  font-weight: 300; font-size: 15px; line-height: 1.75;
  color: var(--ink-2); margin-bottom: 24px;
}

.testimonial-author {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-dim);
}

/* ===== CTA — cinematic close ===== */
.cta-section {
  padding: 180px 0;
  text-align: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 500px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgb(176 140 93 / 6%), transparent 70%);
  animation: breatheGlow 6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes breatheGlow {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.12;
  filter: grayscale(100%) blur(1px);
}
.cta-section .container { position: relative; z-index: 1; }

.cta-title {
  font-weight: 200;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--ink);
}

.cta-title em { font-style: normal; color: var(--accent); }

.cta-subtitle {
  font-weight: 300; font-size: 18px;
  letter-spacing: 0.08em; color: var(--ink-2);
  text-transform: lowercase; margin-bottom: 40px;
}

.cta-quote {
  font-weight: 300; font-size: 16px;
  color: var(--ink-2); max-width: 480px;
  margin: 0 auto 48px; line-height: 1.75;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-scarcity {
  margin-top: 16px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
}
.cta-risk { margin-top: 12px; font-size: 13px; font-weight: 300; color: var(--ink-3); }

/* ===== RESPONSIVE ===== */
@media (width <= 1024px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-content { padding-left: 32px; padding-right: 40px; }
  .hero-headline { font-size: clamp(2.5rem, 5vw, 4rem); }
  .pillars-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 500px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (width <= 768px) {
  .container { padding: 0 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh auto;
    min-height: auto;
  }
  .hero-portrait { order: -1; min-height: 55vh; }
  .hero-portrait::before { background: linear-gradient(to right, rgb(13 13 13 / 30%), transparent); }
  .hero-portrait::after { height: 50%; }
  .hero-content {
    padding: 48px 24px 72px;
    max-width: 100%;
    margin-left: 0;
    padding-right: 24px;
    margin-top: -80px;
    position: relative;
    z-index: 4;
  }
  .hero-divider { display: none; }
  .hero-headline { font-size: clamp(2.6rem, 10vw, 3.5rem); }
  .hero-body { margin-bottom: 36px; }
  .section { padding: 80px 0; }
  .cta-section { padding: 120px 0; }
  .testimonial, .pillar { padding: 40px 28px; }
  .hero-scroll { display: none; }
}

@media (width <= 480px) {
  .hero-headline { font-size: clamp(2.6rem, 13vw, 3.5rem); }
  .btn-primary, .btn-ghost { padding: 14px 32px; width: 100%; text-align: center; }
  .hero-buttons, .cta-buttons { flex-direction: column; gap: 12px; }
  .stat { padding: 36px 16px; }
}

:root {
      --bg: #0D0D0D;
      --surface: #141414;
      --surface-2: #1A1A1A;
      --ink: #FFF;
      --ink-2: rgb(255 255 255 / 68%);
      --ink-3: rgb(255 255 255 / 45%);
      --border: rgb(255 255 255 / 8%);
      --accent: #B08C5D;
      --accent-dim: #7A5F3A;
      --accent-bg: #1A1510;
      --header-height: 92px;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      font-size: 16px;
      scroll-padding-top: var(--header-height);
      -webkit-tap-highlight-color: rgb(176 140 93 / 20%);
    }

    body {
      font-family: Inter, system-ui, sans-serif;
      font-weight: 400;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizelegibility;
      overflow-x: hidden;
    }

    body.mobile-menu-open {
      overflow: hidden;
    }

    .skip-link {
      position: fixed;
      top: max(12px, env(safe-area-inset-top));
      left: max(12px, env(safe-area-inset-left));
      z-index: 10000;
      padding: 12px 20px;
      background: var(--ink);
      color: var(--bg);
      font-size: 14px;
      font-weight: 500;
      border-radius: 4px;
      transform: translateY(-200%);
      transition: transform 0.2s ease;
    }

    .skip-link:focus-visible {
      transform: translateY(0);
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    ::selection { background: var(--accent); color: var(--bg); }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    .container { max-width: 1080px; margin: 0 auto; padding: 0 48px; }

    /* ===== FILM GRAIN OVERLAY — the wow ===== */
    body::after {
      content: '';
      position: fixed; inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 256px 256px;
    }

    /* ===== TYPOGRAPHY ===== */
    .label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-2);
    }
    .label--accent { color: var(--accent); font-size: 12px; margin-bottom: 20px; display: block; }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.12s; }
    .reveal-delay-2 { transition-delay: 0.24s; }
    .reveal-delay-3 { transition-delay: 0.36s; }
    .reveal-delay-4 { transition-delay: 0.48s; }

    /* Image clip reveal */
    .img-reveal {
      overflow: hidden;
      position: relative;
    }

    .img-reveal::after {
      content: '';
      position: absolute; inset: 0;
      background: var(--bg);
      transform-origin: right;
      transition: transform 1.1s cubic-bezier(0.77, 0, 0.18, 1);
    }

    .img-reveal.visible::after {
      transform: scaleX(0);
    }

    .img-reveal img {
      transform: scale(1.12);
      transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .img-reveal.visible img { transform: scale(1); }

    @media (prefers-reduced-motion: reduce) {
      .reveal, .img-reveal::after, .img-reveal img { opacity: 1; transform: none; transition: none; }

      .hero-headline span, .hero-eyebrow, .hero-tagline, .hero-body, .hero-buttons, .hero-proof {
        opacity: 1; transform: none; animation: none;
      }

      body::after {
        display: none;
      }
    }

    @media (hover: none) {
      body::after {
        opacity: 0.02;
      }
    }

    /* ===== HEADER ===== */
    .header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: 64px;
      display: flex; align-items: center;
      transition: background 0.4s ease, border-color 0.4s ease;
      border-bottom: 1px solid transparent;
    }

    .header.scrolled {
      background: rgb(13 13 13 / 92%);
      backdrop-filter: blur(24px) saturate(1.2);
      border-bottom-color: var(--border);
    }
    .header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding-inline: max(48px, env(safe-area-inset-left)) max(48px, env(safe-area-inset-right));
    }

    .logo-svg { height: 46px; width: auto; opacity: 1; transition: height 0.3s ease, opacity 0.2s; }
    .logo-svg:hover { opacity: 0.7; }
    .header { height: 92px; transition: background 0.4s ease, border-color 0.4s ease, height 0.3s ease; }
    .header.scrolled { height: 72px; }
    .header.scrolled .logo-svg { height: 34px; }

    .nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }

    .nav-links a {
      font-size: 13px; font-weight: 400; color: var(--ink-2);
      letter-spacing: 0.01em; transition: color 0.2s ease;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }

    .nav-cta {
      font-size: 11px !important; font-weight: 500 !important;
      letter-spacing: 0.1em !important; text-transform: uppercase;
      color: var(--bg) !important; background: var(--ink);
      padding: 8px 24px; transition: background 0.2s ease;
      touch-action: manipulation;
    }
    .nav-cta:hover { background: rgb(255 255 255 / 80%) !important; }
    .nav-cta:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
      border-radius: 2px;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      min-width: 44px;
      min-height: 44px;
      padding: 12px;
      touch-action: manipulation;
    }
    .menu-toggle span {
      display: block;
      width: 20px;
      height: 1px;
      background: var(--ink);
      margin: 5px 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .menu-toggle:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
      border-radius: 2px;
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    /* ===== HERO — SPLIT EDITORIAL ===== */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
      background: var(--bg);
    }

    /* Subtle ambient glow behind image side */
    .hero::before {
      content: '';
      position: absolute;
      top: 10%; right: 0; width: 60%; height: 80%;
      background: radial-gradient(ellipse 70% 70% at 70% 50%, rgb(176 140 93 / 4%), transparent);
      z-index: 0;
      pointer-events: none;
    }

    /* Left column — text content */
    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 140px 0 100px 48px;
      position: relative;
      z-index: 2;
      max-width: 600px;
      margin-left: auto;
      padding-right: 64px;
    }

    /* Right column — portrait image */
    .hero-portrait {
      position: relative;
      z-index: 1;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }

    .hero-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      filter: grayscale(25%) brightness(0.85) contrast(1.05);
      transform: scale(1.02);
      transition: transform 0.1s linear;
    }

    /* Fade left edge into background */
    .hero-portrait::before {
      content: '';
      position: absolute; inset: 0; z-index: 2;
      background: linear-gradient(to right,
        var(--bg) 0%,
        rgb(13 13 13 / 70%) 12%,
        rgb(13 13 13 / 15%) 35%,
        transparent 55%
      );
      pointer-events: none;
    }

    /* Fade bottom edge */
    .hero-portrait::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 30%; z-index: 2;
      background: linear-gradient(to top, var(--bg), transparent);
      pointer-events: none;
    }

    /* Subtle top fade */
    .hero-portrait-top-fade {
      position: absolute; top: 0; left: 0; right: 0;
      height: 15%; z-index: 2;
      background: linear-gradient(to bottom, rgb(13 13 13 / 50%), transparent);
      pointer-events: none;
    }

    /* Vertical accent line between columns */
    .hero-divider {
      position: absolute;
      left: 50%; top: 20%; bottom: 20%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--border), rgb(176 140 93 / 15%), var(--border), transparent);
      z-index: 3;
      pointer-events: none;
    }

    .hero-eyebrow {
      color: var(--accent);
      margin-bottom: 32px;
      opacity: 0; transform: translateY(12px);
      animation: fadeUp 0.8s 0.3s ease forwards;
    }

    .hero-headline {
      font-weight: 200;
      font-size: clamp(3rem, 5.5vw, 5.5rem);
      letter-spacing: -0.02em;
      line-height: 0.92;
      color: var(--ink);
      margin-bottom: 20px;
    }

    .hero-headline span {
      display: block;
      opacity: 0; transform: translateY(40px);
      animation: heroSlide 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .hero-headline span:nth-child(2) { animation-delay: 0.08s; }

    .hero-headline em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-tagline {
      font-weight: 300;
      font-size: clamp(1rem, 2vw, 1.3rem);
      letter-spacing: 0.08em;
      color: var(--ink-3);
      text-transform: lowercase;
      margin-bottom: 28px;
      opacity: 0; transform: translateY(12px);
      animation: fadeUp 0.8s 0.5s ease forwards;
    }

    .hero-body {
      font-size: 16px; font-weight: 300;
      color: var(--ink-2);
      max-width: 440px;
      line-height: 1.8;
      margin-bottom: 48px;
      opacity: 0; transform: translateY(12px);
      animation: fadeUp 0.8s 0.7s ease forwards;
    }

    .hero-buttons {
      display: flex; gap: 16px; flex-wrap: wrap;
      opacity: 0; transform: translateY(12px);
      animation: fadeUp 0.8s 0.9s ease forwards;
    }

    .hero-proof {
      margin-top: 24px;
      font-size: 12px; font-weight: 400;
      color: var(--ink-3);
      letter-spacing: 0.03em;
      opacity: 0;
      animation: fadeUp 0.8s 1.1s ease forwards;
    }
    .hero-proof strong { color: var(--ink-2); font-weight: 500; }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 32px; left: 48px;
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      opacity: 0; animation: fadeUp 0.8s 1.4s ease forwards; z-index: 3;
    }

    .hero-scroll span {
      font-size: 9px; font-weight: 500; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--ink-3); writing-mode: vertical-rl;
    }

    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--ink-3), transparent);
      position: relative; overflow: hidden;
    }

    .scroll-line::after {
      content: ''; position: absolute; top: -100%; left: 0;
      width: 1px; height: 100%; background: var(--accent);
      animation: scrollDrop 2.5s ease-in-out infinite;
    }

    @keyframes scrollDrop { 0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; } }

    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

    @keyframes heroSlide { to { opacity: 1; transform: translateY(0); } }

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: inline-block;
      background: var(--ink); color: var(--bg);
      padding: 16px 40px; border: none;
      font-family: Inter, sans-serif;
      font-weight: 500; font-size: 11px;
      letter-spacing: 0.1em; text-transform: uppercase;
      cursor: pointer;
      transition: background 0.25s ease, transform 0.25s ease;
      touch-action: manipulation;
      min-height: 44px;
    }
    .btn-primary:hover { background: rgb(255 255 255 / 85%); transform: translateY(-1px); }
    .btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

    .btn-ghost {
      display: inline-block;
      color: var(--ink-2); border: 1px solid var(--border);
      padding: 16px 40px;
      font-family: Inter, sans-serif;
      font-weight: 500; font-size: 11px;
      letter-spacing: 0.1em; text-transform: uppercase;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
      touch-action: manipulation;
      min-height: 44px;
    }
    .btn-ghost:hover { color: var(--ink); border-color: rgb(255 255 255 / 25%); background: rgb(255 255 255 / 3%); }
    .btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

    /* ===== SECTIONS ===== */
    .section { padding: 120px 0; border-bottom: 1px solid var(--border); }

    .section-title {
      font-weight: 300;
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      letter-spacing: 0.06em;
      text-transform: lowercase;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    /* ===== STATS BAR ===== */
    .stats-bar { border-bottom: 1px solid var(--border); }

    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--border); border: 1px solid var(--border);
    }
    .stat { padding: 56px 32px; background: var(--surface); text-align: center; }

    .stat-number {
      font-weight: 200;
      font-size: clamp(2.8rem, 5vw, 4rem);
      color: var(--ink); line-height: 1; margin-bottom: 8px;
      font-feature-settings: 'tnum' 1;
    }

    .stat-label {
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--ink-3);
    }

    /* ===== ABOUT — split editorial ===== */
    .about-grid {
      display: grid; grid-template-columns: 5fr 7fr;
      gap: 96px; align-items: start;
    }
    .about-image { position: relative; }

    .about-image img {
      width: 100%; aspect-ratio: 3/4;
      object-fit: cover; filter: grayscale(20%);
    }

    .about-image::after {
      content: ''; position: absolute; inset: 0;
      border: 1px solid var(--border); pointer-events: none;
    }

    .about-quote {
      font-weight: 200;
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      letter-spacing: 0.02em;
      line-height: 1.5;
      margin-bottom: 40px;
    }

    .about-text p {
      font-size: 15px; font-weight: 300;
      color: var(--ink-2); line-height: 1.75;
      margin-bottom: 24px; max-width: 480px;
    }

    .about-standalone {
      font-size: 18px; font-weight: 300;
      color: var(--ink); letter-spacing: 0.02em;
      margin-top: 32px; padding-top: 32px;
      border-top: 1px solid var(--border);
    }

    .about-link-box-wrap {
      margin-top: 32px;
      max-width: 480px;
    }

    .about-link-box-wrap .btn-ghost {
      width: 100%;
      text-align: center;
    }

    /* ===== NARRATIVE BANNER — quote overlaid on image triptych ===== */
    .narrative-banner {
      position: relative;
      overflow: hidden;
      min-height: 88vh;
      display: flex;
      align-items: center;
      justify-content: center;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    /* Image triptych — full bleed background */
    .narrative-banner-bg {
      position: absolute; inset: 0;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2px;
      z-index: 0;
    }

    .ng-img {
      position: relative;
      overflow: hidden;
    }

    .ng-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      filter: grayscale(55%) brightness(0.55) contrast(1.1);
      transform: scale(1.04);
      transition: filter 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .narrative-banner:hover .ng-img img {
      filter: grayscale(35%) brightness(0.62) contrast(1.05);
      transform: scale(1.06);
    }

    /* Center image slightly brighter to draw eye */
    .ng-img--center img {
      filter: grayscale(45%) brightness(0.6) contrast(1.1);
    }

    /* Dark readability overlay — radial vignette + warm tint */
    .narrative-banner-overlay {
      position: absolute; inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse 60% 70% at 50% 50%, rgb(13 13 13 / 72%) 0%, rgb(13 13 13 / 50%) 45%, rgb(13 13 13 / 30%) 75%, rgb(13 13 13 / 35%) 100%),
        linear-gradient(180deg, rgb(13 13 13 / 50%) 0%, rgb(13 13 13 / 30%) 30%, rgb(13 13 13 / 30%) 70%, rgb(13 13 13 / 60%) 100%);
      pointer-events: none;
    }

    .narrative-banner-overlay::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 40% 35% at 50% 50%, rgb(176 140 93 / 8%), transparent 70%);
      pointer-events: none;
    }

    /* Text content — centered, floating above images */
    .narrative-banner-content {
      position: relative;
      z-index: 2;
      max-width: 780px;
      margin: 0 auto;
      padding: 120px 48px;
      text-align: center;
    }

    .ng-accent-mark {
      width: 48px; height: 1px;
      background: var(--accent);
      opacity: 0.7;
      margin: 0 auto 48px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .ng-accent-mark.visible { transform: scaleX(1); }

    .ng-quote {
      font-weight: 300;
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      letter-spacing: 0.01em;
      line-height: 1.5;
      color: rgb(255 255 255 / 96%);
      margin: 0 auto;
      max-width: 780px;
      text-shadow: 0 2px 36px rgb(0 0 0 / 55%);
    }

    .ng-bridge-dot {
      width: 4px; height: 4px;
      background: var(--accent);
      border-radius: 50%;
      margin: 56px auto 0;
      transform: scale(0);
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
      box-shadow: 0 0 12px rgb(176 140 93 / 40%);
    }
    .ng-bridge-dot.visible { transform: scale(1); }

    @media (width <= 900px) {
      .narrative-banner { min-height: 70vh; }

      .narrative-banner-bg {
        grid-template-columns: 1fr;
      }

      .narrative-banner-bg .ng-img:nth-child(2),
      .narrative-banner-bg .ng-img:nth-child(3) { display: none; }
      .narrative-banner-content { padding: 80px 24px; }

      .narrative-banner-overlay {
        background:
          linear-gradient(180deg, rgb(13 13 13 / 55%) 0%, rgb(13 13 13 / 65%) 50%, rgb(13 13 13 / 80%) 100%);
      }
    }

    /* ===== PILLARS ===== */
    .pillars-header { margin-bottom: 80px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }

    .pillars-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
    }
    .pillar { padding: 56px 48px; background: var(--bg); }

    .pillar-num {
      font-weight: 200; font-size: 56px;
      color: var(--ink-3); line-height: 1;
      margin-bottom: 32px;
      font-feature-settings: 'tnum' 1;
      opacity: 0; transform: translateX(-8px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }
    .pillar.visible .pillar-num { opacity: 1; transform: translateX(0); }

    .pillar h3 {
      font-weight: 300; font-size: 16px;
      letter-spacing: 0.06em; margin-bottom: 16px;
    }
    .pillar p { font-size: 14px; font-weight: 300; color: var(--ink-2); line-height: 1.75; }

    /* ===== PROCESS ===== */
    .process-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--border);
      margin-top: 80px;
    }
    .process-step { padding: 48px 36px; background: var(--surface); }

    .process-num {
      font-weight: 500; font-size: 11px;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--ink-3); margin-bottom: 20px;
    }
    .process-step h3 { font-weight: 300; font-size: 17px; letter-spacing: 0.04em; margin-bottom: 16px; }
    .process-step p { font-size: 14px; font-weight: 300; color: var(--ink-2); line-height: 1.75; }
    .process-cta { margin-top: 64px; text-align: center; }
    .process-cta-note { margin-top: 16px; font-size: 13px; font-weight: 300; color: var(--ink-3); }

    /* ===== APP SECTION — phone showcase ===== */
    .app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .app-phone { position: relative; text-align: center; }

    .app-phone img {
      max-width: 320px; margin: 0 auto;
      border-radius: 0;
      filter: brightness(0.95);
    }
    .app-features { list-style: none; margin-top: 32px; }

    .app-features li {
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14px; font-weight: 300; color: var(--ink-2);
      display: flex; align-items: center; gap: 16px;
    }

    .app-features li::before {
      content: ''; width: 4px; height: 4px;
      background: var(--accent); border-radius: 50%; flex-shrink: 0;
    }

    /* ===== TESTIMONIALS (carousel) ===== */
    .testimonials-carousel { position: relative; margin-top: 64px; }

    .testimonials-grid {
      display: flex;
      gap: 1px; background: var(--border);
      border: 1px solid var(--border);
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .testimonials-grid::-webkit-scrollbar { display: none; }

    .testimonial {
      flex: 0 0 calc(50% - 0.5px);
      scroll-snap-align: start;
      padding: 48px 40px; background: var(--surface);
      transition: background 0.3s ease;
    }
    .testimonial:hover { background: var(--surface-2); }

    .testimonials-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 2;
      width: 48px; height: 48px;
      display: flex; align-items: center; justify-content: center;
      background: rgb(13 13 13 / 70%);
      border: 1px solid var(--accent-dim);
      color: var(--accent);
      border-radius: 50%;
      cursor: pointer;
      backdrop-filter: blur(6px);
      transition: background 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
    }
    .testimonials-arrow svg { width: 18px; height: 18px; }
    .testimonials-arrow:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
    .testimonials-arrow:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
    .testimonials-arrow--prev { left: -24px; }
    .testimonials-arrow--next { right: -24px; }
    .testimonials-arrow[hidden] { display: none; }

    @media (width <= 1100px) {
      .testimonials-arrow--prev { left: 8px; }
      .testimonials-arrow--next { right: 8px; }
    }

    .testimonial-result {
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 16px;
    }
    .testimonial p { font-weight: 300; font-size: 15px; line-height: 1.75; color: var(--ink-2); margin-bottom: 24px; }

    .testimonial-author {
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent-dim);
    }

    /* ===== APP SHOWCASE (inside pricing) ===== */
    .app-showcase {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 72px;
      align-items: center;
      margin: 56px 0 96px;
      padding: 56px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    .app-showcase::before {
      content: '';
      position: absolute;
      top: 50%; left: 20%; transform: translateY(-50%);
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgb(176 140 93 / 5%), transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .app-showcase-image {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .app-showcase-image img {
      max-width: 340px;
      width: 100%;
      margin: 0 auto;
      filter: brightness(0.95);
    }

    .app-showcase-content {
      position: relative;
      z-index: 1;
    }

    .app-showcase-title {
      font-weight: 200;
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: 0.02em;
      line-height: 1.05;
      color: var(--ink);
      margin-bottom: 20px;
    }

    .app-showcase-desc {
      font-size: 15px;
      font-weight: 300;
      color: var(--ink-2);
      line-height: 1.75;
      margin-bottom: 32px;
      max-width: 460px;
    }

    .app-showcase-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .app-showcase-features li {
      padding: 14px 0;
      border-top: 1px solid var(--border);
      font-size: 13px;
      font-weight: 400;
      color: var(--ink-2);
      letter-spacing: 0.01em;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .app-showcase-features li:last-child { border-bottom: 1px solid var(--border); }

    .app-showcase-features li::before {
      content: '';
      width: 4px; height: 4px;
      background: var(--accent);
      border-radius: 50%;
      flex-shrink: 0;
    }

    @media (width <= 900px) {
      .app-showcase { grid-template-columns: 1fr; gap: 48px; }
      .app-showcase-image img { max-width: 260px; }
    }

    /* ===== PRICING PREVIEW ===== */
    .pricing-intro {
      font-size: 15px; font-weight: 300;
      color: var(--ink-2);
      line-height: 1.75;
      margin-bottom: 72px;
      max-width: 560px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1.25fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      margin-bottom: 48px;
      align-items: stretch;
    }

    .pricing-card {
      background: var(--surface);
      padding: 56px 40px 48px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      position: relative;
      transition: background 0.3s ease;
    }
    .pricing-card:hover { background: var(--surface-2); }

    /* Featured Premium — darker, warm edge glow, taller */
    .pricing-card--featured {
      background: linear-gradient(180deg, #1a1612 0%, var(--accent-bg) 100%);
      padding: 72px 44px 56px;
      margin: -24px -1px -1px;
      border: 1px solid var(--accent-dim);
      box-shadow: 0 0 0 1px var(--accent-dim), 0 24px 60px rgb(0 0 0 / 50%), 0 0 80px rgb(176 140 93 / 8%);
      z-index: 2;
    }

    .pricing-card--featured::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 40% at 50% 0%, rgb(176 140 93 / 12%), transparent);
      pointer-events: none;
    }

    .pricing-card--featured:hover {
      background: linear-gradient(180deg, #1f1914 0%, #201711 100%);
    }

    .pricing-badge {
      position: absolute;
      top: -12px; left: 50%;
      transform: translateX(-50%);
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--bg);
      background: var(--accent);
      padding: 6px 14px;
      white-space: nowrap;
    }

    .pricing-tier-label {
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin-bottom: 24px;
    }

    .pricing-tier-label--featured {
      color: var(--accent);
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .pricing-amount {
      font-weight: 200;
      font-size: clamp(2.5rem, 4vw, 3.6rem);
      color: var(--ink);
      line-height: 1;
      font-feature-settings: 'tnum' 1;
    }

    .pricing-card--featured .pricing-amount {
      font-size: clamp(1.6rem, 2vw, 2rem);
    }

    .pricing-amount--text {
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--ink);
      letter-spacing: 0.02em;
    }

    .pricing-unit {
      font-size: 12px;
      font-weight: 400;
      color: var(--ink-3);
      letter-spacing: 0.06em;
      text-transform: lowercase;
    }

    .pricing-desc {
      font-size: 14px;
      font-weight: 300;
      color: var(--ink-2);
      line-height: 1.7;
      max-width: 320px;
    }

    .pricing-card--featured .pricing-desc {
      color: rgb(255 255 255 / 65%);
    }

    .pricing-fit {
      font-size: 13px;
      font-weight: 300;
      color: var(--ink-2);
      line-height: 1.65;
      padding: 16px 18px;
      border-left: 2px solid var(--accent);
      background: rgb(176 140 93 / 4%);
    }

    .pricing-card--featured .pricing-fit {
      background: rgb(176 140 93 / 10%);
      color: rgb(255 255 255 / 80%);
    }

    .pricing-fit-label {
      display: block;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 6px;
    }

    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 0;
      flex-grow: 1;
      position: relative;
      z-index: 1;
    }

    .pricing-features li {
      font-size: 13px;
      font-weight: 300;
      color: var(--ink-2);
      line-height: 1.6;
      padding: 12px 0;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .pricing-card--featured .pricing-features li {
      border-top-color: rgb(176 140 93 / 15%);
      color: rgb(255 255 255 / 75%);
    }

    .pricing-features li strong {
      font-weight: 500;
      color: var(--ink);
    }

    .pricing-features li::before {
      content: '';
      width: 4px; height: 4px;
      background: var(--accent);
      border-radius: 50%;
      margin-top: 9px;
      flex-shrink: 0;
    }

    .pricing-features li:last-child {
      border-bottom: 1px solid var(--border);
    }

    .pricing-card--featured .pricing-features li:last-child {
      border-bottom-color: rgb(176 140 93 / 15%);
    }

    .pricing-cta {
      width: 100%;
      text-align: center;
      margin-top: auto;
      position: relative;
      z-index: 1;
    }

    .pricing-cta-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: auto;
      position: relative;
      z-index: 1;
    }

    .pricing-cta-pair .pricing-cta {
      margin-top: 0;
      padding: 14px 16px;
      font-size: 10px;
    }

    .pricing-cta-block {
      text-align: center;
      padding-top: 8px;
    }

    .pricing-cta-note {
      font-size: 12px;
      font-weight: 400;
      color: var(--ink-3);
      letter-spacing: 0.03em;
    }

    @media (width <= 1024px) {
      .pricing-grid { grid-template-columns: 1fr; }

      .pricing-card--featured {
        margin: 0;
        border: 1px solid var(--accent-dim);
      }
    }

    /* ===== CTA — cinematic close ===== */
    .cta-section {
      padding: 180px 0;
      text-align: center;
      position: relative; overflow: hidden;
      border-bottom: 1px solid var(--border);
    }

    .cta-bg {
      position: absolute; inset: 0; z-index: 0;
    }

    .cta-bg img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      opacity: 0.12;
      filter: grayscale(100%) blur(1px);
    }
    .cta-section .container { position: relative; z-index: 1; }

    .cta-title {
      font-weight: 200;
      font-size: clamp(2.5rem, 7vw, 5.5rem);
      letter-spacing: -0.01em;
      line-height: 1;
      margin-bottom: 20px;
    }

    .cta-subtitle {
      font-weight: 300; font-size: 18px;
      letter-spacing: 0.08em; color: var(--ink-2);
      text-transform: lowercase; margin-bottom: 40px;
    }

    .cta-quote {
      font-weight: 300; font-size: 16px;
      color: var(--ink-2); max-width: 480px;
      margin: 0 auto 48px; line-height: 1.75;
    }

    .cta-quote cite {
      display: block; margin-top: 10px; font-size: 11px; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent-dim); font-style: normal;
    }
    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    .cta-scarcity {
      margin-top: 16px; font-size: 11px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
    }
    .cta-risk { margin-top: 12px; font-size: 13px; font-weight: 300; color: var(--ink-3); }

    /* ===== FOOTER ===== */
    .footer { padding: 80px 0 32px; background: var(--surface); }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
    .footer-brand-tagline { font-size: 14px; font-weight: 300; color: var(--ink-3); margin-top: 20px; }
    .footer-col-heading { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 24px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 12px; }
    .footer-col a { font-size: 14px; color: var(--ink-3); transition: color 0.2s; }
    .footer-col a:hover { color: var(--ink); }
    .footer-col a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }
    .footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 13px; color: var(--ink-3); }
    .footer-legal { display: flex; gap: 24px; }
    .footer-legal a { font-size: 13px; color: var(--ink-3); transition: color 0.2s; }
    .footer-legal a:hover { color: var(--ink-2); }

    /* ===== RESPONSIVE ===== */
    @media (width <= 1024px) {
      .container { padding: 0 32px; }
      .header .container {
        padding-inline: max(32px, env(safe-area-inset-left)) max(32px, env(safe-area-inset-right));
      }
      .hero { grid-template-columns: 1fr 1fr; }
      .hero-content { padding-left: 32px; padding-right: 40px; }
      .hero-headline { font-size: clamp(2.5rem, 5vw, 4rem); }
      .pillars-grid { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-image { max-width: 500px; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .app-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (width <= 768px) {
      .container {
        padding-left: max(24px, env(safe-area-inset-left));
        padding-right: max(24px, env(safe-area-inset-right));
      }
      .header .container {
        padding-inline: max(24px, env(safe-area-inset-left)) max(24px, env(safe-area-inset-right));
      }
      .nav-links { display: none; }
      .menu-toggle { display: block; }
      .hero-eyebrow,
      .hero-headline span,
      .hero-tagline,
      .hero-body,
      .hero-buttons,
      .hero-proof {
        opacity: 1;
        transform: none;
        animation: none;
      }
      .process-grid { grid-template-columns: 1fr; }
      .testimonials-carousel .testimonial { flex-basis: 100%; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

      .hero {
        grid-template-columns: 1fr;
        grid-template-rows: 55vh auto;
        min-height: auto;
      }
      .hero-portrait { order: -1; min-height: 55vh; }

      .hero-portrait::before {
        background: linear-gradient(to right, rgb(13 13 13 / 30%), transparent);
      }
      .hero-portrait::after { height: 50%; }

      .hero-content {
        padding: 48px 24px 72px;
        max-width: 100%;
        margin-left: 0;
        padding-right: 24px;
        margin-top: -80px;
        position: relative;
        z-index: 4;
      }
      .hero-divider { display: none; }
      .hero-headline { font-size: clamp(2.6rem, 10vw, 3.5rem); }
      .hero-body { margin-bottom: 36px; }
      .section { padding: 80px 0; }
      .cta-section { padding: 120px 0; }
      .testimonial, .pillar { padding: 40px 28px; }
      .hero-scroll { display: none; }
    }

    @media (width <= 480px) {
      .hero-headline { font-size: clamp(2.6rem, 13vw, 3.5rem); }
      .btn-primary, .btn-ghost { padding: 14px 32px; width: 100%; text-align: center; }
      .hero-buttons, .cta-buttons { flex-direction: column; gap: 12px; }
      .stat { padding: 36px 16px; }
    }

    /* ===== SMOOTH SCROLL — Lenis-like ===== */
    html.lenis, html.lenis body { height: auto; }
    .lenis.lenis-smooth { scroll-behavior: auto !important; }
    .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

    /* ===== HERO TEXT SPLIT ANIMATION ===== */
    .hero-headline .char {
      display: inline-block;
      opacity: 0;
      transform: translateY(60px) rotateX(-40deg);
      animation: charReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      transform-origin: bottom center;
    }

    @keyframes charReveal {
      to { opacity: 1; transform: translateY(0) rotateX(0deg); }
    }

    /* ===== MAGNETIC BUTTONS ===== */
    .btn-magnetic {
      position: relative;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-magnetic .btn-text {
      display: inline-block;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ===== CURSOR GLOW ===== */
    .cursor-glow {
      position: fixed;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgb(176 140 93 / 6%) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
      transform: translate(-50%, -50%);
      transition: opacity 0.4s ease;
      opacity: 0;
      will-change: transform;
    }
    .cursor-glow.active { opacity: 1; }

    /* ===== NARRATIVE GALLERY PARALLAX DEPTH ===== */
    .ng-img {
      will-change: transform;
    }

    /* ===== SECTION HEADINGS — draw-in accent line ===== */
    .section-title::after {
      content: '';
      display: block;
      width: 0;
      height: 1px;
      background: var(--accent);
      margin-top: 20px;
      transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    }

    .section-title.visible::after {
      width: 48px;
    }

    /* ===== STATS NUMBER GLOW ON REVEAL ===== */
    .stat-number {
      transition: text-shadow 1.5s ease;
    }

    .stat.visible .stat-number {
      text-shadow: 0 0 40px rgb(176 140 93 / 15%);
    }

    /* ===== TESTIMONIAL HOVER LIFT ===== */
    .testimonial {
      transition: background 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    }

    .testimonial:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgb(0 0 0 / 30%);
    }

    /* ===== PILLAR HOVER — accent border ===== */
    .pillar {
      transition: border-color 0.4s ease;
      border-left: 2px solid transparent;
    }

    .pillar:hover {
      border-left-color: var(--accent);
    }

    /* ===== CTA SECTION — breathing glow ===== */
    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      width: 500px; height: 500px;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgb(176 140 93 / 6%), transparent 70%);
      animation: breatheGlow 6s ease-in-out infinite;
      z-index: 0;
      pointer-events: none;
    }

    @keyframes breatheGlow {
      0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
      50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      position: fixed; inset: 0; background: var(--bg); z-index: 200;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 8px;
      opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
      padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
    }
    .mobile-menu.active { opacity: 1; pointer-events: all; }
    .mobile-menu[hidden] { display: none; }

    .mobile-menu-close {
      position: absolute;
      top: max(24px, env(safe-area-inset-top));
      right: max(32px, env(safe-area-inset-right));
      background: none; border: none; color: var(--ink);
      font-size: 1.5rem; cursor: pointer;
      min-width: 44px; min-height: 44px;
      padding: 12px;
      touch-action: manipulation;
    }
    .mobile-menu-close:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
      border-radius: 2px;
    }

    .mobile-menu a {
      font-weight: 300; font-size: clamp(1.5rem, 5vw, 2.5rem);
      letter-spacing: 0.06em; text-transform: lowercase;
      color: var(--ink-2); display: block;
      padding: 16px 32px;
      min-height: 44px;
      min-width: min(100%, 320px);
      text-align: center;
      transition: color 0.2s ease;
      touch-action: manipulation;
    }
    .mobile-menu a:hover { color: var(--ink); }
    .mobile-menu a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

    .contact-form-status {
      min-height: 22px;
      margin: 0;
      font-size: 14px;
      color: var(--ink-2);
    }

    .contact-form-status.is-success {
      color: #94d9b1;
    }

    .contact-form-status.is-error {
      color: #ffb1b1;
    }

    .legacy-contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .legacy-contact-form__field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .legacy-contact-form__label {
      color: var(--ink);
    }

    .legacy-contact-form__input {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 14px;
      color: var(--ink);
      font-family: Inter, system-ui, sans-serif;
      font-size: 16px;
      width: 100%;
      touch-action: manipulation;
    }

    .legacy-contact-form__input:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .legacy-contact-form__input[aria-invalid="true"] {
      border-color: #ffb1b1;
    }

    .legacy-contact-form__submit {
      margin-top: 16px;
    }

    button[disabled] {
      opacity: 0.7;
      cursor: progress;
    }

    .blog-post-body p {
      margin: 0;
    }

    /* ===== FREE-SECTION BLOCKS ===== */
    .freeblocks-section {
      padding: 48px 0;
    }
    .freeblocks-container {
      display: grid;
      gap: 32px;
    }
    .freeblock {
      max-width: 920px;
      margin: 0 auto;
      width: 100%;
    }
    .freeblock-heading {
      font-weight: 300;
      letter-spacing: -0.01em;
      color: var(--ink);
    }
    h1.freeblock-heading { font-size: clamp(2.5rem, 6vw, 4rem); }
    h2.freeblock-heading { font-size: clamp(2rem, 4vw, 2.75rem); }
    h3.freeblock-heading { font-size: clamp(1.5rem, 3vw, 1.875rem); }
    h4.freeblock-heading { font-size: 1.25rem; }
    h5.freeblock-heading { font-size: 1.05rem; }
    h6.freeblock-heading { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }
    .freeblock-paragraph {
      color: var(--ink-2);
      line-height: 1.85;
      font-size: 17px;
    }
    .freeblock-paragraph p { margin: 0 0 1em; }
    .freeblock-paragraph p:last-child { margin-bottom: 0; }
    .freeblock-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    .freeblock-cta {
      display: flex;
      justify-content: flex-start;
    }
    .freeblock-divider {
      border: 0;
      border-top: 1px solid var(--border);
      margin: 0 auto;
      max-width: 920px;
    }
    .freeblock-spacer { display: block; }
    .freeblock-video-frame {
      position: relative;
      aspect-ratio: 16 / 9;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
    }
    .freeblock-video-frame iframe {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      border: 0;
    }
    .freeblock-video-empty {
      display: flex; align-items: center; justify-content: center;
      color: var(--ink-2);
      font-size: 14px;
      text-align: center;
      padding: 24px;
    }
    .freeblock-video-caption {
      margin-top: 8px;
      font-size: 13px;
      color: var(--ink-2);
    }
    .freeblock-quote {
      border-left: 2px solid var(--accent);
      padding: 8px 0 8px 24px;
      font-style: italic;
    }
    .freeblock-quote-text { font-size: 1.25rem; line-height: 1.6; color: var(--ink); margin: 0 0 8px; }
    .freeblock-quote-author { font-size: 13px; color: var(--ink-2); font-style: normal; letter-spacing: 0.05em; }
    .freeblock-columns {
      display: grid;
      gap: 32px;
    }
    .freeblock-columns-col { display: flex; flex-direction: column; gap: 12px; }
    .freeblock-columns-heading { color: var(--ink); font-weight: 400; font-size: 1.1rem; }
    .freeblock-columns-body { color: var(--ink-2); line-height: 1.7; font-size: 15px; }
    @media (max-width: 720px) {
      .freeblock-columns { grid-template-columns: 1fr !important; }
    }

    /* ------------------------------------------------------------------ */
    /* Trainer dark-brand overrides for section-based renderer.            */
    /* The section renderers were ported from brustrategy and emit inline  */
    /* light backgrounds (#ffffff/#faf9f7/#f3f4f5) plus navy accents       */
    /* (#032d4e). With Trainer's dark body theme that made text white-on-  */
    /* white. These rules force trainer brand colors on all sections and   */
    /* their child components regardless of inline `style` values.         */
    /* ------------------------------------------------------------------ */

    /* Force trainer dark bg + white text on every rendered section.       */
    main > .section-shell > section.section { background-color: var(--bg) !important; color: var(--ink) !important; }
    main > .section-shell:nth-child(even) > section.section { background-color: var(--surface) !important; }

    /* Hero: dark bg behind the portrait image; image div still wins.      */
    main > .section-shell > section.section--hero { background-color: var(--bg) !important; color: var(--ink) !important; }
    .section--hero__bg { opacity: 0.55; }
    .section--hero__overlay { background: linear-gradient(to right, rgba(13,13,13,0.85), rgba(13,13,13,0.2)) !important; }
    .section--hero__headline { color: var(--ink); }
    .section--hero__subtitle { color: var(--ink-2); }
    .section--hero__tagline { color: var(--ink-2); opacity: 1; }
    .section--hero__cta { background: var(--accent); color: var(--bg); }
    .section--hero__cta:hover { background: var(--ink); }

    /* Animated counters / stats: dark with gold numbers.                  */
    .counter__value { color: var(--accent); }
    .counter__suffix { color: var(--accent-dim); }
    .counter__label { color: var(--ink-2); }

    /* Feature grid cards.                                                 */
    .section--features-grid__heading,
    .section--pricing-tiers__heading,
    .section--testimonials__heading,
    .section--cta__heading { color: var(--ink); }
    .feature { color: var(--ink); }
    .feature__title { color: var(--ink); }
    .feature__description { color: var(--ink-2); }
    .feature__icon { background: var(--accent-bg) !important; color: var(--accent) !important; }
    .feature__icon[data-icon] { color: var(--accent) !important; }

    /* Pricing tier cards.                                                 */
    .pricing-tier {
      background: var(--surface-2) !important;
      border-color: var(--border) !important;
      color: var(--ink);
    }
    .pricing-tier-highlighted {
      border-color: var(--accent) !important;
      box-shadow: 0 12px 32px -10px rgba(176, 140, 93, 0.25) !important;
    }
    .pricing-tier__badge { background: var(--accent) !important; color: var(--bg) !important; }
    .pricing-tier__name { color: var(--ink); }
    .pricing-tier__price { color: var(--ink); }
    .pricing-tier__cadence { color: var(--ink-2); }
    .pricing-tier__description { color: var(--ink-2); }
    .pricing-tier__features li { color: var(--ink-2); }
    .pricing-tier__features li::before { color: var(--accent) !important; }
    .pricing-tier__cta-primary { background: var(--accent) !important; color: var(--bg) !important; }
    .pricing-tier__cta-ghost {
      background: transparent !important;
      color: var(--ink) !important;
      border-color: var(--accent) !important;
    }
    .pricing-tier__cta-ghost:hover { background: var(--accent-bg) !important; }

    /* Testimonial cards.                                                  */
    .testimonial {
      background: var(--surface-2) !important;
      border-color: var(--border) !important;
      color: var(--ink);
    }
    .testimonial__quote { color: var(--ink); }
    .testimonial__quote p { color: var(--ink); }
    .testimonial__author { color: var(--ink); }
    .testimonial__role { color: var(--ink-2); }

    /* CTA section: keep the dramatic dark band, gold accent button.       */
    main > .section-shell > section.section--cta { background-color: var(--bg) !important; color: var(--ink) !important; }
    .section--cta__description,
    .section--cta__description p { color: var(--ink-2); }
    .section--cta__button-primary { background: var(--accent) !important; color: var(--bg) !important; }
    .section--cta__button-secondary { border-color: var(--ink) !important; color: var(--ink) !important; }

    /* Generic section content (rich-text, image-text, etc.).              */
    .section--rich-text,
    .section--image-text,
    .section--cards-grid,
    .section--gallery,
    .section--contact-form,
    .section--video,
    .section--spacer { color: var(--ink); }

    /* Cards-grid card surface.                                            */
    .card { background: var(--surface-2) !important; color: var(--ink) !important; border-color: var(--border) !important; }
    .card__title { color: var(--ink); }
    .card__tag { color: var(--ink-2); }
    .card__body { color: var(--ink-2); }

/* Addable content elements (segment element builder) */
.section-elements {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.section-elements--center {
  justify-content: center;
}

