/* ═══════════════════════════════════════════════════
   AXIS LIFE — landing.css
   Marketing / Landing Page Styles
═══════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg:          #111111;
  --bg-dark:     #0A0A0A;
  --surface:     #1A1A1A;
  --surface-2:   #222222;
  --border:      #2C2C2C;
  --text:        #F0EBE3;
  --text-muted:  #7A7067;
  --text-soft:   #B8AFA7;
  --accent:      #C4956A;
  --accent-light:#E8C9A0;
  --accent-dim:  rgba(196,149,106,0.12);
  --radius:      16px;
  --radius-sm:   10px;
  --max-w:       1100px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:  var(--bg);
  color:       var(--text);
  font-family: 'Inter', sans-serif;
  font-size:   16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position:   fixed;
  top:        0;
  left:       0;
  right:      0;
  z-index:    100;
  display:    flex;
  align-items: center;
  justify-content: space-between;
  padding:    20px 32px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background:       rgba(10,10,10,0.85);
  backdrop-filter:  blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom:    1px solid rgba(255,255,255,0.05);
}

.nav-logo {
  display:     flex;
  align-items: center;
  gap:         10px;
}
.nav-emblem {
  position:   relative;
  width:       28px;
  height:      28px;
  flex-shrink: 0;
}
.nav-ring {
  position:     absolute;
  border-radius: 50%;
  border:       1px solid rgba(196,149,106,0.5);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.nav-ring-outer { width: 26px; height: 26px; }
.nav-ring-inner { width: 16px; height: 16px; }
.nav-dot {
  position:      absolute;
  width:         6px; height: 6px;
  background:    var(--accent);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.nav-wordmark {
  font-size:      13px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.nav-wordmark .w-axis { color: var(--accent); font-weight: 700; }
.nav-wordmark .w-life { color: var(--text-muted); font-weight: 300; margin-left: 4px; }

.nav-links {
  display:     flex;
  align-items: center;
  gap:         28px;
}
.nav-link {
  font-size:      12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:          var(--text-muted);
  transition:     color 0.2s;
}
.nav-link:hover { color: var(--text); }

.btn-nav {
  display:        inline-block;
  padding:        10px 24px;
  background:     var(--accent);
  color:          #111;
  font-size:      11px;
  font-weight:    700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius:  40px;
  transition:     background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: var(--accent-light); transform: translateY(-1px); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height:      100vh;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  text-align:      center;
  padding:         140px 24px 80px;
  position:        relative;
  overflow:        hidden;
}

/* Hero video background */
.hero-video {
  position:   absolute;
  top:        50%;
  left:       50%;
  transform:  translate(-50%, -50%);
  min-width:  100%;
  min-height: 100%;
  width:      auto;
  height:     auto;
  object-fit: cover;
  z-index:    0;
  opacity:    0.55;
}

.hero-video-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,6,0.55) 0%,
    rgba(10,8,6,0.35) 40%,
    rgba(10,8,6,0.75) 100%
  );
  z-index:    1;
}

.hero > *:not(.hero-video):not(.hero-video-overlay) {
  position: relative;
  z-index:  2;
}

/* Background glow */
.hero::before {
  content:   '';
  position:  absolute;
  top:       40%;
  left:      50%;
  transform: translate(-50%, -50%);
  width:     600px;
  height:    600px;
  background: radial-gradient(ellipse at center, rgba(196,149,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-emblem {
  position:  relative;
  width:     100px;
  height:    100px;
  margin:    0 auto 48px;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.05); opacity: 0.85; }
}

.he-ring {
  position:      absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(196,149,106,0.3);
}
.he-ring-outer { width: 100px; height: 100px; animation: spin 20s linear infinite; }
.he-ring-mid   { width:  64px; height:  64px; border-color: rgba(196,149,106,0.5); animation: spin 14s linear infinite reverse; }
.he-dot {
  position:      absolute;
  width:         12px; height: 12px;
  background:    var(--accent);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(196,149,106,0.5);
}
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-eyebrow {
  font-size:      11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:          var(--accent);
  margin-bottom:  20px;
  font-weight:    500;
}

.hero-headline {
  font-family:    'Playfair Display', serif;
  font-size:      clamp(42px, 8vw, 80px);
  font-weight:    400;
  line-height:    1.1;
  letter-spacing: -1px;
  color:          var(--text);
  margin-bottom:  24px;
  max-width:      820px;
}
.hero-headline em {
  font-style: italic;
  color:      var(--accent);
}

.hero-sub {
  font-size:   17px;
  color:       var(--text-soft);
  max-width:   520px;
  margin:      0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta {
  display:        inline-flex;
  align-items:    center;
  gap:            10px;
  padding:        18px 48px;
  background:     var(--accent);
  color:          #111;
  font-size:      12px;
  font-weight:    700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius:  50px;
  transition:     transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow:     0 8px 32px rgba(196,149,106,0.25);
}
.hero-cta:hover {
  background:  var(--accent-light);
  transform:   translateY(-2px);
  box-shadow:  0 12px 40px rgba(196,149,106,0.35);
}
.hero-cta-arrow { font-size: 16px; transition: transform 0.25s; }
.hero-cta:hover .hero-cta-arrow { transform: translateX(3px); }

.hero-footnote {
  margin-top:  20px;
  font-size:   12px;
  color:       var(--text-muted);
  letter-spacing: 0.5px;
}

/* Scroll indicator */
.hero-scroll {
  position:   absolute;
  bottom:     32px;
  left:       50%;
  transform:  translateX(-50%);
  display:    flex;
  flex-direction: column;
  align-items: center;
  gap:        8px;
  opacity:    0.4;
}
.hero-scroll span {
  font-size:      10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--text-muted);
}
.scroll-line {
  width:     1px;
  height:    40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7); }
}

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-strip {
  background:    var(--surface);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding:       14px 0;
  overflow:      hidden;
  white-space:   nowrap;
}
.marquee-track {
  display:   inline-flex;
  align-items: center;
  gap:       0;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-track span {
  font-size:      11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--text-muted);
  font-weight:    500;
  padding:        0 12px;
}
.marquee-dot {
  color:   var(--accent);
  opacity: 0.6;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════ */
section { padding: 100px 24px; }

.container {
  max-width: var(--max-w);
  margin:    0 auto;
}

.section-eyebrow {
  font-size:      11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:          var(--accent);
  margin-bottom:  16px;
  font-weight:    500;
}

.section-title {
  font-family:    'Playfair Display', serif;
  font-size:      clamp(32px, 5vw, 48px);
  font-weight:    400;
  line-height:    1.2;
  color:          var(--text);
  margin-bottom:  16px;
}

.section-sub {
  font-size:   16px;
  color:       var(--text-soft);
  line-height: 1.7;
  max-width:   520px;
  font-weight: 300;
}

.divider {
  width:      40px;
  height:     1px;
  background: var(--accent);
  margin:     24px 0;
  opacity:    0.5;
}

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how {
  background: var(--bg);
}

.how-header {
  text-align:    center;
  margin-bottom: 72px;
}
.how-header .divider { margin: 24px auto; }

.steps {
  display:             grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                 32px;
  position:            relative;
}

/* Connecting line between steps */
.steps::before {
  content:    '';
  position:   absolute;
  top:        36px;
  left:       calc(16.66% + 16px);
  right:      calc(16.66% + 16px);
  height:     1px;
  background: linear-gradient(to right, transparent, rgba(196,149,106,0.3), transparent);
}

.step-card {
  display:       flex;
  flex-direction: column;
  align-items:   center;
  text-align:    center;
  padding:       32px 24px;
}

.step-num {
  width:          72px;
  height:         72px;
  border-radius:  50%;
  border:         1px solid rgba(196,149,106,0.3);
  display:        flex;
  align-items:    center;
  justify-content: center;
  font-family:    'Playfair Display', serif;
  font-size:      24px;
  font-weight:    400;
  color:          var(--accent);
  margin-bottom:  28px;
  background:     rgba(196,149,106,0.05);
  position:       relative;
  z-index:        1;
  background:     var(--bg);
}

.step-title {
  font-family:    'Playfair Display', serif;
  font-size:      20px;
  font-weight:    400;
  color:          var(--text);
  margin-bottom:  12px;
  letter-spacing: 0.3px;
}

.step-desc {
  font-size:   14px;
  color:       var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   AXIS METHOD GRID
══════════════════════════════════════════ */
.method-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   24px;
}

.method-card {
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       32px 24px;
  text-align:    center;
  transition:    border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.method-card:hover {
  border-color: rgba(196,149,106,0.4);
  transform:    translateY(-3px);
  box-shadow:   0 12px 32px rgba(0,0,0,0.3);
}

.method-letter {
  display:        block;
  font-family:    'Playfair Display', serif;
  font-size:      48px;
  font-weight:    400;
  color:          var(--accent);
  line-height:    1;
  margin-bottom:  16px;
}

.method-name {
  font-family:    'Playfair Display', serif;
  font-size:      20px;
  font-weight:    400;
  color:          var(--text);
  margin-bottom:  10px;
}

.method-desc {
  font-size:   14px;
  color:       var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.method-tools {
  font-size:      11px;
  letter-spacing: 1px;
  color:          var(--text-soft);
  opacity:        0.7;
}

/* ══════════════════════════════════════════
   COACH MODES
══════════════════════════════════════════ */
.modes {
  background: var(--surface);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.modes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.modes-left .divider { margin: 24px 0; }

.modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mode-card {
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       24px;
  transition:    border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor:        default;
}
.mode-card:hover {
  border-color: rgba(196,149,106,0.4);
  transform:    translateY(-3px);
  box-shadow:   0 12px 32px rgba(0,0,0,0.3);
}

.mode-icon {
  font-size:     20px;
  margin-bottom: 14px;
  display:       block;
}

.mode-label {
  font-size:      10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--accent);
  font-weight:    600;
  margin-bottom:  8px;
  display:        block;
}

.mode-name {
  font-family:  'Playfair Display', serif;
  font-size:    17px;
  font-weight:  400;
  color:        var(--text);
  margin-bottom: 8px;
}

.mode-desc {
  font-size:   13px;
  color:       var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features {
  background: var(--bg);
}

.features-header {
  text-align:    center;
  margin-bottom: 72px;
}
.features-header .divider { margin: 24px auto; }

.features-grid {
  display:             grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                 24px;
}
/* Center a single orphan card on the last row of a 4-col grid (desktop only) */
@media (min-width: 901px) {
  .features-grid > :last-child:nth-child(4n + 1) {
    grid-column-start: 2;
  }
}

.feature-card {
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       32px 28px;
  transition:    border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: rgba(196,149,106,0.25);
  box-shadow:   0 8px 24px rgba(0,0,0,0.2);
}

.feature-icon {
  font-size:     24px;
  margin-bottom: 20px;
  display:       block;
  opacity:       0.9;
}

.feature-title {
  font-family:   'Playfair Display', serif;
  font-size:     20px;
  font-weight:   400;
  color:         var(--text);
  margin-bottom: 10px;
}

.feature-desc {
  font-size:   14px;
  color:       var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   PROGRAMS SHOWCASE
══════════════════════════════════════════ */
.programs-showcase {
  background:    var(--surface);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.programs-showcase-header {
  text-align:    center;
  margin-bottom: 72px;
}
.programs-showcase-header .divider { margin: 24px auto; }

.showcase-grid {
  display:             grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                 20px;
  margin-bottom:       48px;
}

.showcase-card {
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       28px 24px;
  position:      relative;
  transition:    border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.showcase-card:hover {
  border-color: rgba(196,149,106,0.3);
  box-shadow:   0 8px 24px rgba(0,0,0,0.2);
  transform:    translateY(-2px);
}

.showcase-card-pro {
  border-color: rgba(196,149,106,0.2);
}

.showcase-pro-tag {
  position:       absolute;
  top:            12px;
  right:          12px;
  font-size:      9px;
  font-weight:    700;
  letter-spacing: 2px;
  color:          var(--accent);
  background:     rgba(196,149,106,0.12);
  padding:        3px 8px;
  border-radius:  20px;
}

.showcase-icon {
  font-size:     22px;
  display:       block;
  margin-bottom: 16px;
  color:         var(--accent);
}

.showcase-name {
  font-family:    'Playfair Display', serif;
  font-size:      18px;
  font-weight:    400;
  color:          var(--text);
  margin-bottom:  8px;
}

.showcase-desc {
  font-size:   13px;
  color:       var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.showcase-badge {
  font-size:      10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:          var(--text-soft);
  font-weight:    500;
}

.showcase-cta {
  text-align: center;
}

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing {
  background: var(--bg);
}

.pricing-header {
  text-align:    center;
  margin-bottom: 72px;
}
.pricing-header .divider { margin: 24px auto; }

.pricing-grid {
  display:             grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:                 24px;
  max-width:           960px;
  margin:              0 auto;
}

.pricing-card {
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       40px 32px;
  display:       flex;
  flex-direction: column;
  position:      relative;
  transition:    border-color 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  border-color: rgba(196,149,106,0.2);
  box-shadow:   0 8px 24px rgba(0,0,0,0.15);
}

.pricing-card-pro {
  border-color: rgba(196,149,106,0.35);
  box-shadow:   0 0 40px rgba(196,149,106,0.08);
}
.pricing-card-pro:hover {
  border-color: rgba(196,149,106,0.5);
  box-shadow:   0 12px 40px rgba(196,149,106,0.15);
}

.pricing-popular {
  position:       absolute;
  top:            -12px;
  left:           50%;
  transform:      translateX(-50%);
  background:     var(--accent);
  color:          #111;
  font-size:      10px;
  font-weight:    700;
  letter-spacing: 2px;
  padding:        5px 16px;
  border-radius:  20px;
  white-space:    nowrap;
}

.pricing-card-header {
  margin-bottom: 28px;
}

.pricing-tier {
  font-size:      11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--accent);
  font-weight:    600;
  display:        block;
  margin-bottom:  8px;
}

.pricing-price {
  display:     flex;
  align-items: baseline;
  gap:         6px;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size:   42px;
  font-weight: 400;
  color:       var(--text);
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color:     var(--text-muted);
}

.pricing-features {
  list-style:  none;
  margin:      0 0 32px;
  padding:     0;
  display:     flex;
  flex-direction: column;
  gap:         12px;
  flex:        1;
}

.pricing-features li {
  font-size:   14px;
  color:       var(--text-soft);
  line-height: 1.5;
}

.pricing-btn {
  display:        block;
  text-align:     center;
  padding:        16px 32px;
  font-size:      11px;
  font-weight:    700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius:  40px;
  transition:     background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.pricing-btn-free {
  background: transparent;
  color:      var(--text-soft);
  border:     1px solid var(--border);
}
.pricing-btn-free:hover {
  border-color: rgba(196,149,106,0.4);
  color:        var(--text);
}

.pricing-btn-pro {
  background: var(--accent);
  color:      #111;
  border:     none;
  box-shadow: 0 8px 24px rgba(196,149,106,0.2);
}
.pricing-btn-pro:hover {
  background: var(--accent-light);
  transform:  translateY(-1px);
  box-shadow: 0 12px 32px rgba(196,149,106,0.3);
}

.pricing-card-growth {
  border-color: rgba(196,149,106,0.35);
  box-shadow: 0 0 40px rgba(196,149,106,0.08);
}
.pricing-card-growth:hover {
  border-color: rgba(196,149,106,0.5);
  box-shadow: 0 12px 40px rgba(196,149,106,0.15);
}

.pricing-btn-mastery {
  background: linear-gradient(135deg, var(--accent), #D4A87A);
  color: #111;
  border: none;
  box-shadow: 0 8px 24px rgba(212,168,122,0.15);
}
.pricing-btn-mastery:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(212,168,122,0.25);
}

/* ══════════════════════════════════════════
   BRAND STORY
══════════════════════════════════════════ */
.brand-story {
  background:  var(--bg-dark);
  text-align:  center;
  padding:     120px 24px;
  position:    relative;
  overflow:    hidden;
}

.brand-story::before {
  content:    '';
  position:   absolute;
  top:        50%;
  left:       50%;
  transform:  translate(-50%, -50%);
  width:      800px;
  height:     400px;
  background: radial-gradient(ellipse, rgba(196,149,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.brand-emblem {
  font-size:     36px;
  color:         rgba(196,149,106,0.4);
  margin-bottom: 40px;
  display:       block;
}

.brand-tagline {
  font-family:    'Playfair Display', serif;
  font-size:      clamp(24px, 4vw, 38px);
  font-weight:    300;
  color:          var(--text);
  max-width:      700px;
  margin:         0 auto 0;
  line-height:    1.4;
  letter-spacing: 0.3px;
}
.brand-tagline em {
  font-style: italic;
  color:      var(--accent);
}

.brand-divider {
  width:      40px;
  height:     1px;
  background: var(--accent);
  margin:     32px auto;
  opacity:    0.4;
}

.brand-body {
  max-width: 600px;
  margin:    0 auto 32px;
}

.brand-text {
  font-size:     16px;
  color:         var(--text-soft);
  line-height:   1.8;
  font-weight:   300;
  margin-bottom: 20px;
}
.brand-text:last-child { margin-bottom: 0; }

.brand-attr {
  font-size:      11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--text-muted);
}

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter-section {
  background:    var(--surface);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding:       100px 24px;
}

.newsletter-inner {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         64px;
  align-items: center;
}

.newsletter-tag {
  font-size:      11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:          var(--accent);
  font-weight:    600;
  margin-bottom:  16px;
}

.newsletter-title {
  font-family:    'Playfair Display', serif;
  font-size:      clamp(36px, 5vw, 52px);
  font-weight:    400;
  line-height:    1.15;
  color:          var(--text);
  margin-bottom:  0;
}
.newsletter-title em {
  font-style: italic;
  color:      var(--accent);
}

.newsletter-desc {
  font-size:   16px;
  color:       var(--text-soft);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 300;
}

.newsletter-perks {
  list-style:  none;
  margin:      0;
  padding:     0;
  display:     flex;
  flex-direction: column;
  gap:         10px;
}
.newsletter-perks li {
  font-size:   13px;
  color:       var(--text-muted);
  letter-spacing: 0.3px;
}

/* Form card */
.newsletter-form-wrap {
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       36px 32px;
}

.newsletter-form-label {
  font-size:      11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--text-muted);
  margin-bottom:  20px;
  font-weight:    500;
}

.newsletter-form {
  display:   flex;
  gap:       0;
  margin-bottom: 12px;
}

.newsletter-input {
  flex:          1;
  background:    var(--surface);
  border:        1px solid var(--border);
  border-right:  none;
  border-radius: 40px 0 0 40px;
  padding:       14px 20px;
  font-size:     14px;
  color:         var(--text);
  font-family:   'Inter', sans-serif;
  outline:       none;
  transition:    border-color 0.2s;
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input:focus { border-color: rgba(196,149,106,0.5); }

.newsletter-btn {
  padding:        14px 24px;
  background:     var(--accent);
  color:          #111;
  font-size:      11px;
  font-weight:    700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border:         none;
  border-radius:  0 40px 40px 0;
  cursor:         pointer;
  transition:     background 0.2s;
  white-space:    nowrap;
}
.newsletter-btn:hover    { background: var(--accent-light); }
.newsletter-btn:disabled { opacity: 0.6; cursor: default; }

.newsletter-error {
  font-size:   13px;
  color:       #C4626A;
  min-height:  18px;
  margin:      0 0 4px;
}

.newsletter-success {
  font-size:   13px;
  color:       #7EC8A4;
  min-height:  18px;
  margin:      0 0 4px;
}

.newsletter-fine {
  font-size:   12px;
  color:       var(--text-muted);
  margin:      8px 0 0;
  opacity:     0.7;
}

/* ══════════════════════════════════════════
   PHILOSOPHY STRIP
══════════════════════════════════════════ */
.philosophy {
  background:  var(--bg-dark);
  text-align:  center;
  padding:     120px 24px;
  position:    relative;
  overflow:    hidden;
}

.philosophy::before {
  content:    '';
  position:   absolute;
  top:        50%;
  left:       50%;
  transform:  translate(-50%, -50%);
  width:      800px;
  height:     400px;
  background: radial-gradient(ellipse, rgba(196,149,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-emblem {
  font-size:     36px;
  color:         rgba(196,149,106,0.4);
  margin-bottom: 40px;
  display:       block;
  letter-spacing: 0;
}

.philosophy-quote {
  font-family:    'Playfair Display', serif;
  font-size:      clamp(22px, 4vw, 36px);
  font-weight:    300;
  font-style:     italic;
  color:          var(--text);
  max-width:      760px;
  margin:         0 auto 32px;
  line-height:    1.5;
  letter-spacing: 0.3px;
}

.philosophy-attr {
  font-size:      11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--text-muted);
}

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.cta-section {
  background: var(--bg);
  text-align: center;
  padding:    120px 24px;
  position:   relative;
  overflow:   hidden;
}

.cta-section::before {
  content:    '';
  position:   absolute;
  bottom:     0;
  left:       50%;
  transform:  translateX(-50%);
  width:      600px;
  height:     300px;
  background: radial-gradient(ellipse at bottom, rgba(196,149,106,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-headline {
  font-family:    'Playfair Display', serif;
  font-size:      clamp(36px, 6vw, 64px);
  font-weight:    400;
  line-height:    1.15;
  color:          var(--text);
  margin-bottom:  20px;
  letter-spacing: -0.5px;
}
.cta-headline em {
  font-style: italic;
  color:      var(--accent);
}

.cta-sub {
  font-size:   16px;
  color:       var(--text-soft);
  margin-bottom: 48px;
  font-weight: 300;
}

.cta-actions {
  display:        flex;
  align-items:    center;
  justify-content: center;
  gap:            20px;
  flex-wrap:      wrap;
}

.btn-primary {
  display:        inline-flex;
  align-items:    center;
  gap:            10px;
  padding:        18px 48px;
  background:     var(--accent);
  color:          #111;
  font-size:      12px;
  font-weight:    700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius:  50px;
  transition:     transform 0.25s ease, box-shadow 0.25s ease, background 0.25s;
  box-shadow:     0 8px 32px rgba(196,149,106,0.2);
}
.btn-primary:hover {
  background:  var(--accent-light);
  transform:   translateY(-2px);
  box-shadow:  0 12px 40px rgba(196,149,106,0.35);
}

.btn-secondary {
  display:        inline-block;
  padding:        18px 48px;
  background:     transparent;
  color:          var(--text-muted);
  font-size:      12px;
  font-weight:    500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius:  50px;
  border:         1px solid var(--border);
  transition:     border-color 0.25s, color 0.25s;
}
.btn-secondary:hover {
  border-color: rgba(196,149,106,0.4);
  color:        var(--text);
}

.cta-footnote {
  margin-top:  24px;
  font-size:   12px;
  color:       var(--text-muted);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background:    var(--bg-dark);
  border-top:    1px solid var(--border);
  padding:       48px 24px;
}

.footer-inner {
  max-width:     var(--max-w);
  margin:        0 auto;
  display:       flex;
  align-items:   center;
  justify-content: space-between;
  flex-wrap:     wrap;
  gap:           24px;
}

.footer-logo {
  display:     flex;
  align-items: center;
  gap:         10px;
}
.footer-wordmark .w-axis { color: var(--accent); font-weight: 700; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; }
.footer-wordmark .w-life { color: var(--text-muted); font-weight: 300; font-size: 12px; letter-spacing: 4px; margin-left: 4px; }

.footer-copy {
  font-size:   12px;
  color:       var(--text-muted);
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  gap:     24px;
}
.footer-link {
  font-size:      12px;
  color:          var(--text-muted);
  letter-spacing: 1px;
  transition:     color 0.2s;
}
.footer-link:hover { color: var(--accent); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
  .modes-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 680px) {
  .nav { padding: 16px 20px; }
  .nav-links .nav-link { display: none; }

  .hero { padding: 120px 20px 80px; }

  section { padding: 72px 20px; }

  .method-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .steps::before { display: none; }

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

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items:    flex-start;
    gap:            16px;
  }

  .cta-actions {
    flex-direction: column;
    align-items:    stretch;
  }
  .btn-primary, .btn-secondary {
    text-align: center;
  }
}
