:root {
  --bg: #eef7fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --ink: #06131f;
  --muted: #536373;
  --line: rgba(8, 30, 48, 0.12);
  --blue: #155dfc;
  --cyan: #02d5ff;
  --green: #15e58f;
  --gold: #ffc72c;
  --red: #ef4444;
  --shadow: 0 24px 70px rgba(9, 32, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(2, 213, 255, 0.18), transparent 28%),
    linear-gradient(315deg, rgba(21, 93, 252, 0.12), transparent 32%),
    var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

.topbar {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(246, 252, 255, 0.86)),
    rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(21, 93, 252, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(8, 30, 48, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-weight: 950;
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: 172px;
  height: 50px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #041019;
  font-weight: 950;
  box-shadow: 0 10px 28px rgba(2, 213, 255, 0.28);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

nav a,
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-width: 40px;
  min-height: 40px;
}

nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.hero,
.investor-hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px clamp(22px, 6vw, 96px) 92px;
}

.investor-hero {
  min-height: 790px;
}

.hero-bg,
.map-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  filter: saturate(1.16) contrast(1.06);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 247, 251, 0.94), rgba(238, 247, 251, 0.68) 38%, rgba(238, 247, 251, 0.02) 78%),
    linear-gradient(0deg, rgba(238, 247, 251, 0.94), rgba(238, 247, 251, 0.04) 46%);
}

.hero::after,
.investor-hero::after {
  content: "";
  position: absolute;
  inset: 76px 0 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 93, 252, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 93, 252, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  max-width: 760px;
}

.hero-logo {
  display: block;
  width: min(440px, 92vw);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 18px 38px rgba(2, 213, 255, 0.28));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 950;
  line-height: 0.98;
}

.hero h1,
.investor-hero h1 {
  background: linear-gradient(100deg, #06131f, var(--blue) 54%, #00a88a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.04;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: #182b3c;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.28;
  font-weight: 850;
}

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

.primary-btn,
.secondary-btn,
.whatsapp-link,
.lead-form button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.primary-btn,
.lead-form button {
  background: linear-gradient(135deg, var(--blue), #11c6ff);
  color: #fff;
  box-shadow: 0 18px 36px rgba(21, 93, 252, 0.24);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(21, 93, 252, 0.3);
  color: var(--blue);
}

.whatsapp-link {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #041019;
}

.hero-signal {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 5vw, 90px);
  bottom: 54px;
  display: flex;
  gap: 10px;
}

.hero-signal span {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan);
  color: var(--ink);
  font-weight: 950;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(22px, 6vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
}

.intro p:last-child,
.cta p,
.pitch-download p,
.legal-content p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 44px;
}

.product,
.trust,
.roadmap,
.pitch-summary,
.pitch-download,
.waitlist-strip,
.investor-metrics {
  background: rgba(255, 255, 255, 0.54);
}

.product-grid,
.investor-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.4fr);
  gap: 26px;
  align-items: center;
}

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

.copy-panel,
.cards article,
.contact-copy,
.lead-form,
.pitch-grid article,
.investor-metrics article,
.waitlist-strip article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--cyan);
  padding: 28px;
  box-shadow: var(--shadow);
}

.copy-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.image-panel {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  display: block;
}

.map-band {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 90px clamp(22px, 6vw, 96px);
}

.map-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(238, 247, 251, 0.92), rgba(238, 247, 251, 0.46), rgba(238, 247, 251, 0.08));
}

.map-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-copy p:last-child,
.cards p,
.pitch-grid p {
  color: var(--muted);
  line-height: 1.45;
}

.cards,
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cards article:nth-child(even),
.pitch-grid article:nth-child(even) {
  border-top-color: var(--green);
}

.cards span,
.pitch-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  min-height: 148px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  padding: 20px;
  box-shadow: 0 18px 48px rgba(9, 32, 54, 0.1);
}

.timeline li:nth-child(n + 4) {
  border-top-color: var(--green);
}

.timeline strong,
.investor-metrics strong,
.waitlist-strip strong,
.admin-stats strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
}

.timeline span,
.investor-metrics span,
.waitlist-strip span {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.35;
}

.cta {
  padding: clamp(76px, 10vw, 140px) clamp(22px, 6vw, 96px);
  background:
    linear-gradient(135deg, rgba(21, 93, 252, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(2, 213, 255, 0.2), transparent 35%),
    #f8fcff;
  border-top: 1px solid var(--line);
}

.cta h2 {
  max-width: 900px;
}

.contact-grid {
  margin-top: 44px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 16px;
  border-top-color: var(--blue);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(21, 93, 252, 0.2);
  background: #f7fbff;
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(2, 213, 255, 0.32);
  outline-offset: 2px;
}

.lead-form button {
  width: 100%;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.form-status.success {
  color: #008d5b;
}

.form-status.error {
  color: var(--red);
}

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

.investor-metrics,
.waitlist-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.waitlist-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.investor-map {
  min-height: 620px;
}

.pitch-download .copy-panel {
  max-width: 980px;
}

.waitlist-hero h1 {
  max-width: 10ch;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 6vw, 96px);
  background: #ffffff;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  max-width: 760px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-size: 13px;
  font-weight: 950;
}

.site-footer a {
  color: var(--blue);
}

.legal-content {
  max-width: 1040px;
  padding: 132px clamp(22px, 6vw, 96px) 80px;
}

.legal-content h1 {
  max-width: 900px;
  margin-bottom: 48px;
  font-size: clamp(42px, 6vw, 78px);
  overflow-wrap: anywhere;
}

.legal-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: clamp(26px, 4vw, 40px);
}

.legal-content p {
  max-width: 820px;
  overflow-wrap: anywhere;
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(21, 93, 252, 0.14), transparent 30%),
    linear-gradient(315deg, rgba(2, 213, 255, 0.16), transparent 34%),
    var(--bg);
}

.admin-app {
  min-height: 100vh;
}

.admin-login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 6vw, 96px);
  padding: clamp(24px, 6vw, 84px);
}

.admin-login-copy {
  max-width: 740px;
}

.admin-login-copy .brand {
  margin-bottom: 72px;
}

.admin-page h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 0.98;
}

.admin-page h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
}

.admin-login-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.admin-product-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.admin-product-strip span,
.admin-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 93, 252, 0.18);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-login-card,
.admin-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-top: 4px solid var(--cyan);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.admin-login-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.admin-card-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-login-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.admin-login-card input {
  min-height: 52px;
  border: 1px solid rgba(21, 93, 252, 0.2);
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.admin-login-card button {
  min-height: 54px;
  border: 0;
  background: linear-gradient(135deg, var(--blue), #11c6ff);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(21, 93, 252, 0.24);
}

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.admin-nav {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.admin-nav a {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 950;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(21, 93, 252, 0.08);
  border-color: rgba(21, 93, 252, 0.18);
  color: var(--blue);
}

.admin-side-note {
  margin-top: auto;
  padding: 18px;
  background: linear-gradient(135deg, rgba(21, 93, 252, 0.08), rgba(2, 213, 255, 0.08));
  border: 1px solid var(--line);
}

.admin-side-note strong,
.admin-side-note span {
  display: block;
}

.admin-side-note strong {
  margin-bottom: 8px;
}

.admin-side-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.admin-main {
  margin-left: 280px;
  padding: 32px clamp(20px, 4vw, 56px) 72px;
}

.admin-topline,
.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.admin-topline {
  margin-bottom: 26px;
}

.admin-topline .secondary-btn {
  background: rgba(255, 255, 255, 0.86);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.admin-stats article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-top: 4px solid var(--cyan);
  padding: 18px 18px 20px;
  box-shadow: 0 14px 34px rgba(9, 32, 54, 0.1);
}

.admin-stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
}

.admin-stats small {
  display: block;
  color: var(--muted);
  line-height: 1.4;
}

.admin-panel {
  padding: 24px;
}

.admin-panel-head {
  margin-bottom: 20px;
}

.admin-panel-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: none;
}

table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
}

td {
  color: var(--ink);
  font-size: 14px;
}

@media (max-width: 1080px) {
  nav {
    gap: 12px;
    font-size: 13px;
  }

  .cards,
  .pitch-grid,
  .timeline,
  .investor-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar {
    height: auto;
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 10px;
  }

  .topbar nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .investor-hero {
    min-height: 760px;
    padding-top: 148px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(238, 247, 251, 0.96), rgba(238, 247, 251, 0.84)),
      linear-gradient(0deg, rgba(238, 247, 251, 0.98), rgba(238, 247, 251, 0.5));
  }

  .hero-signal {
    left: 22px;
    right: auto;
  }

  .intro,
  .product-grid,
  .contact-grid,
  .investor-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
  }

  .site-footer div {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .admin-stats,
  .waitlist-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-login-shell {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .admin-login-copy .brand {
    margin-bottom: 42px;
  }

  .admin-sidebar {
    position: static;
    width: auto;
  }

  .admin-main {
    margin-left: 0;
    padding: 24px;
  }

  .admin-topline,
  .admin-panel-head {
    display: block;
  }

  .admin-topline .secondary-btn {
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  .hero,
  .investor-hero {
    min-height: 700px;
  }

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

  .cards,
  .timeline,
  .investor-metrics,
  .pitch-grid,
  .waitlist-strip,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .legal-content h1,
  .admin-page h1 {
    font-size: 38px;
  }

  .admin-login-shell,
  .admin-main,
  .admin-sidebar {
    padding: 18px;
  }

  .admin-stats strong {
    font-size: 34px;
  }
}
