/* ============================================================
   STAIR SOCIETY — Design Tokens + Component Styles
   Palette: Near-black obsidian surfaces, off-white text,
            electric orange-red accent. Bold/athletic/editorial.
   Fonts: Clash Display (headings) + Satoshi (body)
   ============================================================ */

/* ── Font Loading ─────────────────────────────────────────── */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@300,400,500,700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.625rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.45);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Clash Display', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* ── Light Mode ───────────────────────────────────────────── */
:root, [data-theme="light"] {
  --color-bg:             #f4f2ee;
  --color-surface:        #f8f6f2;
  --color-surface-2:      #ffffff;
  --color-surface-offset: #eceae4;
  --color-surface-dynamic: #e5e2db;
  --color-divider:        #d8d5ce;
  --color-border:         #ccc9c1;

  --color-text:           #1a1916;
  --color-text-muted:     #6b6a64;
  --color-text-faint:     #b0ada5;
  --color-text-inverse:   #f4f2ee;

  /* Accent: electric orange-red */
  --color-primary:        #e84320;
  --color-primary-hover:  #c73518;
  --color-primary-active: #a42812;
  --color-primary-highlight: #f5cfc6;

  --color-success:        #3a7a1a;
  --color-error:          #cc1f3a;
  --color-warning:        #b85c00;
}

/* ── Dark Mode ────────────────────────────────────────────── */
[data-theme="dark"] {
  --color-bg:             #0f0e0c;
  --color-surface:        #141311;
  --color-surface-2:      #1a1916;
  --color-surface-offset: #171614;
  --color-surface-dynamic: #242220;
  --color-divider:        #1f1e1b;
  --color-border:         #2e2c28;

  --color-text:           #e8e6e1;
  --color-text-muted:     #7a7872;
  --color-text-faint:     #4a4845;
  --color-text-inverse:   #0f0e0c;

  --color-primary:        #ff6140;
  --color-primary-hover:  #ff7d5e;
  --color-primary-active: #ff9477;
  --color-primary-highlight: #3d1f16;

  --color-success:        #5aaa34;
  --color-error:          #f04060;
  --color-warning:        #e07830;

  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.5);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.55);
  --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.65);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0f0e0c;
    --color-surface: #141311;
    --color-surface-2: #1a1916;
    --color-surface-offset: #171614;
    --color-surface-dynamic: #242220;
    --color-divider: #1f1e1b;
    --color-border: #2e2c28;
    --color-text: #e8e6e1;
    --color-text-muted: #7a7872;
    --color-text-faint: #4a4845;
    --color-text-inverse: #0f0e0c;
    --color-primary: #ff6140;
    --color-primary-hover: #ff7d5e;
    --color-primary-active: #ff9477;
    --color-primary-highlight: #3d1f16;
    --color-success: #5aaa34;
    --color-error: #f04060;
    --color-warning: #e07830;
    --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.5);
    --shadow-md: 0 4px 16px oklch(0 0 0 / 0.55);
    --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.65);
  }
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}

.container--narrow {
  max-width: var(--content-narrow);
}

.container--default {
  max-width: var(--content-default);
}

section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: var(--space-5);
  transition: background var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.site-header.scrolled {
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.nav-logo svg {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--color-text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-interactive),
              opacity var(--transition-interactive);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-interactive);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px oklch(from var(--color-primary) l c h / 0.35);
}
.btn-primary:active { transform: none; }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-text);
  background: var(--color-surface);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: transparent;
  padding-inline: var(--space-3);
}
.btn-ghost:hover { color: var(--color-text); }

.btn-lg {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
}

/* ── Theme Toggle ─────────────────────────────────────────── */
[data-theme-toggle] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  background: transparent;
  border: 1.5px solid var(--color-border);
}
[data-theme-toggle]:hover { color: var(--color-text); border-color: var(--color-text-muted); }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(0.08 0.01 60 / 0.96) 0%,
    oklch(0.08 0.01 60 / 0.6) 40%,
    oklch(0.08 0.01 60 / 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 14ch;
  margin-bottom: var(--space-8);
}

.hero h1 em {
  font-style: normal;
  color: var(--color-primary);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  margin-bottom: var(--space-10);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 1;
  width: 100%;
  flex-shrink: 0;
  background: oklch(from var(--color-bg) l c h / 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid oklch(1 0 0 / 0.08);
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide: none;
}

.stat-item {
  padding: var(--space-6) var(--space-8);
  border-right: 1px solid var(--color-divider);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-text);
}

.stat-value span {
  color: var(--color-primary);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ── Section Headers ──────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.section-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 58ch;
}

/* ── About Section ────────────────────────────────────────── */
.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.feature-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ── How It Works ─────────────────────────────────────────── */
.how-it-works {
  background: var(--color-surface);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.step-card {
  position: relative;
  padding: var(--space-8);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.25;
  margin-bottom: var(--space-4);
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── Locations Section ────────────────────────────────────── */
.locations {
  background: var(--color-bg);
}

.locations-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-interactive);
}

.location-card:hover { box-shadow: var(--shadow-lg); }

.location-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-card:hover .location-image img { transform: scale(1.04); }

.location-badge {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.location-info {
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-8);
}

.location-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.location-address {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.location-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-top: var(--space-5);
}

.location-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.location-meta-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.location-meta-row svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.location-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.location-cta .mindbody-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.coming-soon-strip {
  margin-top: var(--space-10);
  padding: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.coming-soon-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text-muted);
}

.coming-soon-text span {
  color: var(--color-primary);
}

/* ── Community / CTA Section ──────────────────────────────── */
.community-cta {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

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

.community-cta .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.community-cta .bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    oklch(0.08 0.01 60 / 0.88) 0%,
    oklch(0.08 0.01 60 / 0.55) 100%
  );
}

.community-cta-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.community-cta .section-title { color: #fff; }
.community-cta .section-body { color: rgba(255,255,255,0.7); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-12) var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 36ch;
  margin-top: var(--space-4);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.footer-links a:hover { color: var(--color-text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ── Partner Page Hero ────────────────────────────────────── */
.partner-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.partner-hero .bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.partner-hero .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.partner-hero .bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    oklch(0.08 0.01 60 / 0.94) 0%,
    oklch(0.08 0.01 60 / 0.5) 70%,
    oklch(0.08 0.01 60 / 0.2) 100%
  );
}

.partner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.partner-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: var(--space-5);
}

.partner-hero h1 em {
  font-style: normal;
  color: var(--color-primary);
}

.partner-hero p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* ── Benefits Grid (Partner) ──────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.benefit-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}

.benefit-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.benefit-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── Revenue Highlight ────────────────────────────────────── */
.revenue-highlight {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-10), 4vw, var(--space-16));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-block: var(--space-12);
  overflow: hidden;
  position: relative;
}

.revenue-highlight::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: oklch(1 0 0 / 0.06);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.revenue-stat {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #fff;
}

.revenue-stat small {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0.8;
  margin-top: var(--space-3);
}

.revenue-copy h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: var(--space-3);
}

.revenue-copy p {
  font-size: var(--text-base);
  color: oklch(1 0 0 / 0.75);
  line-height: 1.65;
}

/* ── Application Form ─────────────────────────────────────── */
.apply-section {
  background: var(--color-surface);
}

.apply-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: flex-start;
}

.apply-sidebar {
  position: sticky;
  top: calc(80px + var(--space-8));
}

.apply-sidebar .section-title {
  font-size: var(--text-2xl);
}

.apply-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.apply-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.apply-form-wrap {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  border: 1px solid var(--color-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-label span {
  color: var(--color-primary);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition-interactive),
              box-shadow var(--transition-interactive);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.12);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--color-text-muted);
  pointer-events: none;
}

.form-hint {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.form-divider {
  border: none;
  border-top: 1px solid var(--color-divider);
  margin-block: var(--space-6);
}

.form-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
  padding: var(--space-12) var(--space-8);
}

.form-success.active { display: flex; }

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
}

.form-success p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 42ch;
}

/* ── Mobile Nav ───────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--color-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
  transform: translateX(0);
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--color-text);
  transition: color var(--transition-interactive);
}

.mobile-nav a:hover { color: var(--color-primary); }

.mobile-nav-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-6);
  font-size: var(--text-xl);
  color: var(--color-text-muted);
}

/* ── Page Navigation (for partner page) ──────────────────── */
.page-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-indicator a {
  color: var(--color-text-faint);
  text-decoration: none;
}

.page-indicator a:hover { color: var(--color-primary); }

.page-indicator svg { color: var(--color-text-faint); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .location-card,
  .apply-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .revenue-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .location-image { min-height: 300px; }

  .hero-stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-divider); padding: var(--space-5) var(--space-6); }
  .stat-item:last-child { border-bottom: none; }

  .about-features { grid-template-columns: 1fr; }

  .apply-sidebar { position: static; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-primary { display: none; }
}

@media (max-width: 640px) {
  .steps-grid,
  .benefits-grid,
  .footer-grid,
  .about-features {
    grid-template-columns: 1fr;
  }

  .hero-stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-divider); }
  .stat-item:last-child { border-bottom: none; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }

  .locations-header { flex-direction: column; align-items: flex-start; }
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }
