@font-face {
  font-family: "Esport Graph";
  src: url("../../fonts/game-stage-2026-04-07-06-21-24-utc/esport-graph-logo-font-2026-04-07-06-06-03-utc/Esport%20Graph%20-%20Logo%20Font/EsportGraph-Regular.woff2") format("woff2"),
    url("../../fonts/game-stage-2026-04-07-06-21-24-utc/esport-graph-logo-font-2026-04-07-06-06-03-utc/Esport%20Graph%20-%20Logo%20Font/EsportGraph-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #1e2761;
  --secondary: #b2f962;
  --text: #ffffff;
  --pink: #ff3791;
  --dark-navy: #21136d;
  --light-purple: #6b3bd0;
  --bg: #110b38;
  --ink: #1e1e1e;
  --muted: rgba(255, 255, 255, 0.75);
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --shadow-pink: 0 14px 50px rgba(255, 55, 145, 0.35);
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.25);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 600px at 10% 10%, rgba(255, 55, 145, 0.22), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(178, 249, 98, 0.2), transparent 60%),
    linear-gradient(180deg, #120a3a 0%, #09051e 100%);
  color: var(--text);
}

.hero-title,
.hero-tagline,
.program-title,
.features-title,
.who-title,
.journey-title,
.section-title {
  font-family: "Esport Graph", 'Courier New', 'Courier', monospace;
}

.intro-page {
  background: #09051e;
}

.intro {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(48px + env(safe-area-inset-top)) calc(env(safe-area-inset-right))
    calc(48px + env(safe-area-inset-bottom)) calc(env(safe-area-inset-left));
  position: relative;
  overflow: hidden;
  --mx: 0;
  --my: 0;
  --parallax: 1;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/header-bg-1-2-1.png") center / cover no-repeat;
  opacity: 0.9;
  transform: scale(1.06);
  animation: introBg 22s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}

.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 600px at 20% 20%, rgba(255, 55, 145, 0.3), transparent 60%),
    radial-gradient(900px 600px at 80% 80%, rgba(0, 214, 255, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(9, 5, 30, 0.52), rgba(9, 5, 30, 0.78));
  animation: introMist 10s ease-in-out infinite;
  will-change: transform, opacity;
  pointer-events: none;
  z-index: 1;
}

.intro-particles {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 2;
}

.intro-content {
  position: relative;
  z-index: 3;
  width: min(980px, calc(100% - 48px));
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 6, 24, 0.46);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 130px rgba(0, 0, 0, 0.45);
  padding: clamp(26px, 5vw, 48px);
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  animation: introPop 900ms ease-out both;
}

.intro-content::before {
  content: "";
  position: absolute;
  inset: -120px;
  background: conic-gradient(
    from 180deg,
    rgba(255, 55, 145, 0.22),
    rgba(0, 214, 255, 0.14),
    rgba(178, 249, 98, 0.12),
    rgba(255, 55, 145, 0.22)
  );
  filter: blur(60px);
  opacity: 0.85;
  animation: introGlow 10s ease-in-out infinite;
  pointer-events: none;
}

.intro-content::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(2px 2px at 12% 18%, rgba(255, 255, 255, 0.45), transparent 55%),
    radial-gradient(2px 2px at 42% 28%, rgba(255, 255, 255, 0.35), transparent 55%),
    radial-gradient(2px 2px at 72% 20%, rgba(255, 255, 255, 0.28), transparent 55%),
    radial-gradient(2px 2px at 86% 44%, rgba(255, 255, 255, 0.32), transparent 55%),
    radial-gradient(2px 2px at 22% 66%, rgba(255, 255, 255, 0.26), transparent 55%),
    radial-gradient(2px 2px at 58% 72%, rgba(255, 255, 255, 0.3), transparent 55%),
    radial-gradient(2px 2px at 80% 78%, rgba(255, 255, 255, 0.22), transparent 55%);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: introStars 7.5s ease-in-out infinite;
  pointer-events: none;
}

.intro-logo-wrap {
  position: relative;
  z-index: 1;
  transform: translate3d(calc(var(--mx) * 14px * var(--parallax)), calc(var(--my) * 10px * var(--parallax)), 0);
  will-change: transform;
}

.intro-logo-inner {
  transform: translate3d(0, 14px, 0);
  opacity: 0;
  filter: blur(10px);
  animation: introReveal 900ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
  animation-delay: 120ms;
}

.intro-name {
  margin-top: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(255, 55, 145, 0.95);
  text-shadow: 0 18px 70px rgba(255, 55, 145, 0.16);
}

.intro-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -18px -26px;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.28), transparent 60%);
  transform: translate3d(-55%, 0, 0);
  opacity: 0;
  mix-blend-mode: screen;
  animation: introSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.intro-logo {
  position: relative;
  z-index: 1;
  width: min(320px, 70vw);
  height: auto;
  filter: drop-shadow(0 26px 90px rgba(0, 0, 0, 0.35));
  animation: introFloat 5.6s ease-in-out infinite;
  animation-delay: 900ms;
  will-change: transform;
}

.intro-line-wrap {
  transform: translate3d(calc(var(--mx) * 10px * var(--parallax)), calc(var(--my) * 8px * var(--parallax)), 0);
  will-change: transform;
}

.intro-line-inner {
  transform: translate3d(0, 14px, 0);
  opacity: 0;
  filter: blur(10px);
  animation: introReveal 900ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
  animation-delay: 420ms;
}

.intro-line {
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
}

.intro-soon-wrap {
  transform: translate3d(calc(var(--mx) * 12px * var(--parallax)), calc(var(--my) * 10px * var(--parallax)), 0);
  will-change: transform;
}

.intro-soon-inner {
  transform: translate3d(0, 14px, 0);
  opacity: 0;
  filter: blur(10px);
  animation: introReveal 900ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
  animation-delay: 720ms;
}

.intro-soon {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 55, 145, 0.95);
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 55, 145, 0.35);
  background: rgba(255, 55, 145, 0.12);
  box-shadow: 0 18px 70px rgba(255, 55, 145, 0.18);
  animation: introPulse 2.8s ease-in-out infinite;
  animation-delay: 1150ms;
}

@keyframes introReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0px);
  }
}

@keyframes introSweep {
  0% {
    transform: translate3d(-55%, 0, 0);
    opacity: 0;
  }
  30% {
    opacity: 0.65;
  }
  70% {
    opacity: 0.55;
  }
  100% {
    transform: translate3d(55%, 0, 0);
    opacity: 0;
  }
}

@keyframes introPop {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes introBg {
  0% {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.1) translate3d(-14px, -10px, 0);
  }
  100% {
    transform: scale(1.08) translate3d(12px, 8px, 0);
  }
}

@keyframes introMist {
  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.85;
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes introStars {
  0%,
  100% {
    opacity: 0.45;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.65;
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes introFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes introPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 18px 70px rgba(255, 55, 145, 0.18);
  }
  50% {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 24px 90px rgba(255, 55, 145, 0.26);
  }
}

@keyframes introGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(6deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro::before,
  .intro::after,
  .intro-content,
  .intro-content::before,
  .intro-content::after,
  .intro-logo-wrap,
  .intro-logo-inner,
  .intro-logo-wrap::after,
  .intro-logo,
  .intro-line-wrap,
  .intro-line-inner,
  .intro-soon-wrap,
  .intro-soon-inner,
  .intro-soon {
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 560px) {
  .intro {
    --parallax: 0.75;
    padding: calc(28px + env(safe-area-inset-top)) calc(16px + env(safe-area-inset-right))
      calc(28px + env(safe-area-inset-bottom)) calc(16px + env(safe-area-inset-left));
  }

  .intro-content {
    width: min(980px, calc(100% - 32px));
    border-radius: 22px;
    padding: 22px 18px;
    gap: 14px;
  }

  .intro-line {
    font-size: 18px;
  }

  .intro-name {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .intro-soon {
    letter-spacing: 0.22em;
  }
}

@media (max-width: 360px) {
  .intro {
    --parallax: 0.65;
  }

  .intro-soon {
    letter-spacing: 0.18em;
  }
}

.auth-page {
  background: radial-gradient(900px 560px at 50% 0%, rgba(255, 55, 145, 0.18), transparent 55%),
    radial-gradient(900px 560px at 50% 100%, rgba(178, 249, 98, 0.12), transparent 60%),
    linear-gradient(180deg, #120a3a 0%, #08041a 100%);
}

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

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

.anchor,
section,
footer {
  scroll-margin-top: 86px;
}

.auth {
  min-height: calc(100vh - 74px);
  display: flex;
}

.auth-hero {
  position: relative;
  flex: 1;
  padding: 80px 0;
  overflow: hidden;
}

.auth-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(650px 420px at 10% 70%, rgba(0, 214, 255, 0.18), transparent 60%),
    radial-gradient(650px 420px at 90% 30%, rgba(255, 55, 145, 0.22), transparent 60%),
    radial-gradient(650px 420px at 90% 80%, rgba(178, 249, 98, 0.14), transparent 60%);
  pointer-events: none;
}

.auth-hero::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 160deg,
    rgba(255, 55, 145, 0.18),
    rgba(0, 214, 255, 0.12),
    rgba(178, 249, 98, 0.12),
    rgba(255, 55, 145, 0.18)
  );
  opacity: 0.7;
  filter: blur(46px);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.auth-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.auth-copy {
  max-width: 560px;
}

.auth-mark {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
  font-size: 14px;
}

.auth-title {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
}

.auth-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
  max-width: 60ch;
}

.legal-links {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.auth-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 6, 24, 0.55);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  padding: 22px;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-section {
  display: grid;
  gap: 14px;
}

.form-section + .form-section {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.field {
  display: grid;
  gap: 8px;
}

.field[hidden] {
  display: none !important;
}

.label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.field-counter {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

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

.form-span-2 {
  grid-column: span 2;
}

.label {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  outline: none;
  font-weight: 700;
  transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease, transform 150ms ease;
}

.input[type="checkbox"] {
  width: auto;
  padding: 0;
}

select.input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 48px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff3791' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 14px;
  background-color: rgba(255, 255, 255, 0.06);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

select.input:hover {
  background-color: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
}

select.input:focus {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff3791' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='18 15 12 9 6 15'/></svg>");
}

select.input option {
  background-color: #1a1048;
  color: #ffffff;
  font-weight: 700;
  padding: 12px;
}

select.input option:checked,
select.input option:hover {
  background: linear-gradient(90deg, rgba(255, 55, 145, 0.28), rgba(107, 59, 208, 0.28));
  color: #ffffff;
}

select.input option[disabled] {
  color: rgba(255, 255, 255, 0.5);
}

select.input:invalid,
select.input:has(option[value=""]:checked) {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

textarea.input {
  resize: vertical;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.check-input {
  width: 18px;
  height: 18px;
}

.check-text {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.field-error {
  color: rgba(255, 175, 199, 0.95);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.4;
}

.input[aria-invalid="true"] {
  border-color: rgba(255, 55, 145, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 55, 145, 0.12);
}

.form-card {
  padding: 28px;
}

.form-card .label {
  font-size: 13px;
}

.form-card .input {
  padding: 13px 16px;
  border-radius: 16px;
}

.form-card select.input {
  padding: 13px 52px 13px 16px;
  background-position: right 20px center;
}

.form-card textarea.input {
  min-height: 140px;
}

.form-card .auth-submit {
  margin-top: 2px;
}

.btn-spin {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 0.1);
  animation: spin 900ms linear infinite;
}

.is-loading .btn-spin {
  display: inline-block;
}

.is-loading .btn-text {
  opacity: 0.85;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.input:focus {
  border-color: rgba(255, 55, 145, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 55, 145, 0.14);
}

.form-error {
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 55, 145, 0.55);
  background: rgba(255, 55, 145, 0.12);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  line-height: 1.5;
}

.form-success {
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(178, 249, 98, 0.55);
  background: rgba(178, 249, 98, 0.12);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  line-height: 1.5;
}

.auth-submit {
  width: 100%;
  padding: 13px 18px;
}

.legal-page {
  display: grid;
  gap: 30px;
}

.legal-hero {
  padding-top: 48px;
  padding-bottom: 64px;
}

.legal-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.legal-kicker {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 55, 145, 0.16);
  border: 1px solid rgba(255, 55, 145, 0.38);
  color: #ffd2e4;
  font-weight: 900;
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.legal-title {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
  background: linear-gradient(180deg, #ffffff 0%, #d9cfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.legal-chips {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.legal-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.legal-chip--free {
  border-color: rgba(178, 249, 98, 0.55);
  background: rgba(178, 249, 98, 0.12);
  color: #e2ffc2;
}

.legal-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #b2f962;
  box-shadow: 0 0 0 4px rgba(178, 249, 98, 0.2);
}

.legal-chip-ico {
  font-size: 13px;
  color: #ff3791;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.legal-side {
  position: sticky;
  top: 88px;
}

.legal-side-inner {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.legal-side-title {
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
}

.legal-toc--side {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 4px;
  justify-content: flex-start;
}

.legal-toc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  font-size: 13px;
  transition: all 0.2s ease;
}

.legal-toc--side .legal-toc-link {
  justify-content: flex-start;
  width: 100%;
}

.legal-toc-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 900;
}

.legal-toc-link:hover {
  border-color: rgba(255, 55, 145, 0.45);
  background: rgba(255, 55, 145, 0.14);
  color: #ffffff;
}

.legal-toc-link:hover span {
  background: rgba(255, 55, 145, 0.35);
  color: #ffffff;
}

.legal-main {
  display: grid;
  gap: 20px;
}

.legal-section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  scroll-margin-top: 100px;
}

.legal-section--accept {
  border-color: rgba(255, 55, 145, 0.35);
  background: linear-gradient(180deg, rgba(255, 55, 145, 0.12), rgba(107, 59, 208, 0.1));
}

.legal-section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  margin-bottom: 18px;
}

.legal-section-num {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 900;
  font-size: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff3791, #6b3bd0);
  box-shadow: 0 10px 26px rgba(255, 55, 145, 0.32);
  letter-spacing: 0.05em;
}

.legal-section-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
}

.legal-section-sub {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 600;
}

.legal-section-body {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.legal-sub {
  margin: 18px 0 8px;
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
  position: relative;
  padding-left: 14px;
}

.legal-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #ff3791, #6b3bd0);
}

.legal-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(178, 249, 98, 0.12);
  border: 1px solid rgba(178, 249, 98, 0.45);
  color: #e2ffc2;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.legal-note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.legal-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.legal-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.legal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 55, 145, 0.4);
}

.legal-card-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(107, 59, 208, 0.4), rgba(255, 55, 145, 0.4));
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.legal-card-ic--pink {
  background: linear-gradient(135deg, #ff3791, #ff6fb0);
}

.legal-card-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}

.legal-list-dense {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.6;
}

.legal-list-dense li {
  position: relative;
  padding-left: 16px;
}

.legal-list-dense li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff3791;
}

.legal-check-list,
.legal-x-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}

.legal-check-list li,
.legal-x-list li {
  position: relative;
  padding: 10px 12px 10px 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.legal-check-list li::before,
.legal-x-list li::before {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.legal-check-list li::before {
  content: "✓";
  background: rgba(178, 249, 98, 0.18);
  color: #b2f962;
  border: 1px solid rgba(178, 249, 98, 0.45);
}

.legal-x-list li::before {
  content: "×";
  background: rgba(255, 55, 145, 0.16);
  color: #ff7fb0;
  border: 1px solid rgba(255, 55, 145, 0.45);
  font-size: 14px;
}

.legal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.legal-stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}

.legal-stat--accent {
  border-color: rgba(255, 55, 145, 0.5);
  background: linear-gradient(180deg, rgba(255, 55, 145, 0.18), rgba(107, 59, 208, 0.14));
  box-shadow: 0 10px 30px rgba(255, 55, 145, 0.22);
}

.legal-stat-num {
  font-family: "Esport Graph", "Lato", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffc0dc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-stat-label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.legal-foot-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 18px;
}

.legal-content h2 {
  margin: 0;
  font-weight: 900;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.96);
}

.legal-content h3 {
  margin: 14px 0 0;
  font-weight: 900;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}

.legal-content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.legal-content ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
  display: grid;
  gap: 6px;
}

.legal-callout {
  margin-top: 14px;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 55, 145, 0.28);
  background: rgba(255, 55, 145, 0.08);
  position: relative;
  overflow: hidden;
}

.legal-callout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ff3791;
}

.legal-callout--warn {
  border-color: rgba(255, 166, 64, 0.36);
  background: rgba(255, 166, 64, 0.08);
}

.legal-callout--warn::before {
  background: #ffa640;
}

.legal-callout--ok {
  border-color: rgba(178, 249, 98, 0.45);
  background: rgba(178, 249, 98, 0.1);
}

.legal-callout--ok::before {
  background: #b2f962;
}

.legal-callout--accent {
  border-color: rgba(107, 59, 208, 0.55);
  background: linear-gradient(135deg, rgba(107, 59, 208, 0.18), rgba(255, 55, 145, 0.18));
}

.legal-callout--accent::before {
  background: linear-gradient(180deg, #ff3791, #6b3bd0);
}

.legal-callout-title {
  font-weight: 900;
  color: #ffffff;
  font-size: 15px;
  padding-left: 8px;
}

.legal-callout-text {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  font-weight: 600;
  padding-left: 8px;
}

.legal-table-wrap {
  margin-top: 12px;
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: rgba(255, 255, 255, 0.04);
}

.legal-table th,
.legal-table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.legal-table th {
  font-weight: 900;
  background: rgba(255, 255, 255, 0.06);
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

.auth-foot {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 11, 56, 0.72);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.brand-tagline {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  font-size: 12px;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:active {
  color: #ff3791;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle-bars {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
}

.nav-toggle-bars::before {
  top: -7px;
}

.nav-toggle-bars::after {
  top: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease;
  user-select: none;
}

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

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  border-color: rgba(178, 249, 98, 0.9);
}

.btn-primary:hover {
  background: rgba(178, 249, 98, 0.1);
  color: #ffffff;
  border-color: var(--secondary);
  box-shadow: 0 14px 44px rgba(178, 249, 98, 0.2);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.btn-outline:hover {
  background: rgba(255, 55, 145, 0.95);
  border-color: rgba(255, 55, 145, 0.95);
  box-shadow: var(--shadow-pink);
}

.btn-sm {
  padding: 9px 12px;
  font-weight: 800;
  font-size: 13px;
}

.hero {
  position: relative;
  padding: 110px 0 70px;
  background: linear-gradient(90deg, var(--dark-navy), var(--light-purple));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/header-bg-1-2-1.png") center / cover no-repeat;
  opacity: 0.82;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 500px at 20% 30%, rgba(255, 55, 145, 0.35), transparent 55%),
    radial-gradient(700px 500px at 85% 15%, rgba(178, 249, 98, 0.2), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--pink);
}

.hero-title {
  margin: -60px 0 12px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.06;
  font-weight: 800;
  font-family: "Game Stage", 'Courier New', 'Courier', monospace;
  -webkit-font-smoothing: none;
  text-rendering: optimizeSpeed;
  color: #ff3791;
}

.hero-tagline {
  margin: 40px 0 12px;
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 36px);
  line-height: 1.4;
  color: #6fd3ff;
  font-family: "Game Stage", 'Courier New', 'Courier', monospace;
  -webkit-font-smoothing: none;
  text-rendering: optimizeSpeed;
}

.hero-lead {
  margin: 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-badges {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  max-width: 420px;
}

.badge {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 12px 14px;
  backdrop-filter: blur(10px);
}

.badge-ghost {
  background: rgba(255, 255, 255, 0.08);
}

.badge-title {
  font-weight: 800;
  font-size: 14px;
}

.badge-meta {
  margin-top: 3px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-art {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-main-frame {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main {
  display: block;
  width: min(560px, 100%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.28));
  animation: floatMain 3s ease-in-out infinite;
}

.program {
  padding: 70px 0;
  background: linear-gradient(180deg, rgba(17, 11, 56, 0.82), rgba(17, 11, 56, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.program-media {
  display: grid;
  place-items: center;
}

.program-img {
  width: min(520px, 100%);
  border-radius: 22px;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.25));
  transform: translateX(-90px);
}

.program-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  padding: 34px 32px;
  transform: translateX(40px);
}

.program-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(34px, 4.3vw, 48px);
  line-height: 1.06;
  letter-spacing: 0.02em;
  font-family: "Game Stage", 'Courier New', 'Courier', monospace;
  -webkit-font-smoothing: none;
  text-rendering: optimizeSpeed;
  color: #ff3791;
}

.program-subtitle {
  margin: 16px 0 0;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.95);
}

.program-text {
  margin: 14px 0 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  line-height: 1.7;
  font-size: 18px;
}

.features-block {
  padding: 90px 0;
  background: var(--pink);
}

.features-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

.features-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  color: #ffffff;
  font-family: "Game Stage", 'Courier New', 'Courier', monospace;
  -webkit-font-smoothing: none;
  text-rendering: optimizeSpeed;
}

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

.features-pill {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  color: var(--primary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease;
}

.features-pill:hover {
  background: var(--secondary);
  color: #2323ff;
  border-color: rgba(178, 249, 98, 0.95);
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.22), 0 0 22px rgba(178, 249, 98, 0.45);
  transform: translateY(-3px) scale(1.02);
}

.features-pill:hover .pill-icon {
  color: #2323ff;
}

.features-pill:active {
  transform: translateY(-1px) scale(1.01);
}

.pill-icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  color: rgba(255, 55, 145, 0.95);
  flex: 0 0 auto;
}

.pill-icon svg {
  width: 26px;
  height: 26px;
}

.who {
  position: relative;
  padding: 90px 0;
  background: radial-gradient(900px 600px at 15% 20%, rgba(255, 55, 145, 0.14), transparent 60%),
    radial-gradient(900px 600px at 85% 80%, rgba(111, 211, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #120a3a 0%, #09051e 100%);
  overflow: hidden;
}

.who-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.who-left {
  position: relative;
}

.block-sep-badge--left {
  left: clamp(16px, 5vw, 64px);
  right: auto;
}

.who-media {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.who-orbits {
  position: absolute;
  inset: -40px;
  pointer-events: none;
}

.who-orbits::before,
.who-orbits::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 55, 145, 0.18);
  transform: rotate(-18deg);
}

.who-orbits::after {
  inset: 54px;
  border-color: rgba(255, 255, 255, 0.12);
  transform: rotate(12deg);
}

.who-frame {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.who-girl {
  position: absolute;
  top: -22px;
  left: 16px;
  width: 150px;
  max-width: 32%;
  z-index: 3;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.4));
}

.who-img {
  width: min(420px, 100%);
  border-radius: 18px;
  display: block;
  transform: translateX(-40px);
}

.who-bear {
  display: none;
}

.who-icon {
  position: absolute;
  width: 68px;
  right: 150px;
  top: 56px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  animation: float 7s ease-in-out infinite;
  animation-delay: 0.35s;
}

.who-spark {
  position: absolute;
  width: 36px;
  left: 120px;
  bottom: 44px;
  opacity: 0.9;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.2));
  animation: float 7s ease-in-out infinite;
  animation-delay: 0.8s;
}

.who-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  color: #ff3791;
  font-family: "Game Stage", 'Courier New', 'Courier', monospace;
  -webkit-font-smoothing: none;
  text-rendering: optimizeSpeed;
}

.who-subtitle {
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.92);
}

.who-right {
  display: grid;
  gap: 18px;
}

.who-item {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.who-item:hover {
  background: var(--secondary);
  border-color: rgba(178, 249, 98, 0.95);
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.22), 0 0 22px rgba(178, 249, 98, 0.45);
  transform: translateY(-3px) scale(1.01);
}

.who-item:active {
  transform: translateY(-1px) scale(1.005);
}

.who-item:active .who-num {
  background: #2323FF;
  color: #ffffff;
}

.who-item:active .who-text {
  color: #2323FF;
}

.who-num {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  font-weight: 900;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex: 0 0 auto;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.who-item:hover .who-num {
  background: #2323FF;
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22), 0 0 18px rgba(35, 35, 255, 0.35);
  transform: rotate(-3deg) scale(1.02);
}

.who-text {
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  line-height: 1.25;
  transition: color 160ms ease, transform 160ms ease;
}

.who-item:hover .who-text {
  color: #2323FF;
  transform: translateX(2px);
}

.journey {
  padding: 90px 0;
  background: linear-gradient(90deg, rgba(74, 38, 118, 0.92), rgba(24, 14, 56, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.journey-panel {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 26px 26px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
}

.journey-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  color: #ff3791;
  font-family: "Game Stage", 'Courier New', 'Courier', monospace;
  -webkit-font-smoothing: none;
  text-rendering: optimizeSpeed;
}

.journey-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.journey-item {
  background: rgba(6, 4, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.journey-item:hover {
  background: rgba(6, 4, 18, 0.38);
  border-color: rgba(178, 249, 98, 0.55);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 0 20px rgba(178, 249, 98, 0.18);
  transform: translateY(-6px) scale(1.01);
}

.journey-item:active {
  transform: translateY(-3px) scale(1.005);
}

.journey-ic {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #6fd3ff;
  background: radial-gradient(60px 60px at 30% 20%, rgba(111, 211, 255, 0.18), transparent 60%),
    radial-gradient(60px 60px at 80% 70%, rgba(255, 55, 145, 0.16), transparent 60%),
    rgba(0, 0, 0, 0.35);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22), 0 0 18px rgba(255, 255, 255, 0.22);
  flex: 0 0 auto;
  transition: transform 160ms ease, color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.journey-item:hover .journey-ic {
  color: var(--secondary);
  background: radial-gradient(60px 60px at 30% 20%, rgba(178, 249, 98, 0.28), transparent 60%),
    radial-gradient(60px 60px at 80% 70%, rgba(0, 214, 255, 0.14), transparent 60%),
    rgba(0, 0, 0, 0.35);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22), 0 0 22px rgba(178, 249, 98, 0.28);
  animation: journeyIcSpin 520ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.journey-ic svg,
.journey-ic img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.55));
  transition: transform 160ms ease, filter 160ms ease;
}

.journey-ic img {
  display: block;
  object-fit: contain;
}

.journey-ic img[src$="1-13.png"] {
  width: 145px;
  height: 145px;
}

.journey-ic img[src$="Women-Pigtail-Glasses-1.png"] {
  width: 44px;
  height: 44px;
}

.journey-item:hover .journey-ic svg,
.journey-item:hover .journey-ic img {
  transform: scale(1.12);
  filter: drop-shadow(0 0 10px rgba(178, 249, 98, 0.65));
}

.journey-info {
  display: grid;
  gap: 2px;
}

.journey-item:hover .journey-name {
  color: rgba(255, 255, 255, 1);
}

.journey-item:hover .journey-date {
  color: rgba(255, 255, 255, 0.86);
}

.journey-name {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
}

.journey-date {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.journey-media {
  display: grid;
  place-items: center;
  align-self: stretch;
  justify-items: end;
  height: 100%;
}

.journey-img {
  width: 100%;
  max-width: 100%;
  height: 90%;
  object-fit: cover;
  transform: translateX(80px);
}


 {transform: translateX(12px);} 


.awards {
  padding: 90px 0;
  background: radial-gradient(900px 520px at 15% 30%, rgba(255, 55, 145, 0.2), transparent 60%),
    radial-gradient(900px 520px at 85% 70%, rgba(111, 211, 255, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(9, 5, 30, 0.92) 0%, rgba(17, 11, 56, 0.92) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.awards-inner {
  display: grid;
  gap: 24px;
}

.awards-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.awards-head.center {
  justify-content: center;
  text-align: center;
}

.awards-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
}

.awards-subtitle {
  margin: 0;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.awards-stage {
  position: relative;
}

.awards-panel {
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  padding: 38px 34px;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.awards-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 420px at 10% 80%, rgba(255, 55, 145, 0.26), transparent 60%),
    radial-gradient(700px 420px at 90% 20%, rgba(111, 211, 255, 0.2), transparent 60%);
  pointer-events: none;
}

.awards-panel::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -40%;
  height: 80%;
  background: radial-gradient(closest-side, rgba(255, 55, 145, 0.75), transparent 70%);
  opacity: 0.35;
  filter: blur(20px);
  pointer-events: none;
}

.awards-grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 28px;
  align-items: flex-end;
  justify-content: center;
  padding-top: 6px;
}

.award-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.06));
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
  padding: 22px;
  position: relative;
  overflow: hidden;
  flex: 1 1 0;
  max-width: 340px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  backdrop-filter: blur(10px);
  min-height: 210px;
}

.award-card::before {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  opacity: 0.35;
  filter: blur(0px);
}

.award-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 240px at 50% 0%, rgba(255, 255, 255, 0.12), transparent 60%);
  pointer-events: none;
  opacity: 0.7;
}

.award-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-6px);
}

.award-1 {
  transform: translateY(-16px) scale(1.12);
  padding: 30px;
  min-height: 235px;
}

.award-2 {
  transform: translateY(8px) scale(0.98);
  opacity: 0.98;
  min-height: 205px;
}

.award-3 {
  transform: translateY(14px) scale(0.96);
  opacity: 0.96;
  min-height: 200px;
}

.award-gold::before {
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.75), transparent 60%);
}

.award-silver::before {
  background: radial-gradient(circle at 30% 30%, rgba(200, 210, 230, 0.8), transparent 60%);
}

.award-bronze::before {
  background: radial-gradient(circle at 30% 30%, rgba(205, 127, 50, 0.8), transparent 60%);
}

.award-gold {
  border-color: rgba(255, 215, 0, 0.22);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 215, 0, 0.08) inset;
}

.award-silver {
  border-color: rgba(200, 210, 230, 0.2);
}

.award-bronze {
  border-color: rgba(205, 127, 50, 0.18);
}

.award-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 900;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.award-amount {
  margin-top: 14px;
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: flex-end;
  width: 100%;
  flex-direction: row;
  direction: ltr;
  flex-wrap: nowrap;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.award-number {
  letter-spacing: 0.02em;
}

.award-currency {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
  opacity: 0.95;
}

.award-note {
  margin-top: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  z-index: 1;
}

.float {
  position: absolute;
  width: 120px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.25));
  opacity: 0.98;
  animation: float 7s ease-in-out infinite;
}

.f-1 {
  display: none;
  width: 150px;
  right: -18px;
  top: 56px;
  animation-delay: 0.4s;
}

.f-2 {
  display: none;
  width: 120px;
  left: -18px;
  bottom: 46px;
  animation-delay: 0.7s;
}

.f-3 {
  width: 48px;
  right: -10px;
  top: 26px;
  animation-delay: 1.1s;
}

.f-4 {
  display: none;
  width: 112px;
  right: 0;
  bottom: 10px;
  animation-delay: 0.9s;
}

.f-5 {
  display: none;
  width: 150px;
  left: 8px;
  top: 120px;
  animation-delay: 0.2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatMain {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.section {
  padding: 72px 0;
}

.block-sep {
  position: relative;
  height: 0;
}

.block-sep::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transform: none;
  background: rgba(255, 55, 145, 0.75);
  box-shadow: 0 0 0 1px rgba(255, 55, 145, 0.12), 0 12px 40px rgba(255, 55, 145, 0.18);
  pointer-events: none;
  z-index: 1;
}

.block-sep--diagonal::before {
  left: -20%;
  right: auto;
  width: 140%;
  transform: translateY(-50%) rotate(-7deg);
  transform-origin: center;
}

.block-sep--diagonal::after {
  content: "";
  position: absolute;
  left: -20%;
  top: 12px;
  width: 140%;
  height: 1px;
  transform: translateY(-50%) rotate(-7deg);
  transform-origin: center;
  background: rgba(255, 55, 145, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 55, 145, 0.08), 0 12px 40px rgba(255, 55, 145, 0.12);
  pointer-events: none;
  z-index: 1;
}

.block-sep-badge {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 3;
}

.block-sep--left .block-sep-badge {
  left: clamp(16px, 5vw, 64px);
}

.block-sep--right .block-sep-badge {
  right: clamp(16px, 5vw, 64px);
}

.block-sep--hero .block-sep-badge {
  display: none;
}

.block-sep--no-line::before,
.block-sep--no-line::after {
  display: none;
}

.block-sep--icon-back .block-sep-badge {
  z-index: 0;
  transform: translateY(-100%);
  overflow: hidden;
  height: 45px;
  align-items: flex-start;
}

.block-sep--icon-back .block-sep-badge img {
  animation: sepIconUp 5.4s ease-in-out infinite;
}

.block-sep--icon-back + section {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.block-sep--icon-8swap .block-sep-badge img {
  width: 74px;
  height: 74px;
}

.block-sep-badge img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.28));
  animation: sepIcon 5.4s ease-in-out infinite;
}

.block-sep--right.block-sep--diagonal .block-sep-badge img {
  height: 86px;
}

.block-sep-badge img[src$="4.png"] {
  height: 118px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  mix-blend-mode: normal;
  filter: none;
}

.block-sep--left .block-sep-badge img[src$="11.png"] {
  width: 65px;
  height: 48px;
}

.block-sep-badge img[src$="10.png"] {
  width: 72px;
  height: 78px;
}

@keyframes sepIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes sepIconUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes journeyIcSpin {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  55% {
    transform: translateY(-3px) rotate(320deg) scale(1.12);
  }
  100% {
    transform: translateY(-1px) rotate(360deg) scale(1.06);
  }
}

.section-dark {
  background: linear-gradient(180deg, rgba(17, 11, 56, 0.35), rgba(17, 11, 56, 0.72));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  margin-bottom: 26px;
  max-width: 900px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--pink);
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  font-family: "Game Stage", 'Courier New', 'Courier', monospace;
  -webkit-font-smoothing: none;
  text-rendering: optimizeSpeed;
  color: #ff3791;
}

.section-lead {
  margin: 0 0 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

.section-text {
  margin: 0;
  line-height: 1.7;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.card-title {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.card-text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

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

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

.feature-card {
  padding: 18px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.media-stack {
  position: relative;
  min-height: 420px;
  border-radius: 26px;
}

.media {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.media.main {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.media.corner {
  position: absolute;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
}

.media.corner.c-1 {
  left: -14px;
  bottom: -14px;
}

.media.corner.c-2 {
  right: -14px;
  top: -14px;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(178, 249, 98, 0.14);
  border: 1px solid rgba(178, 249, 98, 0.32);
  color: var(--secondary);
  font-weight: 800;
}

.step-title {
  font-weight: 800;
}

.step-text {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  font-size: 14px;
}

.nft-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.nft-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.nft-meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-weight: 800;
  color: var(--pink);
  font-size: 14px;
}

.timeline {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 46px;
  bottom: -14px;
  width: 2px;
  background: rgba(255, 55, 145, 0.32);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-dot {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(255, 55, 145, 0.14);
  border: 1px solid rgba(255, 55, 145, 0.38);
  color: var(--pink);
}

.timeline-card {
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 11, 56, 0.35);
}

.timeline-title {
  font-weight: 800;
}

.timeline-text {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  font-size: 14px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}

.logo {
  width: 160px;
  max-width: 100%;
  opacity: 0.9;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.2));
}

.logo-white {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 18px 40px rgba(0, 0, 0, 0.25));
}

.logo-large {
  width: 220px;
}

.logos-main {
  margin-bottom: 34px;
}

.creator-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  object-fit: cover;
}

.creator-card .card-title {
  color: #ffffff;
}

.faq {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px 16px;
  background: transparent;
  border: 0;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-q::after {
  content: "+";
  display: inline-block;
  font-weight: 900;
  color: var(--secondary);
}

.faq-q[aria-expanded="true"]::after {
  content: "–";
  color: var(--pink);
}

.faq-a {
  padding: 0 16px 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 16px;
}

.blog-card {
  padding: 16px;
}

.blog-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-weight: 800;
  color: var(--secondary);
}

.link:hover {
  color: #ffffff;
}

.contact {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(180deg, rgba(17, 11, 56, 0.92), rgba(9, 5, 30, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/header-bg-1-2-1.png") center / cover no-repeat;
  opacity: 0.28;
  transform: scale(1.04);
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 520px at 20% 30%, rgba(255, 55, 145, 0.25), transparent 60%),
    radial-gradient(700px 520px at 85% 80%, rgba(111, 211, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(9, 5, 30, 0.35), rgba(17, 11, 56, 0.72));
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.contact-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
}

.contact-text {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.7;
  max-width: 60ch;
}

.footer {
  background: rgba(10, 6, 30, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 0 22px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-logo {
  width: 220px;
  height: auto;
}

.footer-brand-name {
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  font-size: 12px;
  line-height: 1;
}

.footer-desc {
  margin: 0;
  max-width: 52ch;
  font-family: 'Courier New', 'Courier', monospace;
  -webkit-font-smoothing: none;
  text-rendering: optimizeSpeed;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateX(-20px);
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease,
    box-shadow 160ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 55, 145, 0.55);
  background: rgba(255, 55, 145, 0.18);
  color: #ffffff;
  box-shadow: 0 18px 60px rgba(255, 55, 145, 0.18);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  align-content: start;
}

.footer-social-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-span-2 {
    grid-column: auto;
  }

  .legal-links {
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 62px;
    right: 16px;
    left: 16px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(17, 11, 56, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 12px 12px;
  }

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

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

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-img {
    transform: none;
  }

  .program-card {
    padding: 26px 22px;
    transform: none;
  }

  .features-inner {
    grid-template-columns: 1fr;
  }

  .features-title {
    text-align: left;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .who-media {
    min-height: 380px;
  }

  .who-img {
    transform: none;
  }

  .who-bear {
    right: 10px;
    bottom: 54px;
    width: 122px;
  }

  .who-icon {
    right: 130px;
    top: 46px;
    width: 60px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-panel {
    padding: 22px 18px;
  }

  .awards-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .award-card {
    max-width: none;
  }

  .award-1,
  .award-2,
  .award-3 {
    transform: none;
    opacity: 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 70px 0;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand-link {
    align-items: center;
  }

  .footer-brand {
    justify-items: center;
    text-align: center;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-social-col {
    align-items: center;
  }

  .auth-inner {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 18px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-side {
    position: static;
    top: auto;
  }

  .legal-toc--side {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .legal-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .legal-section {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .legal-grid--3 {
    grid-template-columns: 1fr;
  }

  .legal-stats {
    grid-template-columns: 1fr;
  }

  .legal-section-head {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .legal-section-num {
    width: 44px;
    height: 44px;
    font-size: 15px;
    border-radius: 12px;
  }

  .legal-section-title {
    font-size: 18px;
  }

  .legal-chips {
    gap: 8px;
  }

  .legal-chip {
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 84px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .float {
    display: none;
  }

  .who-item {
    padding: 18px 18px;
  }

  .who-text {
    font-size: 18px;
  }

  .journey-item {
    padding: 14px 14px;
  }

  .journey-ic {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .journey-name {
    font-size: 15px;
  }
}
