/* ============================================================
   Project Satori — Landing Page CSS
   Aesthetic: Precision dark / editorial luxury
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Mono:wght@400;500&family=Outfit:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --bg:            #0a0a0f;
  --bg-card:       #12121a;
  --bg-card-hover: #16161f;
  --border:        #1e1e2e;
  --border-bright: #2a2a3e;
  --accent:        #e94560;
  --accent-hover:  #f05672;
  --accent-glow:   rgba(233, 69, 96, 0.18);
  --green:         #4ade80;
  --green-dim:     rgba(74, 222, 128, 0.12);
  --blue:          #58a6ff;
  --blue-dim:      rgba(88, 166, 255, 0.1);
  --text:          #e6e6e6;
  --text-muted:    #8b949e;
  --text-faint:    #4a4a5a;
  --serif:         'DM Serif Display', Georgia, serif;
  --sans:          'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:          'DM Mono', 'SFMono-Regular', Consolas, monospace;
  --max-w:         1120px;
  --radius:        8px;
  --radius-lg:     16px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
}

/* ============================================================
   Noise overlay — subtle texture across entire page
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
}

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

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ============================================================
   Scroll Animation — fade up on enter
   ============================================================ */
.fade-up {
  opacity: 1;
  transform: none;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   Navbar
   ============================================================ */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}

.landing-nav.scrolled {
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border-bright);
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--text);
  text-decoration: none;
}

@media (max-width: 640px) {
  .nav-inner { padding: 0 20px; }
}

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

/* Radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at center,
    rgba(233, 69, 96, 0.08) 0%,
    rgba(233, 69, 96, 0.03) 40%,
    transparent 70%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}

/* Bottom gradient fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateX(-50%) scale(1.05); }
}

/* Grid lines in hero background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

/* Eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233, 69, 96, 0.08);
  border: 1px solid rgba(233, 69, 96, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

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

/* Giant headline */
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 8vw, 92px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-headline .mono-num {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.9em;
  color: var(--accent);
  font-weight: 400;
}

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

/* Subheadline */
.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 500;
}

/* CTA group */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

/* Primary CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  border-radius: inherit;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(233, 69, 96, 0.38);
  text-decoration: none;
  color: #fff;
}

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

.btn-primary .arrow {
  transition: transform 0.2s;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

/* Secondary link */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
  padding: 16px 8px;
}

.btn-ghost:hover {
  color: var(--text);
  text-decoration: none;
}

/* Hero proof bar */
.hero-proof {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

.proof-item {
  text-align: center;
}

.proof-num {
  display: block;
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.proof-num .accent { color: var(--accent); }
.proof-num .green  { color: var(--green); }
.proof-num .blue   { color: var(--blue); }

.proof-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--mono);
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border-bright);
}

/* ============================================================
   Section shared styles
   ============================================================ */
.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

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

.section-body {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   How It Works — Vertical Timeline
   ============================================================ */
.hiw-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hiw-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hiw-header {
  position: sticky;
  top: 120px;
  padding-top: 8px;
}

.hiw-header .section-body {
  margin-top: 16px;
}

/* The timeline on the right */
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical line */
.hiw-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--border-bright), var(--border));
}

.step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  position: relative;
}

.step:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

/* Step dot */
.step-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  background: var(--bg);
  border: 1px solid var(--border-bright);
  color: var(--text-faint);
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

.step:hover .step-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px var(--accent-glow);
}

.step-body {
  flex: 1;
  padding-top: 8px;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  transition: color 0.2s;
}

.step:hover .step-title {
  color: #fff;
}

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

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-tag-blue {
  background: var(--blue-dim);
  border-color: rgba(88, 166, 255, 0.2);
  color: var(--blue);
}

/* responsive */
@media (max-width: 768px) {
  .hiw-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hiw-header {
    position: static;
  }
}

/* ============================================================
   What You Get — Cards grid
   ============================================================ */
.get-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
}

.get-card {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s;
}

.get-card:hover {
  background: var(--bg-card-hover);
}

.get-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 4px;
}

.icon-red   { background: rgba(233, 69, 96, 0.1);  border: 1px solid rgba(233, 69, 96, 0.2); }
.icon-green { background: rgba(74, 222, 128, 0.1); border: 1px solid rgba(74, 222, 128, 0.2); }
.icon-blue  { background: rgba(88, 166, 255, 0.1); border: 1px solid rgba(88, 166, 255, 0.2); }
.icon-gold  { background: rgba(251, 191, 36, 0.1); border: 1px solid rgba(251, 191, 36, 0.2); }

.get-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.get-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

.get-card-free {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: auto;
}

.get-card-free::before {
  content: '✓';
  font-size: 10px;
}

/* Full-width bottom card in get section */
.get-card-full {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.06) 0%, var(--bg-card) 50%);
  border-top: 1px solid var(--border-bright);
}

.get-card-full .get-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

@media (max-width: 640px) {
  .get-grid { grid-template-columns: 1fr; }
  .get-card-full { grid-column: 1; }
}

/* ============================================================
   Who It's For
   ============================================================ */
.for-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--border);
}

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

.for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.for-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s;
}

.for-item:hover {
  border-color: var(--border-bright);
  transform: translateX(4px);
}

.for-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
}

.for-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 300;
}

.for-text strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* Callout quote card */
.for-callout {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.for-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.for-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
  font-style: italic;
}

.for-tagline {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.for-tagline::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--text-faint);
}

@media (max-width: 768px) {
  .for-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   About — Story
   ============================================================ */
.about-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}

.about-story {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text);
  line-height: 1.8;
  font-weight: 300;
  position: relative;
}

.about-story p {
  margin-bottom: 28px;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-story strong {
  color: #fff;
  font-weight: 600;
}

.about-story em {
  color: var(--accent);
  font-style: italic;
}

/* Pull quote on the side */
.about-aside {
  padding-top: 8px;
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-metric {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.about-metric::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.about-metric:hover::after { opacity: 1; }

.metric-num {
  font-family: var(--mono);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.metric-num .unit {
  font-size: 20px;
  color: var(--accent);
  margin-left: 2px;
}

.metric-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .about-metric { flex: 1; min-width: 160px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--bg);
}

.faq-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 120px;
}

.faq-header .section-body {
  margin-top: 16px;
  font-size: 15px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Accordion item */
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.faq-question:hover {
  background: var(--bg-card-hover);
  color: #fff;
}

.faq-question[aria-expanded="true"] {
  color: #fff;
}

.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s, border-color 0.2s;
  font-size: 11px;
  color: var(--text-muted);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

.faq-answer-inner strong {
  color: var(--green);
  font-weight: 500;
}

.faq-answer-inner .price {
  color: var(--blue);
  font-family: var(--mono);
  font-weight: 500;
}

@media (max-width: 768px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-header { position: static; }
}

/* ============================================================
   Booking section
   ============================================================ */
.book-section {
  border-top: 1px solid var(--border);
  padding: 0;
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.book-left {
  padding: 100px 64px 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  border-right: 1px solid var(--border);
}

.book-left .section-title {
  margin-bottom: 0;
}

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

.book-promise li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
}

.book-promise li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  font-family: var(--mono);
}

.book-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.book-reassurance {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Calendar embed placeholder */
.book-right {
  padding: 60px 0 60px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-placeholder {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1.1;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-faint);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.cal-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
}

.cal-placeholder-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  background: var(--bg);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.cal-placeholder-text {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.8;
}

.cal-placeholder-text strong {
  display: block;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .book-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .book-left {
    padding: 80px 0 40px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .book-right {
    padding: 48px 0 80px;
  }
}

/* ============================================================
   Final CTA Band
   ============================================================ */
.final-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, transparent 60%);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(233, 69, 96, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta .section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}

.final-tagline {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* ============================================================
   Footer
   ============================================================ */
.landing-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}

.footer-contact {
  font-size: 13px;
  color: var(--text-faint);
  font-family: var(--mono);
}

.footer-contact a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--text); }

.footer-copy {
  font-size: 12px;
  color: var(--text-faint);
  font-family: var(--mono);
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ============================================================
   Utility
   ============================================================ */
.text-accent { color: var(--accent); }
.text-green  { color: var(--green);  }
.text-blue   { color: var(--blue);   }
.text-muted  { color: var(--text-muted); }
