/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #00C9B1;
  --teal-dark: #00A896;
  --teal-light: #00E5CC;
  --teal-glow: rgba(0, 201, 177, 0.25);
  --teal-subtle: rgba(0, 201, 177, 0.08);
  --bg: #060D12;
  --bg2: #0B1520;
  --bg3: #0F1E2B;
  --card: #0E1C28;
  --card-border: rgba(0, 201, 177, 0.15);
  --text: #E8F4F2;
  --text-muted: #7A9BA8;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
}

[data-theme="light"] {
  --bg: #F0FAFA;
  --bg2: #E2F5F3;
  --bg3: #D0EEEB;
  --card: #ffffff;
  --card-border: rgba(0, 168, 150, 0.2);
  --text: #0B2A26;
  --text-muted: #3D7A72;
  --white: #0B2A26;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
h5 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; }
p { color: var(--text-muted); font-size: 1rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--teal-light), var(--teal), #00A896);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #000;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--teal-light), var(--teal)); transform: translateY(-1px); box-shadow: 0 8px 24px var(--teal-glow); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { color: var(--teal); }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal-subtle); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  background: var(--teal-subtle);
  color: var(--teal);
  border: 1px solid var(--card-border);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-subtle);
  border: 1px solid var(--card-border);
  color: var(--teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--teal); color: #000; }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }

/* light theme nav override */
[data-theme="light"] .nav { background: rgba(240,250,250,0.9); }
[data-theme="light"] .hero-bg-glow { background: radial-gradient(ellipse, rgba(0,201,177,0.08) 0%, transparent 70%); }
[data-theme="light"] .btn-ghost { color: var(--text); }
[data-theme="light"] .gradient-text {
  background: linear-gradient(135deg, #00A896, var(--teal), var(--teal-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="light"] .ex-input { color: var(--text); }
[data-theme="light"] .ex-output { color: var(--teal-dark); }
[data-theme="light"] .waitlist-input { color: var(--text); background: var(--bg2); }
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 13, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 201, 177, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--teal); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta { display: flex; gap: 10px; margin-left: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 12px;
  border-top: 1px solid var(--card-border);
}
.mobile-menu a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,201,177,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 20px; }
.hero-text h1 { margin-top: 4px; }
.hero-text p { font-size: 1.1rem; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-currencies { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-currencies span { font-size: 0.82rem; color: var(--text-muted); }
.currency-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  background: var(--teal-subtle);
  color: var(--teal);
  border: 1px solid var(--card-border);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.pill.active { background: var(--teal); color: #000; }

/* Phone mockup */
.hero-mockup { display: flex; justify-content: center; align-items: center; }
.phone-wrap { position: relative; width: 100%; }
.phone-glow {
  position: absolute;
  inset: -80px;
  background: radial-gradient(ellipse, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.phone-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 700px;
  object-fit: contain;
  border-radius: 40px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 48px 96px rgba(0,201,177,0.3));
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; padding: 0 32px; }
.stat-num { display: block; font-size: 1.8rem; font-weight: 800; color: var(--teal); }
.stat-label { font-size: 0.82rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--card-border); }

/* ===== SECTION SHARED ===== */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-block { padding: 100px 0; }
.section-alt { background: var(--bg2); }

/* ===== FEATURES GRID ===== */
.features-overview { padding: 100px 0; background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,201,177,0.1); }
.feature-card--teal { border-color: var(--teal); background: linear-gradient(135deg, rgba(0,201,177,0.08), var(--card)); }
.feature-card--coming { opacity: 0.85; }
.feature-icon { font-size: 2rem; }
.feature-card h3 { color: var(--white); }
.feature-card p { font-size: 0.9rem; }
.feature-link { color: var(--teal); font-size: 0.85rem; font-weight: 600; text-decoration: none; margin-top: auto; }
.feature-link:hover { text-decoration: underline; }
.coming-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,180,0,0.15);
  color: #FFB400;
  border: 1px solid rgba(255,180,0,0.3);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ===== SPLIT LAYOUT ===== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-layout--reverse .split-text { order: 2; }
.split-layout--reverse .split-visual { order: 1; }
.split-text { display: flex; flex-direction: column; gap: 20px; }
.split-text h2 { color: var(--white); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { font-size: 0.95rem; color: var(--text-muted); }
.split-visual { display: flex; justify-content: center; }

/* ===== EXCHANGE CARD ===== */
.exchange-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  position: relative;
}
.ex-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.ex-title { font-size: 1rem; font-weight: 700; color: var(--white); }
.ex-fee-badge { background: rgba(0,201,177,0.12); color: var(--teal); border: 1px solid var(--card-border); padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }

.ex-block { background: var(--bg3); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: 14px 16px; }
.ex-block-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.ex-row { display: flex; align-items: center; gap: 10px; }

.ex-coin-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 7px 12px;
  color: var(--white);
  font-weight: 700; font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
}
.ex-coin-btn:hover { border-color: var(--teal); }
.ex-coin-btn--fiat { color: var(--teal); }
.ex-coin-icon { font-size: 1rem; }
.ex-coin-name { font-size: 0.88rem; }

.ex-input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: right;
  width: 100%;
  font-family: 'Inter', sans-serif;
  min-width: 0;
}
.ex-input::placeholder { color: var(--text-muted); font-weight: 400; font-size: 0.88rem; }
.ex-input::-webkit-outer-spin-button,
.ex-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.ex-nlp-hint {
  font-size: 0.72rem;
  color: var(--teal);
  margin-top: 6px;
  min-height: 16px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s;
}
.ex-nlp-hint.visible { opacity: 1; }
.ex-output { color: var(--teal); }
.ex-balance { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; }

.ex-flip-wrap { display: flex; align-items: center; gap: 10px; margin: 10px 0; }
.ex-divider-line { flex: 1; height: 1px; background: var(--card-border); }
.ex-flip-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-subtle);
  border: 1px solid var(--card-border);
  color: var(--teal);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.ex-flip-btn:hover { background: var(--teal); color: #000; transform: rotate(180deg); }
.ex-flip-btn.spinning { transform: rotate(180deg); }

.ex-rate-row { display: flex; align-items: center; justify-content: space-between; margin: 14px 0 16px; }
.ex-rate { font-size: 0.78rem; color: var(--text-muted); }
.ex-countdown { font-size: 0.75rem; color: var(--teal); font-weight: 600; background: var(--teal-subtle); padding: 3px 10px; border-radius: 50px; }

.ex-convert-btn { width: 100%; justify-content: center; padding: 14px; font-size: 0.95rem; }

/* Dropdowns */
.ex-dropdown {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px;
  z-index: 10;
  display: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.ex-dropdown.open { display: block; }
.ex-dropdown-title { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.ex-option {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s;
}
.ex-option:hover { background: var(--teal-subtle); }
.ex-opt-icon { width: 32px; height: 32px; background: var(--bg3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; font-weight: 700; color: var(--teal); flex-shrink: 0; }
.ex-opt-name { flex: 1; font-size: 0.9rem; color: var(--white); font-weight: 500; }
.ex-opt-code { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

/* ===== BROWSER CARD ===== */
.browser-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.browser-bar {
  background: var(--bg3);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--card-border);
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--card-border); }
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #28CA41; }
.browser-url { flex: 1; background: var(--bg); border-radius: 6px; padding: 4px 10px; font-size: 0.78rem; color: var(--text-muted); }
.browser-hx-badge { background: var(--teal); color: #000; font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; white-space: nowrap; }
.browser-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.browser-product { display: flex; align-items: center; gap: 14px; background: var(--bg3); border-radius: var(--radius-sm); padding: 14px; }
.product-img { font-size: 2.5rem; }
.product-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.product-price { color: var(--teal); font-weight: 700; font-size: 1rem; margin-top: 4px; }
.browser-checkout { background: var(--bg3); border-radius: var(--radius-sm); padding: 14px; }
.checkout-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.checkout-balance { font-size: 0.85rem; color: var(--teal); font-weight: 600; margin-top: 6px; }

.browser-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.browser-mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.browser-mockup-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 28px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 32px 64px rgba(0,201,177,0.25));
}

/* ===== DAPP CARD ===== */
.dapp-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dapp-header { display: flex; align-items: center; justify-content: space-between; }
.dapp-title { font-weight: 700; color: var(--white); font-size: 1rem; }
.dapp-step { display: flex; align-items: flex-start; gap: 14px; }
.step-num {
  min-width: 28px; height: 28px;
  background: var(--teal-subtle);
  border: 1px solid var(--card-border);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
}
.step-text { font-size: 0.88rem; color: var(--text-muted); padding-top: 4px; }
.dapp-payout { display: flex; gap: 8px; flex-wrap: wrap; padding-left: 42px; }

/* ===== P2P SECTION ===== */
.p2p-section { text-align: center; }
.p2p-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.p2p-step {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  max-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p2p-step h4 { color: var(--white); }
.p2p-step p { font-size: 0.88rem; }
.p2p-icon { font-size: 2.2rem; }
.p2p-arrow { font-size: 1.8rem; color: var(--teal); padding: 0 16px; }
.coming-badge-inline {
  background: rgba(255,180,0,0.12);
  color: #FFB400;
  border: 1px solid rgba(255,180,0,0.25);
}
.p2p-waitlist { max-width: 480px; margin: 0 auto; }
.p2p-waitlist p { margin-bottom: 16px; font-size: 0.95rem; }
.waitlist-form { display: flex; gap: 10px; }
.waitlist-input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 12px 20px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input:focus { border-color: var(--teal); }
.waitlist-input::placeholder { color: var(--text-muted); }

/* ===== APP SHOWCASE ===== */
.app-showcase { padding: 100px 0; text-align: center; }
.showcase-wrap { position: relative; display: block; width: 100%; margin: 0 auto 40px; }
.showcase-glow {
  position: absolute;
  inset: -80px;
  background: radial-gradient(ellipse, var(--teal-glow) 0%, transparent 65%);
  pointer-events: none;
}
.showcase-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 800px;
  object-fit: contain;
  border-radius: 44px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 56px 112px rgba(0,201,177,0.35));
}
.app-download { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.2s;
}
.store-btn:hover { border-color: var(--teal); box-shadow: 0 8px 24px var(--teal-glow); }
.store-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.store-btn small { display: block; font-size: 0.72rem; color: var(--text-muted); }
.store-btn strong { font-size: 0.95rem; }

/* ===== TRUST SECTION ===== */
.trust-section { padding: 80px 0; background: var(--bg2); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}
.trust-icon { font-size: 2rem; margin-bottom: 12px; }
.trust-item h4 { color: var(--white); margin-bottom: 8px; }
.trust-item p { font-size: 0.88rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,201,177,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta-inner h2 { color: var(--white); }
.cta-inner p { max-width: 480px; font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--card-border); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand p { font-size: 0.88rem; }
.social-links { display: flex; gap: 12px; margin-top: 4px; }
.social-links a {
  width: 36px; height: 36px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.social-links a:hover { border-color: var(--teal); color: var(--teal); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { align-items: center; }
  .hero-mockup { order: -1; }
  .phone-img { min-height: 400px; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat-divider { width: 80%; height: 1px; }
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-layout--reverse .split-text { order: 0; }
  .split-layout--reverse .split-visual { order: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .p2p-steps { flex-direction: column; align-items: center; }
  .p2p-arrow { transform: rotate(90deg); padding: 8px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .waitlist-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat { padding: 0 16px; }
}
