/* ═══════════════════════════════════════════════════════════════════
   Kora Landing Page — style.css
   Futuristic · Clean · Dark-first with teal/purple accent
═══════════════════════════════════════════════════════════════════ */

/* ─── Reset + Root ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Palette matching Kora admin dark mode ── */
  --teal:    #0E9E84;
  --teal2:   #0D8A73;
  --green:   #40BF68;
  --purple:  #7C3AED;
  --blue:    #2563EB;
  --gold:    #D97706;
  --red:     #DC2626;
  --bg:      #0D1117;
  --bg2:     #0A0F16;
  --surface: #161B22;
  --surface2:#1C2128;
  --border:  #30363D;
  --text:    #E6EDF3;
  --muted:   #8B949E;
  --primary: #0E306F;
  --grad:    linear-gradient(135deg, #0E9E84, #2563EB);
  --font:    'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

img { max-width: 100%; height: auto; display: block; }

/* Prevent long words breaking layout */
h1, h2, h3, p, a, li { overflow-wrap: break-word; word-break: break-word; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Gradient text ────────────────────────────────────────────── */
.g-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Section header ───────────────────────────────────────────── */
.sec-hd {
  text-align: center;
  margin-bottom: 64px;
}
.sec-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(14,158,132,.3);
  background: rgba(14,158,132,.1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.sec-hd h2 {
  font-family: var(--font);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.sec-hd p {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn-ghost {
  padding: 9px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--teal); background: rgba(0,212,168,.07); }

.btn-cta {
  padding: 10px 22px;
  background: var(--grad);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: opacity .2s, transform .15s;
}
.btn-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ─── Store buttons ────────────────────────────────────────────── */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 22px;
  font-family: var(--font);
  color: var(--text);
  transition: border-color .2s, background .2s, transform .15s;
  cursor: pointer;
}
.store-btn:hover {
  border-color: var(--teal);
  background: rgba(0,212,168,.08);
  transform: translateY(-2px);
}
.store-btn.large { padding: 16px 28px; font-size: 16px; }
.store-icon { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn.large .store-icon { width: 32px; height: 32px; }
.s-label { display: block; font-size: 10px; color: var(--muted); line-height: 1; }
.s-name  { display: block; font-size: 16px; font-weight: 700; line-height: 1.4; }

/* ═══════════════════════ NAV ════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(13,17,23,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-mark {
  font-size: 22px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {

  top: 64px; left: 0; right: 0;
  background: rgba(10,15,22,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 8px 24px 28px;
  gap: 0;
  z-index: 99;
  /* shift up by own height + top offset to fully clear viewport */
  transform: translateY(calc(-100% - 64px));
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mobile-nav.open {
  transform: translateY(0);
  visibility: visible;
}
.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--text); }
.admin-nav-link { color: var(--teal) !important; font-weight: 600; }

/* ═══════════════════════ HERO ═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
/* Orbs — slightly adjusted for new palette */
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #0E9E84 0%, transparent 70%);
  top: -200px; left: -150px;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #7C3AED 0%, transparent 70%);
  top: 10%; right: -100px;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #2563EB 0%, transparent 70%);
  bottom: 0; left: 40%;
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold);
  border: 1px solid rgba(217,119,6,.3);
  background: rgba(217,119,6,.08);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-note {
  font-size: 13px;
  color: var(--muted);
}
.hero-note::before { content: '✓  '; color: var(--teal); }

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  /* extra room for floating chips that extend beyond phone edges */
  padding: 0 70px;
  min-width: 0;
}
.phone-wrap {
  position: relative;
  width: 280px;
  flex-shrink: 0;
}
.phone {
  width: 280px;
  height: 560px;
  background: var(--surface);
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,.12);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,212,168,.15),
    0 40px 80px rgba(0,0,0,.6),
    inset 0 0 40px rgba(0,0,0,.3);
  position: relative;
  z-index: 2;
  /* prevent phone content from breaking out */
  min-width: 0;
  max-width: 100%;
}
.p-notch {
  width: 100px;
  height: 28px;
  background: var(--bg);
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
}
.p-screen {
  padding: 12px;
  height: calc(100% - 28px);
  overflow: hidden;
  /* ensure inner content never overflows phone width */
  max-width: 100%;
}
.p-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,212,168,.4) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 1;
}

/* App UI inside phone */
.app-ui { font-size: 11px; height: 100%; }
.au-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.au-bell { font-size: 14px; }
.au-wallet {
  background: linear-gradient(135deg, #0E3D33 0%, #0D1F3C 100%);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,212,168,.15);
}
.aw-label { font-size: 10px; color: var(--muted); margin-bottom: 4px; }
.aw-amount { font-size: 18px; font-weight: 700; color: var(--teal); margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.aw-actions { display: flex; gap: 6px; }
.aw-btn {
  flex: 1;
  text-align: center;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 5px 2px;
  font-size: 9px;
  font-weight: 600;
}
.au-section-title { font-size: 11px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.au-group {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.au-group:last-child { border-bottom: none; }
.ag-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ag-info { flex: 1; }
.ag-name { font-weight: 600; font-size: 11px; }
.ag-sub  { font-size: 9px; color: var(--muted); }
.ag-amt  { font-size: 10px; font-weight: 700; color: var(--teal); }

/* Floating chips */
.float-chip {
  position: absolute;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  z-index: 3;
  animation: floatChip 4s ease-in-out infinite;
}
.chip-1 { bottom: 90px; left: -60px; animation-delay: 0s; }
.chip-2 { top: 80px;    right: -55px; animation-delay: 1.8s; }
.fc-label { font-size: 10px; color: var(--muted); line-height: 1.2; }
.fc-val   { font-weight: 700; color: var(--teal); line-height: 1.2; }
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sh-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--teal));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1; }
}

/* ═══════════════════════ STATS ══════════════════════════════════ */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-family: var(--font);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stat-l {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ═══════════════════════ FEATURES ═══════════════════════════════ */
.features { padding: 100px 0; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Admin-matching card + surface upgrades */
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  opacity: 0;
  transform: translateY(30px);
}
.feat-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease, border-color .25s, box-shadow .25s;
}
.feat-card:hover {
  border-color: rgba(14,158,132,.4);
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--ic, var(--teal));
}
.feat-icon svg { width: 24px; height: 24px; }
.feat-card h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.feat-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════ HOW IT WORKS ═══════════════════════════ */
.how {
  padding: 100px 0;
  background: var(--bg2);
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.how-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
}
.how-step.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}
.how-num {
  display: inline-block;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--teal);
  border: 1px solid rgba(14,158,132,.3);
  background: rgba(14,158,132,.1);
  width: 48px; height: 48px;
  border-radius: 50%;
  line-height: 46px;
  text-align: center;
  margin-bottom: 20px;
}
.how-step h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.how-step p  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.how-line {
  margin-top: 24px;
  flex-shrink: 0;
  width: 80px; height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  opacity: .3;
}

/* ═══════════════════════ PRO TIPS ═══════════════════════════════ */
.tips-sec { padding: 100px 0; }
.tips-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Tip carousel card */
.tip-side { display: flex; flex-direction: column; gap: 16px; }
.tip-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  position: relative;
  min-height: 200px;
  overflow: hidden;
}
.tip-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(14,158,132,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.tip-big-q {
  font-size: 120px;
  line-height: .7;
  color: var(--teal);
  opacity: .12;
  font-family: Georgia, serif;
  position: absolute;
  top: 20px; left: 20px;
  pointer-events: none;
  user-select: none;
}
.tip-body {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.55;
  color: var(--text);
  position: relative;
  z-index: 1;
  min-height: 80px;
  transition: opacity .35s;
}
.tip-body.fade { opacity: 0; }
.tip-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
#tip-num { font-size: 12px; color: var(--muted); }
.tip-dots { display: flex; gap: 5px; }
.tip-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s, transform .2s;
}
.tip-dots span.active { background: var(--teal); transform: scale(1.4); }
.tip-nav { display: flex; gap: 10px; }
.tip-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: grid;
  place-items: center;
}
.tip-btn:hover { border-color: var(--teal); background: rgba(14,158,132,.1); }

/* Savings calculator */
.calc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}
.calc-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.calc-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.calc-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.cf-row { display: flex; flex-direction: column; gap: 6px; }
.cf-row label { font-size: 13px; font-weight: 500; color: var(--muted); }
.cf-row input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
}
.cf-row input:focus { border-color: var(--teal); }
.calc-results { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.cr-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg2);
  border-radius: 10px;
  font-size: 14px;
}
.cr-item span  { color: var(--muted); }
.cr-item strong { color: var(--teal); font-size: 16px; }
.btn-calc-cta {
  display: block;
  text-align: center;
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px;
  border-radius: 12px;
  transition: opacity .2s, transform .15s;
}
.btn-calc-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ═══════════════════════ DOWNLOAD ═══════════════════════════════ */
.download { padding: 100px 0; background: var(--bg2); }
.dl-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.dl-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,212,168,.15) 0%, transparent 70%);
  pointer-events: none;
}
.dl-inner h2 {
  font-family: var(--font);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 16px 0 18px;
}
.dl-inner p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.dl-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.dl-note { font-size: 13px; color: var(--muted); }

/* ═══════════════════════ FOOTER ═════════════════════════════════ */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}
.ft-inner {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
}
.ft-brand {
  flex: 1.2;
  max-width: 300px;
}
.ft-brand p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.65;
}
.ft-links {
  flex: 2;
  display: flex;
  gap: 40px;
}
.ft-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 4px;
}
.ft-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color .15s;
}
.ft-col a:hover { color: var(--teal); }
.ft-admin-link { color: var(--teal) !important; }
.ft-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

/* ═══════════════════════ TOAST ══════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
  opacity: 0;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ═══════════════════════ RESPONSIVE ═════════════════════════════ */
@media (max-width: 1100px) {
  .hero-content { gap: 32px; }
  .hero-visual  { padding: 0 50px; }
}

@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .how-line  { width: 40px; }
}

@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text  { order: 1; }
  .hero-visual { order: 2; padding: 0 40px; }
  .hero-sub     { margin: 0 auto 36px; }
  .hero-btns    { justify-content: center; }
  .hero-note    { text-align: center; }

  /* On mobile, pull chips inward so they don't clip the viewport */
  .chip-1 { left: -20px; bottom: 60px; }
  .chip-2 { right: -20px; top: 60px; }
  .float-chip { font-size: 11px; padding: 8px 10px; gap: 7px; }
  .fc-val { font-size: 11px; }

  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .tips-layout { grid-template-columns: 1fr; }

  .how-steps { flex-direction: column; align-items: center; gap: 32px; }
  .how-line  { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--teal), var(--purple)); }
  .how-step  { max-width: 440px; }

  .ft-inner  { flex-direction: column; gap: 40px; }
  .ft-brand  { max-width: 100%; }
  .ft-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 560px) {
  .feat-grid  { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item  { padding: 18px 12px; }
  .hero-btns  { flex-direction: column; align-items: center; width: 100%; }
  .hero-btns .store-btn { justify-content: center; width: 100%; max-width: 280px; }
  .dl-btns    { flex-direction: column; align-items: center; }
  .dl-btns .store-btn { justify-content: center; width: 100%; max-width: 300px; }
  .phone-wrap { width: 220px; }
  .phone      { width: 220px; height: 440px; }
  .aw-amount  { font-size: 16px; }
  .chip-1     { left: -10px; bottom: 50px; }
  .chip-2     { right: -10px; top: 50px; }
  .ft-links   { flex-wrap: wrap; gap: 32px; }
  /* Tip body override for very small screens */
  .tip-body   { font-size: 15px; }
  .tips-layout { gap: 24px; }
  .calc-card, .tip-card { padding: 24px; }
}
