/* ================================================================
   Backbone Digital — EdgeNow Site
   Concept A: Bold dark, Compass-inspired
   ================================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* Brand tokens (from brand guide) */
:root {
  --navy: #022852;
  --navy-2: #1c4263;
  --cyan: #02ace7;
  --cyan-bright: #3ec1ee;
  --gold: #d9a21c;
  --canvas: #ffffff;
  --canvas-2: #f2f2f2;
  --ink: #0e1c2e;
  --ink-2: #4a5a70;
  --ink-3: #7a8699;
  --line: rgba(2, 40, 82, 0.12);
  --line-strong: rgba(2, 40, 82, 0.22);

  --max-content: 1280px;
  --gutter: clamp(20px, 5vw, 64px);

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Typography */
.h-display,
h1,
h2,
h3,
.eyebrow {
  font-family: 'Gontserrat', 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--navy);
  margin: 0;
}

h1 {
  font-size: clamp(44px, 7.5vw, 104px);
  font-weight: 800;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

p {
  margin: 0 0 1em;
}

.eyebrow {
  font-family: 'Gontserrat', 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--cyan);
  display: inline-block;
}

.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 62ch;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
}

.section--dark {
  background: var(--navy);
  color: #ffffff;
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: #ffffff;
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

.section--canvas {
  background: var(--canvas-2);
}

/* ============= NAV (white background, dark logo) ============= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 12px 0;
  box-shadow: 0 4px 20px -10px rgba(2, 40, 82, 0.18);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 36px;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu a {
  font-family: 'Gontserrat', 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
  position: relative;
}

.nav__menu a:hover {
  color: var(--cyan);
}

.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease;
}

.nav__menu a:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--navy);
  color: #fff !important;
  font-family: 'Gontserrat', 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.nav__cta:hover {
  background: var(--cyan);
  color: var(--navy) !important;
  transform: translateY(-1px);
}

.nav__cta::after {
  display: none !important;
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: var(--navy);
}

.nav__toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

@media (max-width: 900px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.18);
  }
  .nav__menu.is-open {
    transform: translateX(0);
  }
  .nav__menu a {
    font-size: 16px;
  }
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
  }
  .nav__cta {
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }
}

/* ============= HERO (split editorial) ============= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  background: var(--canvas);
  overflow: hidden;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--gutter) 60px;
  max-width: 740px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.hero__text::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--cyan);
}

.hero__media {
  position: relative;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__eyebrow {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero__eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--cyan);
}

.hero h1 {
  color: var(--navy);
  max-width: 16ch;
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--cyan);
  font-style: italic;
  font-weight: 800;
}

.hero__sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 40px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: 'Gontserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: 0;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(2, 40, 82, 0.5);
}

.btn--primary:hover {
  background: var(--cyan);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(2, 172, 231, 0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--navy);
  background: var(--canvas-2);
  transform: translateY(-2px);
}

/* dark variants used inside dark sections */
.section--dark .btn--primary,
.contact-section .btn--primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 8px 24px -8px rgba(2, 172, 231, 0.6);
}

.section--dark .btn--primary:hover,
.contact-section .btn--primary:hover {
  background: var(--cyan-bright);
  color: var(--navy);
}

.section--dark .btn--ghost,
.contact-section .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.section--dark .btn--ghost:hover,
.contact-section .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.25s;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.hero__stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 3;
  height: 120px;
}

.hero__stat {
  padding: 22px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.hero__stat-num {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 2.4vw, 38px);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hero__stat-num .unit {
  font-size: 0.45em;
  color: var(--cyan-bright);
  letter-spacing: 0.04em;
}

.hero__stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__text {
    padding: 120px var(--gutter) 80px;
    margin-left: 0;
    max-width: 100%;
  }
  .hero__media {
    aspect-ratio: 16 / 10;
    min-height: 320px;
  }
}

/* ============= SECTION HEADERS ============= */
.section__head {
  max-width: 760px;
  margin: 0 0 64px;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__head--center .eyebrow {
  justify-content: center;
}

/* ============= GAP / PROBLEM SECTION ============= */
.gap-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--canvas);
}

.gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.gap-callout {
  background: var(--navy);
  color: #fff;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.gap-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--cyan);
}

.gap-callout h3 {
  color: #fff;
  margin-bottom: 20px;
}

.gap-callout p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.6;
}

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

.gap-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
}

.gap-list li:last-child {
  border-bottom: 0;
}

.gap-list .num {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--cyan);
  letter-spacing: 0.05em;
  padding-top: 2px;
}

.gap-list h4 {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0 0 6px;
}

.gap-list p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .gap-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============= EDGENOW (PRODUCT INTRO) SECTION ============= */
.edgenow-section {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.edgenow-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(circle at 70% 30%, rgba(2, 172, 231, 0.18) 0%, transparent 50%);
  pointer-events: none;
}

.edgenow-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.edgenow-section h2 {
  color: #fff;
}

.edgenow-section h2 .accent {
  color: var(--cyan-bright);
}

.edgenow-section .lead {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

.edgenow-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.pillar {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  border-radius: 3px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.pillar:hover {
  border-color: var(--cyan);
  background: rgba(2, 172, 231, 0.05);
  transform: translateY(-3px);
}

.pillar__icon {
  width: 32px;
  height: 32px;
  color: var(--cyan-bright);
  margin-bottom: 14px;
}

.pillar h4 {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
}

.pillar p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.edgenow-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

.edgenow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edgenow-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(2, 40, 82, 0.5) 100%);
}

.edgenow-img__tag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 14px;
  background: var(--cyan);
  color: var(--navy);
  font-family: 'Gontserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 1;
}

@media (max-width: 1000px) {
  .edgenow-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .edgenow-img {
    aspect-ratio: 16 / 10;
    max-width: 100%;
  }
}

/* ============= HOW IT WORKS ============= */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.how-card {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.how-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(2, 40, 82, 0.18);
}

.how-card__num {
  display: inline-block;
  font-family: 'Gontserrat', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.how-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.how-card__sub {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 20px;
}

.how-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
}

.how-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.how-card__list li {
  font-size: 14px;
  color: var(--ink-2);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.5;
}

.how-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 2px;
  background: var(--cyan);
}

@media (max-width: 980px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============= DELIVERY OPTIONS ============= */
.delivery-section {
  background: var(--canvas-2);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.delivery-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(2, 40, 82, 0.22);
}

.delivery-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.delivery-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.delivery-card:hover .delivery-card__img img {
  transform: scale(1.04);
}

.delivery-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 40, 82, 0) 50%, rgba(2, 40, 82, 0.7) 100%);
}

.delivery-card__time {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  padding: 6px 12px;
  background: var(--cyan);
  color: var(--navy);
  font-family: 'Gontserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
}

.delivery-card__body {
  padding: 28px 28px 32px;
}

.delivery-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.delivery-card__cat {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 14px;
}

.delivery-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 18px;
}

.delivery-card__rows {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.delivery-card__rows li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.delivery-card__rows li:last-child {
  border-bottom: 0;
}

.delivery-card__rows .k {
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11.5px;
}

.delivery-card__rows .v {
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}

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

/* ============= PLATFORM STANDARDS ============= */
.platform-section {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.platform-section h2,
.platform-section h3 {
  color: #fff;
}

.platform-section h2 .accent {
  color: var(--cyan-bright);
  font-style: italic;
  font-weight: 800;
}

.platform-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.platform-bg {
  background: var(--navy);
}

.platform-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 100%, rgba(2, 172, 231, 0.10), transparent 55%),
    radial-gradient(ellipse at 15% 0%, rgba(2, 172, 231, 0.06), transparent 50%);
}

.platform-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6), transparent 70%);
  pointer-events: none;
}

.platform-section .container {
  position: relative;
  z-index: 1;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 56px;
}

.platform-cell {
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.3s;
}

.platform-cell:hover {
  background: rgba(2, 172, 231, 0.07);
}

.platform-cell__num {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--cyan-bright);
  line-height: 1;
  margin-bottom: 14px;
}

.platform-cell__num .unit {
  font-size: 0.55em;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 2px;
  letter-spacing: 0;
}

.platform-cell h4 {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
}

.platform-cell p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

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

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

/* ============= TRACK RECORD ============= */
.track-section {
  background: var(--canvas);
}

.track-banner {
  text-align: center;
  margin-bottom: 64px;
}

.track-banner__num {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(80px, 12vw, 180px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  background: linear-gradient(180deg, var(--navy) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.track-banner__num .plus {
  color: var(--cyan);
  -webkit-text-fill-color: var(--cyan);
}

.track-banner__label {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 18px;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.track-card {
  background: var(--canvas-2);
  border-radius: 3px;
  overflow: hidden;
  border-top: 3px solid var(--cyan);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.track-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -10px rgba(2, 40, 82, 0.18);
}

.track-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}

.track-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.track-card:hover .track-card__img img {
  transform: scale(1.04);
}

.track-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.track-card__region {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 8px;
}

.track-card__mw {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.track-card__mw .unit {
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.track-card__tier {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 500;
}

.track-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

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

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

/* ============= TEAM ============= */
.team-section {
  background: var(--canvas-2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.team-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(2, 40, 82, 0.2);
}

.team-card__img {
  aspect-ratio: 1 / 1;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
  transition: transform 0.5s;
}

.team-card:hover .team-card__img img {
  transform: scale(1.04);
}

.team-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(2, 40, 82, 0.4) 100%);
}

.team-card__body {
  padding: 22px 22px 26px;
}

.team-card h4 {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.team-card__role {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 14px;
}

.team-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-card ul li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  padding: 6px 0;
  border-top: 1px solid var(--line);
}

.team-card ul li:first-child {
  border-top: 0;
  padding-top: 0;
}

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

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

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

/* ============= CONTACT / CTA ============= */
.contact-section {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 40, 82, 0.92) 0%, rgba(2, 40, 82, 0.78) 100%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-section h2 {
  color: #fff;
  margin-bottom: 24px;
}

.contact-section h2 .accent {
  color: var(--cyan-bright);
}

.contact-section .lead {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
}

.contact-info {
  display: grid;
  gap: 28px;
  margin-top: 32px;
}

.contact-info__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-bright);
}

.contact-info__icon svg {
  width: 18px;
  height: 18px;
}

.contact-info__label {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  word-break: break-word;
}

.contact-info__value a {
  transition: color 0.2s;
}

.contact-info__value a:hover {
  color: var(--cyan-bright);
}

/* email image */
.email-img {
  height: 22px;
  vertical-align: middle;
  display: inline-block;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact-form label {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.contact-form__success {
  display: none;
  padding: 32px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  background: rgba(2, 172, 231, 0.06);
}

.contact-form__success.is-visible {
  display: block;
}

.contact-form__success h4 {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px;
}

.contact-form__success p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 14px;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* ============= FOOTER ============= */
.footer {
  background: #021a36;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
  font-size: 14px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 38ch;
  margin: 0;
}

.footer__col h5 {
  font-family: 'Gontserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 18px;
}

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

.footer__col li {
  margin-bottom: 10px;
}

.footer__col a {
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--cyan-bright);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom .copyright {
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

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

/* ============= REVEAL ANIMATION ============= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay='1'] {
  transition-delay: 0.08s;
}
.reveal[data-delay='2'] {
  transition-delay: 0.16s;
}
.reveal[data-delay='3'] {
  transition-delay: 0.24s;
}
.reveal[data-delay='4'] {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
