:root {
  --brand-orange: #ff6a2b;
  --deep-orange: #db531a;
  --soft-orange: #ffd8c2;
  --cream: #fdf5ef;
  --cream-strong: #fff9f3;
  --ink: #1f1b1b;
  --muted: #6f625b;
  --leaf: #21b73d;
  --shadow: 0 24px 80px rgba(204, 90, 23, 0.16);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 43, 0.22), transparent 32%),
    radial-gradient(circle at top left, rgba(255, 196, 120, 0.28), transparent 28%),
    linear-gradient(180deg, #fffaf5 0%, #fff4eb 38%, #fff8f2 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 20px 0 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  margin-bottom: 24px;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 240, 0.78);
  border: 1px solid rgba(255, 106, 43, 0.12);
  border-radius: 999px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.brand-text {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-nav {
  display: inline-flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--brand-orange);
}

.header-download,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-download,
.primary-cta {
  color: white;
  background: linear-gradient(135deg, var(--brand-orange), var(--deep-orange));
  box-shadow: 0 18px 34px rgba(255, 106, 43, 0.28);
}

.primary-cta.dark {
  background: var(--ink);
  box-shadow: 0 18px 34px rgba(31, 27, 27, 0.22);
}

.secondary-cta {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 27, 27, 0.08);
}

.header-download:hover,
.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-2px);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: center;
  padding: 36px 6px 30px;
}

.hero-copy,
.hero-visual,
.stats-band,
.feature-section,
.safety-section,
.download-section,
.site-footer {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 680ms ease forwards;
}

.hero-copy { animation-delay: 40ms; }
.hero-visual { animation-delay: 120ms; }
.stats-band { animation-delay: 180ms; }
.feature-section { animation-delay: 230ms; }
.safety-section { animation-delay: 280ms; }
.download-section { animation-delay: 340ms; }
.site-footer { animation-delay: 380ms; }

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.hero-copy h1,
.section-heading h2,
.download-copy h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  max-width: 10.5ch;
}

.hero-lead,
.section-heading p,
.feature-panel p,
.safety-card p,
.download-copy p,
.download-note,
.site-footer p,
.money-card p,
.trip-card p,
.assistant-card p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-lead {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.note-card,
.phone-card,
.feature-panel,
.safety-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 106, 43, 0.1);
  box-shadow: var(--shadow);
}

.note-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
}

.note-kicker,
.card-label,
.assistant-label,
.trip-card-top span:first-child,
.panel-index {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.note-card strong,
.assistant-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.02rem;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  padding: 30px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 186, 90, 0.72), transparent 24%),
    radial-gradient(circle at 35% 78%, rgba(255, 106, 43, 0.16), transparent 36%),
    linear-gradient(160deg, rgba(255, 251, 247, 0.94), rgba(255, 240, 225, 0.9));
  border: 1px solid rgba(255, 106, 43, 0.12);
}

.hero-glow {
  position: absolute;
  inset: 14% 10% auto;
  height: 52%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 174, 80, 0.5), rgba(255, 174, 80, 0));
  filter: blur(18px);
}

.phone-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 360px;
}

.phone-card {
  padding: 24px;
  border-radius: 30px;
}

.money-rows {
  display: grid;
  gap: 16px;
  margin: 16px 0 14px;
}

.money-tag {
  display: inline-block;
  margin-bottom: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(255, 106, 43, 0.12);
  color: var(--brand-orange);
}

.money-tag.saved {
  background: rgba(33, 183, 61, 0.12);
  color: var(--leaf);
}

.money-rows strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.trip-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.status-dot {
  position: relative;
  padding-left: 14px;
  color: var(--ink);
  font-weight: 700;
}

.status-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--leaf);
  transform: translateY(-50%);
}

.map-panel {
  position: relative;
  height: 178px;
  margin-bottom: 16px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 214, 185, 0.75), rgba(255, 248, 239, 0.9)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.45),
      rgba(255, 255, 255, 0.45) 16px,
      rgba(255, 220, 192, 0.45) 16px,
      rgba(255, 220, 192, 0.45) 32px
    );
  overflow: hidden;
}

.route-line {
  position: absolute;
  left: 26px;
  right: 44px;
  top: 54%;
  height: 0;
  border-top: 4px dashed rgba(31, 27, 27, 0.4);
  transform: rotate(-16deg);
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 4px solid white;
  box-shadow: 0 10px 18px rgba(31, 27, 27, 0.14);
}

.map-pin-start {
  left: 26px;
  top: 102px;
  background: var(--brand-orange);
}

.map-pin-end {
  right: 34px;
  top: 36px;
  background: var(--leaf);
}

.sos-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  min-width: 58px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, #ea2b20, #ba130a);
  box-shadow: 0 14px 24px rgba(186, 19, 10, 0.24);
}

.hero-mascot {
  position: absolute;
  right: 42px;
  top: 50px;
  width: min(44vw, 300px);
  filter: drop-shadow(0 34px 40px rgba(255, 121, 49, 0.16));
  animation: mascot-float 3.4s ease-in-out infinite alternate;
}

.assistant-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  width: min(290px, calc(100% - 56px));
  padding: 20px 22px;
  border-radius: 28px;
  background: rgba(31, 27, 27, 0.92);
  color: white;
  box-shadow: 0 26px 60px rgba(31, 27, 27, 0.24);
}

.assistant-card .assistant-label,
.assistant-card p {
  color: rgba(255, 255, 255, 0.76);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 34px;
}

.stats-band article {
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 106, 43, 0.08);
}

.stats-band span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand-orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-band strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.25;
}

.feature-section,
.safety-section {
  padding: 52px 8px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.download-copy h2 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  margin-bottom: 14px;
}

.feature-grid,
.safety-layout {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-panel {
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-panel h3,
.safety-card h3 {
  margin: 18px 0 10px;
  font-size: 1.5rem;
}

.safety-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.safety-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: center;
  margin-top: 56px;
  padding: 38px;
  border-radius: 36px;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 198, 110, 0.26), transparent 28%),
    linear-gradient(135deg, #ff742f, #e85f18 55%, #c74312);
  box-shadow: 0 34px 80px rgba(232, 95, 24, 0.22);
}

.download-section .eyebrow,
.download-section p,
.download-note {
  color: rgba(255, 255, 255, 0.88);
}

.download-note code {
  padding: 0.15em 0.42em;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 24px 10px 8px;
}

.footer-links {
  display: inline-flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.copyright {
  justify-self: end;
  text-align: right;
}

@keyframes mascot-float {
  from {
    transform: translate3d(0, 0, 0) rotate(-3deg) scale(0.99);
  }
  to {
    transform: translate3d(10px, -18px, 0) rotate(2.5deg) scale(1.03);
  }
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-section,
  .download-section,
  .site-footer,
  .safety-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 580px;
  }

  .copyright {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100vw - 20px, 1240px);
    padding-top: 10px;
  }

  .site-header {
    padding: 14px;
  }

  .brand-text {
    display: none;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.95rem;
  }

  .header-download {
    width: 100%;
  }

  .hero-section {
    padding-top: 20px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-notes,
  .stats-band,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 700px;
    padding: 22px;
  }

  .hero-mascot {
    width: min(62vw, 250px);
    right: 16px;
    top: 34px;
  }

  .assistant-card {
    width: calc(100% - 44px);
  }

  .phone-column {
    max-width: 100%;
    padding-top: 180px;
  }

  .download-section {
    padding: 28px 22px;
  }

  .site-footer {
    padding-bottom: 24px;
  }
}
