@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --ink: #08111f;
  --ink-2: #0d1c2f;
  --steel: #0e4f5a;
  --mint: #bfffe9;
  --gold: #c7a45d;
  --mist: #f4f7f5;
  --slate: #5d6875;
  --line: rgba(191, 255, 233, 0.18);
  --glass: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mist);
  background: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button,
  input,
  textarea,
  select,
  label,
  .card,
  .image-panel {
    cursor: none;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 10%, rgba(14, 79, 90, 0.68), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(199, 164, 93, 0.28), transparent 27%),
    linear-gradient(145deg, #08111f 0%, #0b1727 46%, #07101b 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(191, 255, 233, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 255, 233, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 72%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: rgba(244, 247, 245, 0.78);
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 17, 31, 0.78);
  backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(191, 255, 233, 0.42);
  border-radius: 13px;
  color: var(--mint);
  background: linear-gradient(135deg, rgba(191, 255, 233, 0.16), rgba(14, 79, 90, 0.44));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-link,
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 0;
  color: rgba(244, 247, 245, 0.82);
  background: transparent;
  font: inherit;
  font-weight: 700;
}

.nav-link:hover,
.dropdown-trigger:hover {
  color: var(--mint);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(191, 255, 233, 0.16);
  border-radius: 18px;
  background: rgba(8, 17, 31, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: 180ms ease;
}

.nav-links li:hover > .dropdown,
.nav-links li:focus-within > .dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: rgba(244, 247, 245, 0.78);
  font-weight: 700;
}

.dropdown a:hover {
  color: var(--ink);
  background: var(--mint);
}

.cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid rgba(191, 255, 233, 0.32);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--mint), #e9fff7);
  box-shadow: 0 16px 42px rgba(191, 255, 233, 0.18);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(191, 255, 233, 0.25);
}

.btn.secondary {
  color: var(--mist);
  background: rgba(255, 255, 255, 0.06);
}

.btn.gold {
  color: #1b160b;
  background: linear-gradient(135deg, var(--gold), #f1d999);
}

.hero,
.subhero {
  position: relative;
  padding: 92px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(191, 255, 233, 0.2);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(191, 255, 233, 0.07);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  font-family: "Sora", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6.9rem);
}

h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(244, 247, 245, 0.82);
  font-size: clamp(1.08rem, 1.65vw, 1.36rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: rgba(244, 247, 245, 0.78);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.92rem;
  font-weight: 700;
}

.dashboard {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(191, 255, 233, 0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(9, 23, 39, 0.72);
  box-shadow: var(--shadow);
}

.dashboard::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 255, 233, 0.32), transparent 62%);
  animation: pulseOrb 7s ease-in-out infinite;
}

.metric-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric,
.card,
.panel {
  border: 1px solid rgba(191, 255, 233, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.metric {
  min-height: 150px;
  padding: 18px;
}

.metric strong {
  display: block;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.06em;
}

.metric span {
  color: rgba(244, 247, 245, 0.68);
  font-size: 0.94rem;
  font-weight: 700;
}

.radar {
  position: relative;
  min-height: 260px;
  margin-top: 14px;
  border: 1px solid rgba(191, 255, 233, 0.18);
  border-radius: 28px;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 38px, rgba(191, 255, 233, 0.12) 39px 40px),
    linear-gradient(135deg, rgba(14, 79, 90, 0.4), rgba(8, 17, 31, 0.52));
}

.radar::after {
  content: "";
  position: absolute;
  inset: 50% 0 0 50%;
  transform-origin: 0 0;
  background: linear-gradient(90deg, rgba(191, 255, 233, 0.42), transparent 70%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  animation: sweep 5s linear infinite;
}

.section {
  padding: 86px 0;
}

.section.light {
  color: var(--ink);
  background: var(--mist);
}

.section.light h2,
.section.light h3 {
  color: var(--ink);
}

.section.light p {
  color: #41505f;
}

.section-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  padding: 26px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(191, 255, 233, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.section.light .card,
.section.light .panel {
  border-color: rgba(8, 17, 31, 0.08);
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(8, 17, 31, 0.08);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 24px;
}

.step-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: var(--ink);
  background: var(--mint);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.image-panel {
  overflow: hidden;
  border: 1px solid rgba(191, 255, 233, 0.15);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.quote {
  border-left: 3px solid var(--mint);
  padding-left: 18px;
  color: rgba(244, 247, 245, 0.83);
  font-size: 1.02rem;
}

.form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(244, 247, 245, 0.78);
  font-weight: 800;
}

.section.light label {
  color: #26384a;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid rgba(191, 255, 233, 0.18);
  border-radius: 15px;
  color: var(--mist);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  outline: none;
}

input[type="checkbox"] {
  width: auto;
  min-height: auto;
}

.section.light input,
.section.light select,
.section.light textarea {
  color: var(--ink);
  border-color: rgba(8, 17, 31, 0.12);
  background: #f9fbfa;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

.footer {
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 247, 245, 0.62);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer a {
  color: rgba(244, 247, 245, 0.74);
}

.answer-box,
.download-card,
.check-shell {
  border: 1px solid rgba(191, 255, 233, 0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(191, 255, 233, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
}

.answer-box {
  padding: 24px;
}

.answer-box strong {
  color: var(--mint);
}

.bullet-list,
.number-list {
  margin: 18px 0 0;
  padding-left: 22px;
  color: rgba(244, 247, 245, 0.78);
}

.section.light .bullet-list,
.section.light .number-list {
  color: #41505f;
}

.bullet-list li,
.number-list li {
  margin: 8px 0;
}

.countdown-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(199, 164, 93, 0.38);
  border-radius: 999px;
  color: #1b160b;
  background: linear-gradient(135deg, var(--gold), #f1d999);
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(199, 164, 93, 0.18);
}

.check-shell {
  overflow: hidden;
  padding: 28px;
}

.check-progress {
  height: 7px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.check-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--gold));
  transition: width 220ms ease;
}

.check-step {
  display: none;
}

.check-step.active {
  display: grid;
  gap: 16px;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.choice-grid button,
.modal-actions button {
  width: 100%;
}

.check-result {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(191, 255, 233, 0.28);
  border-radius: 20px;
  background: rgba(191, 255, 233, 0.1);
}

.check-result.visible {
  display: block;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 110;
  border: 0;
  color: var(--ink);
  background: linear-gradient(135deg, var(--mint), #e9fff7);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(3, 8, 15, 0.72);
  backdrop-filter: blur(14px);
}

.modal-backdrop.open {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(680px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(191, 255, 233, 0.22);
  border-radius: var(--radius-xl);
  background: rgba(8, 17, 31, 0.96);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--mist);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.2rem;
}

.download-card {
  padding: 24px;
}

.table-like {
  display: grid;
  gap: 12px;
}

.table-like div {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(191, 255, 233, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.section.light .table-like div {
  border-color: rgba(8, 17, 31, 0.08);
  background: #fff;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease, width 220ms ease, height 220ms ease, border-radius 220ms ease, background 220ms ease, border-color 220ms ease;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
}

.cursor-ready .cursor-dot,
.cursor-ready .cursor-ring {
  opacity: 1;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring,
body:has(input:hover) .cursor-ring,
body:has(textarea:hover) .cursor-ring,
body:has(select:hover) .cursor-ring {
  width: 74px;
  height: 74px;
  border-color: var(--mint);
  background: rgba(191, 255, 233, 0.1);
}

body:has(.image-panel:hover) .cursor-ring,
body:has(article:hover) .cursor-ring {
  width: 92px;
  height: 56px;
  border-radius: 22px;
  border-color: var(--gold);
}

body:has(.cta:hover) .cursor-dot,
body:has(.btn:hover) .cursor-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
}

@keyframes sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseOrb {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (hover: none), (pointer: coarse), (max-width: 820px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  html,
  body,
  a,
  button,
  input,
  textarea,
  select {
    cursor: auto;
  }
}

@media (max-width: 960px) {
  .nav {
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 8px;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 100%;
    margin-top: 4px;
  }

  .nav-links li:hover > .dropdown,
  .nav-links li:focus-within > .dropdown {
    display: block;
  }

  .hero-grid,
  .section-head,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .dashboard {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, var(--max));
  }

  .hero,
  .subhero {
    padding: 62px 0 48px;
  }

  .section {
    padding: 58px 0;
  }

  .metric-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    display: none;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
  }

  .table-like div {
    grid-template-columns: 1fr;
  }
}
