:root {
  --bg: #0a0a0c;
  --bg-alt: #0f0f14;
  --fg: #e8e4dc;
  --fg-muted: #8a8780;
  --accent: #c9a96e;
  --accent-dim: #9a7d4e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 6rem 6rem;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.25;
  filter: grayscale(20%);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.7) 50%, rgba(10,10,12,0.95) 100%);
}

.hero-geo {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-geo-left {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  top: -100px;
  left: -200px;
}
.hero-geo-right {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
  bottom: 100px;
  right: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 300;
  line-height: 0.92;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-rule {
  width: 80px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2.5rem;
  opacity: 0.7;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 200;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: #d4b47a; }
.hero-price-note {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.hero-attr {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 3rem;
  right: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── SECTION SHARED ── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.01em;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--bg-alt);
  padding: 10rem 6rem;
  position: relative;
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
  max-width: 1200px;
}
.philosophy-label,
.pillars-label,
.conv-label,
.closing-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.philosophy-text {
  font-size: 1rem;
  font-weight: 200;
  color: var(--fg-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.philosophy-text em { font-style: italic; color: var(--fg); }
.philosophy-text-last { margin-bottom: 3rem; }
.philosophy-quote {
  border-left: 1px solid var(--accent);
  padding-left: 2rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.6;
}
.quote-mark { color: var(--accent); font-style: normal; }
.philosophy-quote cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  color: var(--accent);
  font-family: var(--font-body);
}
.philosophy-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.philosophy-glyph svg { width: 200px; height: 200px; }

/* ── PILLARS (replaces vitality) ── */
.pillars {
  padding: 10rem 6rem;
  background: #09090b;
  position: relative;
}
.pillars::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-dim), transparent);
  opacity: 0.3;
}
.pillars-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  max-width: 1200px;
}
.pillars-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}
.pillars-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.pillars-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,9,11,0.2) 0%, rgba(9,9,11,0.4) 100%);
}
.pillars-content {}
.pillars-text {
  font-size: 1rem;
  font-weight: 200;
  color: var(--fg-muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.pillars-stack {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.pillar-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.pillar-info {}
.pillar-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.pillar-desc {
  font-size: 0.88rem;
  font-weight: 200;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── HOW IT WORKS (replaces conversation) ── */
.how-it-works {
  padding: 10rem 6rem;
  background: var(--bg-alt);
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  max-width: 1200px;
}
.how-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.how-text {
  font-size: 1rem;
  font-weight: 200;
  color: var(--fg-muted);
  line-height: 1.9;
  margin-bottom: 3rem;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.4;
  flex-shrink: 0;
  width: 2.5rem;
  line-height: 1;
}
.step-body {}
.step-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.step-desc {
  font-size: 0.88rem;
  font-weight: 200;
  color: var(--fg-muted);
  line-height: 1.7;
}
.how-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.phone-mockup {
  background: #111116;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 12px;
  padding: 1.5rem;
  width: 260px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.phone-screen {
  background: #0d0d12;
  border-radius: 8px;
  padding: 1.25rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-coach-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.phone-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.5);
}
.phone-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 4px;
  padding: 0.5rem;
}
.phone-wave-bar {
  width: 2px;
  border-radius: 1px;
  background: var(--accent);
  opacity: 0.2;
  height: 8px;
  animation: waveAnim 1.2s ease-in-out infinite;
}
.phone-wave-bar:nth-child(1) { animation-delay: 0s; height: 6px; }
.phone-wave-bar:nth-child(2) { animation-delay: 0.1s; height: 12px; }
.phone-wave-bar:nth-child(3) { animation-delay: 0.2s; height: 8px; }
.phone-wave-bar:nth-child(4) { animation-delay: 0.3s; height: 16px; }
.phone-wave-bar:nth-child(5) { animation-delay: 0.4s; height: 10px; }
.phone-wave-bar:nth-child(6) { animation-delay: 0.5s; height: 22px; }
.phone-wave-bar:nth-child(7) { animation-delay: 0.6s; height: 14px; }
.phone-wave-bar:nth-child(8) { animation-delay: 0.7s; height: 20px; }
.phone-wave-bar:nth-child(9) { animation-delay: 0.8s; height: 10px; }
.phone-wave-bar:nth-child(10) { animation-delay: 0.9s; height: 18px; }
.phone-wave-bar:nth-child(11) { animation-delay: 1.0s; height: 12px; }
.phone-wave-bar:nth-child(12) { animation-delay: 1.1s; height: 16px; }
.phone-wave-bar:nth-child(13) { animation-delay: 1.2s; height: 7px; }
.phone-wave-bar:nth-child(14) { animation-delay: 1.3s; height: 14px; }
.phone-wave-bar:nth-child(15) { animation-delay: 1.4s; height: 9px; }
.phone-wave-active { opacity: 0.8; }
@keyframes waveAnim {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}
.phone-transcript {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.transcript-coach {
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.6;
}
.phone-tap-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.phone-tap-hint span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}
.tap-icon { opacity: 0.8; }
.how-detail {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── CLOSING ── */
.closing {
  padding: 10rem 6rem;
  background: #080809;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-dim), transparent);
  opacity: 0.2;
}
.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}
.closing-body {
  font-size: 1.05rem;
  font-weight: 200;
  color: var(--fg-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.closing-body-last { margin-bottom: 2.5rem; }
.closing-cta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.closing-cta:hover { background: #d4b47a; }

/* ── WAITLIST FORM ── */
.waitlist-form { margin-top: 0; }
.waitlist-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.wl-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.wl-success-icon { flex-shrink: 0; }
.wl-error {
  font-size: 0.85rem;
  color: #c97a6e;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

/* ── FOOTER ── */
.site-footer {
  padding: 4rem 6rem;
  background: #050506;
  border-top: 1px solid rgba(201,169,110,0.08);
}
.footer-inner { max-width: 1200px; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.footer-rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.3;
  margin-bottom: 2rem;
}
.footer-meta {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  opacity: 0.5;
}

/* ── BOOKING PAGE ── */
.booking-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.booking-page::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.booking-page::after {
  content: '';
  position: absolute;
  bottom: 0; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.booking-header {
  padding: 2rem 2.5rem;
  position: relative;
  z-index: 1;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }

/* Main */
.booking-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 2rem 6rem;
  position: relative;
  z-index: 1;
}
.booking-inner {
  width: 100%;
  max-width: 560px;
}

.booking-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.booking-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.booking-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}
.booking-sub {
  font-size: 1rem;
  font-weight: 200;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 1.75rem; }
.field-group { display: flex; flex-direction: column; gap: 0.5rem; }
.field-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.field-input,
.field-textarea,
.field-select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 2px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.field-input::placeholder,
.field-textarea::placeholder { color: var(--fg-muted); opacity: 0.4; }
.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  outline: none;
  border-color: rgba(201,169,110,0.5);
  background: rgba(255,255,255,0.05);
}
.field-textarea { resize: vertical; min-height: 110px; }
.field-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%238a8780' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field-select option { background: var(--bg-alt); color: var(--fg); }

.form-error {
  font-size: 0.85rem;
  color: #c97a6e;
  font-weight: 300;
}
.submit-btn {
  background: var(--accent);
  border: none;
  border-radius: 2px;
  color: #0a0a0c;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  width: 100%;
  transition: background 0.2s, opacity 0.2s;
  margin-top: 0.5rem;
}
.submit-btn:hover { background: #d4b47a; }
.submit-btn:active { opacity: 0.85; }
.form-footnote {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--fg-muted);
  opacity: 0.6;
  text-align: center;
  letter-spacing: 0.03em;
}

/* Footer */
.booking-footer {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  opacity: 0.4;
  position: relative;
  z-index: 1;
}
.footer-brand { font-family: var(--font-display); color: var(--accent); }
.footer-sep { color: var(--fg-muted); }

/* ── CONFIRMATION PAGE ── */
.confirmation-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.confirmation-page::before {
  content: '';
  position: absolute;
  top: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.confirmation-inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
}
.confirmation-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  margin: 0 auto 2rem;
}
.confirmation-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.confirmation-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.confirmation-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
  margin: 0 auto 2rem;
}
.confirmation-body {
  font-size: 1rem;
  font-weight: 200;
  color: var(--fg-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.confirmation-body-last { margin-bottom: 3rem; }
.confirmation-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  opacity: 0.6;
}
.confirmation-detail-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
.conf-back-link {
  display: inline-block;
  margin-top: 3rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.conf-back-link:hover { color: var(--accent); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero { padding: 6rem 2rem 5rem; }
  .hero-img-wrap { display: none; }
  .hero-content { background: linear-gradient(160deg, #0e0d10 0%, #0a0a0c 60%, #0c0b0e 100%); padding: 0; border-radius: 0; }
  .philosophy, .pillars, .how-it-works, .closing { padding: 6rem 2rem; }
  .philosophy-inner,
  .pillars-inner,
  .how-inner { grid-template-columns: 1fr; gap: 4rem; }
  .philosophy-glyph { display: none; }
  .pillars-img-wrap { aspect-ratio: 16/9; max-height: 220px; }
  .how-visual { order: -1; }
  .phone-mockup { width: 100%; max-width: 260px; margin: 0 auto; }
  .hero-headline { font-size: clamp(3.5rem, 15vw, 6rem); }
  .hero-scroll-cue { right: 2rem; bottom: 2rem; }
  .site-footer { padding: 3rem 2rem; }
  .hero-attr { flex-wrap: wrap; gap: 0.75rem; }
  .hero-dot { display: none; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}