:root {
  --bg-main: #061126;
  --bg-soft: #0b1b3b;
  --bg-elevated: #102448;
  --line: rgba(133, 170, 255, 0.22);
  --ink: #f3f7ff;
  --text: #c6d2ea;
  --blue: #5aa8ff;
  --blue-dark: #81bcff;
  --cyan: #41d2ff;
  --orange: #ff9a47;
  --radius: 14px;
  --shadow-soft: 0 10px 28px rgba(1, 7, 20, 0.48);
  --shadow-hover: 0 18px 36px rgba(4, 12, 35, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: radial-gradient(circle at top center, #132c58 0%, #08162f 40%, #061126 100%);
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue-dark);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.hero {
  background: radial-gradient(circle at 5% 5%, #15366f 0%, #0a1d3d 35%, #08152d 100%);
}

#key-highlights,
#group-level-key-metrics-fy2025,
#road-safety-sustainability,
#shared-policies {
  background: var(--bg-soft);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  background: rgba(8, 19, 40, 0.82);
  backdrop-filter: blur(6px);
  box-shadow: 0 3px 16px rgba(12, 30, 55, 0.06);
}

main {
  padding-top: 76px;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  background: #13284f;
  color: #f8fbff;
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #d5e3ff;
  font-size: 0.94rem;
  font-weight: 600;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
}

.cta-btn {
  background: var(--orange);
  color: #1b1208;
}

.cta-btn.alt {
  background: transparent;
  color: var(--cyan);
  border-color: rgba(65, 210, 255, 0.5);
}

.cta-btn.cta-logo,
.cta-btn.alt.cta-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  color: inherit;
}

.cta-btn.cta-logo:hover,
.cta-btn.alt.cta-logo:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(133, 170, 255, 0.4);
}

.site-header .cta-btn.cta-logo img {
  display: block;
  flex: 0 0 auto;
  height: 28px;
  width: auto;
  max-height: 28px;
  max-width: min(150px, 32vw);
  object-fit: contain;
  border-radius: 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  text-transform: uppercase;
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.15rem;
  color: #e5eeff;
}

p,
li {
  color: var(--text);
}

.hero-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: center;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.three-col,
.metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(16, 36, 72, 0.92), rgba(13, 31, 64, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.95rem;
}

.metric-card .metric-number {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--blue);
  font-weight: 800;
}

.metric-label {
  margin: 0;
}

#group-level-key-metrics-fy2025 {
  background: radial-gradient(circle at 50% 20%, #1d3f8f 0%, #091b4a 45%, #071438 100%);
}

#group-level-key-metrics-fy2025 h2,
#group-level-key-metrics-fy2025 h3 {
  text-align: center;
  color: #ffffff;
}

#group-level-key-metrics-fy2025 .metrics-grid {
  margin-top: 24px;
  row-gap: 26px;
}

#group-level-key-metrics-fy2025 .metric-card {
  background: transparent;
  border: 1px solid rgba(79, 212, 255, 0.22);
  text-align: center;
  box-shadow: none;
}

#group-level-key-metrics-fy2025 .metric-card:hover {
  transform: none;
  box-shadow: none;
}

#group-level-key-metrics-fy2025 .metric-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

#group-level-key-metrics-fy2025 .metric-icon svg {
  width: 100%;
  height: 100%;
  stroke: #ff9a4a;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#group-level-key-metrics-fy2025 .metric-number {
  margin-bottom: 4px;
  color: #ffd34d;
}

#group-level-key-metrics-fy2025 .metric-label {
  color: var(--cyan);
  font-size: clamp(1.3rem, 2.2vw, 1.95rem);
  font-weight: 800;
  line-height: 1.2;
}

#group-level-key-metrics-fy2025 .metric-detail {
  margin: 10px auto 0;
  color: #f0f4ff;
  max-width: 32ch;
  font-size: 1.02rem;
  line-height: 1.3;
}

.image-card,
.image-grid {
  margin-top: 22px;
}

.image-grid {
  display: grid;
  gap: 14px;
}

.image-grid picture {
  display: block;
}

.image-grid img,
.image-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* These sections use 16:9 assets (ecosystem/market/safety).
   Keep the global 16:10 rule elsewhere to avoid shifting other image layouts. */
#our-ecosystem .image-grid.one img,
#market-expansion .image-grid.one img,
#road-safety-sustainability .image-grid.one img {
  aspect-ratio: 16 / 9;
}

.partner-card .partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(8, 22, 48, 0.55);
  border: 1px solid var(--line);
}

.partner-card .partner-logo picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.partner-card .partner-logo img {
  width: 100%;
  max-width: 220px;
  max-height: 56px;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  border: none;
  aspect-ratio: unset;
  filter: grayscale(1) saturate(0.3) brightness(0.95);
  opacity: 0.9;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.partner-card:hover .partner-logo img {
  filter: grayscale(0.2) saturate(0.9) brightness(1);
  opacity: 1;
}

.award-feature {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.25rem;
  align-items: center;
}

.award-media img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.award-content {
  position: relative;
}

.award-quote-mark {
  position: absolute;
  top: -14px;
  left: -2px;
  font-size: 3rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.45;
  margin: 0;
}

.award-content h3 {
  margin-top: 0.55rem;
}

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

.image-grid.one {
  grid-template-columns: 1fr;
}

.policy-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.policy-links li {
  margin-bottom: 8px;
}

.site-footer {
  background: #050d1f;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.site-footer h4 {
  margin: 0 0 12px;
  text-transform: uppercase;
  color: #fff;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #b6c4df;
}

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

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 28px;
  padding: 18px 0 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .three-col,
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #0e2143;
    border-bottom: 1px solid var(--line);
    padding: 12px 4%;
    gap: 12px;
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 66px 0;
  }

  .hero-grid,
  .two-col,
  .three-col,
  .metrics-grid,
  .image-grid.two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .award-feature {
    grid-template-columns: 1fr;
  }

  .cta-group {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .site-header .cta-btn.cta-logo,
  .site-header .cta-btn.alt.cta-logo {
    padding: 4px 8px;
  }

  .site-header .cta-btn.cta-logo img {
    height: 22px;
    max-height: 22px;
    max-width: 96px;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  #group-level-key-metrics-fy2025 .metric-icon {
    width: 56px;
    height: 56px;
  }

  #group-level-key-metrics-fy2025 .metric-label {
    font-size: 1.75rem;
  }
}
