:root {
  --bg: #07111f;
  --bg-soft: #0b1728;
  --panel: rgba(16, 33, 54, 0.78);
  --panel-solid: #102136;
  --text: #f4f7fb;
  --muted: #9eacc0;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #52e6b8;
  --accent-strong: #29c998;
  --accent-dark: #073a30;
  --blue: #6da8ff;
  --amber: #f4bb61;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 7%, rgba(61, 145, 255, 0.13), transparent 25%),
    radial-gradient(circle at 12% 32%, rgba(82, 230, 184, 0.08), transparent 24%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header,
.hero,
.platform,
.benefits,
.cta-section,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  display: inline-block;
}

.brand-mark span {
  position: absolute;
  bottom: 3px;
  width: 7px;
  border-radius: 7px;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  transform: skewX(-12deg);
}

.brand-mark span:nth-child(1) {
  left: 2px;
  height: 16px;
}

.brand-mark span:nth-child(2) {
  left: 12px;
  height: 25px;
}

.brand-mark span:nth-child(3) {
  left: 22px;
  height: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a {
  transition: color 180ms ease, border-color 180ms ease;
}

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

.nav-cta {
  padding: 9px 15px;
  color: var(--text) !important;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
  min-height: 720px;
  padding: 72px 0 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.07;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.hero-text,
.section-heading p,
.cta-card p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #04251d;
  background: var(--accent);
  box-shadow: 0 14px 34px rgba(82, 230, 184, 0.18);
}

.button-primary:hover {
  background: #6ff0c8;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: #c3cedd;
  font-size: 0.82rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.dashboard-card {
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(19, 42, 68, 0.93), rgba(10, 25, 42, 0.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent 24%);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.dashboard-topbar strong {
  font-size: 1.05rem;
}

.mini-label {
  color: var(--muted);
  font-size: 0.72rem;
  margin-bottom: 2px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(82, 230, 184, 0.18);
  border-radius: 999px;
  color: #b9f5e3;
  background: rgba(82, 230, 184, 0.08);
  font-size: 0.68rem;
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(82, 230, 184, 0.08);
}

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

.metric {
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}

.metric > span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.metric > strong {
  display: block;
  margin-top: 14px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric > small {
  display: block;
  margin-top: 9px;
  color: var(--accent);
  font-size: 0.66rem;
}

.metric.wide {
  grid-column: 1 / -1;
  min-height: 210px;
  padding: 0;
  overflow: hidden;
}

.map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 210px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(82, 230, 184, 0.08), transparent 55%),
    #0c1b2d;
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.road {
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: rgba(109, 168, 255, 0.35);
  transform-origin: left center;
}

.road-a {
  left: 6%;
  top: 32%;
  width: 78%;
  transform: rotate(13deg);
}

.road-b {
  left: 19%;
  top: 80%;
  width: 66%;
  transform: rotate(-32deg);
}

.road-c {
  left: 47%;
  top: 2%;
  width: 48%;
  transform: rotate(79deg);
}

.vehicle-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid #d9fff3;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(82, 230, 184, 0.1), 0 0 22px rgba(82, 230, 184, 0.5);
}

.dot-a { left: 22%; top: 38%; }
.dot-b { left: 51%; top: 56%; }
.dot-c { left: 73%; top: 30%; }
.dot-d { left: 67%; top: 76%; }

.metric.activity {
  grid-column: 1 / -1;
  min-height: auto;
}

.activity ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.activity li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  color: #dbe3ee;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}

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

.activity time {
  color: var(--muted);
}

.activity-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.green { background: var(--accent); }
.amber { background: var(--amber); }
.blue { background: var(--blue); }

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.24;
}

.glow-one {
  width: 250px;
  height: 250px;
  right: -40px;
  top: -60px;
  background: var(--blue);
}

.glow-two {
  width: 230px;
  height: 230px;
  left: -50px;
  bottom: -80px;
  background: var(--accent);
}

.platform,
.benefits,
.cta-section {
  padding: 110px 0;
}

.platform {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.feature-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(82, 230, 184, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(82, 230, 184, 0.18);
  border-radius: 13px;
  color: var(--accent);
  background: rgba(82, 230, 184, 0.07);
  font-size: 1.15rem;
}

.benefit-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(82, 230, 184, 0.08), transparent 38%),
    var(--bg-soft);
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit-list > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list strong {
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.benefit-list span {
  color: #d4dde8;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  border-radius: 28px;
  color: #05271f;
  background: var(--accent);
}

.cta-card .eyebrow,
.cta-card p {
  color: #0a4f40;
}

.cta-card .eyebrow::before {
  background: currentColor;
}

.cta-card h2 {
  max-width: 680px;
  margin-bottom: 10px;
}

.cta-card .button-primary {
  min-width: 150px;
  color: var(--text);
  background: var(--bg);
  box-shadow: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  min-height: 130px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 86px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 680px;
  }

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

  .benefit-panel {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .platform,
  .benefits,
  .cta-section,
  .site-footer {
    width: min(100% - 26px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    gap: 48px;
    padding: 64px 0 72px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .dashboard-card {
    padding: 15px;
    border-radius: 20px;
    transform: none;
  }

  .dashboard-topbar {
    align-items: flex-start;
    gap: 15px;
  }

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

  .metric.wide,
  .metric.activity {
    grid-column: auto;
  }

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

  .platform,
  .benefits,
  .cta-section {
    padding: 78px 0;
  }

  .benefit-panel,
  .cta-card {
    padding: 28px;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 35px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
