@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg:        #0A0B12;
  --border:    rgba(255,255,255,0.075);
  --border-hi: rgba(255,255,255,0.13);

  --blue:      #00AAFF;
  --blue-glow: rgba(0,170,255,0.45);

  --gold:      #F5B030;
  --gold-glow: rgba(245,176,48,0.55);
  --gold-grad: linear-gradient(135deg, #FFE566 0%, #F5B030 50%, #C87818 100%);

  --text:   #FFFFFF;
  --text-2: #A6A6AE;
  --text-3: #75757F;

  --font-d: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html { -webkit-text-size-adjust: 100%; }

body {
  min-height: 100svh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-d);
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 22px calc(32px + env(safe-area-inset-bottom));
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: -30%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 30% at 22% 18%, rgba(0,170,255,0.16), transparent 70%),
    radial-gradient(42% 34% at 80% 78%, rgba(245,176,48,0.13), transparent 70%);
  filter: blur(46px);
  animation: drift 26s var(--ease) infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(-2%, -1.5%, 0) scale(1); }
  to   { transform: translate3d(2.5%, 2%, 0) scale(1.08); }
}

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: rise 0.8s var(--ease) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.logo {
  width: 104px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 22px rgba(245,176,48,0.30)) drop-shadow(0 6px 26px rgba(0,0,0,0.5));
}

h1 {
  margin-top: 22px;
  font-weight: 800;
  font-size: clamp(38px, 11.5vw, 50px);
  line-height: 1.02;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

h1 .g {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 16em;
  text-wrap: balance;
}

.rule {
  width: 48px;
  height: 2px;
  margin-top: 26px;
  border-radius: 2px;
  background: var(--gold-grad);
  box-shadow: 0 0 12px var(--gold-glow);
  opacity: 0.85;
}

.cta {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 15px 22px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
}

.btn .ico {
  flex-shrink: 0;
  display: block;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 38px -8px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.btn:active { transform: translateY(0) scale(0.985); }

@media (hover: hover) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px -6px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.22);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--border-hi);
  }
}

.social {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-3);
  transition: color 0.2s var(--ease), background 0.2s, transform 0.25s var(--ease);
}

.social a:active { color: var(--text); }

@media (hover: hover) {
  .social a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.055);
    transform: translateY(-2px);
  }
}

.legal {
  margin-top: 20px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-3);
}

.legal a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 999px;
}

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