/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #F4F7FB;
  --blue:        #0A84FF;
  --cyan:        #64D2FF;
  --lavender:    #A78BFA;
  --green:       #30D158;
  --warning:     #FFCC00;
  --red:         #FF2D55;
  --surface:     rgba(255,255,255,0.72);
  --border:      rgba(255,255,255,0.82);
  --text:        #1C1C1E;
  --text-sub:    rgba(28,28,30,0.55);
  --radius-lg:   28px;
  --radius-xl:   36px;
  --blur:        blur(24px) saturate(1.8);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Mesh background ───────────────────────────────────────── */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-bg::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,132,255,0.18) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: drift1 18s ease-in-out infinite alternate;
}

.mesh-bg::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,0.15) 0%, transparent 70%);
  bottom: 0; right: -100px;
  animation: drift2 22s ease-in-out infinite alternate;
}

.mesh-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,210,255,0.13) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation: drift3 15s ease-in-out infinite alternate;
}

@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(60px,80px) scale(1.1); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-80px,-60px) scale(1.15); } }
@keyframes drift3 { from { transform: translate(-50%,-50%) scale(1); } to { transform: translate(-45%,-55%) scale(1.2); } }

/* ─── Glass utility ─────────────────────────────────────────── */
.glass {
  background: var(--surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; z-index: 1; }

/* ─── NAV ────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-glass {
  background: rgba(244,247,251,0.78);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(10,132,255,0.35);
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #0066CC 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 18px rgba(10,132,255,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(10,132,255,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-ghost {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(0,0,0,0.05);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(10,132,255,0.1);
  border: 1px solid rgba(10,132,255,0.2);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(10,132,255,0.25);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(10,132,255,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(10,132,255,0.1); }
}

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title .accent-blue     { color: var(--blue); }
.hero-title .accent-lavender { color: var(--lavender); }

.hero-sub {
  font-size: clamp(16px, 2.5vw, 21px);
  color: var(--text-sub);
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.btn-primary-lg {
  background: linear-gradient(135deg, var(--blue) 0%, #0066CC 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 16px 34px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(10,132,255,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(10,132,255,0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-outline-lg {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-outline-lg:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.85);
}

/* ─── App Mockup ─────────────────────────────────────────────── */
.mockup-wrap {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.phone-frame {
  position: relative;
  z-index: 2;
  background: #1C1C1E;
  border-radius: 56px;
  padding: 14px;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(0,0,0,0.6);
}

.phone-screen {
  background: #F4F7FB;
  border-radius: 44px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 120px; height: 34px;
  background: #1C1C1E;
  border-radius: 0 0 22px 22px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

.phone-content {
  flex: 1;
  padding: 12px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.phone-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 2px;
}

.phone-greeting {
  font-size: 22px;
  font-weight: 800;
  color: #1C1C1E;
  letter-spacing: -0.6px;
}

.phone-date {
  font-size: 11px;
  color: rgba(28,28,30,0.45);
  font-weight: 500;
}

/* Summary Card mock */
.mock-summary {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.mock-summary-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(28,28,30,0.45);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mock-summary-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #1C1C1E;
  line-height: 1.15;
}

.mock-chips {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.mock-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
}

.mock-chip.green  { background: rgba(48,209,88,0.12);  color: #30D158; }
.mock-chip.orange { background: rgba(255,149,0,0.12);  color: #FF9500; }

.mock-chip-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* Progress bar mock */
.mock-progress-bar {
  height: 5px;
  border-radius: 999px;
  background: rgba(0,0,0,0.07);
  margin-top: 10px;
  overflow: hidden;
}

.mock-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  width: 75%;
}

/* Cards grid mock */
.mock-grid-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(28,28,30,0.55);
  letter-spacing: 0.2px;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}

.mock-card {
  border-radius: 18px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
  min-height: 90px;
}

.mock-card-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0,0,0,0.2);
  border-radius: 999px;
  padding: 2px 6px;
  font-size: 7px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.mock-card-icon { font-size: 22px; margin-top: 14px; }

.mock-card-name {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.2px;
  margin-top: auto;
}

.mock-card-status {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.mock-status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
}

/* FAB mock */
.mock-fab {
  position: absolute;
  bottom: 24px;
  right: 22px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #0066CC);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(10,132,255,0.5);
  font-size: 22px;
  color: white;
  font-weight: 300;
  z-index: 5;
}

/* Floating cards around phone */
.float-card {
  position: absolute;
  z-index: 3;
}

.float-card-inner {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 1px 0 rgba(255,255,255,0.9) inset;
  white-space: nowrap;
}

.float-card-1 { top: 15%;  left: -130px; animation: floatA 6s ease-in-out infinite; }
.float-card-2 { top: 42%;  right: -140px; animation: floatB 7s ease-in-out infinite; }
.float-card-3 { bottom: 18%; left: -120px; animation: floatA 8s ease-in-out infinite 1s; }

@keyframes floatA { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
@keyframes floatB { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(8px); } }

.float-label { font-size: 10px; font-weight: 600; color: var(--text-sub); margin-bottom: 3px; }
.float-value { font-size: 15px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }
.float-sub   { font-size: 10px; color: var(--text-sub); font-weight: 500; margin-top: 1px; }

.float-row { display: flex; align-items: center; gap: 8px; }

.float-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  padding: 48px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 28px 24px;
  text-align: center;
}

.stat-num {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-sub);
  font-weight: 500;
}

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-sub);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ─── FEATURES ───────────────────────────────────────────────── */
.features {
  padding: 40px 0 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 28px;
  transition: transform 0.2s ease;
}

.feature-card:hover { transform: translateY(-4px); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.55;
}

/* ─── CATEGORIES ─────────────────────────────────────────────── */
.categories {
  padding: 40px 0 80px;
}

.categories-track {
  display: flex;
  gap: 14px;
  overflow: hidden;
  position: relative;
}

.categories-track::before,
.categories-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.categories-track::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.categories-track::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.categories-scroll {
  display: flex;
  gap: 14px;
  animation: scroll-x 30s linear infinite;
  width: max-content;
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cat-card {
  flex-shrink: 0;
  width: 200px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cat-card:hover { transform: translateY(-4px); }

.cat-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cat-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.cat-desc {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.4;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.how {
  padding: 40px 0 80px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--lavender));
  opacity: 0.3;
  border-radius: 2px;
}

.how-step {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  font-size: 20px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(10,132,255,0.4);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.55;
}

/* ─── STATUS SHOWCASE ────────────────────────────────────────── */
.status-section {
  padding: 40px 0 80px;
}

.status-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.status-text .section-header {
  text-align: left;
  margin-bottom: 32px;
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
}

.status-dot-lg {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px;
}

.status-dot-lg.green  { background: var(--green);   box-shadow: 0 0 0 4px rgba(48,209,88,0.2); }
.status-dot-lg.yellow { background: var(--warning); box-shadow: 0 0 0 4px rgba(255,204,0,0.2); }
.status-dot-lg.red    { background: var(--red);     box-shadow: 0 0 0 4px rgba(255,45,85,0.2); }

.status-item-text strong { font-weight: 700; font-size: 15px; }
.status-item-text p { font-size: 13px; color: var(--text-sub); margin-top: 2px; }

/* Status mockup panel */
.status-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-mock-card {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease;
}

.status-mock-card:hover { transform: translateX(4px); }

.status-mock-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.status-mock-info { flex: 1; }
.status-mock-info strong { font-size: 14px; font-weight: 700; }
.status-mock-info p { font-size: 12px; color: var(--text-sub); margin-top: 2px; }

.status-mock-badge {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
}

/* ─── CTA ────────────────────────────────────────────────────── */
.cta-section {
  padding: 80px 0 100px;
}

.cta-card {
  text-align: center;
  padding: 72px 48px;
  background: linear-gradient(135deg, rgba(10,132,255,0.08), rgba(167,139,250,0.08));
  border: 1px solid rgba(10,132,255,0.18);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,132,255,0.12), transparent);
  pointer-events: none;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,0.12), transparent);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 18px;
  color: var(--text-sub);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 12px 22px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.store-badge-icon { font-size: 28px; }

.store-badge-text small {
  display: block;
  font-size: 10px;
  color: var(--text-sub);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2px;
}

.store-badge-text strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-sub);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-sub);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

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

/* ─── Scrolled-in animation ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid,
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .stats-inner { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .status-split { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .cta-card { padding: 48px 28px; }
}

@media (max-width: 600px) {
  .stats-inner { grid-template-columns: 1fr; }
  .nav-cta .btn-ghost { display: none; }
  .hero { padding: 56px 0 40px; }
  .hero-title { letter-spacing: -1.5px; }
}
