:root {
  --ink: #0c0a09;
  --ink-soft: #1c1917;
  --paper: #faf7f2;
  --paper-dim: #f0ebe3;
  --saffron: #e85d04;
  --saffron-deep: #c2410c;
  --gold: #f4b942;
  --flag-green: #1b7a4b;
  --flag-saffron: #ff8c1a;
  --crimson: #b91c1c;
  --muted: #78716c;
  --line: rgba(28, 25, 23, 0.12);
  --glow: rgba(232, 93, 4, 0.35);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::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;
}

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: white;
  padding: 0.5rem 1rem;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(12, 10, 9, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(244, 185, 66, 0.5);
}

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

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

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--saffron);
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 24px var(--glow);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

@media (min-width: 880px) {
  .nav {
    padding: 1.1rem 3rem;
  }
  .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(12, 10, 9, 0.96);
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}

/* ─── Hero (UC-style stacked display) ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #0c0a09;
}

.hero-uc {
  align-items: center;
  padding-bottom: 4rem;
}

.hero-plane {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 85% 20%, rgba(232, 93, 4, 0.28), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(244, 185, 66, 0.12), transparent 55%),
    linear-gradient(160deg, #0c0a09 0%, #1c1917 42%, #292524 100%);
  animation: heroDrift 20s ease-in-out infinite alternate;
}

.hero-uc-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 7.5rem 1.5rem 2rem;
}

.hero-brand-uc {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-brand-uc img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 3px rgba(244, 185, 66, 0.45);
}

.hero-brand-uc em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-display {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 0 0 1.5rem;
}

.hero-display .line {
  display: block;
}

.hero-lead {
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  margin: 0 0 2rem;
  line-height: 1.5;
}

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

.reveal-line {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.95s var(--ease) forwards;
}
.hero-brand-uc.reveal-line,
.hero-brand-uc { animation: rise 0.95s var(--ease) 0.1s forwards; opacity: 0; }
.hero-display .line:nth-child(1) { animation-delay: 0.22s; }
.hero-display .line:nth-child(2) { animation-delay: 0.38s; }
.hero-lead.reveal-line { animation-delay: 0.55s; }
.hero-actions.reveal-line { animation-delay: 0.7s; }

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  opacity: 0;
  animation: rise 1s var(--ease) 1.1s forwards;
}
.scroll-hint span {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Sticky journey (UC truck-on-split, ~50%) ─── */
.journey {
  position: relative;
  height: 220vh;
}

.journey-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.journey-split {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.journey-top {
  background: #f5f5f4;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.25rem, 5vw, 5rem) 3.5rem;
}

.journey-bottom {
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: flex-start;
  padding: 3.5rem clamp(1.25rem, 5vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.journey-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron-deep);
}

.journey-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.journey-copy {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.journey-foot {
  margin: 0;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.journey-horizon {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  z-index: 2;
  pointer-events: none;
}

.journey-horizon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    #a3a3a3 0 14px,
    transparent 14px 28px
  );
  opacity: 0.65;
  animation: roadDash 0.9s linear infinite;
}

@keyframes roadDash {
  from { background-position: 0 0; }
  to { background-position: 28px 0; }
}

.journey-taxi {
  position: absolute;
  top: 50%;
  left: -28%;
  z-index: 4;
  width: clamp(240px, 42vw, 420px);
  transform: translate(-50%, -62%);
  will-change: left, opacity, transform;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.journey-taxi .taxi-real {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.journey-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 5;
}

.journey-progress i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transition: width 0.05s linear;
}

.section h2.display-break,
.display-break {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 1rem;
  max-width: none;
}

.milestone {
  background: var(--paper-dim);
}

.mile-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .mile-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.mile {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.mile h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.mile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

@media (prefers-reduced-motion: reduce) {
  .journey-horizon::after,
  .scroll-hint span,
  .hero-plane {
    animation: none;
  }
  .reveal-line,
  .hero-brand-uc {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@keyframes heroDrift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.06) translate(-0.8%, -0.6%); }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: #fff;
  box-shadow: 0 14px 36px var(--glow);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

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

/* ─── Sections ─── */
.section {
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin: 0 0 0.75rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 0.85rem;
  max-width: 18ch;
}

.section-lead {
  color: var(--muted);
  max-width: 48ch;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

.features {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 10, 9, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.15), rgba(244, 185, 66, 0.2));
  color: var(--saffron-deep);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.band {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.35), transparent 65%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.band h2 {
  color: #fff;
  max-width: 22ch;
}

.band .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  color: var(--gold);
}
.stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.5rem;
}
.panel dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
  margin-top: 1rem;
}
.panel dt:first-child {
  margin-top: 0;
}
.panel dd {
  margin: 0.25rem 0 0;
  font-weight: 650;
}

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
}
.partner {
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background: var(--paper-dim);
  font-size: 0.9rem;
  font-weight: 650;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(120deg, #431407, #9a3412 55%, #c2410c);
  color: #fff;
}
.cta-strip h2 {
  margin: 0;
  color: #fff;
  max-width: 16ch;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.cta-strip p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

/* ─── Page (legal) ─── */
.page-hero {
  padding: 8rem 1.5rem 3rem;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(232, 93, 4, 0.12), transparent),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero .section-inner {
  width: min(820px, 100%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.04em;
  margin: 0.5rem 0 0.75rem;
}
.page-hero p {
  color: var(--muted);
  margin: 0;
  max-width: 48ch;
}

.prose {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2.25rem 0 0.75rem;
  letter-spacing: -0.02em;
}
.prose h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
}
.prose p,
.prose li {
  color: #44403c;
}
.prose ul {
  padding-left: 1.2rem;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}
.prose th,
.prose td {
  text-align: left;
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.prose th {
  width: 38%;
  color: var(--muted);
  font-weight: 650;
  background: var(--paper-dim);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.footer strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer a {
  color: rgba(255, 255, 255, 0.72);
}
.footer a:hover {
  color: var(--gold);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.92rem;
}
.footer-col h4 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-bottom {
  width: min(1120px, 100%);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}
