:root {
  --ink: #050c12;
  --ink-2: #071823;
  --ink-3: #0d1e28;
  --paper: #f6f8fa;
  --white: #ffffff;
  --text: #101820;
  --muted: #62717b;
  --cyan: #1fd3ff;
  --cyan-2: #05aee8;
  --lime: #d8ff00;
  --line: rgba(144, 177, 192, 0.32);
  --soft-line: rgba(14, 28, 36, 0.12);
  --shadow: 0 28px 80px rgba(2, 10, 16, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.site {
  overflow: hidden;
  background: var(--paper);
}

.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(176, 205, 218, 0.24);
}

.topbar--solid {
  position: sticky;
  top: 0;
  background: rgba(5, 12, 18, 0.92);
  backdrop-filter: blur(18px);
}

.topbar__inner {
  width: min(100%, 1440px);
  min-height: 110px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-weight: 800;
}

.brand img {
  width: 58px;
  height: 58px;
}

.brand__text {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.brand__name {
  font-size: 1.28rem;
}

.brand__accent {
  color: var(--cyan);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.nav a {
  padding: 12px 0;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--cyan);
}

.nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #031018;
  background: var(--cyan);
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 0 26px rgba(31, 211, 255, 0.35);
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 48%, rgba(31, 211, 255, 0.17), transparent 25rem),
    linear-gradient(116deg, #02070b 0%, #06131c 55%, #edf2f7 100%);
}

.hero::before,
.page-hero::before,
.dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(149, 190, 206, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(149, 190, 206, 0.16) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.55), transparent);
  opacity: 0.65;
}

.hero::after {
  content: "";
  position: absolute;
  right: -6%;
  top: 12%;
  width: 50%;
  height: 74%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  transform: skewX(-12deg);
  opacity: 0.58;
  z-index: -2;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1440px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 188px 48px 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 32px;
}

.hero__copy {
  position: relative;
  max-width: 720px;
}

.corner-mark {
  position: absolute;
  width: 30px;
  height: 30px;
  pointer-events: none;
}

.corner-mark::before,
.corner-mark::after {
  content: "";
  position: absolute;
  background: var(--lime);
}

.corner-mark::before {
  width: 22px;
  height: 3px;
  top: 0;
  left: 0;
}

.corner-mark::after {
  width: 3px;
  height: 22px;
  top: 0;
  left: 0;
}

.corner-mark--hero {
  right: 84px;
  bottom: 192px;
}

.hero h1 {
  margin: 0;
  font-size: 8.6rem;
  line-height: 0.92;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--cyan);
  text-shadow: 0 0 38px rgba(31, 211, 255, 0.25);
}

.hero__lead {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.78rem;
  line-height: 1.35;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 70px;
  margin-top: 48px;
  padding: 0 42px;
  border-radius: 16px;
  color: #02070b;
  background: linear-gradient(180deg, #35dcff, #12c5f2);
  border: 1px solid rgba(216, 255, 0, 0.9);
  box-shadow: 0 18px 52px rgba(31, 211, 255, 0.32);
  font-size: 1.45rem;
  font-weight: 900;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 62px rgba(31, 211, 255, 0.42);
}

.cta img {
  width: 30px;
  height: 30px;
}

.cta--small {
  min-height: 50px;
  margin-top: 0;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 0.98rem;
}

.cta--small img {
  width: 20px;
  height: 20px;
}

.hero__media {
  position: relative;
  min-height: 620px;
}

.hero__media img {
  position: absolute;
  right: -92px;
  top: 50%;
  width: 760px;
  max-width: none;
  transform: translateY(-46%);
  filter: drop-shadow(0 44px 54px rgba(0, 20, 34, 0.34));
}

.hero__orbit {
  position: absolute;
  inset: 4% -18% auto auto;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(31, 211, 255, 0.5);
  border-radius: 50%;
  opacity: 0.62;
}

.section {
  position: relative;
  padding: 90px 48px;
  background: var(--paper);
}

.section--tight {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section__inner {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.section h2,
.page-section h2 {
  margin: 0 0 26px;
  color: var(--text);
  font-size: 2.35rem;
  line-height: 1.1;
}

.section__lead {
  max-width: 740px;
  font-size: 1.12rem;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  border: 1px solid var(--soft-line);
  background: var(--soft-line);
}

.quick-item {
  min-height: 152px;
  padding: 24px;
  background: var(--white);
}

.quick-item img,
.mini-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 18px;
}

.quick-item strong,
.feature strong,
.step strong,
.qa-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.quick-item p,
.feature p,
.step p,
.qa-item p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.dark-band {
  position: relative;
  overflow: hidden;
  padding: 96px 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 42%, rgba(31, 211, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, #041018, #071820);
}

.dark-band .section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 70px;
  align-items: center;
}

.dark-band h2,
.dark-band p,
.dark-band strong {
  color: var(--white);
}

.dark-band p {
  color: rgba(235, 247, 251, 0.72);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature,
.step,
.qa-item {
  padding: 22px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--white);
}

.dark-card {
  border-color: rgba(151, 194, 210, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.dark-card strong {
  color: var(--white);
}

.result-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
  gap: 56px;
  align-items: start;
}

.result-panel {
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--soft-line);
}

.result-row:last-child {
  border-bottom: 0;
}

.result-row img {
  width: 44px;
  height: 44px;
}

.report-band {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 22%, rgba(31, 211, 255, 0.2), transparent 20rem),
    #02080d;
}

.report-band img {
  width: 60px;
  height: 60px;
}

.report-band h2 {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 1.6rem;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq details {
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--white);
}

.faq summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 800;
}

.faq details p {
  padding: 0 22px 22px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 74px 48px;
  color: var(--white);
  background: #030a0f;
}

.final-cta__inner {
  width: min(100%, 1220px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 2.2rem;
}

.final-cta p {
  color: rgba(245, 250, 252, 0.74);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 38%, rgba(31, 211, 255, 0.2), transparent 22rem),
    linear-gradient(135deg, #02080d, #071923);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1220px);
  min-height: 520px;
  margin: 0 auto;
  padding: 164px 48px 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.54fr);
  gap: 50px;
  align-items: center;
}

.page-hero h1 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 4.4rem;
  line-height: 1;
}

.page-hero p {
  max-width: 660px;
  color: rgba(240, 249, 252, 0.78);
  font-size: 1.16rem;
}

.page-hero__asset {
  justify-self: end;
  width: min(100%, 360px);
  opacity: 0.92;
}

.page-section {
  padding: 86px 48px;
  background: var(--paper);
}

.page-section__inner {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.content-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.policy-list {
  margin: 26px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.footer {
  padding: 38px 48px;
  color: rgba(255, 255, 255, 0.7);
  background: #02070b;
}

.footer__inner {
  width: min(100%, 1220px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

@media (min-width: 1480px) {
  .hero h1 {
    font-size: 9.8rem;
  }

  .hero__media img {
    width: 840px;
  }
}

@media (max-width: 1120px) {
  .topbar__inner {
    min-height: 92px;
    padding: 0 28px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand__name {
    font-size: 1rem;
  }

  .brand__accent {
    font-size: 0.78rem;
  }

  .nav {
    gap: 20px;
    font-size: 0.95rem;
  }

  .nav__dot {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 150px 28px 70px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: 6.8rem;
  }

  .hero__media {
    position: absolute;
    inset: auto -120px -120px auto;
    width: 620px;
    min-height: 520px;
    opacity: 0.64;
    z-index: -1;
  }

  .hero__media img {
    right: 0;
    width: 620px;
  }

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

  .dark-band .section__inner,
  .result-layout,
  .article-layout,
  .page-hero__inner {
    grid-template-columns: 1fr;
  }

  .report-band {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .report-band .cta {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

@media (max-width: 720px) {
  p {
    font-size: 0.96rem;
  }

  .topbar__inner {
    min-height: 82px;
    padding: 0 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand__name {
    font-size: 0.86rem;
  }

  .brand__accent {
    font-size: 0.68rem;
  }

  .nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__inner {
    min-height: 100svh;
    padding: 132px 18px 54px;
    align-content: center;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 1.22rem;
  }

  .cta {
    width: min(100%, 330px);
    min-height: 62px;
    margin-top: 34px;
    padding: 0 24px;
    font-size: 1.14rem;
  }

  .cta img {
    width: 24px;
    height: 24px;
  }

  .corner-mark--hero {
    right: 18px;
    bottom: 156px;
  }

  .hero__media {
    right: -220px;
    bottom: -110px;
    width: 520px;
    opacity: 0.46;
  }

  .hero__media img {
    width: 520px;
  }

  .section,
  .dark-band,
  .page-section {
    padding: 64px 18px;
  }

  .section h2,
  .page-section h2,
  .final-cta h2 {
    font-size: 1.72rem;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .quick-item {
    min-height: auto;
    padding: 20px;
  }

  .result-row {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 20px;
  }

  .result-row img {
    width: 34px;
    height: 34px;
  }

  .report-band {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 58px 18px;
  }

  .final-cta__inner {
    display: grid;
  }

  .page-hero__inner {
    min-height: 430px;
    padding: 128px 18px 58px;
  }

  .page-hero h1 {
    font-size: 3.1rem;
  }

  .page-hero__asset {
    display: none;
  }

  .footer {
    padding: 30px 18px;
  }
}

@media (max-width: 390px) {
  .nav {
    gap: 9px;
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .brand__text {
    display: none;
  }
}
