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

:root {
  --bg: #fafafa;
  --bg-alt: #f0f0f0;
  --fg: #111111;
  --fg-muted: #666666;
  --fg-subtle: #999999;
  --accent: #10b981;
  --accent-soft: rgba(16, 185, 129, 0.08);
  --accent-glow: rgba(16, 185, 129, 0.15);
  --border: rgba(0, 0, 0, 0.06);
  --border-hover: rgba(0, 0, 0, 0.12);
  --white: #ffffff;
  --font-sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --max-w: 1120px;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--fg);
  border-radius: 10px;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.02em;
}

.logo-type {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--fg);
  letter-spacing: -0.03em;
}

nav { display: flex; align-items: center; gap: 2rem; }

nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

nav a:hover { color: var(--fg); }

.nav-cta {
  display: inline-flex;
  padding: 0.5rem 1.125rem;
  background: var(--fg);
  color: var(--white) !important;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-cta-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--fg);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border-hover);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-secondary:hover { border-color: var(--fg); }

/* Phone mockups */
.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}

.phone {
  background: var(--white);
  border-radius: 36px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.06),
    0 24px 48px rgba(0,0,0,0.06);
  position: absolute;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.phone-main {
  width: 260px;
  height: 520px;
  z-index: 3;
}

.phone-left {
  width: 220px;
  height: 440px;
  z-index: 2;
  transform: translateX(-160px) translateY(20px) rotate(-6deg);
  opacity: 0.9;
}

.phone-right {
  width: 220px;
  height: 440px;
  z-index: 2;
  transform: translateX(160px) translateY(20px) rotate(6deg);
  opacity: 0.9;
}

.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  overflow: hidden;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  background: var(--white);
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* Screen: Home Feed */
.screen-home { background: var(--white); padding: 2.25rem 1rem 0; }
.screen-home .sh-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.sh-greeting { font-size: 0.875rem; font-weight: 700; letter-spacing: -0.02em; }
.sh-icons { display: flex; gap: 0.5rem; }
.sh-icon {
  width: 28px;
  height: 28px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
}

.sh-ai-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  background: var(--bg);
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.625rem;
  color: var(--fg-muted);
}
.sh-ai-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sh-ai-dot img { width: 100%; height: 100%; object-fit: contain; }

.sh-card {
  background: #111;
  border-radius: 14px;
  padding: 1rem;
  color: white;
  margin-bottom: 0.875rem;
}
.sh-card-label { font-size: 0.5rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.08em; }
.sh-card-amount { font-size: 1.375rem; font-weight: 700; letter-spacing: -0.03em; margin: 0.25rem 0; }
.sh-card-sub { font-size: 0.5rem; opacity: 0.5; }

.sh-discovery-title { font-size: 0.6875rem; font-weight: 600; margin-bottom: 0.5rem; }
.sh-discovery-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.sh-discovery-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #818cf8);
  flex-shrink: 0;
}
.sh-discovery-text { font-size: 0.5625rem; line-height: 1.4; }
.sh-discovery-text strong { font-weight: 600; }
.sh-discovery-time { font-size: 0.5rem; color: var(--fg-subtle); margin-top: 0.125rem; }

/* Screen: Matchup */
.screen-matchup { background: var(--white); padding: 2.25rem 0.875rem 0; }
.sm-header {
  text-align: center;
  margin-bottom: 1rem;
}
.sm-title { font-size: 0.75rem; font-weight: 700; letter-spacing: -0.02em; }
.sm-sub { font-size: 0.5625rem; color: var(--fg-subtle); }

.sm-vs-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.sm-player {
  text-align: center;
}
.sm-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 auto 0.375rem;
}
.sm-avatar-1 { background: url(../img/you.png) center/cover; }
.sm-avatar-2 { background: url(../img/sara.png) center/cover; }
.sm-name { font-size: 0.5625rem; font-weight: 600; }
.sm-vs {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--fg-subtle);
  font-family: var(--font-mono);
}

.sm-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: var(--bg);
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
.sm-stat-label { font-size: 0.5rem; color: var(--fg-subtle); text-transform: uppercase; letter-spacing: 0.06em; }
.sm-stat-values {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.sm-stat-win { color: var(--accent); }
.sm-merchant-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border);
}
.sm-merchant-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
}
.sm-merchant-name { font-size: 0.5625rem; font-weight: 500; flex: 1; }
.sm-merchant-count { font-size: 0.5625rem; font-weight: 700; font-family: var(--font-mono); }

/* Screen: Orbit (Social) */
.screen-orbit { background: var(--white); padding: 2.25rem 0.875rem 0; }
.so-header { font-size: 0.875rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.02em; }
.so-groups-scroll {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.so-group {
  text-align: center;
  flex-shrink: 0;
}
.so-group-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin: 0 auto 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  overflow: hidden;
}
.so-group-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.so-group-1 { background: none; }
.so-group-2 { background: none; }
.so-group-3 { background: none; }
.so-group-name { font-size: 0.5rem; font-weight: 600; color: var(--fg-muted); }

.so-lb-title { font-size: 0.6875rem; font-weight: 600; margin-bottom: 0.625rem; }
.so-lb-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.so-lb-rank {
  font-size: 0.625rem;
  font-weight: 700;
  width: 16px;
  font-family: var(--font-mono);
}
.so-lb-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}
.so-lb-a1 { background: url(../img/starbucks.png) center/cover; }
.so-lb-a2 { background: url(../img/halfm.png) center/cover; }
.so-lb-a3 { background: url(../img/dunkin.png) center/cover; }
.so-lb-a4 { background: url(../img/barns.png) center/cover; }
.so-lb-name { font-size: 0.5625rem; font-weight: 500; flex: 1; }
.so-lb-stat { font-size: 0.5625rem; font-weight: 700; color: var(--accent); font-family: var(--font-mono); }

/* ─── CREDENTIAL STRIP ─── */
.credentials {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credentials-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.credential {
  text-align: center;
}

.credential-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.credential-label {
  font-size: 0.6875rem;
  color: var(--fg-subtle);
  margin-top: 0.125rem;
  letter-spacing: 0.02em;
}

/* ─── SECTION SHARED ─── */
.section-label {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  background: var(--bg-alt);
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  padding: 6rem 0;
}

.hiw-header {
  max-width: 560px;
  margin-bottom: 4rem;
}

.hiw-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hiw-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hiw-step {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  position: relative;
}

.hiw-step:hover {
  border-color: var(--accent-glow);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.hiw-step-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hiw-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.hiw-step p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.hiw-step-visual {
  margin-top: 1.25rem;
  padding: 0.75rem;
  background: var(--bg);
  border-radius: 10px;
  font-size: 0.6875rem;
  color: var(--fg-muted);
}

.hiw-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.375rem 0;
}

.hiw-toggle-label {
  font-weight: 500;
  font-size: 0.6875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.hiw-toggle-label img { width: 20px; height: 20px; border-radius: 4px; object-fit: cover; }

.hiw-toggle {
  width: 32px;
  height: 18px;
  border-radius: 9px;
  position: relative;
}

.hiw-toggle-on {
  background: var(--accent);
}
.hiw-toggle-on::after {
  content: '';
  position: absolute;
  right: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
}

.hiw-toggle-off {
  background: #d1d5db;
}
.hiw-toggle-off::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
}

/* ─── FEATURES ─── */
.features {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.features-header {
  max-width: 560px;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.features-header p {
  font-size: 1rem;
  color: var(--fg-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.feature-card:hover { border-color: var(--border-hover); }

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.fi-matchup { background: linear-gradient(135deg, #fce7f3, #fdf2f8); }
.fi-leaderboard { background: linear-gradient(135deg, #d1fae5, #ecfdf5); }
.fi-discovery { background: linear-gradient(135deg, #e0e7ff, #eef2ff); }
.fi-privacy { background: linear-gradient(135deg, #111, #333); color: white; }

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.feature-card .feature-detail {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-subtle);
  font-family: var(--font-mono);
}

/* ─── TRUST SECTION ─── */
.trust {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trust-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.trust-content p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trust-check {
  width: 24px;
  height: 24px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.trust-check::after {
  content: '✓';
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.trust-item-text h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
  letter-spacing: -0.01em;
}

.trust-item-text p {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-bottom: 0;
}

.trust-visual {
  background: var(--fg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.trust-visual::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
}

.tv-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  position: relative;
}

.tv-flow {
  position: relative;
}

.tv-flow-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.tv-flow-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.tv-flow-text {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.3;
}

.tv-flow-arrow {
  font-size: 0.625rem;
  opacity: 0.3;
  text-align: center;
  padding: 0.25rem 0;
}

/* ─── NOT A BUDGETING APP ─── */
.positioning {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.positioning-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.positioning h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.positioning h2 em {
  font-style: normal;
  text-decoration: line-through;
  color: var(--fg-subtle);
}

.positioning p {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ─── POSITIONING TABLE ─── */
.positioning-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.5rem;
  text-align: left;
}

.positioning-table thead th {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.5rem;
  border-bottom: 2px solid var(--border);
}

.positioning-table thead th:first-child {
  color: var(--fg-subtle);
  background: var(--bg-alt);
  border-radius: var(--radius) 0 0 0;
}

.positioning-table thead th:last-child {
  color: #059669;
  background: var(--accent-soft);
  border-radius: 0 var(--radius) 0 0;
}

.positioning-table tbody td {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}

.positioning-table tbody td:first-child {
  background: var(--bg-alt);
}

.positioning-table tbody td:last-child {
  background: var(--accent-soft);
}

.positioning-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius);
}

.positioning-table tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--radius) 0;
}

.positioning-table tbody tr:last-child td {
  border-bottom: none;
}

/* ─── FOOTER ─── */
footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--fg-subtle);
  margin-top: 0.5rem;
  max-width: 280px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col h4 {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-subtle);
  margin-bottom: 0.75rem;
}

.footer-col a {
  display: block;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--fg-subtle);
}

.footer-markets {
  font-size: 0.6875rem;
  color: var(--fg-subtle);
  font-family: var(--font-mono);
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; }
  .hero-phones { min-height: 400px; }
  .phone-main { width: 200px; height: 400px; }
  .phone-left { width: 170px; height: 340px; transform: translateX(-120px) translateY(15px) rotate(-6deg); }
  .phone-right { width: 170px; height: 340px; transform: translateX(120px) translateY(15px) rotate(6deg); }
  .hiw-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .positioning-table { font-size: 0.8125rem; }
  .positioning-table thead th,
  .positioning-table tbody td { padding: 0.5rem 1rem; }
  .footer-grid { flex-direction: column; gap: 2rem; }
  .credentials-grid { gap: 1.5rem; }
  nav .nav-desktop { display: none; }
}

@media (max-width: 600px) {
  .hero-phones { min-height: 320px; }
  .phone-main { width: 160px; height: 320px; border-radius: 24px; }
  .phone-left { width: 140px; height: 280px; border-radius: 20px; transform: translateX(-90px) translateY(10px) rotate(-6deg); }
  .phone-right { width: 140px; height: 280px; border-radius: 20px; transform: translateX(90px) translateY(10px) rotate(6deg); }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ─── ANIMATIONS ─── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge { animation: fade-up 0.6s ease both; animation-delay: 0.1s; }
.hero h1 { animation: fade-up 0.6s ease both; animation-delay: 0.2s; }
.hero-sub { animation: fade-up 0.6s ease both; animation-delay: 0.3s; }
.hero-cta-row { animation: fade-up 0.6s ease both; animation-delay: 0.4s; }
.hero-phones { animation: fade-up 0.8s ease both; animation-delay: 0.5s; }
