/* IndiZone567 — Modern Download Landing (unique brand, not competitor clone) */
:root {
  --cream: #FDF6EB;
  --cream-2: #F7EBD6;
  --cream-3: #F0DFC4;
  --ink: #1A1210;
  --ink-soft: #4A3728;
  --mute: #8A7568;
  --pink: #7A1618;
  --pink-deep: #A85A68;
  --pink-soft: rgba(194, 117, 128, 0.12);
  --pink-glow: rgba(194, 117, 128, 0.35);
  --white: #FFFFFF;
  --line: rgba(74, 55, 40, 0.1);
  --green: #2E9B57;
  --green-soft: rgba(46, 155, 87, 0.12);
  --red: #C62828;
  --shadow: 0 12px 40px rgba(74, 42, 36, 0.08);
  --shadow-lg: 0 24px 60px rgba(74, 42, 36, 0.12);
  --r: 20px;
  --r-sm: 14px;
  --r-pill: 999px;
  --max: 1120px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

/* Soft mesh background */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(194, 117, 128, 0.22), transparent 55%),
    radial-gradient(700px 400px at 95% 15%, rgba(245, 185, 120, 0.2), transparent 50%),
    radial-gradient(600px 400px at 50% 100%, rgba(194, 117, 128, 0.12), transparent 55%),
    var(--cream);
  pointer-events: none;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(253, 246, 235, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 10px 0;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  border-radius: 10px;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--pink-soft); color: var(--pink-deep); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(26, 18, 16, 0.18);
  transition: transform .15s, background .15s;
}
.nav-cta:hover { transform: translateY(-1px); background: #2a1c18; }
.nav-cta.pink {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  box-shadow: 0 8px 22px var(--pink-glow);
}
.nav-cta.pink:hover { background: linear-gradient(135deg, #cb8490, var(--pink)); }

/* Hero */
.hero {
  padding: 36px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
  color: var(--pink-deep);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .85; }
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--pink-deep), #e8a0aa 50%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 16px;
  font-weight: 500;
  color: var(--mute);
  max-width: 46ch;
  margin-bottom: 22px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 800;
  transition: transform .12s, box-shadow .12s, background .12s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 28px var(--pink-glow);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(194, 117, 128, 0.45); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.btn-ghost:hover { border-color: rgba(194, 117, 128, 0.35); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stat {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  min-width: 100px;
  backdrop-filter: blur(8px);
}
.stat b {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.stat span {
  font-size: 11px;
  font-weight: 700;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Phone mock */
.hero-visual { position: relative; }
.phone-shell {
  position: relative;
  margin: 0 auto;
  width: min(100%, 300px);
  aspect-ratio: 9 / 17.5;
  border-radius: 36px;
  background: linear-gradient(160deg, #2a1c1a, #1a1210);
  padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.phone-notch {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #0d0908;
  border-radius: 20px;
  z-index: 2;
}
.phone-screen {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #F0F2F5 0%, #FDF6EB 40%, #fff 100%);
  display: flex;
  flex-direction: column;
  padding: 42px 14px 16px;
}
.phone-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.phone-brand img { width: 28px; height: 28px; border-radius: 8px; }
.phone-brand strong { font-size: 12px; font-weight: 800; }
.phone-chip-row { display: flex; gap: 6px; margin-bottom: 12px; }
.phone-chip {
  flex: 1;
  background: #4A2A2D;
  color: #fff;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  padding: 8px 6px;
  text-align: center;
}
.phone-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  margin-bottom: 8px;
}
.phone-card .name { font-size: 12px; font-weight: 800; text-transform: uppercase; }
.phone-card .res { color: var(--green); font-weight: 800; font-size: 13px; letter-spacing: 0.5px; margin-top: 4px; }
.phone-card .meta { font-size: 10px; color: var(--mute); margin-top: 4px; font-weight: 600; }
.float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.float-badge.a { top: 12%; left: -18px; }
.float-badge.b { bottom: 18%; right: -14px; }
.float-badge i {
  width: 28px; height: 28px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: 13px;
}

/* Sections */
.section { padding: 48px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-head p {
  color: var(--mute);
  font-size: 14px;
  font-weight: 600;
  max-width: 40ch;
}
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 6px;
}

/* Market cards */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.m-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px;
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s;
}
.m-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.m-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.m-name {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
.m-status {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.m-status.live { background: var(--green-soft); color: var(--green); }
.m-status.ended { background: rgba(198,40,40,0.1); color: var(--red); }
.m-result {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
}
.m-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--mute);
}

/* Bento features */
.bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.bento-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.bento-card.wide { grid-column: span 1; grid-row: span 2; }
.bento-card.accent {
  background: linear-gradient(160deg, #7A1618 0%, #9E5562 100%);
  color: #fff;
  border: 0;
}
.bento-card.accent p { color: rgba(255,255,255,0.85); }
.bento-ico {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: 18px;
  margin-bottom: 14px;
}
.bento-card.accent .bento-ico {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.bento-card h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.bento-card p {
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  line-height: 1.5;
}

/* Rates */
.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.rate-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.rate-card .lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--mute);
  margin-bottom: 6px;
}
.rate-card .val {
  font-size: 22px;
  font-weight: 800;
  color: var(--pink-deep);
  letter-spacing: -0.02em;
}
.rate-card .sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Calculator */
.calc {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.calc label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mute);
  margin-bottom: 6px;
}
.calc input, .calc select {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  padding: 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  font-family: inherit;
  outline: none;
  margin-bottom: 12px;
}
.calc input:focus, .calc select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
}
.calc-out {
  background: linear-gradient(145deg, #2a1c1a, #1a1210);
  border-radius: 18px;
  padding: 22px 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
}
.calc-out span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.calc-out strong {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  margin: 8px 0 14px;
  letter-spacing: -0.03em;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 14px;
  box-shadow: var(--shadow);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 10px;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}
.step h4 { font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.step p { font-size: 12px; color: var(--mute); font-weight: 500; line-height: 1.45; }

/* FAQ */
.faq { display: grid; gap: 8px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(74, 42, 36, 0.04);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform .2s;
  stroke: var(--pink-deep);
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 18px 16px;
  font-size: 13px;
  color: var(--mute);
  font-weight: 500;
  line-height: 1.55;
}
.faq-item.open .faq-a { display: block; }

/* Bottom CTA band */
.cta-band {
  margin: 20px 0 40px;
  background: linear-gradient(135deg, #2a1c1a 0%, #4A2A2D 45%, #7A1618 140%);
  border-radius: 28px;
  padding: 32px 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.cta-band p { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; max-width: 42ch; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}
.footer-brand p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--mute);
  font-weight: 500;
  max-width: 36ch;
  line-height: 1.5;
}
.footer h5 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  color: var(--ink);
}
.footer a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mute);
  padding: 4px 0;
}
.footer a:hover { color: var(--pink-deep); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 12px;
  color: var(--mute);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Sticky mobile download */
.sticky-dl {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 60;
  width: min(calc(100% - 28px), 420px);
  display: none;
}
.sticky-dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 12px 30px var(--pink-glow);
}

/* Special mini grids */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.mini-card .t { font-size: 12px; font-weight: 800; color: var(--ink-soft); }
.mini-card .v { font-size: 15px; font-weight: 800; color: var(--green); margin-top: 4px; letter-spacing: 0.04em; }

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.filters button {
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.filters button.on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Nav hamburger (mobile) */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(253, 246, 235, 0.96);
  backdrop-filter: blur(12px);
  padding: 10px 16px 16px;
}
.nav-drawer.open { display: block; }
.nav-drawer a {
  display: block;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  border-radius: 12px;
}
.nav-drawer a:hover { background: var(--pink-soft); color: var(--pink-deep); }
.nav-drawer .nav-cta {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 1100px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; grid-row: span 1; }
  .market-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .stat-row { justify-content: center; }
  .hero-visual { order: -1; max-width: 260px; margin: 0 auto; }
  .float-badge { font-size: 11px; padding: 8px 10px; }
  .float-badge.a { left: -6px; top: 8%; }
  .float-badge.b { right: -6px; bottom: 14%; }
  .float-badge i { width: 24px; height: 24px; font-size: 11px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .calc { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner .nav-cta.desktop-only { display: none; }
  .mini-grid { grid-template-columns: 1fr 1fr; }
  .section-head { text-align: center; justify-content: center; }
  .section-head p { margin-inline: auto; }
  .filters { justify-content: center; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, var(--max)); }
  .nav-logo img { height: 34px; }
  .hero { padding: 22px 0 18px; }
  .hero h1 { font-size: clamp(1.75rem, 7.5vw, 2.3rem); }
  .hero-lead { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .stat-row { gap: 8px; }
  .stat { min-width: calc(50% - 8px); flex: 1 1 calc(50% - 8px); padding: 10px 12px; }
  .stat b { font-size: 17px; }
  .phone-shell { width: min(100%, 240px); border-radius: 30px; }
  .phone-screen { border-radius: 24px; padding: 36px 12px 14px; }
  .float-badge.a, .float-badge.b { display: none; } /* avoid horizontal overflow on small phones */
  .market-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-dl {
    display: block;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .section { padding: 32px 0; }
  .footer { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 22px 16px; border-radius: 22px; }
  .cta-band .btn { width: 100%; }
  .mini-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .m-result { font-size: 16px; }
}

@media (max-width: 380px) {
  .rate-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .stat { min-width: 100%; }
  .nav-cta.pink { padding: 0 12px; font-size: 12px; height: 38px; }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Landscape phones */
@media (max-height: 480px) and (orientation: landscape) {
  .hero-visual { max-width: 180px; }
  .sticky-dl { display: none; }
}
