:root {
  --bg: #040806;
  --surface: #09120d;
  --surface-2: #0c1912;
  --line: rgba(160, 222, 184, 0.14);
  --accent: #54e99a;
  --accent-soft: #8af4b7;
  --text: #f3f8f5;
  --muted: #93a299;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 12%, rgba(35, 162, 94, 0.18), transparent 28rem),
    linear-gradient(180deg, #030604, var(--bg) 42rem);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  width: min(1160px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.brand-mark {
  width: 34px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 233, 154, 0.8);
  color: var(--accent-soft);
  background: rgba(84, 233, 154, 0.06);
  clip-path: polygon(50% 0, 96% 16%, 90% 69%, 50% 100%, 10% 69%, 4% 16%);
  font-size: 16px;
  font-weight: 850;
}

nav {
  display: flex;
  gap: 32px;
  color: #aebbb3;
  font-size: 13px;
}

nav a,
footer a {
  transition: color 160ms ease;
}

nav a:hover,
footer a:hover {
  color: var(--accent-soft);
}

.header-button {
  min-height: 43px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(84, 233, 154, 0.56);
  border-radius: 999px;
  color: #dff9e9;
  font-size: 12px;
  font-weight: 750;
}

.announcement {
  width: min(1160px, calc(100% - 48px));
  min-height: 46px;
  margin: 14px auto 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(84, 233, 154, 0.2);
  border-radius: 12px;
  background: rgba(84, 233, 154, 0.05);
  color: #a9b7ae;
  font-size: 12px;
}

.announcement strong {
  color: var(--accent-soft);
}

.hero {
  width: min(1160px, calc(100% - 48px));
  min-height: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: 20px;
}

.hero-copy {
  padding: 72px 0;
  position: relative;
  z-index: 2;
  animation: enter 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.status {
  width: max-content;
  margin: 0 0 24px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(84, 233, 154, 0.17);
  border-radius: 999px;
  background: rgba(84, 233, 154, 0.055);
  color: #8eeeb8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.status-maintenance {
  color: #edc172;
  border-color: rgba(237, 193, 114, 0.2);
  background: rgba(237, 193, 114, 0.05);
}

.status-maintenance > span {
  background: #edc172;
  box-shadow: 0 0 14px #edc172;
}

.status-degraded {
  color: #ff9c84;
  border-color: rgba(255, 156, 132, 0.2);
  background: rgba(255, 156, 132, 0.05);
}

.status-degraded > span {
  background: #ff9c84;
  box-shadow: 0 0 14px #ff9c84;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(56px, 6.2vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: #a5b2aa;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 56px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #031108;
  background: linear-gradient(120deg, #48df8d, #7df1ad);
  box-shadow: 0 16px 50px rgba(37, 211, 119, 0.17);
}

.button-primary:hover {
  filter: brightness(1.07);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.13);
  color: #ced8d1;
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover {
  border-color: rgba(84, 233, 154, 0.5);
}

.hero-points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: #829188;
  font-size: 11px;
}

.hero-points span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--accent);
}

.hero-art {
  min-height: 580px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  animation: enter-art 700ms 80ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-halo {
  width: 88%;
  aspect-ratio: 1;
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(84, 233, 154, 0.13);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 185, 104, 0.2), transparent 63%);
}

.hero-halo::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(84, 233, 154, 0.1);
  border-radius: 50%;
}

.hero-art img {
  width: min(540px, 104%);
  position: relative;
  z-index: -1;
  mix-blend-mode: screen;
  filter: saturate(0.92) contrast(1.08);
  animation: float 7s ease-in-out infinite;
}

.connection-card,
.location-chip {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(6, 15, 10, 0.86);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.connection-card {
  left: 2px;
  bottom: 116px;
  min-width: 210px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 15px;
}

.connection-card > i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.connection-card p {
  margin: 0 auto 0 0;
}

.connection-card small,
.connection-card strong {
  display: block;
}

.connection-card small {
  color: #7d8c83;
  font-size: 10px;
}

.connection-card strong {
  margin-top: 3px;
  font-size: 13px;
}

.connection-card > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #05120a;
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.location-chip {
  top: 112px;
  right: 0;
  padding: 12px 16px;
  border-radius: 999px;
  color: #b8c8be;
  font-size: 11px;
}

.quick-facts {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background: rgba(8, 18, 12, 0.66);
}

.quick-facts article {
  min-height: 105px;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.quick-facts article:last-child {
  border: 0;
}

.quick-facts strong {
  color: #426150;
  font-size: 11px;
}

.quick-facts p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.quick-facts small {
  margin-top: 5px;
  display: block;
  color: #77857d;
  font-size: 10px;
  font-weight: 400;
}

.section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  max-width: 650px;
  margin: 0 auto 48px;
  text-align: center;
}

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

.kicker {
  margin-bottom: 15px;
  color: var(--accent-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.faq-heading h2,
.final-cta h2 {
  margin-bottom: 17px;
  font-size: clamp(39px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.faq-heading > p:not(.kicker) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.trial-card {
  min-height: 130px;
  margin-bottom: 18px;
  padding: 23px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(84, 233, 154, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0 50%, rgba(84, 233, 154, 0.13), transparent 27%),
    rgba(8, 19, 13, 0.8);
}

.trial-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 233, 154, 0.25);
  border-radius: 18px;
  background: rgba(84, 233, 154, 0.05);
  font-size: 28px;
}

.trial-card span {
  color: #85948b;
  font-size: 11px;
}

.trial-card h3 {
  margin: 6px 0;
  font-size: 22px;
}

.trial-card p {
  margin: 0;
  color: #849188;
  font-size: 12px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.plan-card {
  min-height: 520px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(13, 28, 19, 0.88), rgba(6, 12, 8, 0.9));
}

.plan-featured {
  border-color: rgba(84, 233, 154, 0.42);
  background: linear-gradient(150deg, rgba(18, 49, 31, 0.9), rgba(7, 15, 10, 0.92));
}

.plan-label {
  position: absolute;
  top: 22px;
  right: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #05130a;
  background: var(--accent);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.plan-title > span {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 233, 154, 0.2);
  border-radius: 16px;
  background: rgba(84, 233, 154, 0.05);
  font-size: 24px;
}

.plan-title h3 {
  margin: 0;
  font-size: 21px;
}

.plan-title p {
  margin: 6px 0 0;
  color: #87958c;
  font-size: 11px;
}

.periods {
  margin: 31px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.periods > div {
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.periods span {
  color: #93a098;
  font-size: 12px;
}

.periods strong {
  font-size: 17px;
}

.renew-note {
  margin-bottom: 22px;
  color: #7b8a81;
  font-size: 10px;
}

.plan-button {
  width: 100%;
  margin-top: auto;
  border-color: rgba(255, 255, 255, 0.13);
  color: #dce7e0;
  background: rgba(255, 255, 255, 0.025);
}

.plan-featured .plan-button {
  border-color: var(--accent);
  color: #04120a;
  background: var(--accent);
}

.how {
  padding-top: 45px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps article {
  min-height: 230px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: rgba(9, 19, 13, 0.56);
}

.steps article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 233, 154, 0.28);
  border-radius: 13px;
  color: var(--accent-soft);
  background: rgba(84, 233, 154, 0.05);
  font-size: 13px;
  font-weight: 800;
}

.steps h3 {
  margin: 44px 0 11px;
  font-size: 18px;
}

.steps p {
  margin: 0;
  color: #839088;
  font-size: 12px;
  line-height: 1.65;
}

.benefits {
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.benefits article {
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.benefits article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-soft);
  background: rgba(84, 233, 154, 0.07);
  font-size: 18px;
}

.benefits h3 {
  margin: 27px 0 10px;
  font-size: 17px;
}

.benefits p {
  margin: 0;
  color: #7f8d84;
  font-size: 12px;
  line-height: 1.65;
}

.faq {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 30px;
}

.text-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 750;
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-list summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  align-items: center;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  color: #dce5df;
  font-size: 14px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: #476153;
  font-size: 9px;
}

.faq-list summary i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: var(--accent);
  font-size: 15px;
  font-style: normal;
  transition: transform 160ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -8px 35px 25px 50px;
  color: #849188;
  font-size: 12px;
  line-height: 1.7;
}

.final-cta {
  width: min(1160px, calc(100% - 48px));
  min-height: 430px;
  margin: 10px auto 0;
  padding: 65px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(84, 233, 154, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 125%, rgba(63, 224, 139, 0.27), transparent 45%),
    linear-gradient(150deg, #0a1810, #030604);
}

.final-cta::after {
  content: "";
  width: 520px;
  height: 520px;
  position: absolute;
  bottom: -480px;
  border: 1px solid rgba(84, 233, 154, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(84, 233, 154, 0.28);
}

.final-cta h2 {
  max-width: 750px;
  margin-bottom: 17px;
}

.final-cta > p:not(.kicker) {
  max-width: 560px;
  margin-bottom: 28px;
  color: #91a097;
  font-size: 14px;
  line-height: 1.7;
}

.final-cta .button {
  position: relative;
  z-index: 2;
}

footer {
  width: min(1160px, calc(100% - 48px));
  min-height: 170px;
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px 30px;
  color: #75837b;
}

footer > p {
  margin: 0;
  justify-self: end;
  font-size: 11px;
}

footer > a:last-child {
  grid-column: 1 / -1;
  width: max-content;
  color: #91a198;
  font-size: 11px;
}

.mobile-cta {
  display: none;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes enter-art {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
}

@keyframes float {
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .site-header,
  .announcement,
  .hero,
  .quick-facts,
  .section,
  .final-cta,
  footer {
    width: min(100% - 32px, 720px);
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 66px 0 10px;
    text-align: center;
  }

  .status {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-art {
    width: min(560px, 100%);
    min-height: 490px;
    margin: 0 auto;
  }

  .connection-card {
    left: 5%;
    bottom: 76px;
  }

  .location-chip {
    top: 72px;
    right: 5%;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-heading {
    position: static;
    text-align: center;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
    background:
      radial-gradient(circle at 70% 9%, rgba(35, 162, 94, 0.16), transparent 19rem),
      linear-gradient(180deg, #030604, var(--bg) 32rem);
  }

  .site-header {
    height: 70px;
  }

  .brand {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .brand-mark {
    width: 30px;
    height: 34px;
    font-size: 14px;
  }

  .header-button {
    min-height: 39px;
    padding: 0 14px;
    font-size: 11px;
  }

  .header-button span {
    display: none;
  }

  .announcement {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .hero-copy {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

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

  .hero-points {
    gap: 10px 16px;
  }

  .hero-art {
    min-height: 390px;
  }

  .hero-art img {
    width: 112%;
  }

  .connection-card {
    min-width: 185px;
    bottom: 52px;
    left: 0;
    transform: scale(0.9);
    transform-origin: left bottom;
  }

  .location-chip {
    top: 46px;
    right: 0;
    transform: scale(0.9);
    transform-origin: right top;
  }

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

  .quick-facts article {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .trial-card {
    padding: 22px;
    grid-template-columns: auto 1fr;
  }

  .trial-icon {
    width: 54px;
    height: 54px;
    font-size: 23px;
  }

  .trial-card .button {
    width: 100%;
    grid-column: 1 / -1;
  }

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

  .plan-card {
    min-height: 500px;
    padding: 25px;
  }

  .steps article {
    min-height: 205px;
  }

  .benefits {
    padding-top: 0;
    gap: 0;
  }

  .benefits article {
    padding: 26px 4px;
  }

  .faq {
    padding-top: 30px;
  }

  .faq-list summary {
    min-height: 80px;
    grid-template-columns: 29px 1fr 24px;
    gap: 10px;
    font-size: 13px;
  }

  .faq-list details > p {
    margin-left: 39px;
  }

  .final-cta {
    min-height: 400px;
    padding: 58px 20px;
  }

  footer {
    min-height: 190px;
    padding: 46px 0;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  footer > p {
    justify-self: center;
  }

  footer > a:last-child {
    grid-column: auto;
  }

  .mobile-cta {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 40;
    color: #031108;
    background: linear-gradient(120deg, #48df8d, #7df1ad);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.48);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
