/* ============================================
   SOL — Design System
   Premium minimalist. Apple/Oura/Whoop level.
   ============================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* Tokens */
:root {
  --bg:         #F9F8F6;
  --bg-white:   #FFFFFF;
  --bg-subtle:  #F2F1EE;
  --text:       #1A1A18;
  --text-muted: #6B6A66;
  --text-light: #9B9A96;
  --border:     #E4E3DF;
  --border-mid: #D0CFC9;
  --accent:     #1A1A18;
  --accent-inv: #FFFFFF;
  --sand:       #E8E2D9;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:      1120px;
  --max-w-text: 640px;
}

/* Base */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

/* Layout */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.display {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.headline--md {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.subhead {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 400;
}

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-inv);
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  font-size: 15px;
}

.btn--primary:hover {
  background: #333330;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--text);
  padding: 15px 32px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  border: 1px solid var(--border-mid);
}

.btn--outline:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid transparent;
}

.btn--ghost:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

.btn--full { width: 100%; }

.btn--lg {
  padding: 20px 40px;
  font-size: 16px;
}

/* ============================================
   NAV
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, border-color 0.3s;
}

.nav.scrolled {
  background: rgba(249, 248, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav.scrolled .nav__logo { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.nav__link:hover { color: #fff; }

.nav.scrolled .nav__link { color: var(--text-muted); }
.nav.scrolled .nav__link:hover { color: var(--text); }

.nav__cta {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

.nav__cta:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.nav.scrolled .nav__cta {
  background: var(--accent);
  color: var(--accent-inv);
  border-color: transparent;
}

.nav.scrolled .nav__cta:hover {
  background: #333330;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
}

/* Cinematic dark hero */
.hero--cinematic {
  background: #0e0e0c;
  color: #fff;
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: grayscale(20%) brightness(0.55);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,8,0.3) 0%,
    rgba(10,10,8,0.1) 40%,
    rgba(10,10,8,0.6) 75%,
    rgba(10,10,8,0.92) 100%
  );
}

/* Top bar */
.hero__topbar {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  border-radius: var(--radius-xl);
  padding: 6px 16px;
}

.hero__eyebrow--light {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #7abf7a;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__season {
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Shoe float */
.hero__shoe-wrap {
  position: absolute;
  bottom: 180px;
  right: 8%;
  z-index: 2;
  opacity: 0.7;
}

.hero__shoe-svg {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

/* Scrolling title */
.hero__title--scroll {
  position: relative;
  z-index: 2;
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  max-width: none;
  margin-left: calc(-50vw + 50%);
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #fff;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.scroll-text {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 24s linear infinite;
}

.scroll-outline {
  font-style: normal;
  -webkit-text-stroke: 2px rgba(255,255,255,0.9);
  color: transparent;
}

.scroll-sep {
  display: inline-block;
  margin: 0 0.5em;
  font-size: 0.6em;
  vertical-align: middle;
  opacity: 0.25;
  font-weight: 300;
  letter-spacing: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* Bottom row */
.hero__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__sub {
  font-size: clamp(17px, 2.5vw, 22px);
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.hero__sub--light {
  color: rgba(255,255,255,0.55);
  font-size: clamp(14px, 1.6vw, 18px);
  margin: 0;
  max-width: 280px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero-specific buttons */
.btn--hero-primary {
  background: #fff;
  color: #0e0e0c;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn--hero-primary:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}

.btn--hero-ghost {
  background: transparent;
  color: rgba(255,255,255,0.6);
  padding: 16px 0;
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  transition: all 0.2s;
}

.btn--hero-ghost:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.6);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 0;
  transition: opacity 0.2s;
}

.hero__scroll:hover { opacity: 0.6; }

.hero__scroll--light {
  color: rgba(255,255,255,0.3);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

.hero__visual {
  margin: 80px auto 0;
  max-width: 600px;
  width: 100%;
}

.hero__insole-bg {
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--sand);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__insole-shape {
  width: 55%;
  aspect-ratio: 1/2.2;
  background: var(--text);
  border-radius: 60% 60% 50% 50% / 30% 30% 70% 70%;
  opacity: 0.88;
  position: relative;
}

.hero__insole-shape::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 60% 60% 50% 50% / 30% 30% 70% 70%;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ============================================
   SECTION BASE
   ============================================ */

section { padding: 120px 0; }

.section--dark {
  background: var(--text);
  color: var(--accent-inv);
}

.section--dark .subhead,
.section--dark .body,
.section--dark .step__text { color: rgba(255,255,255,0.55); }

.section--dark .label { color: rgba(255,255,255,0.35); }

.section--sand { background: var(--sand); }

.section__header {
  text-align: center;
  margin-bottom: 72px;
}

.section__header .label { margin-bottom: 16px; }
.section__header .headline { margin-bottom: 16px; }

/* ============================================
   GAP SECTION
   ============================================ */

.gap-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}

.gap-section__content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gap-section__visual {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.gap-visual__lines {
  position: relative;
  width: 200px;
  height: 200px;
}

.gap-visual__path {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ============================================
   PRODUCT SECTION
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-visual {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-insole {
  width: 40%;
  aspect-ratio: 1/2.2;
  background: var(--text);
  border-radius: 60% 60% 50% 50% / 30% 30% 70% 70%;
}

.insight-card {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  width: 220px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.insight-card__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.insight-card__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.insight-card__bar {
  margin-top: 12px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.insight-card__bar-fill {
  height: 100%;
  width: 62%;
  background: var(--text);
  border-radius: 2px;
}

.product-content { padding: 20px 0; }

.product-content .body { margin: 24px 0 32px; }

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.feature-dot {
  width: 5px;
  height: 5px;
  background: var(--text-muted);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   STEPS SECTION
   ============================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step {
  background: var(--bg);
  padding: 56px 40px;
}

.step__num {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

.step__icon {
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__icon svg { width: 24px; height: 24px; }

.step__title {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.step__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.quote-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.quote-card__text {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--text);
}

.quote-card__author {
  font-size: 13px;
  color: var(--text-light);
}

.trust-strip {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-item__num {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.trust-item__label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   PRE-LAUNCH / RESERVE SECTION
   ============================================ */

.reserve-section {
  background: #0e0e0c;
  color: var(--accent-inv);
  position: relative;
  overflow: hidden;
}

.reserve-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 160px 24px;
}

/* Background photo for reserve section */
.reserve-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reserve-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(30%) brightness(0.3);
}

.reserve-section__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,12,0.4) 0%, rgba(14,14,12,0.7) 100%);
}

/* z-index handled by .reserve-section__content */

.reserve-section .headline { color: var(--accent-inv); }

.reserve-section .subhead {
  color: rgba(255,255,255,0.72);
  margin: 20px auto 48px;
  max-width: 440px;
}

.reserve-section .btn--primary {
  background: #fff;
  color: #0e0e0c;
  font-weight: 600;
}

.reserve-section .btn--primary:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.reserve-section__contact {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.reserve-section__contact a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s;
}

.reserve-section__contact a:hover { color: rgba(255,255,255,0.9); }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  text-decoration: none;
}

.footer__tagline {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 18, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 56px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background: var(--bg-subtle);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all 0.2s;
}

.modal__close:hover { background: var(--border); color: var(--text); }

.modal__label { margin-bottom: 8px; }

.modal__title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.modal__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.5;
}

/* Form */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--text);
  background: var(--bg-white);
}

.form-input::placeholder { color: var(--text-light); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
}

.form-trust svg { flex-shrink: 0; }

.modal__counter {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-light);
}

.modal__counter span { color: var(--text-muted); font-weight: 500; }

/* Modal option cards (step 2) */
.modal-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.modal-option:hover {
  border-color: var(--text);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.modal-option--featured {
  background: var(--bg-white);
  border-color: var(--border-mid);
  padding-top: 28px;
}

.modal-option--plain {
  background: transparent;
  border-color: transparent;
  padding: 12px 0;
}

.modal-option--plain:hover {
  border-color: transparent;
  box-shadow: none;
}

.modal-option__badge {
  position: absolute;
  top: -1px;
  left: 20px;
  background: var(--text);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
}

.modal-option__main { flex: 1; }

.modal-option__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.modal-option__desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.modal-option__price {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .gap-section { grid-template-columns: 1fr; }
  .gap-section__visual { min-height: 280px; order: -1; }
  .gap-section__content { padding: 56px 32px; }
  .product-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .trust-strip { gap: 32px; }
}

@media (max-width: 600px) {
  section { padding: 80px 0; }
  .modal { padding: 40px 28px; }
  .hero__actions { flex-direction: column; }
  .btn--primary, .btn--outline { width: 100%; justify-content: center; }
  .nav__link { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   EDITORIAL STYLE — Bold / 6AM Club direction
   ============================================ */

/* Editorial label */
.ed-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: block;
}

.ed-label--dark {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

/* Dark editorial section */
.section--dark-editorial {
  background: #0e0e0c;
  color: #fff;
}

.section--dark-editorial .headline,
.section--dark-editorial .headline--md {
  color: #fff;
}

/* Steps editorial grid */
.steps-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step-ed {
  padding: 56px 48px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.step-ed:last-child {
  border-right: none;
}

.step-ed__num {
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255,255,255,0.18);
  margin-bottom: 24px;
}

.step-ed__bar {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  margin-bottom: 24px;
}

.step-ed__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.step-ed__text {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}

/* Reserve section bold headline */
.reserve-headline-bold {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
}

/* Trust strip dark variant */
.trust-strip--dark {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.trust-strip--dark .trust-item__num {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.trust-strip--dark .trust-item__label {
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Responsive steps editorial */
@media (max-width: 900px) {
  .steps-editorial { grid-template-columns: 1fr; }
  .step-ed { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .step-ed:last-child { border-bottom: none; }
  .step-ed { padding: 48px 32px; }
}

/* ============================================
   GAP MINIMAL — Sporty centered section
   ============================================ */

.gap-minimal {
  background: #fff;
  padding: 140px 24px;
  text-align: center;
}

.gap-minimal__inner {
  max-width: 780px;
  margin: 0 auto;
}

.gap-minimal__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  display: block;
  margin-bottom: 28px;
}

.gap-minimal__headline {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #0e0e0c;
  margin-bottom: 36px;
}

.gap-minimal__body {
  font-size: clamp(15px, 1.6vw, 17px);
  color: #6b6a66;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 40px;
}

.gap-minimal__cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0e0e0c;
  border-bottom: 2px solid #0e0e0c;
  padding-bottom: 3px;
  transition: opacity 0.2s;
}

.gap-minimal__cta:hover { opacity: 0.55; }

/* ============================================
   PHOTO STATEMENT — Full-bleed photo with text
   ============================================ */

.photo-statement {
  position: relative;
  height: 75vh;
  min-height: 420px;
  overflow: hidden;
}

.photo-statement__bg {
  position: absolute;
  inset: 0;
}

.photo-statement__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(15%) brightness(0.6) contrast(1.05);
  display: block;
}

.photo-statement__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.55) 100%);
}

.photo-statement__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
}

.photo-statement__line {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.4;
  max-width: 680px;
}

.photo-statement__line em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 600px) {
  .photo-statement { height: 60vh; }
}

/* ============================================
   FOOTER WORDMARK — Giant SOL
   ============================================ */

.footer-wordmark {
  background: #0e0e0c;
  padding: 0;
  overflow: hidden;
}

.footer-wordmark__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-wordmark__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-wordmark__links {
  display: flex;
  gap: 32px;
}

.footer-wordmark__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-wordmark__links a:hover { color: #fff; }

.footer-wordmark__giant {
  display: block;
  font-size: clamp(160px, 28vw, 400px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.15);
  text-align: center;
  padding: 0 20px 40px;
  user-select: none;
}

.footer-wordmark__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-wordmark__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

.footer-wordmark__email a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-wordmark__email a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 600px) {
  .footer-wordmark__nav { padding: 0 24px 48px; }
  .footer-wordmark__bottom { padding: 20px 24px; }
  .footer-wordmark__links { gap: 20px; }
}
