:root {
  --brand-50:  #eef4ff;
  --brand-100: #d9e6ff;
  --brand-200: #bcd3ff;
  --brand-400: #5b8cff;
  --brand-500: #0041E6;
  --brand-600: #1f52e0;
  --brand-700: #1a44bb;
  --green:     #12632D;
  --green-600: #178c40;
  --ink:       #0d1524;
  --ink-2:     #0d1524;
  --muted:     #444F5F;
  --line:      #e7ecf5;
  --bg:        #fffaf0;
  --bg-soft:   #fdf3df;
  --sky:       #cfeaff;
  --radius:    20px;
  --shadow-sm: 0 2px 8px rgba(16,31,64,.06);
  --shadow-md: 0 12px 34px rgba(16,31,64,.10);
  --shadow-lg: 0 30px 70px rgba(16,31,64,.16);
  --maxw: 1480px;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
section { position: relative; }
/* keep section headings clear of the sticky nav when jumped to via anchor links */
#home, #features, #how, #community, #app, #contact { scroll-margin-top: 88px; }

.wrap { width: min(var(--maxw), 94%); margin-inline: auto; }
/* visually hidden but available to screen readers / document outline */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
h1,h2,h3 { line-height: 1.14; letter-spacing: -.01em; font-weight: 800; font-family: 'Baloo 2', 'Plus Jakarta Sans', sans-serif; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); text-align: center; }
.section-title .bar { display: block; width: 56px; height: 4px; border-radius: 4px; background: var(--brand-500); margin: .7rem auto 0; }
.lead { color: var(--ink-2); font-size: 1.05rem; }

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .98rem; padding: .85rem 1.5rem;
  border-radius: 100px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: #fff; box-shadow: 0 10px 24px rgba(47,107,255,.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(47,107,255,.42); }
.btn-ghost { background: #fff; color: var(--brand-600); border-color: var(--brand-200); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand-400); }

/* ================= NAV ================= */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(12px);
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
header.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.25rem; font-family: 'Baloo 2', sans-serif; }
.brand img.logo { height: 54px; width: auto;}
.brand .safe { color: var(--brand-500); }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-weight: 600; color: var(--ink-2); font-size: .95rem; transition: color .2s; white-space: nowrap; padding: .3rem 0; position: relative; }
.nav-links a:hover { color: var(--brand-600); }
.nav-links a.active { color: var(--brand-600); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; border-radius: 3px; background: var(--brand-500); }
.nav-cta { display: flex; align-items: center; gap: .8rem; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.mobile-menu { display: none; }
header.nav.open .mobile-menu { display: grid; padding: .3rem 0 1rem; }
.mobile-menu a { font-weight: 600; color: var(--ink-2); padding: .6rem .2rem; border-top: 1px solid var(--line); }
.mobile-menu a:hover { color: var(--brand-600); }

/* ================= HERO ================= */
.hero {
  background: linear-gradient(180deg, var(--sky) 0%, #fff6e0 52%, #dff3cf 100%);
  overflow: hidden;
}
.road-strip {
  position: relative; width: 100%; height: clamp(168px, 17vw, 236px);
  pointer-events: none; overflow: hidden;
  background: linear-gradient(180deg, var(--sky) 0%, #eaf4ff 38%, #dff3cf 100%);
}
.road-strip .rs-sky { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* ---- 6-lane road ---- */
.rs-road { position: absolute; left: 0; right: 0; bottom: 0; height: 88%; overflow: hidden; }
.road-surface { position: absolute; inset: 0; background: linear-gradient(180deg, #4a5162 0%, #3d434f 100%); }
.road-surface::before, .road-surface::after {
  content: ""; position: absolute; left: 0; right: 0; height: 6px; opacity: .92;
  background: repeating-linear-gradient(90deg, #e9edf5 0 22px, #c2c8d4 22px 44px);
}
.road-surface::before { top: 0; } .road-surface::after { bottom: 0; }
.lane-line { position: absolute; left: 0; right: 0; height: 3px; transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.9) 0 26px, transparent 26px 52px); }
.median { position: absolute; left: 0; right: 0; height: 9px; transform: translateY(-50%);
  border-top: 3px solid #ffcf33; border-bottom: 3px solid #ffcf33; }

/* ---- hazards ---- */
.hazard { position: absolute; transform: translate(-50%, -50%); z-index: 1; }
.hazard svg { display: block; width: 100%; height: auto; }
.hz-pothole { width: clamp(30px, 3.4vw, 44px); }
.hz-manhole { width: clamp(22px, 2.4vw, 32px); }
.hz-water   { width: clamp(32px, 3.6vw, 46px); }
.hz-cones   { width: clamp(32px, 3.6vw, 46px); }
.hz-tree    { width: clamp(40px, 4.2vw, 56px); }
.hz-slide   { width: clamp(38px, 4vw, 52px); }

/* ---- moving vehicles ---- */
.veh { position: absolute; transform: translateY(-50%); z-index: 2;
  width: clamp(38px, 3.9vw, 52px);
  filter: drop-shadow(0 4px 5px rgba(0,0,0,.28));
  animation: driveR var(--spd, 14s) linear var(--delay, 0s) infinite; }
.veh.truck { width: clamp(50px, 4.8vw, 66px); }
.veh.dir-l { animation-name: driveL; }
.veh svg { display: block; width: 100%; height: auto; }
.veh.dir-l svg { transform: scaleX(-1); }
@keyframes driveR { from { left: -18%; } to { left: 118%; } }
@keyframes driveL { from { left: 118%; } to { left: -18%; } }

/* ---- marshal bunny ---- */
.rs-marshal { position: absolute; bottom: 3%; left: 4.5%; z-index: 6;
  width: clamp(64px, 8vw, 104px);
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.28));
  transform-origin: bottom center;
  animation: marshalBob 2.4s ease-in-out infinite; }
@keyframes marshalBob { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3.5deg); } }
.hero-grid {
  display: grid; grid-template-columns: 1.04fr .96fr; gap: 2.5rem; align-items: center;
  min-height: calc(100vh - 74px);
  padding: 2.2rem 0 2.6rem;
  position: relative; z-index: 1;
}
.hero h1 { font-size: clamp(2.5rem, 4.6vw, 4.6rem); }
.hero h1 .blue { color: var(--brand-500); }
.hero p.lead { margin: 1.3rem 0 2rem; font-size: 1.12rem; max-width: 44ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 1.1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.stars { color: #ffb01f; letter-spacing: 2px; font-size: 1.02rem; }
.hero-trust small { color: var(--muted); font-weight: 600; display: block; }
.avatars { display: flex; }
.avatars span {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px;
  background: linear-gradient(135deg,#cdd9ff,#9fbcff); display: grid; place-items: center;
  font-size: .8rem; font-weight: 700; color: var(--brand-700); box-shadow: var(--shadow-sm);
}
.avatars span:first-child { margin-left: 0; }

.hero-visual { position: relative; display: grid; place-items: end center; min-height: 480px; }
.mascot-stage { position: relative; width: min(400px, 100%); display: grid; place-items: end center; }
.hero-visual .mascot {
  width: min(270px, 70%); position: relative; z-index: 2;
  filter: drop-shadow(0 24px 40px rgba(16,31,64,.22));
  animation: mascotIn 1s cubic-bezier(.18,1.2,.4,1) forwards;
}
@keyframes mascotIn { from { transform: translateY(46px) scale(.92); } to { transform: none; } }

.hz-chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: .5rem;
  background: #fff; border-radius: 13px; padding: .5rem .75rem;
  box-shadow: var(--shadow-md); font-size: .8rem; font-weight: 700; color: var(--ink);
  animation: chipFloat 5.4s ease-in-out infinite;
}
.hz-chip .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; }
.hz-chip .ic svg { width: 16px; height: 16px; }
.co-amber { color: #b45309; } .co-red { color: #dc2626; } .co-green { color: #16a34a; }
.co-blue { color: #2f6bff; } .co-purple { color: #8b5cf6; } .co-orange { color: #ea580c; }
.hz-1 { top: 4%;   left: -14%;  animation-delay: 0s; }
.hz-2 { top: 0%;   right: -24%; animation-delay: .7s; }
.hz-3 { top: 40%;  right: -26%; animation-delay: 1.4s; }
.hz-4 { top: 38%;  left: -24%;  animation-delay: 2.1s; }
.hz-5 { bottom: 15%; left: -18%; animation-delay: 2.8s; }
.hz-6 { bottom: 9%;  right: -26%; animation-delay: 3.5s; }
.ic-amber  { background: #fff3d6; }
.ic-red    { background: #ffe3dc; }
.ic-green  { background: #dcf5e3; }
.ic-blue   { background: #ddebff; }
.ic-purple { background: #ecdffc; }
.ic-orange { background: #ffe9d2; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ================= FEATURE STRIP ================= */
.features { padding: 0 0 clamp(1.8rem,3.5vw,2.8rem); margin-top: -2.4rem; z-index: 2; }
.strip {
  background: #fff; border-radius: 24px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); padding: 1.9rem 1.2rem;
  display: grid; grid-template-columns: repeat(6, 1fr);
  position: relative; z-index: 2;
}
.strip-item { padding: .4rem 1rem; }
.strip-item + .strip-item { border-left: 1px solid var(--line); }
.strip-item .tile {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: .8rem;
}
.strip-item .tile svg { width: 24px; height: 24px; }
.strip-item h3 { font-size: .98rem; line-height: 1.3; margin-bottom: .35rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.strip-item p { font-size: .8rem; line-height: 1.5; }

/* ================= HOW IT WORKS ================= */
.how { padding: clamp(2rem,4vw,3rem) 0 clamp(3.4rem,6vw,5.4rem); background: var(--bg); }
.how .section-title { margin-bottom: 3.2rem; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; position: relative; }
/* single dashed rail behind the row */
.steps::before {
  content: ""; position: absolute; top: 50px; left: 11%; right: 11%; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--brand-200) 0 8px, transparent 8px 16px);
}
.step { text-align: center; position: relative; z-index: 1; }
/* arrowhead in each gap */
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 50px; left: calc(100% + 0.7rem); z-index: 2;
  width: 10px; height: 10px; transform: translate(-50%, -50%) rotate(45deg);
  border-top: 2px solid var(--brand-400); border-right: 2px solid var(--brand-400);
}
.step .bubble { position: relative; z-index: 2; width: 100px; height: 100px; margin: 0 auto 1.1rem; }
.step .circle {
  width: 100%; height: 100%; border-radius: 50%; overflow: hidden; position: relative;
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-50) 100%);
  border: 1px solid var(--brand-100); box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  transition: transform .25s ease, box-shadow .3s ease;
}
.step:hover .circle { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .circle svg { width: 46px; height: 46px; }
.step .circle img.bstep-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.55); transform-origin: center 34%; }
.step.s4 .circle img.bstep-fill { object-position: center 20%; transform: scale(1.05); transform-origin: center 24%; }
/* per-step icon colours + matching soft circle tints */
.step.s1 .circle { background: linear-gradient(180deg,#fff,#eaf1ff); border-color:#d9e6ff; color:#2f6bff; }
.step.s2 .circle { background: linear-gradient(180deg,#fff,#f1ebff); border-color:#e4d9ff; color:#8b5cf6; }
.step.s3 .circle { background: linear-gradient(180deg,#fff,#e6faf6); border-color:#c9f0e7; color:#0ea5a0; }
.step.s4 .circle { background: linear-gradient(180deg,#fff,#fff4e0); border-color:#ffe6b8; color:#e08a00; }
.step.s5 .circle { background: linear-gradient(180deg,#fff,#e9f9ee); border-color:#c6eed2; color:#16a34a; }
.step .circle .ai-mini {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -46%);
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: .92rem;
  color: var(--brand-600); letter-spacing: .02em;
}
.step .num {
  position: absolute; top: -2px; left: -2px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand-500); color: #fff; font-weight: 800; font-size: .82rem;
  display: grid; place-items: center; border: 3px solid #fff; box-shadow: var(--shadow-sm); z-index: 3;
}
.step h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.step p { color: var(--ink-2); font-size: .88rem; padding-inline: .3rem; }
.step.s5 .num { background: var(--green); }

/* ================= COMMUNITY: VIDEO + IMPACT ================= */
.community { padding: 0 0 clamp(3.4rem,6vw,5.4rem); }
.comm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: center; }

.video-card {
  position: relative; width: min(300px, 100%); margin-inline: auto;
  aspect-ratio: 9 / 16; border-radius: 26px; overflow: hidden;
  background: #0d1524; box-shadow: var(--shadow-lg); cursor: pointer;
}
.video-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-card.playing { cursor: default; }
.video-overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.4rem; pointer-events: none;
  background: linear-gradient(to top, rgba(13,21,36,.8) 0%, rgba(13,21,36,0) 42%);
  color: #fff; transition: opacity .3s ease;
}
.video-card.playing .video-overlay { opacity: 0; }
.video-overlay h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.video-overlay p { color: rgba(255,255,255,.9); font-size: .85rem; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 68px; height: 68px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.94); color: var(--brand-600);
  display: grid; place-items: center; box-shadow: 0 12px 28px rgba(0,0,0,.35);
  transition: transform .25s ease, opacity .3s ease;
}
.play-btn svg { margin-left: 3px; }
.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.play-btn::after {
  content: ""; position: absolute; inset: -9px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5); animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.85); opacity: 1; } 100% { transform: scale(1.25); opacity: 0; } }
.video-card.playing .play-btn { opacity: 0; pointer-events: none; }

.impact-card {
  background: #fff; border: 1px solid var(--line); border-radius: 26px;
  box-shadow: var(--shadow-md); padding: clamp(1.8rem, 3vw, 2.6rem); position: relative; overflow: hidden;
}
.impact-card::before {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,107,255,.10), transparent 70%);
  top: -90px; right: -70px; pointer-events: none;
}
.impact-card h3 { font-size: 1.5rem; margin-bottom: .35rem; position: relative; }
.impact-card .sub { color: var(--muted); font-size: .9rem; font-weight: 600; margin-bottom: 1.6rem; }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.impact {
  text-align: center; padding: 1.5rem .8rem 1.25rem; border-radius: 18px;
  border: 1px solid transparent; position: relative;
  transition: transform .25s ease, box-shadow .3s ease;
}
.impact:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.impact .iico {
  width: 50px; height: 50px; margin: 0 auto .85rem; border-radius: 15px;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 8px 18px rgba(16,31,64,.18);
}
.impact .iico svg { width: 24px; height: 24px; }
.impact b { font-size: clamp(1.9rem, 3vw, 2.4rem); font-family: 'Baloo 2', sans-serif; display: block; line-height: 1; }
.impact small { color: var(--ink-2); font-weight: 600; font-size: .85rem; margin-top: .35rem; display: block; }
.impact.c1 { background: #eef4ff; border-color: #dbe7ff; } .impact.c1 .iico { background: linear-gradient(135deg,#5b8cff,#2f6bff); } .impact.c1 b { color: #2f6bff; }
.impact.c2 { background: #e9f9ef; border-color: #cdeed7; } .impact.c2 .iico { background: linear-gradient(135deg,#38ca6e,#16a34a); } .impact.c2 b { color: #16a34a; }
.impact.c3 { background: #fff6e6; border-color: #ffe6bd; } .impact.c3 .iico { background: linear-gradient(135deg,#ffb020,#e08a00); } .impact.c3 b { color: #9E6100; }
.impact.c4 { background: #f4ecff; border-color: #e6d8ff; } .impact.c4 .iico { background: linear-gradient(135deg,#a06bff,#7a3ff2); } .impact.c4 b { color: #7a3ff2; }

/* ================= SCREENSHOTS ================= */
.shots {
  padding: clamp(3.2rem,6vw,5rem) 0 clamp(3.6rem,7vw,5.5rem);
  background: linear-gradient(180deg, var(--bg-soft) 0%, #eaf1ff 100%);
  overflow: hidden;
}
.shots .section-title { margin-bottom: .6rem; }
.shots .lead { text-align: center; max-width: 54ch; margin: 0 auto 3.2rem; }
.shot-row { display: flex; justify-content: center; align-items: flex-start; gap: clamp(1rem,2.4vw,1.9rem); flex-wrap: wrap; }
.shot { display: flex; flex-direction: column; align-items: center; gap: 1rem; transition: transform .3s ease; }
.shot:nth-child(odd) { margin-top: 1.6rem; }           /* gentle staggered arc */
.shot:hover { transform: translateY(-10px); }
/* iPhone-style mockup */
.device {
  position: relative; width: clamp(156px, 17vw, 216px);
  border-radius: 42px; padding: 10px;
  background: linear-gradient(145deg, #43464e 0%, #16181d 42%, #202329 70%, #3a3d45 100%);
  box-shadow: 0 26px 50px rgba(16,31,64,.30), inset 0 0 0 2px rgba(255,255,255,.07), inset 0 0 3px 2px rgba(0,0,0,.5);
}
/* left volume buttons (upper) + right power button */
.device::before {
  content: ""; position: absolute; z-index: 0;
  left: -2px; top: 32%; width: 3px; height: 30px; border-radius: 2px 0 0 2px;
  background: #2a2d34; box-shadow: 0 42px 0 #2a2d34;
}
.device::after {
  content: ""; position: absolute; z-index: 0;
  right: -2px; top: 34%; width: 3px; height: 52px; border-radius: 0 2px 2px 0;
  background: #2a2d34;
}
.device .screen {
  position: relative; border-radius: 33px; overflow: hidden;
  aspect-ratio: 1170 / 2532; background: #000;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.9);
}
/* Dynamic Island */
.device .screen::before {
  content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 15px; background: #05070b; border-radius: 100px; z-index: 3;
}
.device .screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.shot .caption { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .95rem; color: var(--ink); }
.shot .caption .cdot { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; }
.shot .caption .cdot svg { width: 15px; height: 15px; }

/* ================= CTA ================= */
.cta { padding: clamp(3.2rem,6vw,5rem) 0 0; }
.cta-inner {
  position: relative; overflow: hidden; border-radius: 28px;
  background: linear-gradient(120deg, #fff1cf 0%, #fffaf0 58%, #e9f7d8 100%);
  border: 1px solid #ffe6b0; box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1.5fr 1fr; align-items: center; gap: 1rem;
  padding: clamp(2rem, 5vw, 3.4rem);
}
.cta h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.cta h2 .blue { color: var(--brand-500); }
.cta p { color: var(--ink-2); margin: .8rem 0 1.8rem; max-width: 44ch; font-size: 1.05rem; }
.store-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.store {
  display: inline-flex; align-items: center; gap: .7rem; background: #0d1524; color: #fff;
  padding: .7rem 1.25rem; border-radius: 14px; font-weight: 700;
  transition: transform .2s, box-shadow .3s; box-shadow: 0 10px 24px rgba(13,21,36,.25);
}
.store:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(13,21,36,.32); }
.store small { display: block; font-size: .6rem; font-weight: 600; opacity: .75; letter-spacing: .04em; }
.store b { font-size: 1.02rem; line-height: 1.15; font-family: 'Plus Jakarta Sans', sans-serif; }
.store svg { width: 24px; height: 24px; flex: 0 0 auto; }
.cta-bunny { display: grid; place-items: center; }
.cta-bunny img {
  width: min(200px, 68%);
  filter: drop-shadow(0 20px 34px rgba(16,31,64,.25));
  animation: capeFloat 5.5s ease-in-out infinite;
}
@keyframes capeFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(1.2deg); } }
.cta-inner::before, .cta-inner::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,176,31,.12);
}
.cta-inner::before { width: 300px; height: 300px; top: -140px; right: -80px; }
.cta-inner::after { width: 220px; height: 220px; bottom: -110px; left: -60px; }

/* ================= CONTACT ================= */
.contact { padding: clamp(2.4rem,5vw,3.6rem) 0 clamp(.8rem,2vw,1.6rem); }
.contact .section-title { margin-bottom: .5rem; }
.contact .lead { text-align: center; max-width: 52ch; margin: 0 auto 1.8rem; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.ccard {
  display: flex; gap: .7rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm); padding: 1rem 1.05rem;
  transition: transform .22s ease, box-shadow .3s ease, border-color .3s;
}
.ccard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.ccard .cico {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600);
}
.ccard .cico svg { width: 19px; height: 19px; }
.ccard h3 { font-size: .98rem; margin-bottom: .15rem; }
.ccard p { color: var(--ink-2); font-size: .82rem; line-height: 1.45; margin-bottom: .25rem; }
.ccard a { color: var(--brand-600); font-weight: 600; font-size: .84rem; word-break: break-word; }
.ccard a:hover { text-decoration: underline; }

/* ================= FOOTER ================= */
footer { background: #0d1524; color: #c3cee0; padding: 2.4rem 0 1.9rem; }
.foot-contact { display: flex; justify-content: center; gap: 1rem 2.6rem; flex-wrap: wrap; margin-bottom: 1.6rem; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(255,255,255,.09); }
.foot-contact a { display: inline-flex; align-items: center; gap: .55rem; color: #c3cee0; font-weight: 600; font-size: .95rem; transition: color .2s; }
.foot-contact a:hover { color: #fff; }
.foot-contact a svg { width: 18px; height: 18px; color: var(--brand-400); flex: 0 0 auto; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; }
footer .brand { color: #fff; font-size: 1.15rem; }
.foot-tag { color: #8fa0bd; font-size: .9rem; font-weight: 600; }
.socials { display: flex; gap: .6rem; }
.socials a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--brand-500); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; color: #fff; }
.foot-links { display: flex; align-items: center; gap: .5rem; font-size: .88rem; }
.foot-links a { color: #9fb0cd; transition: color .2s; }
.foot-links a:hover { color: #fff; }
.foot-links .sep { color: #3b4a66; }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.09);
}
.foot-bottom .copyright { color: #8fa0bd; font-size: .85rem; font-weight: 600; }
.dev-credit { display: inline-flex; align-items: center; gap: .6rem; color: #8fa0bd; font-size: .85rem; font-weight: 600; transition: color .2s; }
.dev-credit:hover { color: #fff; }
.dev-credit img {
  height: 30px; width: auto; background: #fff; padding: .35rem .65rem; border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25); transition: transform .2s;
}
.dev-credit:hover img { transform: translateY(-2px); }
@media (max-width: 640px) {
  .foot-bottom { justify-content: center; text-align: center; }
}

/* ================= INNER PAGES (Privacy Policy etc.) ================= */
.page-main { background: var(--bg); }
.page-pad { padding: clamp(2.4rem,5vw,4rem) 0 0; }
.page-main .section-title { margin-bottom: 2.4rem; }
.page-content { max-width: 820px; margin-inline: auto; color: var(--ink-2); font-size: 1rem; }
.page-content h1, .page-content h2, .page-content h3, .page-content h4 { color: var(--ink); margin: 1.6em 0 .5em; }
.page-content h2 { font-size: 1.5rem; }
.page-content h3 { font-size: 1.2rem; }
.page-content p, .page-content ul, .page-content ol { margin-bottom: 1em; }
.page-content ul, .page-content ol { padding-left: 1.5rem; }
.page-content li { margin-bottom: .35em; }
.page-content a { color: var(--brand-600); font-weight: 600; }
.page-content a:hover { text-decoration: underline; }
.page-content strong { color: var(--ink); }
.page-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.2em; }
.page-content th, .page-content td { border: 1px solid var(--line); padding: .6rem .8rem; text-align: left; }
.page-content th { background: var(--brand-50); color: var(--ink); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .strip { grid-template-columns: repeat(4, 1fr); row-gap: 1.4rem; }
  .strip-item:nth-child(5) { border-left: none; }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
  .steps::before, .step::after { display: none; }
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: .88rem; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 1.6rem; min-height: 0; padding-top: 3rem; }
  .hero p.lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 0; margin-top: .6rem; }
  .hero-visual .mascot { width: min(200px, 52%); }
  .comm-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta p { margin-inline: auto; }
  .store-btns { justify-content: center; }
  .foot-inner { justify-content: center; text-align: center; }
}
@media (max-width: 760px) {
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip-item { border-left: none !important; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hz-chip { display: none; }
  .hz-1, .hz-2 { display: flex; }
  .hz-1 { left: -2%; } .hz-2 { right: -2%; }
  .impact-grid { gap: 1rem .6rem; }
}
@media (max-width: 575px) {
  .nav-cta .btn {
    gap: .35rem;
    padding: .85rem 0.5rem;
    font-size: .78rem;
  }
}
@media (max-width: 480px) {
  .strip { grid-template-columns: 1fr; padding: 1.4rem; }
  .steps { grid-template-columns: 1fr; }
  .hz-chip { display: none !important; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hz-chip, .hero-visual .mascot, .cta-bunny img, .play-btn::after, .rs-marshal { animation: none !important; }
  .veh { display: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

  /* ================= CONTACT V1 (index-v1 experiment) ================= */
  .contact-sec { padding: clamp(3.2rem,6vw,5rem) 0 clamp(3.4rem,6.5vw,5.6rem); background: var(--bg); overflow: hidden; }
  .contact-sec .section-title { margin-bottom: .6rem; }
  .contact-sec .lead { text-align: center; max-width: 46ch; margin: 0 auto 2.6rem; }
  .contact-panel {
    position: relative; border-radius: 30px; overflow: hidden;
    background: linear-gradient(120deg, #dff0ff 0%, #fff7e4 55%, #e6f8d8 100%);
    border: 1px solid #d9e6ff; box-shadow: var(--shadow-md);
    display: grid; grid-template-columns: 1.75fr 1fr; gap: 1.2rem; align-items: end;
    padding: clamp(1.2rem,2.4vw,1.8rem) clamp(1.8rem,4vw,3rem) 0;
  }
  .contact-panel::before, .contact-panel::after {
    content: ""; position: absolute; border-radius: 50%; pointer-events: none;
    background: rgba(47,107,255,.07);
  }
  .contact-panel::before { width: 340px; height: 340px; top: -160px; right: -100px; background: rgba(255,176,31,.13); }
  .contact-panel::after { width: 240px; height: 240px; bottom: -120px; left: -70px; }
  .cc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; align-self: center; padding-bottom: clamp(1.4rem,3vw,2.2rem); position: relative; z-index: 1; }
  .cc {
    background: #fff; border-radius: 20px; padding: 1.35rem 1.1rem;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: .85rem; align-items: flex-start;
    transition: transform .25s ease, box-shadow .3s ease, border-color .3s;
  }
  .cc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .cc:hover .cc-ico { transform: rotate(-8deg) scale(1.08); }
  .cc .cc-ico {
    flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center; color: #fff;
    box-shadow: 0 8px 18px rgba(16,31,64,.18); transition: transform .25s ease;
  }
  .cc .cc-ico svg { width: 23px; height: 23px; }
  .cc.e1:hover { border-color: #bcd3ff; } .cc.e1 .cc-ico { background: linear-gradient(135deg,#5b8cff,#2f6bff); }
  .cc.e2:hover { border-color: #b9e7c9; } .cc.e2 .cc-ico { background: linear-gradient(135deg,#38ca6e,#16a34a); }
  .cc.e3:hover { border-color: #ffdf9e; } .cc.e3 .cc-ico { background: linear-gradient(135deg,#ffb020,#e08a00); }
  .cc.e4:hover { border-color: #ddc9ff; } .cc.e4 .cc-ico { background: linear-gradient(135deg,#a06bff,#7a3ff2); }
  .cc.e4 .cc-socials { margin-top: .25rem; }

  /* ---- footer v1: mini road + simplified layout ---- */
  footer { padding-top: 0; }
  .foot-road {
    position: relative; height: 58px; overflow: hidden; margin-bottom: 2rem;
    background: linear-gradient(180deg, #3d434f 0%, #333945 100%);
    border-bottom: 2px solid rgba(255,255,255,.08);
  }
  .foot-road::before {
    content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 3px; transform: translateY(-50%);
    background: repeating-linear-gradient(90deg, rgba(255,255,255,.75) 0 26px, transparent 26px 52px);
  }
  .fcar {
    position: absolute; width: 52px; transform: translateY(-50%);
    filter: drop-shadow(0 3px 4px rgba(0,0,0,.35));
    animation: fDriveR var(--spd, 14s) linear var(--delay, 0s) infinite;
  }
  .fcar svg { display: block; width: 100%; height: auto; }
  .fcar.rev { animation-name: fDriveL; }
  .fcar.rev svg { transform: scaleX(-1); }
  @keyframes fDriveR { from { left: -10%; } to { left: 110%; } }
  @keyframes fDriveL { from { left: 110%; } to { left: -10%; } }
  .foot-road .hz-pothole { width: 30px; opacity: .9; }
  @media (prefers-reduced-motion: reduce) { .fcar { display: none !important; } }
  .cc h3 { font-size: 1.02rem; margin-bottom: .18rem; }
  .cc p { color: var(--muted); font-size: .8rem; line-height: 1.45; margin-bottom: .3rem; }
  .cc a.cc-link { color: var(--brand-600); font-weight: 700; font-size: .82rem; word-break: break-word; }
  .cc a.cc-link:hover { text-decoration: underline; }
  .cc .cc-socials { display: flex; gap: .45rem; margin-top: .1rem; }
  .cc .cc-socials a {
    width: 32px; height: 32px; border-radius: 9px; background: var(--brand-50); color: var(--brand-600);
    display: grid; place-items: center; transition: background .2s, color .2s, transform .2s;
  }
  .cc .cc-socials a:hover { background: var(--brand-500); color: #fff; transform: translateY(-2px); }
  .cc .cc-socials svg { width: 16px; height: 16px; }
  .contact-bunny { position: relative; display: grid; place-items: end center; z-index: 1; }
  .contact-bunny img.plead {
    width: min(232px, 78%); display: block;
    position: relative; margin-bottom: -50px;
    filter: drop-shadow(0 18px 30px rgba(16,31,64,.22));
    animation: pleadBob 3.2s ease-in-out infinite;
    transform-origin: bottom center;
  }
  @keyframes pleadBob { 0%,100% { transform: rotate(-1.4deg); } 50% { transform: rotate(1.8deg); } }
  .reply-chip {
    position: absolute; top: 12%; right: 4%;
    display: flex; align-items: center; gap: .5rem;
    background: #fff; border-radius: 13px; padding: .55rem .8rem;
    box-shadow: var(--shadow-md); font-size: .8rem; font-weight: 700; color: var(--ink);
    animation: chipFloat 5s ease-in-out infinite;
  }
  .reply-chip .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; }
  .reply-chip .ic svg { width: 16px; height: 16px; }
  @media (max-width: 920px) {
    .contact-panel { grid-template-columns: 1fr; padding-bottom: 0; }
    .cc-grid { padding-bottom: 0; }
    .contact-bunny { margin-top: .5rem; }
    .contact-bunny img.plead { width: min(190px, 56%); }
    .reply-chip { top: 6%; right: 8%; }
  }
  @media (max-width: 700px) {
    .cc-grid { grid-template-columns: 1fr; }
    .cc { flex-direction: row; }
  }
  @media (prefers-reduced-motion: reduce) {
    .contact-bunny img.plead, .reply-chip { animation: none !important; }
  }
