@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #060708;
  --surface: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.09);

  --text: #f7f7f5;
  --muted: #92979f;

  --accent: #b7ff5a;
  --accent-soft: rgba(183, 255, 90, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 50% -20%, #17201c 0%, #090b0a 34%, #060708 60%);
  color: var(--text);

  min-height: 100vh;

  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);

  background-size: 60px 60px;

  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,.55),
    transparent 75%
  );
}

.page {
  position: relative;

  width: min(1280px, calc(100% - 48px));
  min-height: 100vh;

  margin: auto;

  display: flex;
  flex-direction: column;
}

.header {
  height: 110px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  z-index: 5;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;

  text-decoration: none;

  color: #fff;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-mark {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(183, 255, 90, 0.3);

  background: var(--accent-soft);

  color: var(--accent);

  border-radius: 11px;

  font-size: 13px;
  font-weight: 800;
}

.status {
  border: 1px solid var(--border);

  background: rgba(255,255,255,.035);

  backdrop-filter: blur(15px);

  padding: 10px 15px;

  border-radius: 100px;

  color: #b2b5ba;

  font-size: 12px;

  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--accent);

  box-shadow: 0 0 14px rgba(183,255,90,.7);
}

.hero {
  flex: 1;

  display: flex;
  align-items: center;
  flex-direction: column;

  text-align: center;

  padding: 80px 20px 70px;

  position: relative;
  z-index: 2;
}

.badge {
  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;

  color: var(--accent);

  border: 1px solid rgba(183,255,90,.18);

  background: rgba(183,255,90,.06);

  padding: 9px 13px;

  border-radius: 100px;

  margin-bottom: 34px;
}

h1 {
  font-size: clamp(66px, 10vw, 145px);

  font-weight: 800;

  letter-spacing: -8px;

  line-height: .92;

  margin-bottom: 35px;

  text-shadow: 0 20px 50px rgba(0,0,0,.4);
}

h1 span {
  color: var(--accent);
}

.headline {
  font-size: clamp(20px, 2.5vw, 30px);

  line-height: 1.45;

  letter-spacing: -1px;

  max-width: 700px;

  color: #d8d9d7;

  margin-bottom: 18px;
}

.headline strong {
  color: #fff;
}

.description {
  max-width: 650px;

  color: var(--muted);

  line-height: 1.8;

  font-size: 14px;

  margin-bottom: 50px;
}

.price-card {
  width: min(430px, 100%);

  padding: 34px;

  border-radius: 27px;

  border: 1px solid var(--border);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.075),
      rgba(255,255,255,.025)
    );

  backdrop-filter: blur(30px);

  box-shadow:
    0 35px 80px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.05);

  margin-bottom: 70px;
}

.price-label {
  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  color: var(--muted);

  margin-bottom: 11px;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;

  font-size: 54px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -3px;

  margin-bottom: 11px;
}

.currency {
  margin-top: 7px;

  font-size: 13px;

  letter-spacing: 0;

  color: var(--accent);

  font-weight: 700;
}

.price-note {
  color: #777d83;

  font-size: 12px;

  margin-bottom: 25px;
}

.cta {
  height: 58px;

  width: 100%;

  background: var(--accent);

  color: #10130d;

  text-decoration: none;

  border-radius: 14px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;

  font-size: 14px;
  font-weight: 700;

  transition: .25s ease;

  box-shadow: 0 15px 35px rgba(183,255,90,.12);
}

.cta:hover {
  transform: translateY(-2px);

  box-shadow: 0 18px 45px rgba(183,255,90,.22);

  filter: brightness(1.05);
}

.cta svg {
  width: 18px;
  height: 18px;

  transition: .25s ease;
}

.cta:hover svg {
  transform: translateX(4px);
}

.advantages {
  width: min(860px, 100%);

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.advantage {
  padding: 27px;

  display: flex;

  text-align: left;

  gap: 15px;
}

.advantage:not(:last-child) {
  border-right: 1px solid var(--border);
}

.advantage > span {
  color: var(--accent);

  font-size: 10px;

  font-weight: 700;

  margin-top: 3px;
}

.advantage strong {
  display: block;

  font-size: 13px;

  margin-bottom: 6px;
}

.advantage p {
  color: #797f84;

  font-size: 11px;

  line-height: 1.6;
}

footer {
  height: 80px;

  border-top: 1px solid rgba(255,255,255,.05);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  color: #5f6469;

  font-size: 10px;

  letter-spacing: .7px;
}

.footer-separator {
  width: 3px;
  height: 3px;

  border-radius: 50%;

  background: #464b4f;
}

.glow {
  position: fixed;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(120px);

  opacity: .16;
}

.glow-1 {
  width: 450px;
  height: 450px;

  background: var(--accent);

  top: -280px;
  left: calc(50% - 225px);
}

.glow-2 {
  width: 260px;
  height: 260px;

  background: #58ffc3;

  right: -170px;
  top: 45%;
}


@media (max-width: 700px) {

  .page {
    width: calc(100% - 28px);
  }

  .header {
    height: 85px;
  }

  .status {
    font-size: 9px;

    padding: 8px 10px;
  }

  .hero {
    padding: 65px 4px 45px;
  }

  .badge {
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(58px, 20vw, 88px);

    letter-spacing: -5px;

    margin-bottom: 30px;
  }

  .headline {
    font-size: 20px;
  }

  .price {
    font-size: 45px;
  }

  .advantages {
    grid-template-columns: 1fr;
  }

  .advantage:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  footer {
    height: 70px;
  }
}