* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #11161C;
  color: #E6EDF5;
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #5295FF;
  text-decoration: none;
}
a:hover {
  color: #8FB9FF;
}

@keyframes blip {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
@keyframes sweep {
  0% {
    transform: translateX(-30%);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}
.page {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__glow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 420px;
  background: radial-gradient(70% 100% at 18% 0%, rgba(82, 149, 255, 0.17), rgba(82, 149, 255, 0) 70%);
}

.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(230, 237, 245, 0.08);
}
.header__left {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: rgba(230, 237, 245, 0.6);
}
.nav a {
  color: inherit;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(230, 237, 245, 0.12);
  color: rgba(230, 237, 245, 0.75);
}

.btn {
  padding: 11px 20px;
  font-size: 14px;
  gap: 9px;
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  background: #5295FF;
  color: #0A0E13;
}
.btn--primary:hover {
  background: #8FB9FF;
  color: #0A0E13;
}
.btn--outline {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  color: #E6EDF5;
  border: 1px solid rgba(230, 237, 245, 0.16);
  background: rgba(230, 237, 245, 0.03);
}
.btn--outline:hover {
  border-color: #5295FF;
  color: #5295FF;
}
.btn--lg {
  padding: 18px 30px;
  font-size: 14.5px;
  gap: 12px;
}
.btn--xl {
  padding: 20px 34px;
  font-size: 15.5px;
  gap: 11px;
}
.btn--block {
  justify-content: center;
  width: 100%;
  padding: 16px;
  font-size: 14.5px;
}

.hero-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 48px 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #8FB9FF;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #5295FF;
  animation: blip 1.6s ease-in-out infinite;
}

.h1 {
  margin: 30px 0 0;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 600;
}
.h1 span {
  display: block;
}
.h1 .accent {
  color: #5295FF;
}

.hero-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 48px;
  border-top: 1px solid rgba(230, 237, 245, 0.08);
  padding-top: 34px;
}

.lede {
  margin: 0;
  max-width: 470px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(230, 237, 245, 0.58);
  text-wrap: pretty;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.activity {
  position: relative;
  border-top: 1px solid rgba(230, 237, 245, 0.08);
  background: #11161C;
}
.activity__sweep {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  overflow: hidden;
}
.activity__sweep span {
  display: block;
  width: 22%;
  height: 1px;
  background: linear-gradient(to right, rgba(82, 149, 255, 0), #5295FF, rgba(82, 149, 255, 0));
  animation: sweep 5.5s linear infinite;
}
.activity__row {
  display: flex;
  align-items: stretch;
}
.activity__grid {
  flex: 1;
  min-width: 320px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.activity__cell {
  padding: 20px 24px;
  border-left: 1px solid rgba(230, 237, 245, 0.08);
}
.activity__cell:first-child {
  border-left: 0;
  padding-left: 48px;
}
.activity__cell:last-child {
  padding-right: 48px;
}
.activity__cell--active {
  border-left: 1px solid rgba(82, 149, 255, 0.4);
  background: rgba(82, 149, 255, 0.06);
}
.activity__key {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(230, 237, 245, 0.62);
}
.activity__cell--active .activity__key {
  color: #8FB9FF;
}
.activity__value {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 8px;
  color: rgba(230, 237, 245, 0.72);
}
.activity__cell--active .activity__value {
  color: #E6EDF5;
}

.section {
  position: relative;
  border-top: 1px solid rgba(230, 237, 245, 0.08);
  padding: 112px 48px 120px;
}
.section--fade-down {
  background: linear-gradient(to bottom, #11161C 0%, #0A0E13 220px);
}
.section--fade-up {
  background: linear-gradient(to bottom, #0A0E13 0%, #11161C 300px);
}
.section--deep {
  background: #0A0E13;
}
.section--wide {
  padding: 140px 48px 150px;
}
.section--wider {
  padding: 150px 48px 160px;
}
.section--center {
  text-align: center;
}

.eyebrow-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8FB9FF;
}

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

.h2 {
  margin: 14px 0 0;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 20ch;
}

.timestamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(230, 237, 245, 0.5);
}
.timestamp::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #5295FF;
  animation: blip 1.6s ease-in-out infinite;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.marquee {
  overflow: hidden;
  margin-top: 40px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
}
.marquee__track--left {
  animation: marquee-left 36s linear infinite;
}
.marquee__track--right {
  animation: marquee-right 36s linear infinite;
}
.marquee__track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 420px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(230, 237, 245, 0.06), rgba(230, 237, 245, 0.02));
  border: 1px solid rgba(230, 237, 245, 0.09);
  color: rgba(230, 237, 245, 0.32);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.steps-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.steps-intro h2 {
  margin: 18px 0 0;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.032em;
  max-width: 22ch;
  line-height: 1.08;
}
.steps-intro p {
  margin: 0;
  max-width: 380px;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(230, 237, 245, 0.6);
  text-wrap: pretty;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.step-card {
  position: relative;
  background: #11161C;
  border: 1px solid rgba(230, 237, 245, 0.09);
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(82, 149, 255, 0.45), rgba(17, 22, 28, 0) 78%);
}
.step-card--active::before {
  background: linear-gradient(to right, #5295FF, rgba(17, 22, 28, 0) 78%);
}
.step-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.step-card__index {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(230, 237, 245, 0.22);
}
.step-card--active .step-card__index {
  color: #5295FF;
}
.step-card__dot {
  width: 7px;
  height: 7px;
  background: rgba(230, 237, 245, 0.2);
}
.step-card--active .step-card__dot {
  background: #5295FF;
  animation: blip 1.6s ease-in-out infinite;
}
.step-card h3 {
  margin: 30px 0 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.step-card p {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(230, 237, 245, 0.6);
  text-wrap: pretty;
  flex: 1;
}
.step-card__foot {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(230, 237, 245, 0.09);
}
.step-card__foot span {
  display: block;
}
.step-card__foot-key {
  font-size: 12.5px;
  color: rgba(230, 237, 245, 0.55);
}
.step-card__foot-value {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #E6EDF5;
}
.step-card--active .step-card__foot-value {
  color: #5295FF;
}

.pro-intro {
  max-width: 1100px;
}
.pro-intro h2 {
  margin: 26px 0 0;
  font-size: clamp(38px, 5vw, 78px);
  font-weight: 600;
  letter-spacing: -0.042em;
  line-height: 1;
}
.pro-intro p {
  margin: 30px 0 0;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(230, 237, 245, 0.62);
  text-wrap: pretty;
}

.pro-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 80px;
  background: rgba(230, 237, 245, 0.1);
}

.pro-stat {
  background: #0A0E13;
  padding: 32px 28px 28px;
}
.pro-stat__value {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.pro-stat__value--accent {
  color: #5295FF;
}
.pro-stat__label {
  font-size: 13.5px;
  color: rgba(230, 237, 245, 0.62);
  margin-top: 10px;
}

.pricing-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.pricing-intro h2 {
  margin: 22px 0 0;
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.04;
  max-width: 22ch;
}
.pricing-intro p {
  margin: 0;
  max-width: 340px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(230, 237, 245, 0.6);
  text-wrap: pretty;
}

.launch-banner {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 40px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8FB9FF;
  background: rgba(82, 149, 255, 0.08);
  border: 1px solid rgba(82, 149, 255, 0.35);
}
.launch-banner::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #5295FF;
  animation: blip 1.6s ease-in-out infinite;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.pricing-card {
  position: relative;
  background: #0A0E13;
  border: 1px solid rgba(230, 237, 245, 0.1);
  padding: 40px 34px 36px;
  display: flex;
  flex-direction: column;
}
.pricing-card + .pricing-card {
  border-left: 0;
}
.pricing-card--featured {
  background: #11161C;
  border-top-color: #5295FF;
}
.pricing-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.pricing-card__tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(230, 237, 245, 0.55);
}
.pricing-card--featured .pricing-card__tier {
  color: #5295FF;
}
.pricing-card__badge {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  color: #5295FF;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 26px;
}
.pricing-card__price strong {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}
.pricing-card__price span {
  font-size: 15px;
  white-space: nowrap;
  color: rgba(230, 237, 245, 0.6);
}
.pricing-card__original {
  font-size: 20px;
  font-weight: 500;
  color: rgba(230, 237, 245, 0.4);
  text-decoration: line-through;
}
.pricing-card__daily {
  font-size: 13.5px;
  color: rgba(230, 237, 245, 0.55);
  margin-top: 12px;
}
.pricing-card__desc {
  margin: 26px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(230, 237, 245, 0.62);
  text-wrap: pretty;
  flex: 1;
}
.pricing-card .btn {
  margin-top: 34px;
}

.final-cta {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(230, 237, 245, 0.6);
}
.final-cta__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #5295FF;
  animation: blip 1.6s ease-in-out infinite;
}

.final-cta h2 {
  margin: 26px 0 0;
  font-size: clamp(36px, 4.6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.042em;
  line-height: 1.02;
}

.final-cta p {
  margin: 24px auto 0;
  max-width: 48ch;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(230, 237, 245, 0.62);
  text-wrap: pretty;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.final-cta__note {
  font-size: 13.5px;
  color: rgba(230, 237, 245, 0.5);
  margin-top: 26px;
}

.footer {
  position: relative;
  background: #11161C;
  border-top: 1px solid rgba(230, 237, 245, 0.08);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__left, .footer__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__links {
  gap: 26px;
}
.footer__copy {
  font-size: 13px;
  color: rgba(230, 237, 245, 0.5);
}
.footer__links a {
  font-size: 13.5px;
  color: rgba(230, 237, 245, 0.6);
}
