/* ============================================================
   Hytlo — styles.css  ·  Editorial High-Contrast Redesign
   ============================================================ */

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

:root {
  --void:          #ffffff;
  --void-2:        #ffffff;
  --void-3:        #f5f5f4;
  --paper:         #ffffff;
  --paper-2:       #fffffe;
  --ink:           #111110;
  --snow:          #111110;
  --accent:       #f18f25;
  --accent-muted: rgba(27,79,140,0.1);
  --accent-border: rgba(27,79,140,0.3);
  --muted-dark:    rgba(17,17,16,0.45);
  --muted-light:   #6D6862;
  --border-dark:   rgba(17,17,16,0.09);
  --border-light:  rgba(17,17,16,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--paper);
  color: var(--ink);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain overlay */
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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--snow);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted-dark);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--snow); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border-dark);
  border-radius: 5px;
  padding: 6px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--muted-dark);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.06em;
}
.lang-btn:hover { border-color: var(--accent); color: var(--snow); }
.lang-btn svg { width: 13px; height: 13px; transition: transform 0.2s; }
.lang-btn.open svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--void-3);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.45);
  overflow: hidden;
  min-width: 156px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 200;
}
.lang-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted-dark);
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.lang-option:hover { background: rgba(17,17,16,0.05); color: var(--ink); }
.lang-option.active { color: var(--accent); font-weight: 500; }
.lang-option .flag { font-size: 1rem; }
.lang-option .lang-coming {
  margin-left: auto;
  font-size: 0.66rem;
  color: var(--muted-dark);
  opacity: 0.45;
  font-style: italic;
}

.btn-waitlist-nav {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 9px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-waitlist-nav:hover { background: #153d70; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  background: var(--void);
}

.hero-masthead {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 48px;
  border-bottom: 1px solid var(--border-dark);
}
.masthead-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  white-space: nowrap;
}
.masthead-rule {
  flex: 1;
  height: 1px;
  background: var(--border-dark);
}
.masthead-meta {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
  opacity: 0.5;
  white-space: nowrap;
}

/* Typographic watermark */
.hero-watermark {
  position: absolute;
  bottom: -4%;
  right: -2%;
  font-family: 'Playfair Display', serif;
  font-size: clamp(200px, 28vw, 440px);
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
  opacity: 0.05;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 72px 48px 110px;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease both;
}
.kicker-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.65); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--snow);
  max-width: 900px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 300;
  color: var(--muted-dark);
  max-width: 520px;
  line-height: 1.85;
  margin-top: 36px;
  letter-spacing: 0.01em;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.waitlist-form-inline {
  display: flex;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background: var(--void-2);
}
.waitlist-form-inline input {
  border: none;
  outline: none;
  padding: 15px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--snow);
  background: transparent;
  width: 280px;
}
.waitlist-form-inline input::placeholder { color: rgba(17,17,16,0.3); }
.waitlist-form-inline button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 15px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.waitlist-form-inline button:hover { background: #153d70; }

.hero-note {
  font-size: 0.74rem;
  color: var(--muted-dark);
  opacity: 0.55;
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  opacity: 0.3;
  animation: fadeUp 1s 0.8s ease both;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--muted-dark), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SHARED UTILITIES ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 640px;
}
.section-title em { font-style: italic; color: var(--accent); }

/* ── PROBLEM SECTION (LIGHT PAPER) ── */
.problem-section {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--border-light);
}
.problem-section .section-title { color: var(--ink); }
.problem-section .section-title em { color: var(--accent); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 68px;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.problem-list li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}
.problem-list li:first-child { border-top: 1px solid var(--border-light); }

.problem-glyph {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  line-height: 1;
  padding-top: 1px;
}
.problem-text strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.problem-text p {
  font-size: 0.84rem;
  color: var(--muted-light);
  line-height: 1.72;
}

/* Editor mockup */
.editor-mock {
  background: #141413;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(17,17,16,0.1);
  box-shadow: 0 28px 72px rgba(0,0,0,0.18);
}
.editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(240,237,230,0.07);
  background: #0C0C0B;
}
.editor-title-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #F0EDE6;
  letter-spacing: -0.01em;
}
.editor-wordcount {
  font-size: 0.68rem;
  color: rgba(240,237,230,0.42);
  letter-spacing: 0.06em;
}
.editor-body {
  padding: 24px 20px;
  font-size: 0.82rem;
  color: rgba(240,237,230,0.42);
  line-height: 1.85;
}
.editor-line { margin-bottom: 8px; color: rgba(240,237,230,0.55); }
.editor-strike { text-decoration: line-through; opacity: 0.28; }
.editor-dim { opacity: 0.2; }
.editor-highlight {
  background: rgba(27,79,140,0.18);
  color: #7BAADB;
  border-radius: 3px;
  padding: 0 4px;
}
.editor-suggestion {
  margin-top: 22px;
  padding: 14px 16px;
  background: rgba(27,79,140,0.08);
  border-left: 2px solid var(--accent);
  border-radius: 0 5px 5px 0;
  color: rgba(240,237,230,0.7);
  font-size: 0.8rem;
  line-height: 1.7;
  font-style: italic;
}
.suggestion-label {
  display: block;
  font-style: normal;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0.85;
}

/* ── FEATURES SECTION ── */
.features-section {
  background: var(--void);
  padding: 100px 48px;
  border-top: 1px solid var(--border-light);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-section .section-title { color: var(--snow); max-width: 720px; }

/* Feature tabs */
.feature-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-dark);
  margin-top: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}
.feature-tabs::-webkit-scrollbar { display: none; }

.feature-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 32px 18px 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  gap: 5px;
  transition: all 0.2s;
  white-space: nowrap;
}
.feature-tab.active { border-bottom-color: var(--accent); position: relative; }

.feature-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--snow);
  animation: tabProgress 3.5s linear forwards;
}
@keyframes tabProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

.ftab-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.feature-tab.active .ftab-num { opacity: 1; }

.ftab-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted-dark);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.feature-tab:hover .ftab-name { color: var(--snow); }
.feature-tab.active .ftab-name { color: var(--snow); }

/* Feature panels */
.feature-panels { position: relative; }

.feature-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
}
.feature-panel.active {
  display: grid;
  animation: fpFadeIn 0.35s ease both;
}
@keyframes fpFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fp-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 4px;
}

.feature-panel-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--snow);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.feature-panel-text p {
  font-size: 0.9rem;
  color: var(--muted-dark);
  line-height: 1.85;
  max-width: 400px;
  font-weight: 400;
}

.feature-tag {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  border: 1px solid var(--border-dark);
  border-radius: 3px;
  padding: 5px 10px;
  margin-top: 20px;
}

.feature-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  margin-left: 0;
}
.feature-learn-more:hover { border-bottom-color: var(--accent); }

/* Image placeholder */
.feature-panel-image { width: 100%; }

.fp-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #0f0f0e;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.fp-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(241,143,37,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.fp-img-icon {
  font-size: 2.4rem;
  opacity: 0.18;
  color: #fff;
}
.fp-img-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ── HOW IT WORKS (LIGHT) ── */
.how-section {
  background: var(--paper-2);
  color: var(--ink);
}
.how-section .section-title { color: var(--ink); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--border-light);
}
.step {
  padding: 40px 32px;
  border-right: 1px solid var(--border-light);
}
.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; padding-right: 0; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.05em;
  opacity: 0.8;
}
.step-rule {
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
  opacity: 0.45;
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step p { font-size: 0.83rem; color: var(--muted-light); line-height: 1.72; }

/* ── PLATFORMS (DARK STRIP) ── */
.platforms-section {
  background: var(--void-2);
  padding: 72px 48px;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.platforms-inner { max-width: 1100px; margin: 0 auto; }
.platforms-section .section-title { color: var(--snow); margin-top: 0; max-width: 100%; }
.platforms-section .section-title em { color: var(--accent); }

.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 11px 20px;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--muted-dark);
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.platform-pill:hover { border-color: var(--accent); color: var(--snow); }

/* ── PRICING ── */
.pricing-section { padding: 100px 48px; background: var(--paper); border-top: 1px solid var(--border-light); }
.pricing-inner { max-width: 1140px; margin: 0 auto; }
.pricing-section .section-title { color: var(--ink); text-align: center; max-width: 100%; }
.pricing-section .section-title em { color: var(--accent); }
.pricing-note {
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--muted-light);
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 56px;
  align-items: start;
}
.price-card {
  border-radius: 10px;
  border: 1px solid var(--border-light);
  padding: 32px 24px;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  background: var(--paper-2);
  color: var(--ink);
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(17,17,16,0.1); }
.price-card.featured {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  border-radius: 3px; padding: 4px 14px;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap;
}
.price-tier {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.price-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink);
}
.price-card.featured .price-name { color: white; }

.price-amount { display: flex; align-items: baseline; gap: 3px; margin-top: 20px; }
.price-currency { font-size: 1rem; font-weight: 400; color: var(--muted-light); }
.price-card.featured .price-currency { color: rgba(240,237,230,0.35); }
.price-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  letter-spacing: -0.05em; color: var(--ink); line-height: 1;
}
.price-card.featured .price-number { color: white; }
.price-period { font-size: 0.78rem; color: var(--muted-light); }
.price-card.featured .price-period { color: rgba(240,237,230,0.3); }

.price-desc { font-size: 0.8rem; color: var(--muted-light); margin-top: 12px; line-height: 1.65; }
.price-card.featured .price-desc { color: rgba(240,237,230,0.45); }

.price-divider { height: 1px; background: var(--border-light); margin: 24px 0; }
.price-card.featured .price-divider { background: rgba(240,237,230,0.08); }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--muted-light); line-height: 1.4;
}
.price-card.featured .price-features li { color: rgba(240,237,230,0.6); }

.check {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.58rem; color: var(--accent);
  margin-top: 1px;
}
.price-card.featured .check { border-color: rgba(240,237,230,0.12); }

.price-cta {
  display: block; width: 100%; margin-top: 28px;
  padding: 12px; border-radius: 5px;
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; text-align: center; transition: all 0.2s;
  border: 1px solid var(--border-light);
  background: transparent; color: var(--ink);
  text-decoration: none;
}
.price-cta:hover { border-color: var(--accent); color: var(--accent); }
.price-card.featured .price-cta { background: var(--accent); border-color: var(--accent); color: white; }
.price-card.featured .price-cta:hover { background: #153d70; border-color: #153d70; }

.pricing-footer {
  margin-top: 48px; font-size: 0.78rem;
  color: var(--muted-light); opacity: 0.75;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.pricing-footer span::before { content: '✦  '; color: var(--accent); opacity: 0.7; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--void); padding: 100px 48px; border-top: 1px solid var(--border-light); }
.testi-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-section .section-title { color: var(--snow); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--border-dark);
}
.testi-card {
  padding: 52px 40px;
  border-right: 1px solid var(--border-dark);
}
.testi-card:last-child { border-right: none; }

.testi-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 900;
  font-style: italic;
  color: var(--accent);
  line-height: 0.65;
  margin-bottom: 28px;
  opacity: 0.75;
}
.testi-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(17,17,16,0.78);
  line-height: 1.78;
  margin-bottom: 36px;
}
.testi-rule { height: 1px; background: var(--border-dark); margin-bottom: 16px; }
.testi-name { font-size: 0.84rem; font-weight: 500; color: var(--snow); letter-spacing: 0.02em; }
.testi-role { font-size: 0.7rem; color: var(--muted-dark); margin-top: 4px; letter-spacing: 0.05em; }

/* ── FAQ (LIGHT) ── */
.faq-section { padding: 100px 48px; background: var(--paper-2); color: var(--ink); }
.faq-section .section-title { color: var(--ink); }

.faq-list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-light);
}
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  color: var(--ink); text-align: left; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .faq-icon {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.88rem; color: var(--muted-light); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 28px; }

/* ── CTA SECTION (DARK) ── */
.cta-section {
  padding: 120px 48px;
  text-align: center;
  background: var(--void);
  border-top: 1px solid var(--border-dark);
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--snow);
}
.cta-inner h2 em { font-style: italic; color: var(--accent); }
.cta-inner p {
  font-size: 1rem;
  color: var(--muted-dark);
  margin-top: 24px;
  line-height: 1.72;
}
.cta-section .waitlist-form-inline {
  display: inline-flex;
}

/* ── FOOTER ── */
footer {
  background: #1E1E1C;
  color: rgba(255,255,255,0.38);
  padding: 68px 48px 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .nav-logo { color: white; }
.footer-desc { font-size: 0.82rem; line-height: 1.75; margin-top: 16px; max-width: 240px; }
.footer-col h4 {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(240,237,230,0.4); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.82rem; color: rgba(240,237,230,0.28); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.74rem; flex-wrap: wrap; gap: 12px;
  color: rgba(240,237,230,0.18);
}
.footer-bottom a { color: rgba(240,237,230,0.18); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(12,12,11,0.88);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px;
  padding: 52px 48px;
  max-width: 460px; width: 90%;
  text-align: center;
  transform: translateY(20px); transition: transform 0.3s;
  position: relative;
  border: 1px solid rgba(17,17,16,0.06);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; font-size: 1.1rem;
  color: var(--muted-light); cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s;
}
.modal-close:hover { background: var(--border-light); }

.modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  letter-spacing: -0.03em; color: var(--ink); margin-bottom: 10px;
}
.modal p { font-size: 0.88rem; color: var(--muted-light); line-height: 1.7; margin-bottom: 28px; }

.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form input,
.modal-form select {
  width: 100%;
  border: 1px solid var(--border-light); border-radius: 6px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif; font-size: 0.88rem;
  color: var(--ink); background: white; outline: none;
  transition: border-color 0.2s; appearance: none;
}
.modal-form input:focus,
.modal-form select:focus { border-color: var(--accent); }
.modal-form button {
  background: var(--accent); color: white;
  border: none; border-radius: 6px; padding: 14px;
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s; margin-top: 4px;
  letter-spacing: 0.02em;
}
.modal-form button:hover { background: #153d70; }
.modal-small { font-size: 0.73rem; color: var(--muted-light); opacity: 0.55; margin-top: 12px; }

.success-state { display: none; flex-direction: column; align-items: center; gap: 12px; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--accent);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .feature-panel { grid-template-columns: 1fr; gap: 40px; }
  .feature-panel-image { order: -1; }
  .fp-img-placeholder { aspect-ratio: 16/7; }
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-content { padding: 56px 24px 96px; }
  .hero-masthead { padding: 14px 24px; }
  .hero-watermark { font-size: 42vw; opacity: 0.018; }
  .section-inner { padding: 72px 24px; }
  .features-section { padding: 72px 24px; }
  .feature-tab { padding: 14px 20px 14px 0; }
  .feature-panel { padding: 48px 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 52px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { padding: 36px 24px; }
  .step:first-child { padding-left: 0; }
  .step:nth-child(2) { border-right: none; padding-right: 0; }
  .step:nth-child(3) { border-bottom: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { border-right: none; border-bottom: 1px solid var(--border-dark); padding: 44px 0; }
  .testi-card:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .waitlist-form-inline { flex-direction: column; border-radius: 8px; }
  .waitlist-form-inline input { width: 100%; }
  .platforms-section { padding: 64px 24px; }
  .testimonials-section { padding: 72px 24px; }
  .faq-section { padding: 72px 24px; }
  .cta-section { padding: 88px 24px; }
  .pricing-section { padding: 72px 24px; }
  footer { padding: 52px 24px 32px; }
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none !important; border-bottom: 1px solid var(--border-light); padding: 32px 0 !important; }
  .step:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .modal { padding: 36px 24px; }
  .fp-num { font-size: 3.5rem; }
}
