:root {
  --bg: #050916;
  --panel: rgba(12, 18, 42, 0.82);
  --panel2: rgba(24, 18, 55, 0.78);
  --line: rgba(139, 92, 246, 0.42);
  --cyan: #22d3ee;
  --green: #6ef5b4;
  --purple: #a855f7;
  --pink: #f472d0;
  --white: #f8fbff;
  --muted: rgba(226, 238, 255, 0.82);
  --shadow: 0 0 44px rgba(34, 211, 238, 0.15), 0 0 90px rgba(168, 85, 247, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Poppins, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(34, 211, 238, 0.16), transparent 28%),
    radial-gradient(circle at 80% 28%, rgba(168, 85, 247, 0.18), transparent 34%),
    linear-gradient(135deg, #06112B 0%, #070A18 52%, #150B31 100%);
}

a { color: inherit; }

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

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 92px 1fr 76px;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  padding: 14px clamp(14px, 3vw, 46px);
  background: rgba(5, 9, 22, 0.96);
  border-bottom: 1px solid rgba(34, 211, 238, 0.18);
}

.header-logo img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(34, 211, 238, .42));
}

.header-banner {
  width: min(620px, 100%);
  height: 118px;
  justify-self: center;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

.menu-toggle {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(12,18,42,.92);
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.site-menu {
  position: absolute;
  right: clamp(14px, 3vw, 46px);
  top: calc(100% + 10px);
  display: none;
  min-width: 230px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(5, 9, 22, .98);
  box-shadow: var(--shadow);
}

.site-menu.open { display: grid; gap: 8px; }

.site-menu a {
  padding: 13px 14px;
  text-decoration: none;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  font-weight: 800;
}

.section-panel,
.content-section,
.promo-section,
.contact-section {
  padding: clamp(52px, 7vw, 108px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.hero {
  min-height: 600px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 72% 28%, rgba(168, 85, 247, .22), transparent 38%),
    radial-gradient(circle at 20% 84%, rgba(34, 211, 238, .16), transparent 34%),
    linear-gradient(135deg, rgba(8,15,35,.96), rgba(28,12,48,.96));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
}

.hero-content {
  min-width: 0;
}

.hero .eyebrow {
  margin-bottom: 16px;
}

.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 900;
  margin: 0 0 18px;
}

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

h1,
h2,
h3,
p,
a,
span,
button {
  overflow-wrap: anywhere;
}

h1 {
  font-size: 6.4rem;
  line-height: .92;
  letter-spacing: 0;
  margin-bottom: 28px;
  max-width: 1040px;
}

.hero h1 {
  max-width: 720px;
  font-size: 4.25rem;
  margin-bottom: 22px;
}

h2 {
  font-size: 4.6rem;
  line-height: .94;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.1;
  margin-bottom: 6px;
}

p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 650;
}

.hero-copy {
  max-width: 720px;
  color: #f7fbff;
  font-size: 1.14rem;
  line-height: 1.44;
  font-weight: 850;
}

.hero-poster {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 28px;
  background: rgba(5, 9, 22, .28);
  box-shadow: var(--shadow);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 0 28px rgba(34, 211, 238, .12);
}

.cta.primary {
  color: #03101b;
  background: linear-gradient(100deg, #6ee7d8, #55c9ff, #d9fbff);
}

.cta.secondary {
  background: linear-gradient(100deg, rgba(96, 62, 190, .92), rgba(99, 31, 73, .82));
}

.cta.ghost {
  background: rgba(255,255,255,.05);
}

.promo-section,
.content-section {
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 10% 8%, rgba(34, 211, 238, .14), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(168, 85, 247, .18), transparent 36%),
    linear-gradient(135deg, #071226 0%, #0b1023 50%, #170b33 100%);
}

.content-section.alt {
  background:
    radial-gradient(circle at 70% 10%, rgba(168, 85, 247, .18), transparent 35%),
    linear-gradient(135deg, #071226 0%, #121331 100%);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
}

.split.reverse {
  grid-template-columns: .85fr 1.15fr;
}

.copy-block {
  max-width: 640px;
}

.promo-art,
.wide-promo {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: rgba(5, 9, 22, .28);
}

.promo-art {
  object-fit: contain;
}

.wide-promo {
  margin-top: 36px;
}

.poster-main {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.support-poster {
  display: block;
  width: min(1180px, 100%);
  height: auto;
  aspect-ratio: 1448 / 1086;
  object-fit: contain;
  margin: 34px auto 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: rgba(5, 9, 22, .28);
}

#designed-to-help .section-inner,
#features .section-inner {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

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

.feature-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(9, 14, 36, .78);
  box-shadow: 0 0 22px rgba(34, 211, 238, .08);
}

.feature-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 0 13px rgba(34, 211, 238, .42));
}

.feature-card p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.34;
}

.section-lead {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer {
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 4px solid var(--cyan);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  font-size: 1rem;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 18px;
}

.mini-list span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, .35);
  background: rgba(34, 211, 238, .08);
  color: white;
  font-weight: 850;
}

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

.investment-art {
  align-self: center;
}

.app-services {
  background: linear-gradient(135deg, rgba(5, 9, 22, .96), rgba(13, 20, 48, .96));
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.contact-section {
  text-align: center;
  background: linear-gradient(135deg, #060a18, #0e1030);
}

.center { text-align: center; }

.center-row { justify-content: center; }

.footer-logo {
  width: min(240px, 55vw);
  margin: 0 auto 20px;
}

.footer-brand {
  margin-bottom: 8px;
  color: #f8fbff;
  font-size: 1.2rem;
  font-weight: 900;
}

.site-footer {
  padding: 34px clamp(18px, 4vw, 56px) 46px;
  background: #050916;
  border-top: 1px solid rgba(255,255,255,.1);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.site-footer a,
.site-footer span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  text-decoration: none;
  color: #dbe9ff;
  font-weight: 800;
}

.site-footer p {
  font-size: .95rem;
  color: #9fb1cd;
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(5, 9, 22, .96);
  border-bottom: 1px solid rgba(34, 211, 238, .18);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f8fbff;
  font-weight: 900;
}

.legal-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.legal-topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.legal-topbar nav a {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: #dbe9ff;
  text-decoration: none;
  font-weight: 800;
}

.legal-page {
  padding: clamp(42px, 6vw, 84px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 211, 238, .14), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(168, 85, 247, .18), transparent 36%),
    linear-gradient(135deg, #071226 0%, #0b1023 50%, #170b33 100%);
}

.legal-inner {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.legal-page h1 {
  max-width: 900px;
  font-size: clamp(2.45rem, 7vw, 5.4rem);
  line-height: .98;
  margin-bottom: 16px;
}

.legal-page a {
  color: var(--cyan);
  font-weight: 800;
}

.legal-page h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.08;
  margin: 34px 0 12px;
}

.legal-page h3 {
  margin-top: 22px;
  color: #f8fbff;
}

.legal-page p,
.legal-page li,
.legal-page td,
.legal-page th {
  color: rgba(226, 238, 255, .88);
  font-size: 1.02rem;
  line-height: 1.62;
  font-weight: 600;
}

.legal-summary {
  margin: 24px 0 30px;
  padding: 22px;
  border: 1px solid rgba(34, 211, 238, .28);
  border-radius: 22px;
  background: rgba(5, 9, 22, .54);
  box-shadow: var(--shadow);
}

.legal-card {
  margin-top: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(139, 92, 246, .36);
  border-radius: 22px;
  background: rgba(9, 14, 36, .72);
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.25rem;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.legal-page li + li {
  margin-top: 7px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid rgba(139, 92, 246, .36);
  border-radius: 18px;
}

.legal-page table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(5, 9, 22, .54);
}

.legal-page th,
.legal-page td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-align: left;
  vertical-align: top;
}

.legal-page th {
  color: #f8fbff;
}

.legal-note {
  border-left: 4px solid var(--cyan);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 66px 1fr 54px;
    padding: 10px 12px;
  }
  .header-logo img { width: 58px; height: 58px; }
  .header-banner {
    width: min(460px, 100%);
    height: 78px;
  }
  .menu-toggle { width: 48px; height: 48px; font-size: 24px; border-radius: 14px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { max-width: 760px; }
  .hero-poster {
    max-width: 760px;
    justify-self: center;
    border-radius: 22px;
  }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .copy-block { max-width: none; }
  .promo-art { border-radius: 22px; }
  .support-poster { border-radius: 18px; }
  .feature-grid,
  .feature-grid.compact,
  .service-grid { grid-template-columns: 1fr; }
  .legal-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .legal-topbar nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .section-panel,
  .content-section,
  .promo-section,
  .contact-section {
    padding: 42px 14px;
  }
  .hero { min-height: 0; }
  h1 { font-size: 2.45rem; line-height: 1.02; }
  h2 { font-size: 2.05rem; line-height: 1.08; }
  .hero h1 { font-size: 2.55rem; }
  .hero-copy { font-size: 1.08rem; }
  .header-banner {
    width: min(220px, 100%);
    height: 58px;
  }
  .cta { width: 100%; }
  .hero-poster,
  .wide-promo,
  .support-poster {
    border-radius: 16px;
  }
  .feature-card {
    grid-template-columns: 58px 1fr;
    padding: 15px;
    gap: 13px;
  }
  .feature-icon {
    width: 52px;
    height: 52px;
  }
}
