@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600;700;800;900&display=swap");

:root {
  --bg: #050505;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(0, 0, 0, 0.55);
  --green: #63d20c;
  --green-2: #47b20a;
  --shadow: rgba(0, 0, 0, 0.55);
  --max: 980px;
  --radius: 22px;
  --hero-image: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--fg);
  background: radial-gradient(1200px 800px at 30% 30%, rgba(99, 210, 12, 0.16), transparent 55%),
    radial-gradient(900px 700px at 90% 20%, rgba(99, 210, 12, 0.1), transparent 55%),
    #020202;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.page {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px 14px;
}

.hero {
  width: min(var(--max), 100%);
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.9));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 50%, rgba(0, 0, 0, 0.6) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(600px 400px at 25% 18%, rgba(99, 210, 12, 0.18), transparent 58%),
    radial-gradient(700px 500px at 30% 75%, rgba(99, 210, 12, 0.12), transparent 55%),
    radial-gradient(900px 700px at 85% 30%, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  padding: 26px 26px 20px;
}

.hero__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: 18px;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
}

.hero__header::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -40px;
  width: 420px;
  height: 220px;
  background: radial-gradient(closest-side, rgba(99, 210, 12, 0.22), transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  opacity: 0.9;
}

.hero__titleTop {
  font-family: "Bebas Neue", Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.95;
}

.hero__titleBottom {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.hero__titleBottomText {
  font-family: "Bebas Neue", Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: clamp(62px, 10vw, 102px);
  line-height: 0.92;
  color: var(--green);
  transform: skewX(-8deg);
  text-shadow: 0 10px 40px rgba(99, 210, 12, 0.22);
}

.hero__titleIcon {
  width: clamp(38px, 6vw, 64px);
  height: clamp(38px, 6vw, 64px);
  color: var(--green);
  flex: 0 0 auto;
  opacity: 0.98;
  transform: translateY(-6px);
  filter: drop-shadow(0 10px 20px rgba(99, 210, 12, 0.15));
}

.hero__titleIcon svg {
  width: 100%;
  height: 100%;
}

.hero__pill {
  width: fit-content;
  border-radius: 999px;
  padding: 10px 14px;
  border: 2px solid rgba(99, 210, 12, 0.55);
  background: rgba(0, 0, 0, 0.32);
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  justify-self: end;
  text-align: center;
}

.hero__pill span {
  color: var(--green);
}

.hero__rightHeader {
  display: grid;
  gap: 10px;
  justify-items: end;
  align-content: end;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 360px;
}

.hero__badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.hero__badge:nth-child(2) {
  border-color: rgba(99, 210, 12, 0.32);
  color: rgba(99, 210, 12, 0.95);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 18px;
}

.hero__left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.fit {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.fit__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(99, 210, 12, 0.35);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.fit__icon svg {
  width: 38px;
  height: 38px;
}

.fit__title {
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.fit__emphasis {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.4px;
  line-height: 1.05;
  color: var(--green);
  text-transform: uppercase;
  margin-top: 4px;
}

.fit__subtitle {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.25;
}

.hero__right {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero__photo {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(420px 380px at 45% 45%, rgba(99, 210, 12, 0.16), transparent 55%),
    radial-gradient(520px 420px at 80% 30%, rgba(255, 255, 255, 0.07), transparent 55%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.86));
  background-size: cover;
  background-position: center;
}

.plans {
  position: relative;
  z-index: 1;
  padding: 18px 16px 16px;
  display: grid;
  gap: 12px;
}

.plans__header {
  display: grid;
  gap: 6px;
}

.plans__title {
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 14px;
}

.plans__subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
}

.plans__rows {
  display: grid;
  gap: 10px;
}

.plan {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.plan__left {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.plan__amount {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.plan__terms {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.2;
  word-break: break-word;
}

.plan__termsHint {
  color: rgba(99, 210, 12, 0.95);
  font-weight: 800;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 11px;
}

.plan__button {
  display: inline-grid;
  place-items: center;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-2) 100%);
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(99, 210, 12, 0.16), 0 18px 50px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.plan__button:focus-visible {
  outline: 3px solid rgba(99, 210, 12, 0.55);
  outline-offset: 3px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.34);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  margin-bottom: 18px;
}

.feature {
  padding: 14px 12px 16px;
  display: grid;
  gap: 10px;
  place-items: center;
  text-align: center;
  position: relative;
}

.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.feature__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #ffffff;
  opacity: 0.95;
}

.feature__icon svg {
  width: 44px;
  height: 44px;
}

.feature__top {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.feature__bottom {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.6px;
  color: var(--green);
  text-transform: uppercase;
  margin-top: 2px;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 18px;
}

.cta__text {
  padding: 6px 2px;
}

.cta__line1 {
  font-family: "Bebas Neue", Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 4.4vw, 40px);
  letter-spacing: 0.8px;
  line-height: 0.95;
}

.cta__line2 {
  font-family: "Bebas Neue", Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: 0.8px;
  line-height: 0.95;
  color: var(--green);
  margin-top: 6px;
}

.cta__button {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-2) 100%);
  color: #0a0a0a;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(99, 210, 12, 0.18), 0 22px 60px rgba(0, 0, 0, 0.35);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cta__button:focus-visible {
  outline: 3px solid rgba(99, 210, 12, 0.55);
  outline-offset: 3px;
}

.cta__buttonIcon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.24);
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.cta__buttonIcon svg {
  width: 44px;
  height: 44px;
}

.cta__buttonText {
  font-family: "Bebas Neue", Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 34px;
  line-height: 0.95;
}

@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

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

  .cta__button {
    grid-template-columns: 60px 1fr;
    justify-self: stretch;
  }
}

@media (max-width: 520px) {
  .hero__content {
    padding: 22px 18px 18px;
  }

  .hero__header {
    grid-template-columns: 1fr;
    align-items: start;
    column-gap: 0;
  }

  .hero__pill {
    justify-self: start;
  }

  .hero__header::after {
    right: -140px;
    top: -60px;
    width: 520px;
    height: 260px;
    opacity: 0.75;
  }

  .hero__rightHeader {
    justify-items: start;
  }

  .hero__badges {
    justify-content: flex-start;
    max-width: 100%;
  }

  .plans {
    padding: 16px 14px 14px;
  }

  .plan {
    padding: 12px 10px;
    gap: 10px;
  }

  .plan__amount {
    font-size: 17px;
  }

  .plan__termsHint {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .fit {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 12px;
  }

  .fit__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .fit__icon svg {
    width: 32px;
    height: 32px;
  }

  .fit__title {
    font-size: 11px;
  }

  .fit__emphasis {
    font-size: 18px;
    line-height: 1.05;
  }

  .fit__subtitle {
    font-size: 12px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:nth-child(2)::after {
    display: none;
  }

  .feature:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .feature:nth-child(2)::after,
  .feature:nth-child(4)::after {
    display: none;
  }

  .cta__buttonText {
    font-size: 32px;
  }
}

@media (max-width: 360px) {
  .hero__left {
    grid-template-columns: 1fr;
  }
}
