/* TomTom public site — cinematic landing + legal pages */
:root {
  --ink: #1c1410;
  --ink-soft: #4a3b32;
  --muted: #6b5648;
  --paper: #fff8f2;
  --paper-2: #ffefe3;
  --line: #e8d2c2;
  --orange: #f97316;
  --orange-deep: #c2410c;
  --green: #15803d;
  --max: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 22px;
  --shadow: 0 24px 60px rgb(28 20 16 / 12%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--orange-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.6rem 1rem;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px) saturate(1.2);
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgb(28 20 16 / 6%);
}

body.has-hero .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}

body.has-hero .site-header:not(.is-scrolled) .brand span,
body.has-hero .site-header:not(.is-scrolled) .nav-links a:not(.nav-cta) {
  color: #fff8f2;
}

body.has-hero .site-header:not(.is-scrolled) .nav-links a:not(.nav-cta)::after {
  background: #fff;
}

body.has-hero .site-header:not(.is-scrolled) .nav-toggle {
  background: rgb(255 255 255 / 12%);
  color: #fff;
  border-color: rgb(255 255 255 / 28%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgb(249 115 22 / 28%);
}

.brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 560;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--orange-deep);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgb(249 115 22 / 32%);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--orange-deep);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 68px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgb(28 20 16 / 10%);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-cta {
    justify-content: center;
    margin-top: 0.25rem;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 28px rgb(249 115 22 / 35%);
}

.btn-primary:hover {
  background: #ea580c;
}

.btn-ghost {
  background: rgb(255 255 255 / 12%);
  border-color: rgb(255 255 255 / 35%);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgb(255 255 255 / 20%);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #2a1810;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(18 10 8 / 78%) 0%, rgb(28 20 16 / 42%) 48%, rgb(28 20 16 / 18%) 100%),
    linear-gradient(180deg, rgb(18 10 8 / 20%) 0%, rgb(18 10 8 / 78%) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-a {
  width: 280px;
  height: 280px;
  background: rgb(249 115 22 / 38%);
  left: -80px;
  bottom: 10%;
}

.hero-orb-b {
  width: 220px;
  height: 220px;
  background: rgb(255 237 213 / 18%);
  right: 18%;
  top: 12%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 5.5rem 0 5rem;
}

.hero-content {
  max-width: 38rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 18%);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section .eyebrow,
.dual-card .eyebrow,
.cta-split .eyebrow,
.page-hero .eyebrow {
  background: #fff;
  border-color: var(--line);
  color: var(--orange-deep);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 0 0 rgb(134 239 172 / 70%);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.4vw, 4.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff8f2;
}

.hero-lead {
  margin: 0 0 1.6rem;
  font-size: 1.12rem;
  color: #f3d9c6;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.hero-pills li {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 22%);
  background: rgb(255 255 255 / 8%);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffe8d6;
}

.hero-stage {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.phone {
  width: min(250px, 62vw);
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #3a2a24, #1c1410);
  box-shadow:
    0 40px 80px rgb(0 0 0 / 45%),
    inset 0 0 0 1px rgb(255 255 255 / 12%);
}

.phone img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 26px;
}

.glass-card {
  position: absolute;
  max-width: 180px;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgb(255 255 255 / 12%);
  border: 1px solid rgb(255 255 255 / 22%);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgb(0 0 0 / 22%);
}

.glass-card strong {
  display: block;
  font-size: 0.95rem;
}

.glass-card span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: #f3d9c6;
}

.glass-card-a {
  left: 0;
  top: 18%;
}

.glass-card-b {
  right: 0;
  bottom: 16%;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: #ffd7b5;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.scroll-hint span {
  width: 18px;
  height: 28px;
  border: 1.5px solid rgb(255 255 255 / 45%);
  border-radius: 12px;
  position: relative;
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 7px;
  border-radius: 4px;
  background: #fff;
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 6.5rem 0 4.5rem;
  }
  .hero-stage {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    justify-items: stretch;
  }
  .phone {
    display: none;
  }
  .glass-card {
    position: static;
    max-width: none;
  }
}

/* —— Marquee —— */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #1c1410;
  color: #ffd7b5;
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.marquee-track span {
  white-space: nowrap;
}

.marquee-track span::before {
  content: "●";
  color: var(--orange);
  margin-right: 0.7rem;
}

/* —— Sections —— */
.section {
  padding: 4.75rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
}

.section-bento {
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, #ffd7b5 0%, transparent 55%),
    var(--paper);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section h2,
.dual-card h2,
.cta-split h2,
.safety h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  margin: 0 0 0.55rem;
  letter-spacing: -0.03em;
}

.section .lead,
.cta-split .lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.stats-section {
  padding: 2.4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stats-grid article {
  padding: 1.25rem 1.1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.25rem;
  letter-spacing: -0.03em;
  color: var(--orange-deep);
}

.stats-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.step img,
.bento-card img,
.dual-card img,
.cta-photo img,
.feature img,
.split img {
  width: 100%;
  object-fit: cover;
}

.step img {
  height: 210px;
}

.step-num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  background: rgb(28 20 16 / 72%);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.step h3,
.feature h3,
.bento-card h3 {
  margin: 1rem 1.15rem 0.4rem;
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.step p,
.feature p,
.bento-card p {
  margin: 0 1.15rem 1.2rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.15rem;
}

.bento-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bento-wide {
  grid-row: span 2;
}

.bento-wide img {
  height: min(420px, 48vw);
}

.bento-card:not(.bento-wide) img {
  height: 190px;
}

.bento-wide h3,
.bento-wide p {
  margin-left: 1.4rem;
  margin-right: 1.4rem;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.dual-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dual-card img {
  height: 260px;
}

.dual-body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.dual-card .eyebrow {
  margin-bottom: 0.7rem;
}

.dual-card p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.check-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.check-list li {
  color: var(--ink-soft);
  font-weight: 560;
  padding-left: 1.4rem;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #ffedd5;
}

/* —— Safety —— */
.safety {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.safety-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.safety-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(12 8 6 / 20%) 0%, rgb(12 8 6 / 82%) 100%),
    linear-gradient(90deg, rgb(12 8 6 / 55%) 0%, transparent 70%);
}

.safety-content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3.5rem;
  max-width: 40rem;
}

.safety .eyebrow {
  background: rgb(255 255 255 / 10%);
  border-color: rgb(255 255 255 / 18%);
  color: #ffd7b5;
}

.safety p {
  color: #f3d9c6;
  max-width: 34rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill {
  display: inline-flex;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--ink-soft);
  background: #fff;
}

.pill-light {
  background: rgb(255 255 255 / 10%);
  border-color: rgb(255 255 255 / 22%);
  color: #ffe8d6;
}

.cta-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.cta-photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-photo img {
  height: min(420px, 52vw);
}

.cta-band {
  background: linear-gradient(135deg, #ea580c, #c2410c 55%, #9a3412);
  color: #fff;
  padding: 3.5rem 0;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.cta-band p {
  margin: 0 0 1.25rem;
  color: #ffedd5;
  max-width: 34rem;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--orange-deep);
}

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

.feature {
  padding: 0;
  border: none;
  background: transparent;
}

.feature img {
  height: 200px;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.feature h3,
.feature p {
  margin-left: 0;
  margin-right: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split img {
  border-radius: 18px;
  height: min(420px, 55vw);
}

@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .stats-grid,
  .steps,
  .grid-3,
  .dual-grid,
  .cta-split-grid,
  .split,
  .bento {
    grid-template-columns: 1fr;
  }
  .bento-wide {
    grid-row: auto;
  }
  .bento-wide img {
    height: 220px;
  }
}

/* —— Legal / inner pages —— */
.page-hero {
  position: relative;
  padding: 3.4rem 0 2rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, #ffd7b5 0%, transparent 55%),
    var(--paper);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.legal {
  padding: 2.5rem 0 4rem;
  max-width: 48rem;
}

.legal .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.5rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.legal ul {
  padding-left: 1.2rem;
}

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

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  background: #fff;
  box-shadow: 0 10px 28px rgb(28 20 16 / 5%);
  transition: transform 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
}

.contact-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid rgb(255 255 255 / 8%);
  padding: 2.75rem 0 2rem;
  background: #140e0b;
  color: #e7d5c6;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1.4fr 1fr 1fr;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer a {
  color: #ffd7b5;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c4a892;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 0.85rem;
  color: #a8907c;
}

/* —— Motion —— */
.js-anim [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

.js-anim [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal-delay="1"].is-in { transition-delay: 0.1s; }
[data-reveal-delay="2"].is-in { transition-delay: 0.2s; }
[data-reveal-delay="3"].is-in { transition-delay: 0.3s; }
[data-reveal-delay="4"].is-in { transition-delay: 0.4s; }

@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    animation: rise 0.85s ease both;
  }
  .hero-content > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.16s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.28s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.5s; }
  .hero-stage {
    animation: rise 1s ease 0.35s both;
  }
  .hero-media {
    animation: slow-zoom 22s ease-in-out alternate infinite;
  }
  .hero-orb-a {
    animation: blob 10s ease-in-out infinite;
  }
  .hero-orb-b {
    animation: blob 13s ease-in-out infinite reverse;
  }
  .pulse-dot {
    animation: pulse 1.8s ease-out infinite;
  }
  .phone {
    animation: float 6.5s ease-in-out infinite;
  }
  .glass-card-a {
    animation: float 7s ease-in-out infinite;
  }
  .glass-card-b {
    animation: float 8s ease-in-out infinite reverse;
  }
  .marquee-track {
    animation: marquee 32s linear infinite;
  }
  .scroll-hint span::after {
    animation: scroll-dot 1.6s ease-in-out infinite;
  }
  .step img,
  .bento-card img,
  .dual-card img,
  .cta-photo img,
  .feature img {
    transition: transform 0.6s ease;
  }
  .step:hover img,
  .bento-card:hover img,
  .dual-card:hover img,
  .cta-photo:hover img,
  .feature:hover img {
    transform: scale(1.05);
  }
}

@keyframes slow-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.16); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, 18px) scale(1.12); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgb(134 239 172 / 55%); }
  70% { box-shadow: 0 0 0 10px rgb(134 239 172 / 0%); }
  100% { box-shadow: 0 0 0 0 rgb(134 239 172 / 0%); }
}

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

@keyframes scroll-dot {
  0% { top: 6px; opacity: 1; }
  100% { top: 14px; opacity: 0.2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
