/* ============================================
   LEDGER LIGHT — Marketing Site Styles
   Dark premium design system
   ============================================ */

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

:root {
  --green:   #2DBF6A;
  --green-dim: #1a8f4a;
  --red:     #E85555;
  --yellow:  #F0A500;
  --blue:    #4F8EF7;
  --purple:  #9B6DFF;
  --bg:      #0E0E0E;
  --bg2:     #161616;
  --bg3:     #1E1E1E;
  --surface: #242424;
  --border:  rgba(255,255,255,0.07);
  --text:    #EAEAE6;
  --text2:   #898980;
  --text3:   #5A5A54;
  --radius:  16px;
  --radius-sm: 10px;
  --shadow:  0 24px 64px rgba(0,0,0,0.55);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILS ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, #7FFFC4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(45,191,106,0.1);
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(45,191,106,0.25);
  margin-bottom: 20px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.section-header p { font-size: 18px; color: var(--text2); max-width: 560px; margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary:hover { background: #38d97a; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(45,191,106,0.4); }
.btn-primary.full { width: 100%; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-ghost-sm {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(45,191,106,0.3);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost-sm:hover { background: rgba(45,191,106,0.08); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.btn-outline.full { width: 100%; }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, backdrop-filter 0.3s;
}
#navbar.scrolled {
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800;
  color: var(--text);
  text-decoration: none;
}
.logo-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--green) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 14px;
}
.nav-cta:hover { background: #38d97a !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 0 20px;
  border-top: 1px solid var(--border);
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(20px);
}
.mobile-link { padding: 12px 0; color: var(--text2); text-decoration: none; font-weight: 500; }
.mobile-cta { color: var(--green) !important; font-weight: 700; }
.mobile-menu.open { display: flex; }

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

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 40px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.orb-1 { width: 600px; height: 600px; background: var(--green); top: -200px; right: -150px; opacity: 0.15; }
.orb-2 { width: 400px; height: 400px; background: var(--blue); bottom: -100px; left: -100px; opacity: 0.12; }
.orb-3 { width: 300px; height: 300px; background: var(--purple); top: 40%; left: 30%; opacity: 0.08; }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { max-width: 520px; }
.badge {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: var(--green);
  background: rgba(45,191,106,0.1);
  border: 1px solid rgba(45,191,106,0.25);
  padding: 6px 14px; border-radius: 99px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text2);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-sub em { color: var(--text); font-style: normal; font-weight: 600; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-note { font-size: 13px; color: var(--text3); }

/* Phone mockup */
.hero-phone { position: relative; display: flex; justify-content: center; }
.phone-frame {
  width: 260px;
  background: #1A1A1A;
  border-radius: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 48px 16px 32px;
  position: relative;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.04);
  animation: phoneFloat 4s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.phone-notch {
  position: absolute; top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #0E0E0E;
  border-radius: 13px;
}
.phone-screen { display: flex; flex-direction: column; gap: 12px; }
.app-header { display: flex; justify-content: space-between; align-items: center; }
.app-title-small { font-size: 16px; font-weight: 800; }
.app-settings-icon { font-size: 18px; opacity: 0.7; }

/* Score Card in Phone */
.score-card {
  background: #1E1E1E;
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.score-label { font-size: 11px; color: var(--text2); margin-bottom: 10px; }
.score-ring-wrap {
  position: relative; display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.score-ring { width: 100px; height: 100px; transform: rotate(-90deg); }
.score-ring.large { width: 140px; height: 140px; }
.ring-bg { fill: none; stroke: #2A2A2A; stroke-width: 8; }
.ring-fill {
  fill: none; stroke: var(--green); stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 81.7; /* 75% = 326.7 * 0.25 */
  transition: stroke-dashoffset 1s ease, stroke 0.5s ease;
}
.score-ring.large .ring-bg { stroke-width: 10; }
.score-ring.large .ring-fill { stroke-width: 10; stroke-dasharray: 427.3; stroke-dashoffset: 106.8; }
.score-center {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
}
.score-center.large { }
.score-number { font-size: 28px; font-weight: 900; color: var(--text); }
.score-number.large { font-size: 40px; }
.score-status { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.score-status.green { color: var(--green); }
.score-status.yellow { color: var(--yellow); }
.score-status.red { color: var(--red); }
.score-msg { font-size: 11px; color: var(--text2); }

.app-recent-header { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; }
.see-all { color: var(--green); font-size: 11px; }
.app-transactions { display: flex; flex-direction: column; gap: 6px; }
.tx-item { display: flex; align-items: center; gap: 8px; background: #1E1E1E; border-radius: 10px; padding: 8px 10px; }
.tx-emoji { font-size: 20px; }
.tx-info { display: flex; flex-direction: column; flex: 1; }
.tx-info span:first-child { font-size: 12px; font-weight: 600; }
.tx-cat { font-size: 10px; color: var(--text2); }
.tx-amount { font-size: 13px; font-weight: 700; color: var(--red); }
.app-fab {
  align-self: flex-end;
  width: 44px; height: 44px;
  background: var(--green);
  color: #000;
  font-size: 24px; font-weight: 300;
  border: none; border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(45,191,106,0.5);
  transition: transform 0.2s;
}
.app-fab:hover { transform: scale(1.1); }
.phone-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 180px;
  background: var(--green);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  pointer-events: none;
}

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text3);
  z-index: 1;
  animation: fadeInUp 1s ease 2s both;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text3);
  border-bottom: 2px solid var(--text3);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: rotate(45deg) translate(0,0); } 50% { transform: rotate(45deg) translate(3px,3px); } }

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--green); }
.stat-label { font-size: 13px; color: var(--text2); }

/* ---- DEMO SECTION ---- */
.demo-section { padding: 120px 0; }
.demo-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.demo-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.demo-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 28px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.amount-input-wrap {
  display: flex; align-items: center;
  background: var(--bg3); border: 1px solid var(--border); border-radius: 12px;
  padding: 0 16px; gap: 8px;
  transition: border-color 0.2s;
}
.amount-input-wrap:focus-within { border-color: var(--green); }
.dollar { font-size: 20px; font-weight: 700; color: var(--text2); }
.amount-input-wrap input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 28px; font-weight: 800;
  padding: 14px 0; font-family: 'Inter', sans-serif;
}
input::placeholder { color: var(--text3); }
.emotion-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.emotion-btn {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 4px;
  color: var(--text2); font-size: 11px; font-weight: 600;
  text-align: center; cursor: pointer; transition: all 0.2s;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: 'Inter', sans-serif;
}
.emotion-btn:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.emotion-btn.selected { border-color: var(--green); background: rgba(45,191,106,0.12); color: var(--green); }
.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.cat-btn {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 8px;
  color: var(--text2); font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.cat-btn:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.cat-btn.selected { border-color: var(--green); background: rgba(45,191,106,0.12); color: var(--green); }
.btn-ghost-sm.full { width: 100%; margin-top: 10px; text-align: center; justify-content: center; }

/* Demo result */
.demo-phone-mini {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 90px;
}
.demo-score-section { text-align: center; margin-bottom: 24px; }
.score-ring-wrap.large { margin: 16px auto; display: flex; align-items: center; justify-content: center; }
.demo-tx-list { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--border); padding-top: 20px; }
.demo-tx-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border-radius: 10px; padding: 10px 14px;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
.demo-tx-emoji { font-size: 22px; }
.demo-tx-details { flex: 1; }
.demo-tx-name { font-size: 14px; font-weight: 600; }
.demo-tx-meta { font-size: 11px; color: var(--text2); }
.demo-tx-amount { font-size: 15px; font-weight: 700; color: var(--red); }
.demo-empty { color: var(--text3); font-size: 14px; text-align: center; padding: 20px 0; }
.score-mini-demo { margin-top: 20px; }
.score-mini-bar { height: 8px; background: var(--bg3); border-radius: 99px; overflow: hidden; }
.score-mini-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 50%, var(--green) 100%);
  border-radius: 99px;
  transition: width 0.5s ease;
}
.score-mini-labels { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; color: var(--text2); }
.score-live-val { font-weight: 700; color: var(--text); }
.green-text { color: var(--green); }
.red-text { color: var(--red); }

/* ---- HOW IT WORKS ---- */
.how-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.step-card:hover { border-color: rgba(45,191,106,0.3); transform: translateY(-4px); }
.step-num { font-size: 11px; font-weight: 800; color: var(--text3); letter-spacing: 0.1em; margin-bottom: 16px; }
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ---- FEATURES ---- */
.features-section { padding: 120px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
.feature-card.big { grid-column: span 2; }
.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-icon-wrap.green  { background: rgba(45,191,106,0.1); }
.feature-icon-wrap.yellow { background: rgba(240,165,0,0.1); }
.feature-icon-wrap.blue   { background: rgba(79,142,247,0.1); }
.feature-icon-wrap.red    { background: rgba(232,85,85,0.1); }
.feature-icon-wrap.purple { background: rgba(155,109,255,0.1); }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text2); line-height: 1.65; }
.feature-card p em { color: var(--text); font-style: normal; font-weight: 600; }

/* ---- PRIVACY ---- */
.privacy-section { padding: 100px 0; }
.privacy-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.privacy-left h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
.privacy-left p { color: var(--text2); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.privacy-list { display: flex; flex-direction: column; gap: 14px; }
.privacy-item { display: flex; align-items: center; gap: 14px; font-size: 15px; }
.check-icon {
  width: 28px; height: 28px;
  background: rgba(45,191,106,0.12);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}

/* ---- PRICING ---- */
.pricing-section { padding: 120px 0; background: var(--bg2); border-top: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto 80px; }
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--green);
  background: linear-gradient(135deg, rgba(45,191,106,0.05), var(--bg));
  box-shadow: 0 0 0 1px rgba(45,191,106,0.2), 0 24px 64px rgba(45,191,106,0.1);
}
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #000;
  font-size: 11px; font-weight: 800;
  padding: 5px 16px; border-radius: 99px;
  white-space: nowrap; letter-spacing: 0.05em;
}
.plan-name { font-size: 14px; font-weight: 700; color: var(--text2); margin-bottom: 8px; letter-spacing: 0.06em; text-transform: uppercase; }
.plan-price { font-size: 3rem; font-weight: 900; margin-bottom: 4px; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--text2); }
.plan-alt { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 14px; color: var(--text2); }
.plan-features li.na { color: var(--text3); }
.plan-features .pricing-card.featured li { color: var(--text); }
.plan-note { font-size: 11px; color: var(--text3); margin-top: 12px; text-align: center; line-height: 1.5; }

/* VS Table */
.vs-section { max-width: 800px; margin: 0 auto; }
.vs-section h3 { text-align: center; font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.vs-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.vs-header, .vs-row { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr; gap: 0; }
.vs-header { background: var(--bg3); padding: 14px 20px; font-size: 13px; font-weight: 700; color: var(--text2); }
.vs-header .vs-us { color: var(--green); }
.vs-row { padding: 14px 20px; border-top: 1px solid var(--border); font-size: 14px; align-items: center; }
.vs-row:hover { background: rgba(255,255,255,0.02); }
.vs-us { font-weight: 700; }

/* ---- WAITLIST ---- */
.waitlist-section { padding: 120px 0; }
.waitlist-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.orb-wl-1 { width: 400px; height: 400px; background: var(--green); top: -200px; right: -100px; opacity: 0.1; }
.orb-wl-2 { width: 300px; height: 300px; background: var(--blue); bottom: -150px; left: -80px; opacity: 0.08; }
.waitlist-content { position: relative; z-index: 1; }
.waitlist-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.waitlist-content p { font-size: 17px; color: var(--text2); max-width: 500px; margin: 0 auto 36px; }
.waitlist-form { max-width: 480px; margin: 0 auto; }
.input-row { display: flex; gap: 12px; }
.input-row input {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.input-row input:focus { border-color: var(--green); }
.form-msg { font-size: 14px; margin-top: 12px; min-height: 20px; color: var(--green); }
.form-msg.error { color: var(--red); }
.waitlist-note { font-size: 12px; color: var(--text3); margin-top: 16px; }

/* ---- FOOTER ---- */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-brand { max-width: 240px; }
.footer-brand p { font-size: 14px; color: var(--text2); margin-top: 12px; }
.footer-copy { font-size: 12px; color: var(--text3); margin-top: 20px; line-height: 1.6; }
.footer-copy a { color: var(--text2); text-decoration: none; }
.footer-copy a:hover { color: var(--green); }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text2); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-phone { order: -1; }
  .phone-frame { width: 220px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .demo-layout { grid-template-columns: 1fr; }
  .demo-phone-mini { position: static; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.big { grid-column: span 1; }
  .privacy-card { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .waitlist-card { padding: 48px 24px; }
  .input-row { flex-direction: column; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 40px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .vs-header, .vs-row { grid-template-columns: 2fr 1.2fr 1fr 1fr; font-size: 12px; padding: 12px 14px; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .emotion-grid { grid-template-columns: repeat(3,1fr); }
  .vs-header span:last-child, .vs-row span:last-child { display: none; }
  .vs-header, .vs-row { grid-template-columns: 2fr 1.2fr 1fr; }
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
