:root {
  --night: #030718;
  --panel: #07112b;
  --white: #fffaf4;
  --soft: #b9c0d1;
  --pink: #ff18cf;
  --green: #29ff63;
  --yellow: #fff200;
  --cyan: #19e7ff;
  --violet: #7767ff;
  --display: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  min-height: 100%;
  color-scheme: dark;
  background: var(--night);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 24, 207, .12), transparent 28%),
    radial-gradient(circle at 85% 84%, rgba(41, 255, 99, .09), transparent 30%),
    repeating-linear-gradient(0deg, transparent 0 89px, rgba(25, 231, 255, .055) 90px 91px),
    repeating-linear-gradient(90deg, transparent 0 179px, rgba(119, 103, 255, .05) 180px 181px),
    var(--night);
  font-family: var(--body);
}

a { color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.info-header {
  width: min(1120px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.info-brand {
  color: var(--pink);
  font-size: clamp(.75rem, 2vw, .92rem);
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.info-back,
.info-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, .045);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.info-back:hover,
.info-cta:hover {
  border-color: var(--pink);
  box-shadow: 0 0 24px rgba(255, 24, 207, .22);
  transform: translateY(-2px);
}

.info-main {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 11vw, 130px) 0 90px;
}

.info-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.info-kicker::before {
  width: 36px;
  height: 1px;
  content: "";
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.info-title {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4.2rem, 12vw, 9.5rem);
  font-weight: 900;
  letter-spacing: .01em;
  line-height: .86;
  text-transform: uppercase;
  text-shadow:
    0 0 3px rgba(255, 255, 255, .25),
    0 0 22px rgba(255, 24, 207, .22);
}

.info-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.info-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(119, 103, 255, .12), transparent 38%),
    rgba(7, 17, 43, .78);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .28);
}

.info-card-wide { grid-column: 1 / -1; }

.info-card h2 {
  margin: 0 0 14px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.45rem);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.info-card p,
.info-card li {
  color: var(--soft);
  font-size: .94rem;
  line-height: 1.72;
}

.info-card p:last-child { margin-bottom: 0; }

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

.info-card a {
  color: var(--cyan);
  text-underline-offset: 3px;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.info-cta {
  min-height: 52px;
  border-color: transparent;
  color: var(--night);
  background: var(--pink);
  box-shadow: 0 0 28px rgba(255, 24, 207, .3);
}

.info-cta-secondary {
  border-color: rgba(255, 255, 255, .22);
  color: var(--white);
  background: rgba(255, 255, 255, .045);
  box-shadow: none;
}

.info-footer {
  width: min(1120px, calc(100% - 40px));
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #8e96aa;
  font-size: .72rem;
}

@media (max-width: 700px) {
  .info-header {
    width: min(100% - 28px, 1120px);
    padding: 20px 0;
  }

  .info-brand span { display: block; margin-top: 3px; }

  .info-main {
    width: min(100% - 28px, 960px);
    padding-top: 64px;
  }

  .info-title {
    font-size: clamp(2.75rem, 12vw, 5rem);
    overflow-wrap: anywhere;
  }

  .info-grid { grid-template-columns: 1fr; }
  .info-card-wide { grid-column: auto; }
  .info-footer {
    width: min(100% - 28px, 1120px);
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
