/* ═══════════════════════════════════════════════════════
   THE WITNESS — Landing Page
   ═══════════════════════════════════════════════════════ */

:root {
  --surface-0: #050709;
  --surface-1: #0a0d15;
  --surface-2: #10141e;
  --surface-3: #171c2a;
  --surface-4: #1e2436;

  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-default: rgba(255, 255, 255, 0.07);
  --border-glass: rgba(255, 255, 255, 0.08);

  --text-primary: #f0f1f5;
  --text-secondary: #8b90a6;
  --text-tertiary: #555a70;
  --text-ghost: #353848;

  --accent: #e8a308;
  --accent-hover: #fbbf24;
  --accent-muted: rgba(232, 163, 8, 0.12);
  --accent-glow: rgba(232, 163, 8, 0.08);

  --positive: #34d399;
  --negative: #f87171;
  --info: #60a5fa;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Sora', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface-0); }
::-webkit-scrollbar-thumb { background: var(--surface-4); border-radius: 3px; }
::selection { background: rgba(232, 163, 8, 0.3); color: white; }

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

/* ── Decorative: Grid ────────────────────────────────── */
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(232, 163, 8, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 163, 8, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 40% at 50% 0%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 40% at 50% 0%, black 20%, transparent 70%);
}

/* ── Decorative: Grain ───────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ── Navigation ──────────────────────────────────────── */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 7, 9, 0.6);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon { color: var(--accent); display: flex; }

.nav-logo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  background: var(--accent);
  color: var(--surface-0);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}

.nav-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 20px rgba(232, 163, 8, 0.3);
}

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

/* Gradient orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(232, 163, 8, 0.10);
  top: -15%;
  right: -5%;
  animation: float-orb-1 30s ease-in-out infinite;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: rgba(96, 165, 250, 0.06);
  bottom: 5%;
  left: -8%;
  animation: float-orb-2 25s ease-in-out infinite;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: rgba(232, 163, 8, 0.05);
  top: 30%;
  left: 15%;
  animation: float-orb-3 22s ease-in-out infinite;
}

@keyframes float-orb-1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-40px, 30px); }
  66% { transform: translate(30px, -20px); }
}

@keyframes float-orb-2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(50px, -40px); }
  66% { transform: translate(-30px, 30px); }
}

@keyframes float-orb-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  animation: hero-fade-in 1s var(--ease-out) both;
}

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

@keyframes pulse-subtle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  animation: hero-fade-in 1s var(--ease-out) 0.1s both;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, #fde68a 50%, var(--accent) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-fade-in 1s var(--ease-out) 0.1s both, shimmer-text 6s ease-in-out infinite;
}

@keyframes shimmer-text {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.65;
  font-weight: 400;
  animation: hero-fade-in 1s var(--ease-out) 0.2s both;
}

.hero-monitor-demo {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-ghost);
  margin-bottom: 44px;
  height: 22px;
  animation: hero-fade-in 1s var(--ease-out) 0.3s both;
}

.hero-monitor-demo .typed-url {
  color: var(--text-tertiary);
  border-right: 2px solid var(--accent);
  padding-right: 2px;
  animation: blink-cursor 0.8s step-end infinite;
}

@keyframes blink-cursor {
  0%, 100% { border-color: var(--accent); }
  50% { border-color: transparent; }
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: hero-fade-in 1s var(--ease-out) 0.4s both;
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-sans);
  background: linear-gradient(180deg, #f0b429 0%, var(--accent) 100%);
  color: var(--surface-0);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 163, 8, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-sans);
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-hero-secondary:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}

/* Hero eye */
.hero-eye-wrap {
  position: relative;
  z-index: 1;
  margin-top: 72px;
  animation: hero-fade-in 1.2s var(--ease-out) 0.6s both;
}

.hero-eye-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(232, 163, 8, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: eye-breathe 5s ease-in-out infinite;
}

@keyframes eye-breathe {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-eye-svg {
  display: block;
  filter: drop-shadow(0 0 40px rgba(232, 163, 8, 0.2));
}

.hero-eye-svg .eye-iris {
  animation: iris-drift 8s ease-in-out infinite;
  transform-origin: 100px 50px;
}

@keyframes iris-drift {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
}

.hero-eye-svg .eye-shape {
  animation: eye-blink 6s ease-in-out infinite;
  transform-origin: 100px 50px;
}

@keyframes eye-blink {
  0%, 88%, 100% { transform: scaleY(1); }
  91% { transform: scaleY(0.05); }
  94% { transform: scaleY(1); }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-ghost);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: hero-fade-in 1s var(--ease-out) 1s both;
}

.scroll-arrow {
  width: 20px;
  height: 30px;
  border: 1.5px solid var(--text-ghost);
  border-radius: 10px;
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: var(--text-ghost);
  animation: scroll-bob 2s ease-in-out infinite;
}

@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* ── Trust Bar ───────────────────────────────────────── */
.trust {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 24px;
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  opacity: 0.7;
}

/* ── Section Shared ──────────────────────────────────── */
.section {
  position: relative;
  z-index: 2;
  padding: 120px 24px;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Features ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, var(--accent-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  color: var(--accent);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
}

/* ── Showcase ─────────────────────────────────────────── */
.showcase {
  background: linear-gradient(180deg, transparent 0%, rgba(232, 163, 8, 0.02) 50%, transparent 100%);
}

.showcase-card {
  margin-top: 64px;
  background: var(--surface-1);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  position: relative;
}

/* Corner brackets on showcase */
.showcase-card::before,
.showcase-card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 3;
  opacity: 0.3;
}

.showcase-card::before {
  top: 12px;
  left: 12px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.showcase-card::after {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.showcase-header {
  padding: 28px 36px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase-monitor-name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.showcase-monitor-url {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(248, 113, 113, 0.12);
  color: var(--negative);
}

.showcase-body {
  padding: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.showcase-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(var(--negative) calc(92 * 1%), var(--surface-3) calc(92 * 1%));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px -6px var(--negative);
  flex-shrink: 0;
}

.showcase-ring-inner {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--surface-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-ring-value {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.showcase-analysis h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.showcase-analysis p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.showcase-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.showcase-details li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.showcase-footer {
  padding: 20px 36px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 24px;
  align-items: center;
}

.showcase-channel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.showcase-channel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* ── Steps ────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}

/* Connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--border-default), var(--accent));
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: var(--surface-0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* ── Nav Links ────────────────────────────────────────── */
.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links .nav-link {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links .nav-link:hover {
  color: var(--text-primary);
}

/* ── Pricing ─────────────────────────────────────────── */
.pricing-section {
  background: linear-gradient(180deg, transparent 0%, rgba(232, 163, 8, 0.015) 30%, rgba(232, 163, 8, 0.015) 70%, transparent 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  align-items: start;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 36px 28px 32px;
  backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-out);
  position: relative;
  text-align: left;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.10);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
  border-color: var(--accent);
  background: rgba(232, 163, 8, 0.03);
  box-shadow: 0 0 60px rgba(232, 163, 8, 0.08);
}

.pricing-card-featured:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(232, 163, 8, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: var(--surface-0);
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card-featured .pricing-amount {
  background: linear-gradient(135deg, var(--accent) 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 15px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.pricing-feature.included {
  color: var(--text-secondary);
}

.pricing-feature.included svg {
  color: var(--positive);
  flex-shrink: 0;
}

.pricing-feature.excluded {
  color: var(--text-ghost);
}

.pricing-feature.excluded svg {
  color: var(--text-ghost);
  flex-shrink: 0;
  opacity: 0.5;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.pricing-cta-primary {
  background: linear-gradient(180deg, #f0b429 0%, var(--accent) 100%);
  color: var(--surface-0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pricing-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(232, 163, 8, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pricing-cta-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
}

.pricing-cta-outline:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

/* ── CTA Section ──────────────────────────────────────── */
.cta-section {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232, 163, 8, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  position: relative;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  position: relative;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-sans);
  background: linear-gradient(180deg, #f0b429 0%, var(--accent) 100%);
  color: var(--surface-0);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1) inset;
  position: relative;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 163, 8, 0.3), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

/* ── Footer ───────────────────────────────────────────── */
.landing-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-subtle);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-ghost);
  font-size: 13px;
}

.footer-brand svg { color: var(--accent); opacity: 0.5; }

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color 0.15s;
}

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

.footer-lang-switcher {
  background: transparent;
  border: 1px solid var(--border-default);
  border-radius: 6px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 24px 6px 10px;
  cursor: pointer;
  transition: all 0.15s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23555a70' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.footer-lang-switcher:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.footer-lang-switcher:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-muted);
}

.footer-lang-switcher option {
  background: var(--surface-2);
  color: var(--text-primary);
}

/* ── Scroll Reveal ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .steps-grid::before { display: none; }
  .showcase-body { grid-template-columns: 1fr; }
  .trust-inner { gap: 24px; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .landing-nav { padding: 0 20px; }
  .section { padding: 80px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .showcase-header, .showcase-body, .showcase-footer { padding-left: 20px; padding-right: 20px; }
  .landing-footer { flex-direction: column; gap: 16px; text-align: center; }
}
