:root {
  color-scheme: dark;
  --bg: #05070d;
  --bg-2: #0b1120;
  --surface: rgba(14, 20, 35, 0.9);
  --surface-strong: rgba(18, 28, 48, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --surface-bright: rgba(255, 255, 255, 0.1);
  --line: rgba(126, 160, 235, 0.16);
  --line-strong: rgba(255, 214, 102, 0.24);
  --text: #f7f8fc;
  --text-soft: #bac6e2;
  --text-muted: #7f8daa;
  --navy: #2153a0;
  --navy-2: #102441;
  --gold: #f2bd4a;
  --gold-2: #ffdd82;
  --lime: #98d51a;
  --danger: #ff6b7c;
  --success: #4fe0ae;
  --shadow-xl: 0 40px 120px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 16px 34px rgba(0, 0, 0, 0.24);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 221, 130, 0.14), transparent 18%),
    radial-gradient(circle at 18% 12%, rgba(22, 56, 111, 0.16), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(85, 215, 162, 0.08), transparent 18%),
    linear-gradient(180deg, #03050a 0%, #09111f 28%, #050a13 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(28px);
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.95), rgba(5, 8, 15, 0.72));
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup__mark {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  overflow: hidden;
}

.brand-lockup strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.brand-lockup span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav__link {
  color: var(--text-soft);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero {
  padding: 58px 0 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--gold-2);
  background: rgba(255, 221, 130, 0.08);
  border: 1px solid rgba(255, 221, 130, 0.16);
}

.hero__copy h1,
.section-heading h2,
.legal h1 {
  margin: 16px 0 18px;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hero__copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.85rem);
}

.hero__copy p {
  max-width: 61rem;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.glossy-card,
.glossy-panel,
.feature-card,
.timeline-card,
.legal-card,
.footer-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 28%, rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(18, 30, 56, 0.92), rgba(8, 14, 26, 0.96));
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  backdrop-filter: blur(26px);
}

.glossy-card::before,
.glossy-panel::before,
.feature-card::before,
.timeline-card::before,
.legal-card::before,
.footer-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 22%, transparent 65%, rgba(255, 221, 130, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 70%);
}

.hero-card {
  padding: 30px;
}

.hero-card__image {
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #05070d;
}

.hero-card__body {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stat {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(8, 13, 24, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat strong {
  display: block;
  font-size: 1.7rem;
  font-family: "Sora", sans-serif;
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 22px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0.03) 100%),
    linear-gradient(180deg, rgba(20, 31, 55, 0.96), rgba(8, 13, 24, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -8px 18px rgba(0, 0, 0, 0.28),
    0 14px 36px rgba(0, 0, 0, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 7px;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -10px 20px rgba(0, 0, 0, 0.32),
    0 18px 42px rgba(0, 0, 0, 0.35);
}

.button--gold {
  color: #11131a;
  border-color: rgba(255, 221, 130, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.05) 28%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, var(--gold-2), #f2bd4a 60%, #d89c12 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -10px 20px rgba(148, 95, 5, 0.26),
    0 18px 44px rgba(242, 189, 74, 0.18);
}

.button--navy {
  border-color: rgba(126, 160, 235, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 28%, rgba(255, 255, 255, 0.03) 100%),
    linear-gradient(180deg, #3872d2, #1e4da0 64%, #0d2446 100%);
}

.button--ghost {
  color: var(--text-soft);
}

.button--small {
  min-height: 48px;
  padding-inline: 20px;
  border-radius: 18px;
  font-size: 0.96rem;
}

.section {
  padding: 24px 0 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2,
.legal h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading p,
.section-copy {
  max-width: 60rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.feature-card {
  padding: 24px;
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 221, 130, 0.08);
  color: var(--gold-2);
  font-size: 1.4rem;
}

.feature-card h3 {
  margin: 16px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.32rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.feature-card ul,
.legal-card ul,
.faq-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.75;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.glossy-panel {
  padding: 28px;
}

.glossy-panel h3 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
}

.glossy-panel p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.glossy-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.75;
}

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

.pricing-card {
  padding: 26px;
}

.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 16px 0 18px;
}

.pricing-card__price strong {
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
}

.pricing-card__price span {
  color: var(--text-soft);
}

.pricing-card__badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(255, 221, 130, 0.08);
  border: 1px solid rgba(255, 221, 130, 0.2);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.timeline-card {
  padding: 24px;
}

.timeline-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(33, 83, 160, 0.18);
  color: #9fc2ff;
  font-family: "Sora", sans-serif;
}

.timeline-card h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
  font-family: "Sora", sans-serif;
}

.timeline-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.compare-table th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.compare-table td {
  color: var(--text-soft);
}

.callout {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 221, 130, 0.18);
  background:
    radial-gradient(circle at top right, rgba(255, 221, 130, 0.12), transparent 38%),
    rgba(13, 20, 36, 0.76);
}

.callout strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.callout p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

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

.faq-card {
  padding: 24px;
}

.faq-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
}

.faq-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.cta-band {
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
}

.cta-band p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.site-footer {
  padding: 34px 0 56px;
}

.footer-card {
  padding: 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 22px;
}

.footer-card h3 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.footer-card p,
.footer-card li {
  color: var(--text-soft);
  line-height: 1.75;
}

.footer-card ul {
  margin: 0;
  padding-left: 18px;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-note {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.legal {
  padding: 54px 0 64px;
}

.legal-hero {
  margin-bottom: 28px;
}

.legal-hero p {
  max-width: 65rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.legal-grid {
  display: grid;
  gap: 20px;
}

.legal-card {
  padding: 28px;
}

.legal-card h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 1.56rem;
}

.legal-card h3 {
  margin: 20px 0 10px;
  font-size: 1.08rem;
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
  line-height: 1.8;
}

.legal-card ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-card .callout {
  margin-top: 18px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu {
  display: none;
}

@media (max-width: 1120px) {
  .hero__grid,
  .pricing-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero__grid,
  .hero-stat-row,
  .pricing-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .compare-table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table th,
  .compare-table td,
  .compare-table tr {
    display: block;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tr {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .compare-table td {
    padding: 8px 0;
    border: 0;
  }

  .compare-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: var(--text);
    font-weight: 800;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    padding-top: 34px;
  }

  .hero-card,
  .feature-card,
  .glossy-panel,
  .pricing-card,
  .timeline-card,
  .faq-card,
  .legal-card,
  .footer-card {
    padding: 22px;
  }

  .button {
    width: 100%;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav__link {
    padding-inline: 10px;
    font-size: 0.94rem;
  }

  .hero__copy h1,
  .section-heading h2,
  .legal h1 {
    line-height: 1;
  }
}
