/* ────────────────────────────────────────────────────────────────────────
   TenxyCharge — landing page styles
   Light theme · emerald-green primary · alternating feature rows
   Matches the app's light + green identity
   ──────────────────────────────────────────────────────────────────────── */

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

:root {
  /* Palette — light surfaces */
  --bg:           #fbfaf7;   /* warm off-white */
  --bg-elev:      #ffffff;
  --bg-elev-2:    #f4f5f7;
  --bg-soft:      #f0fdf4;   /* very light mint */
  --line:         rgba(15, 23, 42, 0.10);
  --line-strong:  rgba(15, 23, 42, 0.22);
  --grid-line:    rgba(15, 23, 42, 0.05);

  --text:         #0f1419;
  --text-soft:    #4b5563;
  --text-mute:    #9ca3af;

  /* Greens */
  --green:        #10b981;
  --green-strong: #059669;
  --green-dark:   #047857;
  --green-soft:   #6ee7b7;
  --teal:         #06b6d4;
  --teal-dark:    #0891b2;
  --lime:         #84cc16;

  --grad-1: linear-gradient(120deg, #10b981 0%, #06b6d4 100%);
  --grad-2: linear-gradient(135deg, #34d399 0%, #06b6d4 50%, #6366f1 100%);

  /* Fonts */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --nav-h: 70px;
  --max-w: 1200px;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::selection { background: var(--green); color: #fff; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.grad {
  background: linear-gradient(120deg, var(--green-strong), var(--teal-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── Background orbs — very subtle on light bg ─── */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}
.orb-1 { width: 540px; height: 540px; top: -160px; right: -120px; background: #10b981; opacity: 0.16; }
.orb-2 { width: 480px; height: 480px; top: 20vh;  left: -160px;  background: #06b6d4; opacity: 0.14; }
.orb-3 { width: 420px; height: 420px; top: 90vh;  right: 5vw;    background: #84cc16; opacity: 0.10; }

/* Subtle grid pattern for tech feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right,  var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.35) 80%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.35) 80%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.22);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 8px;
  transition: color 180ms ease, background 180ms ease;
}
.nav-link:hover { color: var(--text); background: rgba(15, 23, 42, 0.05); }

.nav-cta {
  padding: 10px 18px;
  background: var(--grad-1);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.28);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(16, 185, 129, 0.36); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 80px 0 120px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 620px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.32);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 220ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-1);
  color: #fff;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(16, 185, 129, 0.40); }
.btn-ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--text); background: var(--bg-elev-2); }
.btn-soon {
  margin-left: 6px;
  padding: 2px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 4px;
}

/* ─── Google Play badge (official-style) ─── */
.play-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 10px 22px 10px 18px;
  background: #000;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid #000;
  transition: transform 220ms ease, box-shadow 220ms ease;
  font-family: var(--font-sans);
}
.play-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}
.play-badge .play-icon { flex-shrink: 0; }
.play-badge .play-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 3px;
}
.play-badge .play-line-1 {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.92;
}
.play-badge .play-line-2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
/* "SOON" chip overlaid on the corner */
.play-badge .play-soon {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 3px 9px;
  background: var(--grad-1);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.36);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--green-strong), var(--teal-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.meta-divide {
  width: 1px;
  height: 32px;
  background: var(--line-strong);
}

/* ═══════════════════════════════════════════════════════════════════════
   SCREENSHOT IMAGES — real app screenshots replacing CSS mockups
   ═══════════════════════════════════════════════════════════════════════ */
.feature-screenshot {
  max-width: 300px;
  width: 100%;
  max-width: min(300px, 100%);
  height: auto;
  display: block;
}
.feature-screenshot-hero {
  max-width: min(500px, 100%);
}
.feature-screenshot-narrow {
  max-width: min(250px, 100%);
}

/* ═══════════════════════════════════════════════════════════════════════
   PHONE MOCKUP — dark bezel, light screen (matches the app)
   ═══════════════════════════════════════════════════════════════════════ */
.hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.phone {
  position: relative;
  width: 290px;
  aspect-ratio: 9 / 19.2;
  background: #1a1a25;
  border-radius: 42px;
  padding: 8px;
  box-shadow:
    0 0 0 4px #2a2a38,
    0 30px 70px rgba(16, 185, 129, 0.22),
    0 10px 30px rgba(15, 23, 42, 0.18);
}
.phone-tilt { transform: rotate(-3deg); }
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(170deg, #f0fdfa 0%, #ffffff 70%);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  padding: 56px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.status-bar {
  position: absolute;
  top: 24px;
  left: 0; right: 0;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.78);
}
.status-icons { letter-spacing: 0.15em; }

.screen-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ── Hero phone content ── */
.phone-screen-hero {
  align-items: center;
  justify-content: center;
  padding-top: 56px;
}
.hero-app-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}
.hero-app-icon img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.hero-app-text { display: flex; flex-direction: column; gap: 2px; }
.hero-app-name { font-size: 12px; font-weight: 600; color: var(--text); }
.hero-app-msg  { font-size: 11px; color: var(--text-soft); line-height: 1.3; }

.hero-app-pulse {
  position: relative;
  margin: 28px auto 0;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--green);
  border-radius: 50%;
  opacity: 0.5;
  animation: ring 2.4s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(0.5); opacity: 0; }
  50%  { opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.pulse-core {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.42);
}
.hero-app-btn {
  margin-top: auto;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.04);
  border-radius: 10px;
}

/* ── Voice pack screen ── */
.vp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vp-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 10px;
  font-size: 12px;
}
.vp-item.is-active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.10));
  border-color: rgba(16, 185, 129, 0.4);
}
.vp-name { color: var(--text); font-weight: 500; }
.vp-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 2px 6px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 4px;
}
.vp-item.is-active .vp-meta { color: var(--green-dark); border-color: var(--green); }

/* ── Language list ── */
.lang-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 10px;
  font-size: 12px;
  color: var(--text);
}
.lang-item.is-active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.10));
}
.lang-flag { font-size: 18px; }
.lang-check {
  margin-left: auto;
  color: var(--green-strong);
  font-weight: 700;
}

/* ── Triggers ── */
.trig-card {
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 10px;
}
.trig-card.trig-active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.08));
  border-color: rgba(16, 185, 129, 0.32);
}
.trig-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.trig-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.trig-meta {
  margin-top: 4px;
  font-size: 10.5px;
  color: var(--text-soft);
  line-height: 1.4;
}
.trig-toggle {
  width: 28px;
  height: 16px;
  background: rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  position: relative;
}
.trig-toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  transition: transform 200ms ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.trig-toggle.on { background: var(--grad-1); }
.trig-toggle.on::after { transform: translateX(12px); }

/* ── Sliders ── */
.slider-block { display: flex; flex-direction: column; gap: 6px; }
.slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
}
.slider-val {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-strong);
}
.slider-track {
  height: 6px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.slider-fill {
  height: 100%;
  background: var(--grad-1);
  border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════════════════════
   FEATURES — alternating left/right
   ═══════════════════════════════════════════════════════════════════════ */
.features {
  padding: 60px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-reverse .feature-visual { order: 2; }

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-text { max-width: 480px; }
.feature-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--green-strong);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--text);
  margin-bottom: 20px;
}
.feature-desc {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 24px;
}
.feature-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-points li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-top: 1px dashed var(--line);
  font-size: 15px;
  color: var(--text);
}
.feature-points li:first-child { border-top: none; padding-top: 4px; }
.feature-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad-1);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}
.feature-points li:first-child::before { top: 8px; }

/* ═══════════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════════ */
.pricing {
  padding: 100px 0 120px;
  border-top: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .feature-tag { display: inline-block; }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--text);
  margin: 6px 0 18px;
}
.section-sub {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.6;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1), border-color 280ms ease, box-shadow 280ms ease;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 24px 60px rgba(16, 185, 129, 0.10);
}

.price-card-featured {
  background:
    linear-gradient(165deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.04)),
    var(--bg-elev);
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 24px 60px rgba(16, 185, 129, 0.16);
}
.price-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  background: var(--grad-1);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.36);
}

.price-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.price-meta {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 22px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
}
.price-amount .amt {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--green-strong), var(--teal-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.price-amount .per { color: var(--text-mute); font-size: 14px; }

.price-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.price-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text);
}
.price-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-strong);
  font-weight: 700;
}

.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  background: var(--bg-elev);
  transition: all 200ms ease;
}
.price-cta:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.price-cta-featured {
  background: var(--grad-1);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.30);
}
.price-cta-featured:hover {
  background: var(--grad-1);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.38);
}

.price-note {
  margin-top: 32px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-mute);
  font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════════════ */
.cta-banner {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.10), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.08), transparent 55%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-text { max-width: 600px; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--text);
  margin-bottom: 18px;
}
.cta-sub {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
}
.cta-icon {
  position: relative;
  z-index: 2;
  width: 130px;
  height: 130px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.32);
}
.cta-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 200px; height: 200px;
  margin: -100px 0 0 -100px;
  border: 2px solid var(--green);
  border-radius: 50%;
  opacity: 0.4;
  animation: ring 3s ease-out infinite;
}
.cta-ring-2 { animation-delay: 1.5s; border-color: var(--teal); }

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--bg-elev);
  font-size: 14px;
  color: var(--text-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-brand-col { gap: 18px; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.footer-brand img { width: 28px; height: 28px; border-radius: 7px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.footer-tagline {
  font-size: 13.5px;
  color: var(--text-soft);
  max-width: 260px;
  line-height: 1.55;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.footer-nav a {
  color: var(--text-soft);
  transition: color 180ms ease, transform 180ms ease;
}
.footer-nav a:hover { color: var(--green-strong); transform: translateX(2px); display: inline-block; }
.footer-nav a[aria-current="page"] { color: var(--text); font-weight: 500; }

.footer-social {
  display: inline-flex;
  gap: 10px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text-soft);
  background: var(--bg);
  transition: all 200ms ease;
}
.social-link:hover {
  color: #fff;
  background: var(--grad-1);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-mute);
}

/* ═══════════════════════════════════════════════════════════════════════
   PAGE HERO (used by privacy / terms / support)
   ═══════════════════════════════════════════════════════════════════════ */
.page-hero {
  padding: clamp(70px, 10vw, 120px) 0 clamp(40px, 6vw, 72px);
  position: relative;
}
.page-hero .container { position: relative; z-index: 1; }
.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 14px 0 16px;
}
.page-lede {
  max-width: 56ch;
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.55;
}
.legal-updated {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}

.legal {
  padding: clamp(48px, 6vw, 80px) 0 clamp(80px, 10vw, 120px);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-soft);
}
.legal .container { max-width: 760px; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.2;
  margin: 36px 0 12px;
  color: var(--text);
}
.legal p { margin-bottom: 16px; }
.legal ul, .legal ol { margin: 0 0 18px; padding-left: 22px; }
.legal ul li, .legal ol li { margin-bottom: 8px; }
.legal a {
  color: var(--green-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}
.legal a:hover { color: var(--teal-dark); }
.legal strong { color: var(--text); font-weight: 600; }
.legal code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  padding: 1px 6px;
  background: var(--bg-elev-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
}
.legal em { font-style: italic; color: var(--text); }
.legal-callout {
  margin-bottom: 36px;
  padding: 18px 22px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.24);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--text-soft);
}
.legal-callout strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-phone { order: -1; }
  .hero-text { max-width: none; text-align: center; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .feature, .feature-reverse { grid-template-columns: 1fr; gap: 48px; }
  .feature-reverse .feature-visual { order: 0; }
  .feature-text { text-align: center; }
  .feature-tags { justify-content: center; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-text { max-width: none; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }
  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-link { padding: 14px; font-size: 16px; border-radius: 8px; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; margin-left: auto; }
  .hero { padding: 56px 0 80px; }
  .hero-meta { gap: 16px; }
  .meta-divide { display: none; }
  .features { gap: 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .feature-screenshot-hero { max-width: 340px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .phone { width: 240px; }
  .feature-points li { padding-left: 26px; }
  .feature-screenshot { max-width: 240px; }
  .feature-screenshot-hero { max-width: 280px; }
  .feature-screenshot-narrow { max-width: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-ring, .cta-ring, .eyebrow-dot { animation: none; }
}
