:root {
  --ink: #07111f;
  --ink-2: #17243b;
  --muted: #59687d;
  --paper: #f3f7f8;
  --white: #ffffff;
  --lime: #dcff3f;
  --cyan: #32d5ff;
  --violet: #8b6dff;
  --steel: #dfe7ec;
  --amber: #ffbd39;
  --line: rgba(17, 27, 43, 0.12);
  --shadow: 0 26px 70px rgba(7, 17, 31, 0.18);
  --content-max: 1440px;
  --content-pad: clamp(20px, 4vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #07111f 0 680px, var(--paper) 680px 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(var(--content-max), calc(100% - var(--content-pad)));
  height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(248, 251, 252, 0.86);
  box-shadow: 0 18px 38px rgba(7, 17, 31, 0.18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--violet), var(--cyan)),
    #111b2b;
  font-size: 1.15rem;
  font-weight: 950;
}

.brand-name {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  border-radius: 8px;
  padding: 10px 12px;
}

nav a:hover {
  background: rgba(17, 27, 43, 0.07);
}

.nav-download {
  color: var(--white);
  background: linear-gradient(135deg, #07111f, #1d3454);
  box-shadow: 0 10px 22px rgba(7, 17, 31, 0.16);
}

nav .nav-download:hover {
  background: #23324a;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
}

.hero-scrim {
  background:
    radial-gradient(circle at 76% 28%, rgba(50, 213, 255, 0.22), transparent 28%),
    radial-gradient(circle at 8% 72%, rgba(220, 255, 63, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.78) 47%, rgba(7, 17, 31, 0.38) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.18) 0%, rgba(7, 17, 31, 0.96) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(var(--content-max), calc(100% - var(--content-pad)));
  min-height: 92vh;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 440px);
  align-items: center;
  gap: 48px;
  padding: 116px 0 72px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(4.2rem, 10vw, 9.6rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.app-store-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(25, 38, 60, 0.98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 1.15rem;
  font-weight: 800;
}

.app-store-button small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.store-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.text-link {
  color: var(--white);
  font-weight: 800;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 4px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(220, 255, 63, 0.8);
}

.phone-shot {
  align-self: end;
  justify-self: center;
  width: min(100%, 390px);
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.28));
}

.app-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
  box-shadow:
    0 34px 74px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.screenshot-fallback {
  position: relative;
  aspect-ratio: 0.505;
  overflow: hidden;
  border-radius: 34px;
  background: var(--steel);
  box-shadow:
    0 34px 74px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.screenshot-fallback > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
  filter: saturate(1.05) contrast(0.96);
}

.screenshot-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(7, 17, 31, 0.18) 42%, #f5f7fb 62%);
}

.fallback-logo,
.fallback-copy,
.fallback-panel {
  position: absolute;
  left: 7%;
  right: 7%;
  z-index: 1;
}

.fallback-logo {
  top: 17%;
  width: 44%;
  margin: 0 auto;
  padding: 11px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 34px rgba(7, 17, 31, 0.16);
}

.fallback-logo img {
  display: block;
  width: 100%;
}

.fallback-copy {
  top: 30%;
  padding: 24px 22px;
  border-radius: 26px;
  color: var(--white);
  background: rgba(7, 17, 31, 0.28);
  backdrop-filter: blur(10px);
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 900;
  line-height: 1.28;
}

.fallback-copy strong {
  color: var(--lime);
}

.fallback-panel {
  bottom: 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 48px rgba(7, 17, 31, 0.18);
}

.fallback-panel span {
  min-height: 92px;
  padding: 42px 10px 12px;
  border-radius: 18px;
  color: #748095;
  background:
    radial-gradient(circle at 50% 24%, rgba(220, 255, 63, 0.78) 0 18px, transparent 19px),
    #f4f7fb;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

.fallback-panel strong {
  color: var(--ink);
  font-size: 1.03rem;
}

.intro,
.how,
.report-preview,
.availability,
footer {
  width: min(1280px, calc(100% - var(--content-pad)));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding: 88px 0 56px;
}

.intro h2,
.section-heading h2,
.report-copy h2,
.availability h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro p,
.report-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-row div,
.step-card,
.report-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.metric-row div {
  min-height: 130px;
  padding: 24px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 245, 247, 0.96));
}

.metric-row strong {
  display: block;
  margin-bottom: 10px;
  color: #07111f;
  font-size: 2rem;
  line-height: 1;
}

.metric-row span {
  color: var(--muted);
  font-weight: 750;
}

.section-band {
  width: 100%;
}

.section-band-dark {
  margin-top: 36px;
  background:
    radial-gradient(circle at 12% 14%, rgba(220, 255, 63, 0.14), transparent 30%),
    radial-gradient(circle at 86% 80%, rgba(50, 213, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #07111f, #13233a 56%, #091521);
  color: var(--white);
}

.how {
  padding: 86px 0;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 28px;
}

.section-heading .eyebrow,
.report-copy .eyebrow,
.availability .eyebrow {
  color: #557000;
}

.section-band-dark .section-heading .eyebrow {
  color: var(--lime);
}

.section-band-dark .section-heading h2 {
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 260px;
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.step-card span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.step-card h3,
.report-title h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.35rem;
}

.step-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.section-band-dark .step-card h3 {
  color: var(--white);
}

.report-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
  padding: 94px 0 104px;
}

.report-panel {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(50, 213, 255, 0.16), rgba(220, 255, 63, 0.18)),
    var(--white);
  position: relative;
  overflow: hidden;
}

.report-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(139, 109, 255, 0.24), transparent 66%);
  pointer-events: none;
}

.report-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.report-title span {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--violet), var(--cyan));
  box-shadow: 0 12px 26px rgba(50, 213, 255, 0.2);
}

.report-title p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.report-panel ul {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-panel li {
  position: relative;
  padding: 16px 16px 16px 44px;
  border: 1px solid rgba(17, 27, 43, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-2);
  font-weight: 750;
}

.report-panel li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(216, 251, 48, 0.22);
}

.availability {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 58px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 50%, rgba(139, 109, 255, 0.26), transparent 26%),
    radial-gradient(circle at 92% 50%, rgba(220, 255, 63, 0.2), transparent 28%),
    linear-gradient(135deg, #07111f, #172945);
  color: var(--white);
  box-shadow: var(--shadow);
}

.availability > img {
  width: 86px;
  height: 86px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.availability h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.availability .compact {
  box-shadow: none;
  white-space: nowrap;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 44px;
  border-top: 1px solid rgba(7, 17, 31, 0.1);
  color: var(--muted);
  font-weight: 650;
}

footer img {
  width: 118px;
  height: auto;
  padding: 0;
  mix-blend-mode: multiply;
}

@media (min-width: 1500px) {
  :root {
    --content-max: 1620px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(380px, 470px);
    gap: clamp(56px, 6vw, 110px);
  }

  .intro,
  .how,
  .report-preview,
  .availability,
  footer {
    width: min(1440px, calc(100% - var(--content-pad)));
  }
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  nav a:not(.nav-download) {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 108px;
  }

  .phone-shot {
    width: min(78vw, 340px);
    align-self: center;
  }

  .intro,
  .report-preview {
    grid-template-columns: 1fr;
  }

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

  .step-card {
    min-height: 0;
  }

  .step-card span {
    margin-bottom: 24px;
  }

  .availability {
    grid-template-columns: 70px 1fr;
  }

  .availability .app-store-button {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 58px;
    padding-left: 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  nav {
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: calc(100% - 28px);
    min-height: auto;
    padding-bottom: 48px;
  }

  .lead {
    margin-bottom: 26px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .intro,
  .how,
  .report-preview,
  .availability,
  footer {
    width: calc(100% - 28px);
  }

  .intro {
    padding-top: 50px;
  }

  .report-panel,
  .step-card,
  .availability {
    padding: 22px;
  }

  .availability {
    grid-template-columns: 58px 1fr;
  }

  .availability > img {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  footer {
    display: block;
  }

  footer p {
    margin-top: 14px;
  }
}
