:root {
  color-scheme: dark;
  --bg: #050713;
  --panel: rgba(18, 24, 43, 0.82);
  --panel-strong: rgba(24, 31, 54, 0.94);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #aab2c8;
  --soft: #d4d9e8;
  --pink: #f23293;
  --cyan: #29e4d2;
  --lime: #d8ff2e;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(47, 59, 96, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 59, 96, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 78% 12%, rgba(242, 50, 147, 0.18), transparent 30%),
    radial-gradient(circle at 16% 72%, rgba(41, 228, 210, 0.1), transparent 28%),
    #050713;
  background-size: 108px 108px, 108px 108px, auto, auto, auto;
}

body::before {
  background: linear-gradient(180deg, rgba(5, 7, 19, 0), rgba(5, 7, 19, 0.88));
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header,
main,
.site-footer {
  margin: 0 auto;
  max-width: 1180px;
  width: min(calc(100% - 44px), 1180px);
}

.site-header {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px 0 10px;
}

.brand,
.nav-links,
.site-footer nav {
  align-items: center;
  display: flex;
}

.brand {
  gap: 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, #55d6ff, #f23293);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(242, 50, 147, 0.24);
  display: inline-flex;
  font-size: 13px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nav-links {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 4px;
  padding: 5px;
}

.nav-links a,
.header-cta,
.actions a,
.site-footer a {
  text-decoration: none;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  padding: 9px 12px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.header-cta,
.primary-action,
.secondary-action {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.header-cta,
.secondary-action {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  color: var(--text);
}

.hero {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: calc(100vh - 82px);
  padding: 24px 0 58px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

h1,
h2,
p,
dl,
dd {
  margin: 0;
}

h1 {
  font-size: clamp(48px, 7.9vw, 92px);
  letter-spacing: 0;
  line-height: 0.94;
  max-width: 760px;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: 0;
  line-height: 1;
}

.lead {
  color: var(--soft);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.52;
  max-width: 650px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action {
  background: var(--pink);
  box-shadow: 0 18px 40px rgba(242, 50, 147, 0.3);
}

.hero-points {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}

.hero-points div {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 102px;
  padding: 16px;
}

.hero-points dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-points dd {
  color: var(--text);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 950;
  line-height: 1;
}

.hero-media {
  margin: 0;
  position: relative;
}

.hero-media img {
  aspect-ratio: 1774 / 887;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.hero-media figcaption {
  background: rgba(8, 12, 25, 0.76);
  border: 1px solid rgba(41, 228, 210, 0.24);
  border-radius: 999px;
  bottom: 18px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
  left: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  position: absolute;
}

.statement {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  padding: 52px 0;
}

.statement p {
  color: var(--muted);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.56;
  margin-top: 18px;
  max-width: 760px;
}

.statement ul {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 10px;
}

.statement li {
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 16px;
  font-weight: 850;
  padding: 18px;
}

.statement li:last-child {
  border-bottom: 0;
}

.promos {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
  padding: 52px 0;
}

.promo-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  color: var(--text);
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 14px;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.promo-card.large {
  grid-row: span 2;
}

.promo-card:hover,
.promo-card:focus-visible {
  background: rgba(24, 31, 54, 0.94);
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.promo-card img {
  aspect-ratio: 1774 / 887;
  border-radius: 22px;
  object-fit: cover;
  width: 100%;
}

.promo-card.large img {
  min-height: 420px;
}

.promo-card span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  padding: 2px 4px 0;
  text-transform: uppercase;
}

.promo-card strong {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0;
  line-height: 1.04;
  padding: 0 4px 10px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px 0 42px;
}

.site-footer p {
  font-size: 14px;
  font-weight: 750;
}

.site-footer nav {
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--soft);
  font-size: 14px;
  font-weight: 850;
}

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

@media (max-width: 920px) {
  .site-header {
    align-items: stretch;
    display: grid;
  }

  .nav-links {
    justify-content: space-between;
  }

  .hero,
  .statement,
  .promos {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .promo-card.large {
    grid-row: auto;
  }

  .promo-card.large img {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 30px), 1180px);
  }

  .brand {
    font-size: 13px;
  }

  .nav-links {
    overflow-x: auto;
  }

  .header-cta,
  .actions a {
    width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-media figcaption {
    border-radius: 18px;
    position: static;
    margin-top: 12px;
  }

  .site-footer {
    align-items: start;
    display: grid;
  }
}
