:root {
  --ink: #111827;
  --muted: #667085;
  --line: #e8e2d5;
  --paper: #f4f6f0;
  --white: #ffffff;
  --gold: #c9a24a;
  --gold-dark: #92722e;
  --green: #1f7a4d;
  --green-dark: #0f5132;
  --green-soft: #e7f4ec;
  --graphite: #111318;
  --soft: #ede7da;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 18px 60px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(10, 16, 18, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  border: 2px solid rgba(159, 224, 184, 0.78);
  background: rgba(31, 122, 77, 0.18);
  border-radius: 16px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0.08em;
}

.brand small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.nav {
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  max-width: 610px;
  padding: 6px;
  margin: 0 22px;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.055em;
  transition: color 0.2s ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: #9fe0b8;
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
  background: rgba(159, 224, 184, 0.1);
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.header-cta {
  min-width: 112px;
  color: var(--white);
  background: linear-gradient(135deg, #2a9b63, var(--green-dark));
  box-shadow: 0 16px 38px rgba(18, 118, 73, 0.24);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 286px;
  justify-content: flex-end;
}

.investor-login {
  position: relative;
  display: inline-grid;
  min-height: 46px;
  align-content: center;
  min-width: 164px;
  padding: 0 18px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 16%, rgba(159, 224, 184, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 224, 184, 0.22);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.investor-login::after {
  position: absolute;
  top: -36%;
  bottom: -36%;
  left: -54%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(18deg);
  animation: investorLoginSheen 5.2s ease-in-out infinite;
}

.investor-login:hover {
  transform: translateY(-2px);
  background: rgba(159, 224, 184, 0.1);
  border-color: rgba(159, 224, 184, 0.42);
}

.investor-login span,
.investor-login strong {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1.05;
}

.investor-login span {
  color: #9fe0b8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.investor-login strong {
  margin-top: 3px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

@keyframes investorLoginSheen {
  0%,
  55% {
    left: -56%;
    opacity: 0;
  }

  66% {
    opacity: 1;
  }

  86% {
    left: 114%;
    opacity: 0;
  }

  100% {
    left: 114%;
    opacity: 0;
  }
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #2a9b63, var(--green-dark));
  box-shadow: 0 14px 34px rgba(31, 122, 77, 0.24);
}

.btn-invest {
  color: var(--white);
  background: linear-gradient(135deg, #2a9b63, var(--green-dark));
  box-shadow: 0 14px 34px rgba(31, 122, 77, 0.24);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 42%, rgba(44, 191, 113, 0.26), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(201, 162, 74, 0.1), transparent 28%),
    linear-gradient(135deg, #071012 0%, #0f3b2a 54%, #10141c 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    linear-gradient(90deg, rgba(8, 14, 16, 0.9), rgba(8, 14, 16, 0.38)),
    radial-gradient(circle at 70% 22%, rgba(31, 122, 77, 0.28), transparent 16%),
    radial-gradient(circle at 80% 72%, rgba(255, 255, 255, 0.14), transparent 7%),
    linear-gradient(155deg, transparent 0 45%, rgba(255, 255, 255, 0.06) 45% 46%, transparent 46%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 120px);
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -160px;
  width: min(900px, 82vw);
  height: 420px;
  content: "";
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2), transparent 58%),
    linear-gradient(12deg, transparent 42%, rgba(31, 122, 77, 0.72) 43% 45%, transparent 46%),
    linear-gradient(-8deg, transparent 48%, rgba(255, 255, 255, 0.62) 49% 50%, transparent 51%);
  border: 1px solid rgba(31, 122, 77, 0.22);
  border-radius: 55% 38% 0 0;
  filter: blur(0.2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, calc(100% - 36px));
  padding: 130px 0 70px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 44px;
}

.hero-metrics {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-metrics div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(159, 224, 184, 0.2);
  border-radius: 24px;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: #9fe0b8;
  font-size: 30px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  padding: 92px 0;
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head p,
.split p {
  color: var(--muted);
  font-size: 18px;
}

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

.direction-card,
.car-card,
.info-panel,
.article-grid article,
.calculator-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.direction-card {
  display: flex;
  flex-direction: column;
  min-height: 282px;
  padding: 25px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.direction-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 122, 77, 0.28);
  box-shadow: 0 28px 90px rgba(17, 24, 39, 0.13);
}

.direction-card.highlight:hover {
  box-shadow: 0 30px 100px rgba(15, 59, 42, 0.28);
}

.direction-card span,
.article-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direction-card p,
.car-card p,
.info-panel p {
  color: var(--muted);
}

.direction-card a,
.info-panel a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
}

.direction-card a {
  margin-top: auto;
  padding-top: 24px;
}

.direction-card.highlight {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 12%, rgba(42, 155, 99, 0.35), transparent 32%),
    linear-gradient(145deg, #101820, #143323);
  border-color: rgba(42, 155, 99, 0.42);
}

.direction-card.highlight p {
  color: rgba(255, 255, 255, 0.72);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  padding: 0;
  background: rgba(31, 122, 77, 0.18);
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.trust-strip div {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9)),
    var(--white);
  transition:
    background 0.22s ease,
    transform 0.22s ease;
}

.trust-strip div:hover {
  background:
    linear-gradient(180deg, rgba(231, 244, 236, 0.98), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.trust-strip span {
  display: block;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.trust-strip strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
}

.proof-section {
  position: relative;
  overflow: hidden;
  padding: 64px;
  background:
    linear-gradient(90deg, rgba(31, 122, 77, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(31, 122, 77, 0.06) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 90% 8%, rgba(159, 224, 184, 0.22), transparent 28%),
    linear-gradient(135deg, #ffffff, #f5f7f0);
  background-size: 42px 42px, 42px 42px, auto, auto;
  border-top: 1px solid rgba(31, 122, 77, 0.16);
  border-bottom: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.proof-section::before {
  position: absolute;
  right: 5%;
  bottom: 42px;
  width: 360px;
  height: 96px;
  content: "";
  opacity: 0.2;
  background:
    linear-gradient(90deg, transparent 0 26px, rgba(31, 122, 77, 0.5) 26px 29px, transparent 29px 56px),
    linear-gradient(180deg, rgba(31, 122, 77, 0.24), transparent);
  border-radius: 999px;
}

.proof-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.76fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 28px;
}

.proof-head h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(34px, 3.8vw, 52px);
}

.proof-head p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.proof-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.proof-map-line {
  position: absolute;
  top: 50%;
  right: 32px;
  left: 32px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(31, 122, 77, 0.16), rgba(201, 162, 74, 0.42), rgba(31, 122, 77, 0.16));
  opacity: 1;
}

.proof-map-line::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: #c9a24a;
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(201, 162, 74, 0.58);
  transform: translate(-50%, -50%);
  animation: routePulse 5.2s ease-in-out infinite;
}

.proof-map div {
  position: relative;
  display: grid;
  min-height: 112px;
  align-content: center;
  grid-template-rows: 28px 42px;
  gap: 8px;
  padding: 20px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(31, 122, 77, 0.14);
  border-radius: 18px;
}

.proof-map strong {
  display: flex;
  align-items: center;
  color: var(--green-dark);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.proof-map small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.proof-grid article {
  position: relative;
  min-height: 198px;
  padding: 26px 0 0;
  background:
    linear-gradient(90deg, rgba(31, 122, 77, 0.34), rgba(201, 162, 74, 0.42)) top left / 100% 3px no-repeat;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid rgba(31, 122, 77, 0.22);
  border-radius: 0;
  box-shadow: none;
  transition:
    background 0.22s ease,
    transform 0.22s ease;
}

.proof-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  opacity: 0.75;
  animation: stageScan 6.4s ease-in-out infinite;
}

.proof-grid article:nth-child(2)::before {
  animation-delay: 0.7s;
}

.proof-grid article:nth-child(3)::before {
  animation-delay: 1.4s;
}

.proof-grid article:nth-child(4)::before {
  animation-delay: 2.1s;
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid article:hover {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(31, 122, 77, 0.82), rgba(201, 162, 74, 0.68)) top left / 100% 3px no-repeat;
  transform: translateY(-3px);
}

.proof-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: var(--green-dark);
  border: 1px solid rgba(31, 122, 77, 0.24);
  border-radius: 999px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
}

@keyframes routePulse {
  0%,
  12% {
    left: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  82% {
    left: 100%;
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes stageScan {
  0%,
  24% {
    transform: translateX(-115%);
    opacity: 0;
  }

  34% {
    opacity: 0.75;
  }

  74% {
    transform: translateX(260%);
    opacity: 0.75;
  }

  100% {
    transform: translateX(260%);
    opacity: 0;
  }
}

.legal-section {
  position: relative;
  overflow: hidden;
  padding: 66px;
  margin-bottom: 34px;
  background:
    linear-gradient(120deg, rgba(159, 224, 184, 0.08) 0 1px, transparent 1px 34%),
    radial-gradient(circle at 86% 16%, rgba(159, 224, 184, 0.2), transparent 28%),
    radial-gradient(circle at 15% 90%, rgba(201, 162, 74, 0.18), transparent 26%),
    linear-gradient(135deg, #071815, #0b2f22 52%, #14261f);
  border: 1px solid rgba(159, 224, 184, 0.16);
  border-radius: 42px;
  box-shadow: 0 34px 110px rgba(4, 16, 13, 0.22);
}

.legal-section::before {
  position: absolute;
  right: -80px;
  bottom: -60px;
  width: 520px;
  height: 220px;
  content: "";
  opacity: 0.2;
  background:
    linear-gradient(90deg, transparent 0 42px, rgba(159, 224, 184, 0.42) 42px 44px, transparent 44px 84px),
    linear-gradient(180deg, rgba(159, 224, 184, 0.18), transparent);
  border: 1px solid rgba(159, 224, 184, 0.16);
  border-radius: 90px 0 0 0;
  transform: rotate(-7deg);
}

.legal-section::after {
  position: absolute;
  right: 8%;
  bottom: 22px;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.68), rgba(159, 224, 184, 0.44), transparent);
}

.legal-head {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) 0.72fr;
  gap: 42px;
  margin-bottom: 34px;
}

.legal-copy h2 {
  max-width: 780px;
  color: #ffffff;
}

.legal-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.legal-visual {
  position: relative;
  min-height: 300px;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(159, 224, 184, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(159, 224, 184, 0.08) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 78% 18%, rgba(159, 224, 184, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  background-size: 34px 34px, 34px 34px, auto, auto;
  border: 1px solid rgba(159, 224, 184, 0.2);
  border-radius: 34px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 30px 90px rgba(0, 0, 0, 0.22);
}

.legal-visual::before {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px solid rgba(201, 162, 74, 0.18);
  border-radius: 26px;
}

.legal-visual::after {
  position: absolute;
  top: 48px;
  right: 36px;
  bottom: 76px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(201, 162, 74, 0.58), transparent);
  opacity: 0.75;
}

.legal-stamp {
  position: absolute;
  top: 34px;
  right: 42px;
  z-index: 4;
  padding: 8px 11px;
  color: #d8c88a;
  background: rgba(7, 24, 21, 0.72);
  border: 1px solid rgba(201, 162, 74, 0.24);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.legal-document {
  position: absolute;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(159, 224, 184, 0.28);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.legal-document span {
  display: block;
  margin-bottom: 14px;
  color: #0f5f3d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-document strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.legal-document i {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 9px;
  background: linear-gradient(90deg, rgba(31, 122, 77, 0.22), rgba(201, 162, 74, 0.2));
  border-radius: 999px;
}

.main-doc {
  top: 44px;
  left: 36px;
  z-index: 2;
  width: 58%;
  min-height: 182px;
}

.side-doc {
  right: 54px;
  bottom: 76px;
  z-index: 3;
  width: 46%;
  min-height: 154px;
  background: rgba(231, 244, 236, 0.92);
}

.legal-signature {
  position: absolute;
  left: 42px;
  bottom: 70px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(7, 24, 21, 0.72);
  border: 1px solid rgba(159, 224, 184, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-signature span {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, #9fe0b8, #c9a24a);
}

.legal-flow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.legal-flow span {
  position: relative;
  padding: 8px 11px;
  color: #9fe0b8;
  background: rgba(7, 24, 21, 0.74);
  border: 1px solid rgba(159, 224, 184, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-flow span::after {
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(159, 224, 184, 0.3), rgba(201, 162, 74, 0.52));
}

.legal-flow span:last-child::after {
  display: none;
}

.legal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.legal-grid article {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 10%, rgba(159, 224, 184, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(159, 224, 184, 0.16);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.legal-grid article::after {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 82px;
  height: 42px;
  content: "";
  opacity: 0.16;
  background:
    linear-gradient(90deg, transparent 0 18px, rgba(159, 224, 184, 0.78) 18px 20px, transparent 20px 38px),
    linear-gradient(180deg, rgba(159, 224, 184, 0.35), transparent);
  border-radius: 16px;
}

.legal-grid article:hover {
  background:
    radial-gradient(circle at 90% 10%, rgba(159, 224, 184, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.105);
  border-color: rgba(159, 224, 184, 0.34);
  transform: translateY(-4px);
}

.legal-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: #071815;
  background: linear-gradient(135deg, #9fe0b8, #c9a24a);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
}

.legal-grid strong {
  display: block;
  margin: 22px 0 12px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.legal-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.legal-note {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  margin-top: 22px;
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.18), rgba(159, 224, 184, 0.08)),
    rgba(7, 24, 21, 0.86);
  border: 1px solid rgba(201, 162, 74, 0.28);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(4, 16, 13, 0.18);
}

.legal-note strong {
  color: #9fe0b8;
  white-space: nowrap;
}

.legal-note span {
  color: rgba(255, 255, 255, 0.74);
}

.investor-pr-section {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 42px;
  padding: 64px;
  background:
    linear-gradient(120deg, rgba(31, 122, 77, 0.1) 0 1px, transparent 1px 36px),
    radial-gradient(circle at 8% 18%, rgba(159, 224, 184, 0.2), transparent 32%),
    radial-gradient(circle at 96% 84%, rgba(201, 162, 74, 0.14), transparent 32%),
    linear-gradient(135deg, #f5f7f0, #ffffff 44%, #eef5ef);
  border-top: 1px solid rgba(31, 122, 77, 0.14);
  border-bottom: 1px solid rgba(31, 122, 77, 0.14);
  border-radius: 0;
  box-shadow: none;
}

.investor-pr-copy {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 0;
  padding: 42px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(159, 224, 184, 0.24), transparent 34%),
    radial-gradient(circle at 10% 86%, rgba(201, 162, 74, 0.18), transparent 30%),
    linear-gradient(145deg, #071815, #0b2f22 58%, #173d2e);
  border: 1px solid rgba(159, 224, 184, 0.22);
  border-radius: 30px;
  box-shadow: 0 28px 86px rgba(4, 16, 13, 0.2);
}

.investor-pr-copy::after {
  position: absolute;
  right: -90px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(159, 224, 184, 0.16);
  border-radius: 50%;
}

.investor-pr-copy h2 {
  max-width: 620px;
}

.investor-pr-copy p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.ecosystem-map {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 42px;
  margin-top: 34px;
}

.eco-line {
  position: absolute;
  top: 15px;
  right: 22px;
  left: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(159, 224, 184, 0.18), rgba(201, 162, 74, 0.76), rgba(159, 224, 184, 0.18));
}

.eco-line::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: #c9a24a;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(201, 162, 74, 0.6);
  transform: translateY(-50%);
  animation: routePulse 5.8s ease-in-out infinite;
}

.eco-node {
  position: relative;
  z-index: 1;
  padding: 18px 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(159, 224, 184, 0.14);
  border-radius: 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.eco-node.primary {
  color: #071815;
  background: linear-gradient(135deg, #9fe0b8, #c9a24a);
}

.investor-pr-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 10px 0;
  border-top: 1px solid rgba(31, 122, 77, 0.16);
  border-bottom: 1px solid rgba(31, 122, 77, 0.16);
}

.investor-pr-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: auto;
  padding: 24px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(31, 122, 77, 0.14);
  border-radius: 0;
  box-shadow: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}

.investor-pr-grid article::after {
  display: none;
}

.investor-pr-grid article:hover {
  border-color: rgba(201, 162, 74, 0.46);
  transform: translateX(6px);
}

.investor-pr-grid article:last-child {
  border-bottom: 0;
}

.investor-pr-grid span,
.evidence-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  color: #0f5f3d;
  background: #e7f4ec;
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.investor-pr-grid span {
  width: fit-content;
  align-self: start;
  margin-top: 2px;
  color: #0f5f3d;
  background: rgba(159, 224, 184, 0.22);
  border-color: rgba(31, 122, 77, 0.18);
}

.investor-pr-grid strong,
.evidence-card strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.investor-pr-grid strong {
  margin: 0 0 8px;
  font-size: 25px;
}

.investor-pr-grid p {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.62;
}

.investor-pr-grid p,
.evidence-card p {
  margin: 0;
  color: var(--muted);
}

.evidence-section {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.035) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 88% 8%, rgba(159, 224, 184, 0.2), transparent 28%),
    radial-gradient(circle at 14% 92%, rgba(201, 162, 74, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(245, 247, 240, 0.96), rgba(255, 255, 255, 0.98));
  background-size: 38px 38px, auto;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.evidence-section::before {
  position: absolute;
  inset: auto 5% 42px auto;
  width: 360px;
  height: 160px;
  content: "";
  opacity: 0.08;
  background:
    linear-gradient(90deg, rgba(7, 24, 21, 0.74) 0 32%, transparent 32% 38%, rgba(7, 24, 21, 0.42) 38% 64%, transparent 64% 70%, rgba(7, 24, 21, 0.3) 70% 100%);
  border-radius: 18px;
  transform: rotate(-3deg);
}

.evidence-media-stack {
  position: absolute;
  top: 46px;
  right: 6%;
  display: grid;
  grid-template-columns: repeat(3, 92px);
  gap: 14px;
  opacity: 0.68;
}

.evidence-media-stack span {
  height: 120px;
  background:
    linear-gradient(180deg, rgba(7, 24, 21, 0.08), rgba(31, 122, 77, 0.04)),
    rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(31, 122, 77, 0.1);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.05);
}

.evidence-media-stack span:nth-child(2) {
  transform: translateY(-12px);
}

.evidence-media-stack span:nth-child(3) {
  transform: translateY(8px);
}

.evidence-head {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: 42px;
}

.evidence-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.evidence-team-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 0 28px;
  background: #071814;
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 32px;
  box-shadow: 0 30px 82px rgba(17, 24, 39, 0.12);
}

.evidence-team-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 24, 20, 0.04) 0%, rgba(7, 24, 20, 0.08) 38%, rgba(7, 24, 20, 0.84) 100%),
    radial-gradient(circle at 88% 18%, rgba(201, 162, 74, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(7, 24, 20, 0.18), transparent 28%, transparent 72%, rgba(7, 24, 20, 0.18));
}

.evidence-team-photo img {
  display: block;
  width: 100%;
  height: clamp(420px, 52vw, 680px);
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.96) contrast(1.04) brightness(0.9);
}

.evidence-team-photo figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 14px 28px;
  align-items: end;
  padding: 22px;
  color: #ffffff;
  background: rgba(7, 24, 20, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  backdrop-filter: blur(14px);
}

.evidence-team-photo figcaption span {
  color: #c9a24a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-team-photo figcaption strong {
  color: #ffffff;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.evidence-team-photo figcaption p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.evidence-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
  gap: 24px;
  margin: 0 0 28px;
}

.founder-portrait-card,
.team-proof-board {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.1);
}

.founder-portrait-card {
  min-height: 430px;
  margin: 0;
  color: #ffffff;
  background: #071814;
}

.founder-portrait-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 24, 20, 0.02) 34%, rgba(7, 24, 20, 0.88) 100%),
    radial-gradient(circle at 82% 18%, rgba(201, 162, 74, 0.18), transparent 24%);
}

.founder-portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.96) contrast(1.02);
}

.founder-portrait-card figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  padding: 20px;
  background: rgba(7, 24, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.founder-portrait-card figcaption span,
.team-proof-title span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #c9a24a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-portrait-card figcaption strong {
  display: block;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.founder-portrait-card figcaption p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.team-proof-board {
  display: grid;
  align-content: space-between;
  min-height: 430px;
  padding: 30px;
  background:
    radial-gradient(circle at 86% 12%, rgba(159, 224, 184, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 242, 0.9));
}

.team-proof-board::before {
  position: absolute;
  inset: 22px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(31, 122, 77, 0.1);
  border-radius: 24px;
}

.team-proof-title {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.team-proof-title strong {
  display: block;
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.team-proof-title p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
}

.team-avatars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(72px, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.team-avatars i {
  position: relative;
  min-height: 118px;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 224, 185, 0.95) 0 16px, transparent 17px),
    linear-gradient(180deg, rgba(13, 91, 57, 0.88) 38%, rgba(8, 45, 34, 0.96) 100%);
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.team-avatars i::before {
  position: absolute;
  right: 8px;
  bottom: 10px;
  left: 8px;
  padding: 7px 6px;
  color: #0b2f22;
  content: attr(data-label);
  background: linear-gradient(135deg, #f8fff9, #ccebd8);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
}

.team-avatars i:nth-child(2n) {
  transform: translateY(12px);
}

.team-avatars i:nth-child(3n) {
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 224, 185, 0.95) 0 16px, transparent 17px),
    linear-gradient(180deg, rgba(201, 162, 74, 0.78) 38%, rgba(13, 91, 57, 0.96) 100%);
}

.team-proof-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.team-proof-flow span {
  padding: 12px 14px;
  color: #0b2f22;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 122, 77, 0.14);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: center;
}

.evidence-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.24fr repeat(3, minmax(0, 0.92fr));
  gap: 16px;
}

.evidence-card {
  position: relative;
  overflow: hidden;
  min-height: 256px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(31, 122, 77, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 54px rgba(17, 24, 39, 0.06);
}

.evidence-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  content: "";
  background:
    linear-gradient(135deg, transparent 48%, rgba(31, 122, 77, 0.08) 49%),
    radial-gradient(circle, rgba(201, 162, 74, 0.14), transparent 66%);
  border-radius: 18px;
}

.evidence-photo {
  min-height: 286px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(4, 16, 13, 0.05), rgba(4, 16, 13, 0.86)),
    radial-gradient(circle at 50% 10%, rgba(159, 224, 184, 0.34), transparent 36%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, #0b2f22, #10251f);
  background-size: auto, auto, 32px 32px, auto;
  border-color: rgba(159, 224, 184, 0.2);
  box-shadow: 0 26px 74px rgba(4, 16, 13, 0.18);
}

.evidence-photo span {
  color: #0b2f22;
  background: #9fe0b8;
}

.evidence-photo strong {
  color: #ffffff;
}

.evidence-photo p {
  color: rgba(255, 255, 255, 0.72);
}

.team-strip {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: flex;
  gap: 8px;
  align-items: end;
}

.team-strip i {
  display: block;
  flex: 1;
  height: 58px;
  background:
    radial-gradient(circle at 50% 18%, rgba(159, 224, 184, 0.56) 0 10px, transparent 11px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(159, 224, 184, 0.16);
  border-radius: 16px 16px 10px 10px;
}

.team-strip i:nth-child(2),
.team-strip i:nth-child(4) {
  height: 72px;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.86fr;
  gap: 50px;
}

.check-list {
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--gold-dark);
  content: "✓";
  font-weight: 900;
}

.calculator-card {
  padding: 30px;
}

.calc-row,
.calc-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.calc-row span,
.calc-total span {
  color: var(--muted);
}

.calc-total {
  font-size: 19px;
}

.calc-total.invest {
  padding: 18px;
  margin-top: 14px;
  background: var(--green-soft);
  border: 1px solid rgba(31, 122, 77, 0.2);
  border-radius: 18px;
}

.calc-total.invest strong {
  color: var(--green-dark);
}

.calculator-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

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

.car-card {
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.car-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 122, 77, 0.28);
  box-shadow: 0 28px 90px rgba(17, 24, 39, 0.13);
}

.car-card:hover .car-visual {
  transform: scale(1.04);
}

.car-card h3,
.car-card p,
.car-card span {
  padding-right: 22px;
  padding-left: 22px;
}

.car-badge {
  display: inline-flex;
  width: auto;
  padding: 7px 12px;
  margin: 0 22px 16px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.car-visual {
  height: 184px;
  margin-bottom: 22px;
  background:
    linear-gradient(180deg, rgba(4, 16, 13, 0.04), rgba(4, 16, 13, 0.26)),
    linear-gradient(135deg, #222833, #0c0f13);
  background-position: center;
  background-size: cover;
  transition: transform 0.32s ease;
}

.car-visual.sonata {
  background-image:
    linear-gradient(180deg, rgba(4, 16, 13, 0.02), rgba(4, 16, 13, 0.28)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Hyundai_Sonata_DN8_PE_2025-03-07.jpg");
  background-position: center 54%;
}

.car-visual.k5 {
  background-image:
    linear-gradient(180deg, rgba(4, 16, 13, 0.02), rgba(4, 16, 13, 0.28)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Kia_K5_2.0_T-GDi_TF_Snow_White_Pearl_%287%29_%28cropped%29.jpg");
  background-position: center 52%;
}

.car-visual.morning {
  background-image:
    linear-gradient(180deg, rgba(4, 16, 13, 0.02), rgba(4, 16, 13, 0.28)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Kia_Picanto_%28JA%3B_2017%29.jpg");
  background-position: center 58%;
}

.car-visual.ev {
  background-image:
    linear-gradient(180deg, rgba(4, 16, 13, 0.02), rgba(4, 16, 13, 0.28)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Weltmeister_EX5_002.jpg");
  background-position: center 56%;
}

.car-visual.hongqi {
  background-image:
    linear-gradient(180deg, rgba(4, 16, 13, 0.02), rgba(4, 16, 13, 0.28)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Hongqi_E-QM5_001.jpg");
  background-position: center 54%;
}

.car-visual.byd {
  background-image:
    linear-gradient(180deg, rgba(4, 16, 13, 0.02), rgba(4, 16, 13, 0.28)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/2021_BYD_Qin_Plus_DM-i.jpg");
  background-position: center 56%;
}

.rent-note {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 28px;
  margin-top: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(31, 122, 77, 0.08), transparent 32%),
    #ffffff;
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.rent-note strong {
  min-width: 190px;
  color: var(--green);
}

.rent-note span {
  color: var(--muted);
}

.model-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.model-note strong {
  display: block;
  min-width: 0;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 18px;
}

.model-note span {
  display: block;
  max-width: 820px;
  line-height: 1.65;
}

.model-note ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
}

.model-note li {
  padding: 9px 12px;
  color: #0f5f3d;
  background: rgba(232, 246, 238, 0.86);
  border: 1px solid rgba(31, 122, 77, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.park-section {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 82% 15%, rgba(44, 191, 113, 0.22), transparent 28%),
    linear-gradient(135deg, #0a1114, #0f3b2a 54%, #111827);
  color: var(--white);
}

.park-shell {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.04);
}

.park-intro {
  max-width: 720px;
}

.park-intro .eyebrow {
  color: #9fe0b8;
}

.park-intro p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.park-visual {
  position: absolute;
  top: 54px;
  right: 54px;
  width: 320px;
  height: 160px;
  opacity: 0.9;
}

.route-line {
  position: absolute;
  inset: 56px 18px auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, #9fe0b8, rgba(201, 162, 74, 0.8), transparent);
}

.route-line::after {
  position: absolute;
  top: -6px;
  left: 18px;
  width: 14px;
  height: 14px;
  content: "";
  background:
    radial-gradient(circle, #ffffff 0 15%, #b7f2ca 16% 40%, rgba(159, 224, 184, 0.18) 41% 72%, transparent 73%);
  border-radius: 50%;
  box-shadow:
    0 0 18px rgba(159, 224, 184, 0.72),
    0 0 36px rgba(201, 162, 74, 0.26);
  animation: parkRoutePulse 4.4s ease-in-out infinite;
}

.node {
  position: absolute;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(159, 224, 184, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.node-a,
.node-b {
  animation: parkNodeGlow 4.4s ease-in-out infinite;
}

.node-a {
  top: 20px;
  left: 0;
}

.node-b {
  top: 20px;
  right: 0;
}

.node-c {
  right: 122px;
  bottom: 0;
  color: #111827;
  background: #9fe0b8;
  box-shadow: 0 0 0 0 rgba(159, 224, 184, 0.18);
  animation: parkCorePulse 3.8s ease-in-out infinite;
}

.park-location-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.park-location-strip div {
  position: relative;
  overflow: hidden;
  padding: 22px 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(159, 224, 184, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(159, 224, 184, 0.16);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.park-location-strip div::after {
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 140px;
  height: 92px;
  content: "";
  opacity: 0.16;
  background:
    radial-gradient(circle at 22% 82%, rgba(159, 224, 184, 0.9) 0 9px, transparent 10px),
    radial-gradient(circle at 76% 82%, rgba(159, 224, 184, 0.78) 0 9px, transparent 10px),
    linear-gradient(9deg, transparent 36%, rgba(159, 224, 184, 0.54) 37% 58%, transparent 59%);
  border-bottom: 2px solid rgba(159, 224, 184, 0.42);
}

.park-location-strip span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #9fe0b8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.park-location-strip strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.park-location-strip p {
  max-width: 480px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

@keyframes parkRoutePulse {
  0% {
    left: 18px;
    opacity: 0;
    transform: scale(0.7);
  }

  12% {
    opacity: 1;
  }

  48% {
    left: 138px;
    opacity: 1;
    transform: scale(1);
  }

  86% {
    left: 254px;
    opacity: 0.9;
    transform: scale(0.9);
  }

  100% {
    left: 254px;
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes parkNodeGlow {
  0%,
  100% {
    border-color: rgba(159, 224, 184, 0.32);
    box-shadow: 0 0 0 0 rgba(159, 224, 184, 0);
  }

  50% {
    border-color: rgba(159, 224, 184, 0.58);
    box-shadow: 0 0 0 10px rgba(159, 224, 184, 0.05);
  }
}

@keyframes parkCorePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(159, 224, 184, 0.14);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 16px rgba(159, 224, 184, 0.07);
  }
}

.park-grid {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.park-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.park-card p {
  color: rgba(255, 255, 255, 0.72);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.panel-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #0f3b2a;
  background: #9fe0b8;
  border-radius: 18px;
  font-weight: 900;
}

.panel-tag {
  color: #9fe0b8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.park-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.park-tags span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.utilization-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(159, 224, 184, 0.16);
}

.utilization-strip span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 16px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.utilization-strip span:hover {
  background: rgba(159, 224, 184, 0.13);
}

.park-card a {
  color: #9fe0b8;
}

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

.info-panel {
  padding: 34px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.info-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 122, 77, 0.28);
  box-shadow: 0 28px 90px rgba(17, 24, 39, 0.13);
}

.light-split {
  padding-top: 100px;
}

.car-import-copy {
  position: relative;
}

.import-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}

.import-countries span {
  padding: 9px 13px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.import-system {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.import-card {
  min-height: 190px;
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(31, 122, 77, 0.08), transparent 32%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.import-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 122, 77, 0.28);
  box-shadow: 0 24px 80px rgba(17, 24, 39, 0.12);
}

.import-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.import-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.import-card p {
  margin: 0;
  color: var(--muted);
}

.main-import {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(159, 224, 184, 0.2), transparent 34%),
    linear-gradient(135deg, #0a1114, #0f3b2a);
  border-color: rgba(31, 122, 77, 0.28);
}

.main-import span,
.main-import p {
  color: rgba(255, 255, 255, 0.74);
}

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

.article-grid article {
  min-height: 190px;
  padding: 28px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.article-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 122, 77, 0.28);
  box-shadow: 0 24px 80px rgba(17, 24, 39, 0.12);
}

.investor-access-section {
  position: relative;
  padding-top: 36px;
  padding-bottom: 36px;
}

.investor-access-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: 48px;
  align-items: center;
  padding: clamp(42px, 5.4vw, 72px);
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 12%, rgba(159, 224, 184, 0.26), transparent 26%),
    radial-gradient(circle at 16% 84%, rgba(201, 162, 74, 0.18), transparent 28%),
    linear-gradient(135deg, #06110f 0%, #0d2e22 48%, #06110f 100%);
  border: 1px solid rgba(159, 224, 184, 0.2);
  border-radius: 42px;
  box-shadow:
    0 40px 110px rgba(4, 16, 13, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.investor-access-card::before {
  position: absolute;
  inset: 18px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(159, 224, 184, 0.1);
  border-radius: 34px;
}

.investor-access-card::after {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 70%;
  height: 140%;
  content: "";
  opacity: 0.28;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(18deg);
  animation: accessSweep 7s ease-in-out infinite;
}

.investor-access-copy,
.investor-access-panel {
  position: relative;
  z-index: 1;
}

.investor-access-card h2 {
  max-width: 760px;
  color: #ffffff;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.investor-access-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.investor-access-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.investor-access-benefits span {
  position: relative;
  overflow: hidden;
  padding: 11px 15px;
  color: #dff6e8;
  background:
    linear-gradient(135deg, rgba(159, 224, 184, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(159, 224, 184, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.investor-access-benefits span::after {
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 40%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  animation: accessBadgeSheen 4.8s ease-in-out infinite;
}

.investor-access-benefits span:nth-child(2)::after {
  animation-delay: 0.7s;
}

.investor-access-benefits span:nth-child(3)::after {
  animation-delay: 1.4s;
}

.investor-access-panel {
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.investor-access-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(159, 224, 184, 0.24), transparent 28%),
    linear-gradient(135deg, transparent 0 45%, rgba(255, 255, 255, 0.08) 45% 50%, transparent 50% 100%);
}

.access-panel-top,
.access-dashboard,
.investor-access-panel p,
.investor-access-panel .btn {
  position: relative;
  z-index: 1;
}

.investor-access-panel span {
  display: inline-flex;
  padding: 8px 12px;
  color: #9fe0b8;
  background: rgba(159, 224, 184, 0.1);
  border: 1px solid rgba(159, 224, 184, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.investor-access-panel strong {
  display: block;
  margin-top: 16px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.1;
}

.access-dashboard {
  position: relative;
  min-height: 220px;
  margin: 28px 0 22px;
}

.access-screen {
  position: absolute;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(224, 243, 233, 0.88));
  border: 1px solid rgba(159, 224, 184, 0.34);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.access-screen small {
  display: block;
  color: #0f6a44;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.access-screen b {
  display: block;
  color: #071814;
  line-height: 1.05;
}

.access-screen-main {
  top: 0;
  left: 0;
  width: 72%;
  min-height: 158px;
  padding: 22px;
}

.access-screen-main b {
  margin-top: 16px;
  font-size: 30px;
}

.access-screen-card {
  right: 0;
  bottom: 0;
  width: 58%;
  min-height: 116px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(13, 91, 57, 0.95), rgba(7, 24, 20, 0.96));
}

.access-screen-card small,
.access-screen-card b {
  color: #ffffff;
}

.access-bars {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.access-bars i {
  display: block;
  height: 9px;
  overflow: hidden;
  background: rgba(15, 106, 68, 0.14);
  border-radius: 999px;
}

.access-bars i::after {
  display: block;
  width: 56%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #0f6a44, #c9a24a);
  border-radius: inherit;
}

.access-bars i:nth-child(2)::after {
  width: 76%;
}

.access-bars i:nth-child(3)::after {
  width: 42%;
}

.access-flow-line {
  position: absolute;
  top: 78px;
  right: 24px;
  left: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 162, 74, 0), rgba(201, 162, 74, 0.84), rgba(159, 224, 184, 0));
}

.access-flow-line i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  background: #c9a24a;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(201, 162, 74, 0.8);
  transform: translateY(-50%);
  animation: accessPulse 3.6s ease-in-out infinite;
}

.access-orbit {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(159, 224, 184, 0.11);
  border-radius: 50%;
}

.access-orbit-one {
  right: -140px;
  bottom: -190px;
  width: 440px;
  height: 440px;
  animation: orbitSoft 16s linear infinite;
}

.access-orbit-two {
  top: -220px;
  left: 38%;
  width: 520px;
  height: 520px;
  animation: orbitSoft 20s linear infinite reverse;
}

.access-signal {
  position: absolute;
  top: 50%;
  right: 30%;
  z-index: 0;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.72), transparent);
  transform: rotate(-18deg);
  animation: signalGlow 3.8s ease-in-out infinite;
}

.investor-access-panel .btn {
  margin-top: 22px;
  box-shadow: 0 0 0 0 rgba(44, 191, 113, 0.36);
  animation: accessButtonGlow 3s ease-in-out infinite;
}

.final-cta {
  width: min(1180px, calc(100% - 36px));
  padding: 70px;
  margin: 50px auto 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 80%, rgba(44, 191, 113, 0.28), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 74, 0.16), transparent 34%),
    linear-gradient(135deg, #0a1114, #0f3b2a 58%, #12151c);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 52px clamp(18px, 4vw, 56px) 38px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 16% 0%, rgba(159, 224, 184, 0.18), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(201, 162, 74, 0.14), transparent 28%),
    linear-gradient(135deg, #061512 0%, #0b2f22 54%, #081013 100%);
  border-top: 1px solid rgba(159, 224, 184, 0.18);
}

.footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.52), rgba(159, 224, 184, 0.42), transparent);
}

.footer::after {
  position: absolute;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: -76px;
  width: 340px;
  height: 170px;
  content: "";
  opacity: 0.2;
  background:
    radial-gradient(circle at 18% 82%, rgba(159, 224, 184, 0.8) 0 14px, transparent 15px),
    radial-gradient(circle at 76% 82%, rgba(159, 224, 184, 0.7) 0 14px, transparent 15px),
    linear-gradient(9deg, transparent 36%, rgba(159, 224, 184, 0.48) 37% 58%, transparent 59%);
  border-bottom: 2px solid rgba(159, 224, 184, 0.42);
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  letter-spacing: 0.14em;
}

.footer p {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.footer-cta {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  padding: 14px 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f9b62, #0f6a44);
  border: 1px solid rgba(159, 224, 184, 0.32);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(31, 155, 98, 0.2);
  font-size: 14px;
  font-weight: 900;
}

.footer-support {
  color: #101820;
  background: linear-gradient(135deg, #eadb9a, #c9a24a 58%, #9a7422);
  border-color: rgba(234, 219, 154, 0.56);
  box-shadow:
    0 18px 42px rgba(201, 162, 74, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.footer-cta::after {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -44%;
  width: 38%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: rotate(18deg);
  animation: footerCtaSheen 4.8s ease-in-out infinite;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

@keyframes footerCtaSheen {
  0%,
  58% {
    left: -46%;
    opacity: 0;
  }

  72% {
    opacity: 1;
  }

  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes accessSweep {
  0%,
  58% {
    transform: translateX(-45%) rotate(18deg);
  }

  100% {
    transform: translateX(185%) rotate(18deg);
  }
}

@keyframes accessPulse {
  0% {
    left: 0;
    opacity: 0;
  }

  16%,
  84% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes orbitSoft {
  to {
    transform: rotate(360deg);
  }
}

@keyframes signalGlow {
  0%,
  100% {
    opacity: 0.26;
    filter: blur(0);
  }

  50% {
    opacity: 0.72;
    filter: blur(1px);
  }
}

@keyframes accessButtonGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(44, 191, 113, 0.3);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(44, 191, 113, 0);
  }
}

@keyframes accessBadgeSheen {
  0%,
  54% {
    left: -44%;
    opacity: 0;
  }

  64% {
    opacity: 1;
  }

  92%,
  100% {
    left: 120%;
    opacity: 0;
  }
}

@media (max-width: 1050px) {
  .nav {
    display: none;
  }

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

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 92px;
  }

  .hero-metrics,
  .trust-strip,
  .direction-grid,
  .fleet-grid,
  .two-grid,
  .service-list,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .final-cta {
    padding: 38px 24px;
    border-radius: 28px;
  }
}
