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

:root {
  --bg:       #04091C;
  --bg2:      #080F23;
  --bg3:      #0D1630;
  --cyan:     #06C8E8;
  --cyan-dim: rgba(6,200,232,.12);
  --green:    #0DD995;
  --green-dim:rgba(13,217,149,.1);
  --purple:   #9B73F8;
  --purple-dim:rgba(155,115,248,.1);
  --text:     #EDF2FF;
  --muted:    #7A90B8;
  --border:   rgba(255,255,255,.07);
  --r:        16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; inset: 0 0 auto;
  z-index: 200;
  height: 68px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(4,9,28,.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-full-img {
  height: 42px; width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(6,200,232,.35));
}
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  color: var(--muted); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-pill {
  background: var(--cyan) !important;
  color: #04091C !important;
  padding: 9px 18px;
  border-radius: 10px;
  font-weight: 700 !important;
  transition: box-shadow .2s, transform .15s !important;
}
.nav-pill:hover {
  box-shadow: 0 0 20px rgba(6,200,232,.5) !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: .3s;
}

/* ─── HERO ─── */
.hero {
  display: flex; flex-direction: column;
  align-items: center;
  background: var(--bg);
}
.hero-banner-wrap {
  width: 100%; overflow: hidden;
  line-height: 0;
}
.hero-banner {
  width: 100%; display: block;
  max-height: 90vh; object-fit: cover; object-position: center;
}
.hero-content {
  max-width: 820px; width: 100%;
  padding: 72px 24px 80px;
  text-align: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-dim);
  border: 1px solid rgba(6,200,232,.25);
  color: var(--cyan);
  padding: 7px 15px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .4px;
  margin-bottom: 28px;
  animation: fadeUp .5s ease both;
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}

.hero h1 {
  font-size: clamp(42px, 7.5vw, 86px);
  font-weight: 900; line-height: 1.02; letter-spacing: -3px;
  margin-bottom: 24px;
  animation: fadeUp .5s .1s ease both;
}
.hero h1 .grad {
  background: linear-gradient(130deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 2.4vw, 20px); font-weight: 400;
  color: var(--muted); line-height: 1.65;
  max-width: 560px; margin: 0 auto 42px;
  animation: fadeUp .5s .2s ease both;
}

.hero-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .5s .3s ease both;
}
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 12px; font-weight: 700; text-decoration: none; transition: transform .15s, box-shadow .15s; }
.btn-cyan  { background: var(--cyan);   color: #04091C; padding: 15px 26px; font-size: 15px; box-shadow: 0 0 24px rgba(6,200,232,.3); }
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(6,200,232,.5); }
.btn-ghost { background: transparent; color: var(--text); padding: 14px 26px; font-size: 15px; border: 1px solid var(--border); }
.btn-ghost:hover { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.04); transform: translateY(-1px); }
.btn-green  { background: var(--green);  color: #03120B; padding: 13px 22px; font-size: 14px; }
.btn-green:hover  { opacity: .85; transform: translateY(-1px); }
.btn-purple { background: var(--purple); color: #fff;   padding: 13px 22px; font-size: 14px; }
.btn-purple:hover { opacity: .85; transform: translateY(-1px); }

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 13px 0; overflow: hidden;
}
.ticker { display: flex; gap: 56px; width: max-content; animation: ticker 35s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: 9px; white-space: nowrap; color: var(--muted); font-size: 13px; font-weight: 500; }
.ticker-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTIONS ─── */
.section { padding: 96px 24px; }
.container { max-width: 1100px; margin: 0 auto; }

.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 14px; }
.lead { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 500px; }

/* ─── SPLIT (owners / drivers) ─── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 44px 40px;
  position: relative; overflow: hidden;
  transition: border-color .25s;
}
.card:hover { border-color: rgba(255,255,255,.13); }
.card-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
}
.card.green .card-top-line { background: linear-gradient(90deg, transparent, var(--green) 50%, transparent); }
.card.purple .card-top-line { background: linear-gradient(90deg, transparent, var(--purple) 50%, transparent); }

.card-tag {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px; margin-bottom: 20px;
}
.card.green  .card-tag { color: var(--green);  background: var(--green-dim); }
.card.purple .card-tag { color: var(--purple); background: var(--purple-dim); }

.card-emoji { font-size: 36px; margin-bottom: 18px; display: block; }

.card h3 { font-size: 32px; font-weight: 900; letter-spacing: -1px; line-height: 1.1; margin-bottom: 12px; }
.card > p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 30px; }

.steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.step  { display: flex; align-items: flex-start; gap: 14px; }
.step-n {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.card.green  .step-n { background: var(--green-dim);  color: var(--green);  }
.card.purple .step-n { background: var(--purple-dim); color: var(--purple); }
.step-body { padding-top: 2px; }
.step-body strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.step-body span   { font-size: 13px; color: var(--muted); }

/* ─── FEATURES ─── */
.features-section { background: var(--bg2); }
.features-header  { text-align: center; margin-bottom: 60px; }
.features-header .lead { margin: 0 auto; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
}
.feat {
  background: var(--bg2); padding: 34px 30px;
  transition: background .2s;
}
.feat:hover { background: var(--bg3); }
.feat-icon { font-size: 26px; margin-bottom: 14px; display: block; }
.feat h4   { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.feat p    { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ─── CTA ─── */
.cta-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 28px; padding: 80px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(6,200,232,.08), transparent);
}
.cta-card h2 {
  font-size: clamp(28px,4vw,50px); font-weight: 900; letter-spacing: -1.5px;
  margin-bottom: 14px; position: relative;
}
.cta-card p { color: var(--muted); font-size: 17px; max-width: 440px; margin: 0 auto 36px; line-height: 1.6; position: relative; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─── */
footer {
  padding: 44px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-copy  { color: var(--muted); font-size: 13px; margin-top: 4px; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--text); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ─── LEGAL / CONTENT PAGES ─── */
.legal-content { max-width: 780px; margin: 0 auto; padding-top: 140px; }
.legal-content h2 { font-size: clamp(30px,4vw,44px); font-weight: 900; letter-spacing: -1px; margin-bottom: 8px; }
.legal-updated { color: var(--muted); font-size: 13px; margin-bottom: 40px; }
.legal-content h3 { font-size: 20px; font-weight: 800; margin: 40px 0 12px; letter-spacing: -.3px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 14px; }
.legal-content a { color: var(--cyan); }
.legal-content strong { color: var(--text); }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px 26px; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; transition: border-color .25s, transform .2s;
}
.blog-card:hover { border-color: rgba(255,255,255,.15); transform: translateY(-3px); }
.blog-tag { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); background: var(--cyan-dim); padding: 4px 10px; border-radius: 6px; margin-bottom: 14px; width: fit-content; }
.blog-card h3 { font-size: 19px; font-weight: 800; line-height: 1.3; margin-bottom: 10px; letter-spacing: -.3px; }
.blog-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 16px; flex-grow: 1; }
.blog-meta { color: var(--muted); font-size: 12.5px; }
.blog-post-content { max-width: 720px; margin: 0 auto; padding-top: 140px; }
.blog-post-content h1 { font-size: clamp(30px,4.5vw,46px); font-weight: 900; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 16px; }
.blog-post-content h2 { font-size: 24px; font-weight: 800; margin: 36px 0 12px; letter-spacing: -.4px; }
.blog-post-content p, .blog-post-content li { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.blog-post-content ul, .blog-post-content ol { padding-left: 22px; margin-bottom: 16px; }
.blog-post-content strong { color: var(--text); }
.blog-post-back { display: inline-flex; align-items: center; gap: 6px; color: var(--cyan); text-decoration: none; font-size: 14px; font-weight: 600; margin-bottom: 28px; }

/* ─── SUB-PAGE BANNER (illustrated SVG strip below the nav) ─── */
.page-banner {
  margin-top: 68px; width: 100%; height: 300px; overflow: hidden;
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  border-bottom: 1px solid var(--border);
}
.page-banner svg { width: 100%; height: 100%; display: block; }
.page-banner-img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.banner-pulse { animation: pulseDot 1.8s ease-in-out infinite; }
.banner-flow { stroke-dasharray: 6 8; animation: bannerFlow 1.2s linear infinite; }
@keyframes bannerFlow { to { stroke-dashoffset: -28; } }
.banner-float { animation: bannerFloat 4s ease-in-out infinite; }
@keyframes bannerFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ─── SUB-PAGE HERO ─── */
.page-hero { padding: 56px 24px 72px; text-align: center; position: relative; overflow: hidden; }
.page-hero .eyebrow, .page-hero .h2, .page-hero .lead { position: relative; }
.page-hero .h2 { margin: 0 auto 16px; }
.page-hero .lead { margin: 0 auto 34px; max-width: 620px; font-size: 18px; }

/* ─── ICON CIRCLE ─── */
.icon-circle {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.icon-circle svg { width: 22px; height: 22px; }
.icon-cyan   { background: var(--cyan-dim);   color: var(--cyan); }
.icon-green  { background: var(--green-dim);  color: var(--green); }
.icon-purple { background: var(--purple-dim); color: var(--purple); }

/* ─── PROVIDE / HANDLE CHECKLIST ─── */
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.scope-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 32px 30px; }
.scope-card h4 { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.scope-card.theirs h4 { color: var(--cyan); }
.scope-card.yours  h4 { color: var(--muted); }
.scope-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.scope-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text); line-height: 1.5; }
.scope-list svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--cyan); }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 4px; max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 4px; }
.faq-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.faq-item p  { color: var(--muted); font-size: 14.5px; line-height: 1.7; }

/* ─── PILLAR NOTE (roadmap/vision callout) ─── */
.roadmap-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-dim); border: 1px solid rgba(155,115,248,.25);
  color: var(--purple); font-size: 12.5px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-top: 14px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(4,9,28,.97); padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .page-banner { height: 190px; }
  .scope-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .card { padding: 32px 26px; }
  .cta-card { padding: 48px 28px; }
  footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -2px; }
  .hero-banner { height: 220px; max-height: none; }
}
