:root {
  --bg: #050505;
  --bg-deep: #020202;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --surface-soft: rgba(255, 255, 255, 0.025);
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.24);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.74);
  --text-muted: rgba(255, 255, 255, 0.52);
  --accent: #ffd600;
  --accent-strong: #ffe600;
  --accent-dark: #ffbf00;
  --danger: #ff6b6b;
  --black: #000000;
  --radius-xxl: 36px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --shadow-yellow: 0 0 24px rgba(255, 214, 0, 0.34), 0 0 62px rgba(255, 214, 0, 0.12);
  --shadow-card: 0 28px 80px rgba(0, 0, 0, 0.54);
  --font-main: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { min-height: 100%; background: var(--bg-deep); -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-width: 320px;
  min-height: 100svh;
  color: var(--text);
  background: var(--bg-deep);
  font-family: var(--font-main);
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { border: 0; }
img, svg { display: block; max-width: 100%; }

.page-bg {
  min-height: 100svh;
  background:
    radial-gradient(circle at 72% 0%, rgba(255, 214, 0, 0.15), transparent 30%),
    radial-gradient(circle at 6% 26%, rgba(255, 214, 0, 0.08), transparent 27%),
    linear-gradient(180deg, #050505 0%, #020202 100%);
}

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

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

.glass-card {
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.075), transparent 64%),
    var(--surface);
  box-shadow: var(--shadow-card);
}

.btn-primary,
.btn-secondary {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease, border-color .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, var(--accent-strong), var(--accent-dark));
  color: #000;
  box-shadow: 0 18px 42px rgba(255, 214, 0, .23), inset 0 1px 0 rgba(255,255,255,.35);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .055);
  color: var(--text-soft);
}

.btn-primary:hover,
.btn-secondary:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn-primary:active,
.btn-secondary:active { transform: translateY(1px) scale(.99); }
.btn-primary:focus-visible,
.btn-secondary:focus-visible { outline: 3px solid rgba(255, 214, 0, .35); outline-offset: 3px; }
.btn-arrow {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #050505;
  color: var(--accent);
  font-size: 0;
  line-height: 1;
  flex: 0 0 auto;
  position: relative;
}
.btn-arrow::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn-arrow::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 17px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.kicker-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--accent);
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
}

.kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255,214,0,.55);
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 16px), var(--container)); }
  .btn-primary, .btn-secondary { min-height: 62px; border-radius: 18px; }
}

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