:root {
  color-scheme: dark;
  --bg: #041024;
  --surface: rgba(11, 28, 57, 0.78);
  --surface-strong: #0c2348;
  --line: rgba(154, 195, 255, 0.16);
  --text: #f8fbff;
  --muted: #a6b8d4;
  --blue: #1bc6ff;
  --blue-strong: #198cff;
  --gold: #ffc431;
  --gold-soft: #ffe08b;
  --radius: 28px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 8%, rgba(12, 113, 255, 0.2), transparent 33rem),
    linear-gradient(180deg, #020a17 0%, var(--bg) 45%, #06152c 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container,
.site-header {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.page-glow--one {
  top: 18%;
  left: -250px;
  background: rgba(0, 164, 255, 0.2);
}

.page-glow--two {
  right: -260px;
  bottom: 14%;
  background: rgba(255, 188, 28, 0.13);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #13213b;
  background: linear-gradient(145deg, #fff1a4, var(--gold));
  border-radius: 11px;
  box-shadow: 0 0 24px rgba(255, 196, 49, 0.32);
}

.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a:not(.nav-button):hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-button {
  padding: 11px 17px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 68px;
  align-items: center;
  min-height: 680px;
  padding-block: 78px 86px;
}

.status-pill,
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 8px 12px;
  color: #d6e8ff;
  background: rgba(27, 198, 255, 0.08);
  border: 1px solid rgba(27, 198, 255, 0.22);
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.status-pill span {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--blue);
}

.eyebrow {
  margin: 28px 0 12px;
  color: var(--gold);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(45px, 6.1vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 em {
  display: block;
  margin-top: 10px;
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, var(--blue), #86ddff 48%, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.button--primary {
  color: #07111f;
  background: linear-gradient(135deg, #fff0a0 0%, var(--gold) 62%, #f59d00 100%);
  box-shadow: 0 15px 45px rgba(255, 181, 25, 0.2);
}

.button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line);
}

.button--wide {
  width: 100%;
  margin-top: auto;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 27px 0 0;
  padding: 0;
  color: #c7d4e8;
  font-size: 13px;
  list-style: none;
}

.hero-facts span {
  margin-right: 5px;
  color: var(--blue);
}

.hero-visual {
  position: relative;
  width: min(100%, 490px);
  justify-self: end;
}

.image-frame {
  position: relative;
  overflow: hidden;
  padding: 8px;
  background: linear-gradient(145deg, rgba(35, 185, 255, 0.62), rgba(255, 199, 45, 0.5));
  border-radius: 35px;
  box-shadow: var(--shadow), 0 0 90px rgba(0, 131, 255, 0.18);
  transform: rotate(1.5deg);
}

.image-frame::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 27px;
  content: "";
  pointer-events: none;
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 27px;
}

.price-chip {
  position: absolute;
  right: -18px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  min-width: 154px;
  padding: 14px 18px;
  background: rgba(4, 16, 36, 0.93);
  border: 1px solid rgba(255, 215, 84, 0.46);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(14px);
}

.price-chip span {
  color: var(--muted);
  font-size: 12px;
}

.price-chip strong {
  color: var(--gold-soft);
  font-size: 25px;
}

.services,
.how {
  padding-block: 95px;
}

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

.section-heading .eyebrow {
  margin-top: 0;
}

.section-heading h2,
.launch-note h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-heading > p {
  max-width: 410px;
  margin-bottom: 3px;
  color: var(--muted);
}

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

.service-card {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: 30px;
  background: linear-gradient(145deg, rgba(15, 39, 79, 0.9), rgba(7, 22, 48, 0.82));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.service-card--featured {
  border-color: rgba(255, 202, 54, 0.28);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #251a00;
  background: linear-gradient(145deg, #fff2a5, var(--gold));
  border-radius: 16px;
  font-size: 24px;
}

.service-icon--blue {
  color: white;
  background: linear-gradient(145deg, #25d5ff, #1267ef);
}

.tag {
  padding: 7px 11px;
  color: var(--gold-soft);
  background: rgba(255, 196, 49, 0.09);
  border: 1px solid rgba(255, 196, 49, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tag--muted {
  color: #b7d8ff;
  background: rgba(42, 152, 255, 0.09);
  border-color: rgba(42, 152, 255, 0.2);
}

.service-card h3 {
  margin: 26px 0 8px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.service-card > p {
  min-height: 54px;
  color: var(--muted);
}

.service-price {
  display: flex;
  gap: 9px;
  align-items: baseline;
  padding: 20px 0;
  border-block: 1px solid var(--line);
}

.service-price strong {
  font-size: clamp(29px, 4vw, 40px);
  letter-spacing: -0.035em;
}

.service-price span {
  color: var(--muted);
  font-size: 13px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding-left: 20px;
  color: #d8e2f1;
  font-size: 14px;
}

.how {
  padding-top: 65px;
}

.section-heading--compact {
  margin-bottom: 28px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(8, 25, 54, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step {
  min-height: 230px;
  padding: 30px;
}

.step + .step {
  border-left: 1px solid var(--line);
}

.step-number {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.step h3 {
  margin: 45px 0 8px;
  font-size: 21px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.launch-note {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-block: 55px 110px;
  padding: 40px;
  background:
    linear-gradient(110deg, rgba(21, 108, 207, 0.26), rgba(255, 194, 44, 0.08)),
    var(--surface-strong);
  border: 1px solid rgba(70, 166, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.launch-note .eyebrow {
  margin-top: 0;
}

.launch-note p:last-child {
  max-width: 680px;
  margin: 15px 0 0;
  color: var(--muted);
}

.launch-note .button {
  flex: 0 0 auto;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 30px;
  align-items: center;
  padding-block: 34px 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.brand--footer {
  color: var(--text);
}

.site-footer > p {
  margin: 0;
}

.footer-links {
  display: flex;
  grid-row: 1 / span 2;
  grid-column: 2;
  gap: 24px;
}

@media (max-width: 900px) {
  .site-nav > a:not(.nav-button) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 55px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-facts {
    justify-content: center;
  }

  .hero-visual {
    width: min(82vw, 490px);
    justify-self: center;
  }

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

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

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

  .step {
    min-height: 0;
  }

  .step + .step {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .step h3 {
    margin-top: 25px;
  }

  .launch-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container,
  .site-header {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    min-height: 72px;
  }

  .brand {
    font-size: 12px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .nav-button {
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 0;
    padding-block: 42px 66px;
  }

  .status-pill {
    font-size: 10px;
  }

  h1 {
    font-size: clamp(41px, 13vw, 60px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    gap: 7px;
  }

  .hero-visual {
    width: calc(100% - 12px);
  }

  .price-chip {
    right: -6px;
    bottom: 18px;
  }

  .services,
  .how {
    padding-block: 66px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .service-card,
  .step,
  .launch-note {
    padding: 24px;
  }

  .service-card > p {
    min-height: 0;
  }

  .service-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-note {
    margin-bottom: 75px;
  }

  .launch-note .button {
    width: 100%;
  }

  .site-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
