@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --bg: #030504;
  --bg-2: #071009;
  --panel: rgba(13, 18, 15, 0.72);
  --panel-strong: rgba(8, 12, 10, 0.9);
  --text: #f5f7f2;
  --muted: #a7b0a1;
  --soft: #6f786a;
  --accent: #b6ff00;
  --accent-2: #dcff6a;
  --line: rgba(182, 255, 0, 0.22);
  --line-soft: rgba(255, 255, 255, 0.1);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  --glow: 0 0 38px rgba(182, 255, 0, 0.24);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(182, 255, 0, 0.06), transparent 280px),
    linear-gradient(145deg, #020302 0%, #050905 44%, #090f0a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Outfit", sans-serif;
  letter-spacing: 0;
}

.page {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: linear-gradient(180deg, rgba(3, 5, 4, 0.82), rgba(3, 5, 4, 0.22));
  border-bottom: 1px solid rgba(182, 255, 0, 0.14);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 206px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(245, 247, 242, 0.74);
  font-size: 0.96rem;
  font-weight: 600;
}

.nav a {
  position: relative;
  transition: color 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 2px;
  background: var(--accent);
  box-shadow: var(--glow);
}

.mobile-menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #071004;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--glow);
}

.button-secondary,
.button-outline {
  color: var(--text);
  background: rgba(182, 255, 0, 0.07);
  border-color: rgba(182, 255, 0, 0.34);
}

.button-secondary:hover,
.button-outline:hover {
  border-color: rgba(182, 255, 0, 0.72);
  box-shadow: 0 0 26px rgba(182, 255, 0, 0.14);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #020302;
}

.hero-media,
.carousel-track,
.carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  opacity: 0;
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(1, 3, 2, 0.94) 0%, rgba(1, 3, 2, 0.84) 38%, rgba(1, 3, 2, 0.36) 72%, rgba(1, 3, 2, 0.68) 100%),
    linear-gradient(180deg, rgba(1, 3, 2, 0.4) 0%, rgba(1, 3, 2, 0.12) 42%, rgba(1, 3, 2, 0.9) 100%);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--accent);
  box-shadow: var(--glow);
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 170px 0 118px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  max-width: 870px;
  margin-top: 18px;
  font-size: 4.65rem;
  line-height: 1.02;
  font-weight: 700;
}

.hero p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(245, 247, 242, 0.82);
  font-size: 1.14rem;
  line-height: 1.7;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.metrics-band {
  position: relative;
  z-index: 5;
  margin-top: -34px;
  padding-bottom: 42px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(182, 255, 0, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(7, 10, 8, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 138px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--accent);
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: 2.65rem;
  line-height: 1;
}

.metric span {
  display: block;
  max-width: 220px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 600;
}

.section {
  padding: 74px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.section-head h2,
.why-copy h2,
.final-cta h2,
.cta-panel h2 {
  max-width: 760px;
  margin-top: 14px;
  font-size: 3.1rem;
  line-height: 1.08;
  font-weight: 700;
}

.section-head p,
.page-lead,
.section-copy p {
  max-width: 440px;
  color: var(--muted);
  line-height: 1.7;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.work-grid {
  grid-template-columns: repeat(4, 1fr);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fleet-card,
.use-case-card,
.solution-card,
.gov-card,
.model-card,
.contact-card,
.founder-panel,
.timeline-step,
.cta-panel,
.intro-shell,
.story-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.fleet-card:hover,
.use-case-card:hover,
.solution-card:hover,
.gov-card:hover,
.model-card:hover,
.contact-card:hover,
.founder-panel:hover,
.timeline-step:hover,
.cta-panel:hover,
.intro-shell:hover,
.story-card:hover {
  transform: translateY(-5px);
  border-color: rgba(182, 255, 0, 0.44);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 30px rgba(182, 255, 0, 0.08);
}

.fleet-card {
  min-height: 260px;
  padding: 24px;
}

.use-case-card {
  min-height: 500px;
}

.use-case-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.use-case-card:hover img {
  transform: scale(1.06);
}

.use-case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(1, 3, 2, 0.08), rgba(1, 3, 2, 0.2) 42%, rgba(1, 3, 2, 0.9)),
    linear-gradient(90deg, rgba(1, 3, 2, 0.34), transparent 62%);
}

.use-case-card > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.fleet-card span,
.use-case-card span,
.timeline-step span,
.use-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(182, 255, 0, 0.28);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(182, 255, 0, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.fleet-card h3,
.use-case-card h3,
.timeline-step h3,
.solution-card h3,
.gov-card h3,
.model-card h3,
.contact-card h3,
.story-card h3 {
  margin-top: 18px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.fleet-card p,
.solution-card p,
.gov-card p,
.model-card p,
.contact-card p,
.story-card p,
.cta-panel p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.66;
}

.section-split-premium {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(182, 255, 0, 0.06), transparent 46%),
    rgba(0, 0, 0, 0.28);
}

.why-spectra {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.why-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(182, 255, 0, 0.2);
  box-shadow: var(--shadow);
}

.why-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.why-copy {
  padding: 26px 0 26px 20px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 17px 18px 17px 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 247, 242, 0.9);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--glow);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.timeline-step {
  min-height: 190px;
  padding: 22px;
}

.timeline-step::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.founder-section {
  padding-top: 40px;
}

.founder-panel {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
}

.founder-photo,
.founder-avatar {
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(182, 255, 0, 0.34);
  background:
    linear-gradient(135deg, rgba(182, 255, 0, 0.18), rgba(255, 255, 255, 0.04)),
    #060806;
  color: var(--accent);
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-weight: 800;
  box-shadow: var(--glow);
}

.founder-photo {
  width: 180px;
  aspect-ratio: 1;
  font-size: 2.4rem;
}

.founder-avatar {
  width: 72px;
  height: 72px;
  font-size: 1.22rem;
}

.founder-panel h2 {
  margin-top: 12px;
  font-size: 2.8rem;
}

.founder-title,
.founder-role {
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
}

.founder-panel p {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.founder-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.founder-name {
  font-weight: 800;
}

.founder-note,
.direct-contact,
.solution-list div,
.gov-list div,
.model-list div,
.contact-list div {
  margin-top: 14px;
  padding: 15px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  line-height: 1.6;
}

.direct-contact {
  display: grid;
  gap: 8px;
  border-color: rgba(182, 255, 0, 0.26);
}

.direct-contact a,
.footer-col a:hover {
  color: var(--accent);
}

.final-section {
  padding-bottom: 90px;
}

.final-cta,
.cta-panel {
  padding: 46px;
  border: 1px solid rgba(182, 255, 0, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(182, 255, 0, 0.14), rgba(255, 255, 255, 0.03) 42%, rgba(0, 0, 0, 0.28)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-bottom: 26px;
}

.page-intro {
  padding: 150px 0 36px;
}

.intro-shell {
  padding: 42px;
}

.page-title {
  max-width: 850px;
  margin-top: 14px;
  font-size: 3.35rem;
  line-height: 1.08;
}

.page-lead {
  margin-top: 16px;
  font-size: 1.05rem;
}

.feature-image {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(182, 255, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(1, 3, 2, 0.18), rgba(1, 3, 2, 0.84)),
    url("./SPECTRA%20LOGO%20ASSETS/Spectra%20images/hero-cab-premium.jpg.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.feature-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(3, 5, 4, 0.72);
  backdrop-filter: blur(14px);
}

.feature-copy strong {
  display: block;
  font-size: 1.16rem;
}

.feature-copy p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.solutions-grid,
.gov-grid,
.model-grid,
.contact-grid,
.story-grid {
  display: grid;
  gap: 18px;
}

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

.gov-grid,
.model-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid,
.story-grid {
  grid-template-columns: 1fr 1fr;
}

.solution-card,
.gov-card,
.model-card,
.contact-card,
.story-card {
  padding: 26px;
  min-width: 0;
  overflow-wrap: break-word;
}

.contact-hero {
  padding: 148px 0 72px;
  background:
    linear-gradient(90deg, rgba(182, 255, 0, 0.06), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 48%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.contact-copy {
  padding-top: 22px;
}

.contact-copy .page-title {
  max-width: 680px;
}

.contact-leadership {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  color: var(--text);
}

.contact-leadership strong,
.contact-leadership span {
  display: block;
}

.contact-leadership span {
  margin-top: 5px;
  color: var(--muted);
}

.compact-contact {
  max-width: 410px;
  margin-top: 28px;
}

.contact-form-panel {
  margin: 0;
  padding: 30px;
  border-color: rgba(182, 255, 0, 0.24);
  background:
    linear-gradient(180deg, rgba(182, 255, 0, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.contact-form-panel h3 {
  margin-top: 14px;
  font-size: 1.75rem;
}

.contact-form-panel > p {
  max-width: 560px;
}

.contact-context-section {
  padding-top: 26px;
}

.contact-context-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-context-grid .contact-card {
  min-height: 172px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(182, 255, 0, 0.58);
  box-shadow: 0 0 0 4px rgba(182, 255, 0, 0.09);
}

select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 46px;
  border-color: rgba(182, 255, 0, 0.34);
  background-color: rgba(11, 15, 10, 0.88);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%),
    linear-gradient(180deg, rgba(182, 255, 0, 0.08), rgba(255, 255, 255, 0.035));
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px,
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

select:hover {
  border-color: rgba(182, 255, 0, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 18px rgba(182, 255, 0, 0.08);
}

select:focus {
  background-color: #0b0f0a;
  border-color: rgba(182, 255, 0, 0.72);
  box-shadow:
    0 0 0 4px rgba(182, 255, 0, 0.1),
    0 0 24px rgba(182, 255, 0, 0.12);
}

select option {
  background: #0b0f0a;
  color: #fff;
}

select option:checked {
  background: #16210d;
  color: #fff;
}

.contact-note {
  color: var(--soft);
  line-height: 1.5;
}

.footer {
  padding: 54px 0 30px;
  border-top: 1px solid rgba(182, 255, 0, 0.14);
  background: #020302;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 180px;
  height: auto;
}

.footer-brand p,
.footer-col a,
.footer-col span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-col h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .fleet-grid,
  .work-grid,
  .use-case-grid,
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .metrics-grid,
  .contact-context-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .section-head,
  .why-spectra,
  .founder-panel,
  .contact-hero-grid,
  .contact-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .why-copy {
    padding: 0;
  }

  .contact-hero {
    padding-top: 128px;
  }

  .contact-form-panel {
    max-width: none;
  }

  .solutions-grid,
  .gov-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav,
  .nav-cta {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    position: relative;
    z-index: 10001;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    background: rgba(0,0,0,0.45);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .mobile-menu-nav a {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.03em;
  }

  .mobile-menu-nav a:hover {
    color: #b6ff00;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .topbar {
    z-index: 10000;
  }

  .topbar-inner {
    min-height: 76px;
    gap: 18px;
  }

  .brand-logo {
    width: 170px;
  }

  .hero-content {
    padding: 140px 0 100px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(2.4rem, 8.8vw, 2.85rem);
    line-height: 1.12;
    text-wrap: balance;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  .topbar-inner {
    min-height: 74px;
  }

  .brand-logo {
    width: 158px;
  }

  .hero-content {
    padding: 130px 0 98px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.2vw, 2.45rem);
    line-height: 1.14;
  }

  .hero p {
    font-size: 1rem;
  }

  .metrics-grid,
  .fleet-grid,
  .work-grid,
  .use-case-grid,
  .contact-context-grid,
  .timeline,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .use-case-card,
  .use-case-card img {
    min-height: 390px;
  }

  .metric {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 54px 0;
  }

  .section-head h2,
  .why-copy h2,
  .final-cta h2,
  .cta-panel h2,
  .page-title {
    font-size: 2.18rem;
    line-height: 1.12;
  }

  .why-image,
  .why-image img {
    min-height: 390px;
  }

  .founder-panel {
    padding: 24px;
  }

  .founder-photo {
    width: 132px;
  }

  .hero-actions,
  .cta-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }
}
