:root {
  --bg: #070c14;
  --panel: #0f1726;
  --panel-2: #121d30;
  --line: #243247;
  --text: #eaf0ff;
  --muted: #9aacc8;
  --brand: #0fbf9f;
  --brand-2: #2f7fff;
  --shadow: 0 24px 46px rgb(0 0 0 / 30%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.background-aurora {
  position: fixed;
  inset: -28vmax;
  pointer-events: none;
  z-index: 0;
}

.background-aurora .blob {
  position: absolute;
  width: 62vmax;
  height: 62vmax;
  border-radius: 50%;
  filter: blur(64px);
  mix-blend-mode: screen;
  opacity: 0.44;
  will-change: transform;
}

.background-aurora .blob.one {
  top: 2%;
  left: -6%;
  background: radial-gradient(circle at 35% 35%, rgb(15 191 159 / 88%), rgb(15 191 159 / 0%) 66%);
  animation: blobA 16s ease-in-out infinite alternate;
}

.background-aurora .blob.two {
  top: -14%;
  right: 4%;
  background: radial-gradient(circle at 65% 40%, rgb(47 127 255 / 86%), rgb(47 127 255 / 0%) 67%);
  animation: blobB 20s ease-in-out infinite alternate;
}

.background-aurora .blob.three {
  bottom: -18%;
  left: 28%;
  background: radial-gradient(circle at 50% 50%, rgb(26 84 209 / 72%), rgb(26 84 209 / 0%) 70%);
  animation: blobC 18s ease-in-out infinite alternate;
}

.background-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
  animation: gridDrift 24s linear infinite;
}

.wrap {
  width: min(1080px, 92vw);
  margin: 40px auto 54px;
  position: relative;
  z-index: 2;
}

.hero,
.section {
  background: linear-gradient(180deg, rgb(255 255 255 / 2%), rgb(255 255 255 / 0%));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  animation: riseIn 460ms ease both;
}

.section {
  margin-top: 16px;
}

.section:nth-of-type(2) {
  animation-delay: 60ms;
}

.section:nth-of-type(3) {
  animation-delay: 120ms;
}

.section:nth-of-type(4) {
  animation-delay: 170ms;
}

.section:nth-of-type(5) {
  animation-delay: 220ms;
}

.section:nth-of-type(6) {
  animation-delay: 270ms;
}

.eyebrow {
  margin: 0 0 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7fd1c5;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6.2vw, 4.1rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.lead {
  margin: 14px 0 0;
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.btn {
  display: inline-block;
  padding: 11px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 14px 24px rgb(23 100 232 / 30%);
}

.btn.secondary {
  background: #173455;
  color: #a9c9ff;
  border: 1px solid #245f8c;
}

.btn.ghost {
  color: #d9e7ff;
  border: 1px solid #365173;
  background: #101c2f;
}

.meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.meta li {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 12px;
  padding: 10px 12px;
}

.meta span {
  display: block;
  color: #87a0c2;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.meta strong {
  font-size: 0.94rem;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.42rem;
}

h3 {
  margin: 0 0 9px;
  font-size: 1.01rem;
}

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

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: var(--panel-2);
}

.card p,
.card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

.card li + li {
  margin-top: 8px;
}

.steps {
  margin: 0;
  padding-left: 20px;
}

.steps li {
  color: var(--muted);
  line-height: 1.6;
  margin: 6px 0;
}

.note {
  border: 1px solid var(--line);
  background: #0f1e33;
  border-radius: 14px;
  padding: 14px;
}

.note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.note p + p {
  margin-top: 8px;
}

code {
  font-family: "JetBrains Mono", monospace;
  color: #b7dcff;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--panel-2);
  border-radius: 12px;
  padding: 0;
  transition: border-color 240ms ease, background-color 240ms ease, transform 240ms ease;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
  font: inherit;
  color: var(--text);
  user-select: none;
}

.faq-icon {
  width: 8px;
  height: 8px;
  border-right: 2px solid #8caad2;
  border-bottom: 2px solid #8caad2;
  transform: rotate(45deg);
  transition: transform 240ms ease, border-color 240ms ease;
  margin-right: 4px;
  flex-shrink: 0;
}

.faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
  font-size: 0.94rem;
}

.faq-body {
  max-height: 0;
  opacity: 0;
  transition: max-height 340ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease, padding-bottom 300ms ease;
  padding-top: 0;
  padding-bottom: 0;
  padding-inline: 14px;
  overflow: hidden;
  will-change: max-height;
}

.faq-item.open {
  border-color: #326292;
  background: #102137;
  transform: translateY(-1px);
}

.faq-item.open .faq-icon {
  transform: rotate(225deg);
  border-color: #8fd4ff;
}

.faq-item.open .faq-body {
  opacity: 1;
  padding-top: 2px;
  padding-bottom: 10px;
}

.faq-item.open .faq-body > p {
  margin-top: 0;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 16px;
}

.foot p {
  margin: 0;
  color: #7d93b3;
  font-size: 0.86rem;
}

.foot a {
  color: #8fd4ff;
}

@media (max-width: 920px) {
  .meta,
  .grid3,
  .grid2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(1080px, 94vw);
    margin: 20px auto 34px;
  }

  .hero,
  .section {
    padding: 18px;
    border-radius: 16px;
  }

  .actions {
    margin: 18px 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes gridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-22px, -16px, 0);
  }
}

@keyframes blobA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10vmax, 8vmax, 0) scale(1.16);
  }
  100% {
    transform: translate3d(5vmax, 13vmax, 0) scale(0.94);
  }
}

@keyframes blobB {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-10vmax, -6vmax, 0) scale(1.12);
  }
  100% {
    transform: translate3d(-7vmax, -14vmax, 0) scale(0.92);
  }
}

@keyframes blobC {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-7vmax, -4vmax, 0) scale(1.08);
  }
  100% {
    transform: translate3d(8vmax, -12vmax, 0) scale(0.95);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
