/*
Theme Name: Escape 9-5
Theme URI: https://escape9-5.co.uk
Description: Custom theme for Escape 9-5
Version: 1.0
Author: Escape 9-5
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --off-white: #f7f6f3;
  --ink: #0d0d0d;
  --ink-muted: #6b6b6b;
  --teal: #00a896;
  --teal-light: #e8f7f5;
  --green: #52b788;
  --gold: #c9a84c;
  --beige: #F8F4EC;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(13,13,13,0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease,
              height 0.3s ease,
              border-color 0.2s ease,
              transform 0.35s cubic-bezier(0.23,1,0.32,1);
}

.cursor-ring.expanded {
  width: 56px;
  height: 56px;
  border-color: var(--teal);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.site-nav.nav-dark.scrolled {
  background: rgba(13,13,13,0.88);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  opacity: 0;
  animation: fadeDown 0.8s 0.2s ease forwards;
}

.nav-dark .nav-logo {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  opacity: 0;
  animation: fadeDown 0.8s 0.4s ease forwards;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-dark .nav-links a {
  color: rgba(255,255,255,0.6);
}

.nav-links a:hover { color: var(--ink); }
.nav-dark .nav-links a:hover { color: var(--white); }

.nav-cta {
  opacity: 0;
  animation: fadeDown 0.8s 0.5s ease forwards;
}

.btn-nav {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--ink);
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-nav:hover {
  background: var(--teal);
  transform: scale(1.03);
  color: var(--white);
}

.nav-dark .btn-nav {
  background: var(--teal);
}

.nav-dark .btn-nav:hover {
  background: #009688;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background: var(--ink);
  border: none;
  padding: 16px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(13,13,13,0.2);
  padding: 16px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: rgba(13,13,13,0.03);
  transform: translateY(-2px);
}

.btn-white {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-white:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-teal {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--teal);
  border: none;
  padding: 13px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-teal:hover {
  background: #009688;
  transform: scale(1.03);
  color: var(--white);
}

.btn-outline {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 13px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.btn-dl {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background: var(--ink);
  border: none;
  padding: 18px 40px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-dl:hover {
  background: var(--teal);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-dl-outline {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(13,13,13,0.2);
  padding: 18px 40px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-dl-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.section-label-teal {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-row-center {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1),
              transform 0.8s cubic-bezier(0.23,1,0.32,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ============================================================
   HERO — HOMEPAGE (light)
   ============================================================ */
.hero-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--teal), transparent);
  top: -100px; right: -100px;
  animation: float1 12s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--green), transparent);
  bottom: -50px; left: -50px;
  animation: float2 15s ease-in-out infinite;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold), transparent);
  top: 40%; left: 60%;
  opacity: 0.07;
  animation: float3 18s ease-in-out infinite;
}

.hero-home-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.5s ease forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
  z-index: 1;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--ink-muted));
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ============================================================
   HERO — VITALIZE PAGE (dark)
   ============================================================ */
.hero-vitalize {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 80px) 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,168,150,0.2), transparent 70%);
  top: -200px; left: -100px;
  animation: drift1 14s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,183,136,0.15), transparent 70%);
  bottom: -100px; right: -50px;
  animation: drift2 18s ease-in-out infinite;
}

.hero-vitalize-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(64px, 12vw, 120px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 1s 0.3s ease forwards;
}

.tagline {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}

.hero-vitalize-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 56px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s ease forwards;
}

.hero-vitalize-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s ease forwards;
}

.early-banner {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
  z-index: 1;
  white-space: nowrap;
}

.early-badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 8px 18px;
  border-radius: 100px;
  display: inline-block;
}

/* ============================================================
   PRODUCTS SECTION (homepage)
   ============================================================ */
.products-section {
  padding: 120px 48px;
  background: var(--off-white);
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.card-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
}

.card-tag-dot {
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
}

.card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.card-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 40px;
  max-width: 340px;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 48px;
}

.card-features li {
  font-size: 14px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feat-tick {
  width: 18px; height: 18px;
  background: rgba(0,168,150,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Phone mockup */
.card-visual {
  background: linear-gradient(135deg, #f0faf8, #e8f7f5 40%, #d4f0eb);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.card-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0,168,150,0.15), transparent 60%);
}

.phone-mockup {
  width: 200px;
  background: var(--ink);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}

.product-card:hover .phone-mockup {
  transform: rotate(0deg) scale(1.04);
}

.phone-screen {
  background: #F8F4EC;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  display: flex;
  flex-direction: column;
}

.phone-status {
  height: 24px;
  background: #F8F4EC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-notch {
  width: 60px; height: 10px;
  background: var(--ink);
  border-radius: 0 0 8px 8px;
}

.phone-body { flex: 1; padding: 10px 8px; }
.ph-greeting { font-size: 6px; font-weight: 300; color: #6b6b6b; margin-bottom: 2px; }
.ph-name { font-size: 9px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.ph-ring-wrap { display: flex; justify-content: center; margin-bottom: 8px; }
.ph-ring { position: relative; width: 50px; height: 50px; }
.ph-ring svg { transform: rotate(-90deg); }
.ph-ring-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ph-ring-num { font-size: 7px; font-weight: 700; color: var(--ink); }
.ph-ring-unit { font-size: 4px; color: #6b6b6b; }
.ph-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 6px; }
.ph-tile { background: var(--white); border-radius: 6px; padding: 5px; }
.ph-tile-icon { font-size: 8px; margin-bottom: 1px; }
.ph-tile-val { font-size: 8px; font-weight: 700; color: var(--ink); }
.ph-tile-lbl { font-size: 4px; color: #6b6b6b; text-transform: uppercase; letter-spacing: 0.05em; }
.ph-macro { background: #1B5E50; border-radius: 6px; padding: 6px; }
.ph-macro-title { font-size: 5px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.ph-macro-bars { display: flex; flex-direction: column; gap: 2px; }
.ph-macro-row { display: flex; align-items: center; gap: 3px; }
.ph-macro-dot { width: 4px; height: 4px; border-radius: 50%; flex-shrink: 0; }
.ph-macro-track { flex: 1; height: 2px; background: rgba(255,255,255,0.15); border-radius: 1px; overflow: hidden; }
.ph-macro-fill { height: 100%; border-radius: 1px; }
.ph-macro-pct { font-size: 4px; color: rgba(255,255,255,0.6); width: 16px; text-align: right; }

/* Coming soon card */
.coming-soon-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  margin-top: 24px;
  border: 1px dashed rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cs-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.cs-title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink-muted);
}

.cs-badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.2);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
}

.stat-item {
  background: var(--white);
  padding: 48px 40px;
  transition: background 0.2s;
}

.stat-item:hover { background: var(--off-white); }

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: 140px 48px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.manifesto-title em { font-style: italic; color: var(--teal); }

.manifesto-body {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================================
   FEATURE SECTIONS (Vitalize page)
   ============================================================ */
.feature-section {
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-section.reverse { direction: rtl; }
.feature-section.reverse > * { direction: ltr; }

.feat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.feat-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.feat-title em { font-style: italic; color: var(--teal); }

.feat-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 32px;
}

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

.feat-list li {
  font-size: 14px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tick {
  width: 20px; height: 20px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-visual {
  border-radius: 24px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feat-visual-beige { background: var(--beige); }
.feat-visual-teal { background: linear-gradient(135deg, #e8f7f5, #d4f0eb); }
.feat-visual-dark { background: #111; }

.feat-icon { font-size: 80px; line-height: 1; }

/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.04);
}

.grid-item {
  background: var(--white);
  padding: 48px 40px;
  transition: background 0.2s;
}

.grid-item:hover { background: var(--off-white); }

.grid-icon { font-size: 32px; margin-bottom: 20px; }

.grid-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.grid-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ============================================================
   PRICING (Vitalize page)
   ============================================================ */
.pricing-section {
  background: var(--ink);
  padding: 120px 48px;
  text-align: center;
}

.pricing-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 72px;
}

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

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}

.pricing-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.pricing-card.featured {
  background: var(--teal);
  border-color: var(--teal);
}

.pricing-card.featured:hover { background: #009688; }

.pc-tier {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.5);
}

.featured .pc-tier { color: rgba(255,255,255,0.9); }

.pc-price {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.pc-period {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.featured .pc-period { color: rgba(255,255,255,0.7); }

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.pc-feat {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured .pc-feat { color: rgba(255,255,255,0.9); }

.pc-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.featured .pc-dot { background: rgba(255,255,255,0.7); }

.btn-pricing-free {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 13px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  text-align: center;
  width: 100%;
}

.btn-pricing-free:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-pricing-premium {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  background: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  text-align: center;
  width: 100%;
}

.btn-pricing-premium:hover {
  background: var(--off-white);
  transform: scale(1.02);
  color: var(--teal);
}

.ea-strip {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ea-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 4px;
}

.ea-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

.ea-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  text-align: right;
}

.ea-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: right;
}

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.download-section {
  padding: 140px 48px;
  text-align: center;
  background: var(--off-white);
}

.dl-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.dl-title em { font-style: italic; color: var(--teal); }

.dl-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-muted);
  margin-bottom: 48px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.06);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

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

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

.footer-copy {
  font-size: 12px;
  color: var(--ink-muted);
}

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

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.4; }
  50%     { transform: scaleY(1.3); opacity: 0.8; }
}

@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,-30px)} }
@keyframes float3 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-20px,20px)} 66%{transform:translate(20px,-20px)} }
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,40px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,-60px)} }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .products-section { padding: 80px 24px; }
  .product-card { grid-template-columns: 1fr; }
  .card-visual { min-height: 300px; }
  .card-content { padding: 40px 32px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .manifesto { padding: 80px 24px; }
  .feature-section { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .feature-section.reverse { direction: ltr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-section { padding: 80px 24px; }
  .download-section { padding: 80px 24px; }
  .site-footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
}
