:root {
  --bg: #020607;
  --panel: #071114;
  --panel-2: #0a171b;
  --line: rgba(28, 230, 255, 0.34);
  --line-soft: rgba(28, 230, 255, 0.16);
  --text: #f4fbfb;
  --muted: #92a5a8;
  --cyan: #22e5ff;
  --green: #a7ff1e;
  --green-2: #69c800;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(34, 229, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 229, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 76% 18%, rgba(34, 229, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 22% 12%, rgba(167, 255, 30, 0.12), transparent 22rem),
    #020607;
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

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

.wrap {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line-soft);
  background: rgba(2, 6, 7, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 7px;
  color: var(--green);
  background: rgba(167, 255, 30, 0.08);
  box-shadow: 0 0 18px rgba(167, 255, 30, 0.18);
  font-weight: 900;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #c4d2d4;
  font-size: 15px;
}

.navlinks a:hover {
  color: var(--green);
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: center;
  padding: 72px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(360px, 0.78fr);
  gap: 60px;
  align-items: center;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--cyan);
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(7, 17, 20, 0.72);
}

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

h1 {
  max-width: 850px;
  margin-top: 26px;
  font-size: clamp(74px, 10vw, 142px);
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: 0;
}

h1 span {
  color: var(--green);
}

.hero p {
  margin-top: 28px;
  color: #e9f1f1;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.25;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 28px;
  margin-top: 34px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--green), #7be800);
  color: #061004;
  font-weight: 950;
  font-size: 19px;
  box-shadow: 0 0 32px rgba(167, 255, 30, 0.26);
}

.cta.secondary {
  min-height: 52px;
  margin-top: 18px;
  padding: 0 22px;
  background: transparent;
  color: var(--green);
  border: 1px solid rgba(167, 255, 30, 0.52);
  box-shadow: none;
}

.visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(10, 23, 27, 0.94), rgba(2, 6, 7, 0.86));
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 24px 90px rgba(0,0,0,0.44);
}

.visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 49%, rgba(34,229,255,0.2) 50%, transparent 51% 100%);
  opacity: 0.44;
}

.visual img {
  width: min(82%, 430px);
  height: auto;
  position: relative;
  z-index: 1;
}

section {
  border-top: 1px solid var(--line-soft);
  padding: 76px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

h2 {
  font-size: clamp(40px, 5vw, 74px);
  line-height: 0.95;
  font-weight: 950;
}

.section-head p,
.lead {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.card,
.step,
.wide-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(8, 20, 24, 0.92), rgba(3, 8, 10, 0.92));
}

.card {
  min-height: 220px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card::before,
.step::before {
  content: "";
  width: 48px;
  height: 4px;
  display: block;
  margin-bottom: 24px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(167,255,30,0.3);
}

.card h3,
.step h3 {
  font-size: 22px;
  line-height: 1.15;
}

.card p,
.step p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.card strong {
  display: block;
  margin-top: 20px;
  color: var(--green);
}

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

.step {
  padding: 28px;
  min-height: 175px;
}

.num {
  color: var(--green);
  font-weight: 950;
  margin-right: 7px;
}

.wide-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 36px;
}

.wide-cta h2 {
  font-size: clamp(34px, 5vw, 60px);
}

.footer {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0;
  color: var(--muted);
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.support-hero h1 {
  font-size: clamp(58px, 8vw, 104px);
}

.text-page {
  max-width: 860px;
  padding: 70px 0;
}

.text-page h1 {
  font-size: clamp(44px, 8vw, 78px);
  line-height: 0.95;
}

.text-page h2 {
  margin-top: 44px;
  font-size: 32px;
}

.text-page p,
.text-page li {
  color: #cbd7d9;
  font-size: 18px;
  line-height: 1.65;
}

.text-page p {
  margin-top: 18px;
}

.text-page ul {
  margin-top: 18px;
  padding-left: 22px;
}

@media (max-width: 900px) {
  .nav {
    min-height: 62px;
  }

  .navlinks {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 62px);
    padding: 54px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  h1 {
    font-size: clamp(58px, 17vw, 86px);
  }

  .support-hero h1 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .visual {
    min-height: 310px;
  }

  .cards,
  .steps,
  .wide-cta {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 18px;
  }

  section {
    padding: 58px 0;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    font-size: 13px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 66px);
  }

  .hero p {
    font-size: 20px;
  }

  .cta {
    width: 100%;
    min-height: 58px;
    font-size: 18px;
  }

  .card,
  .step,
  .wide-cta {
    padding: 22px;
  }
}
