@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #0A0A0B;
  --panel: rgba(243, 241, 237, 0.04);
  --panel-border: rgba(243, 241, 237, 0.12);
  --surface: #101214;
  --text: #F3F1ED;
  --muted: #9EA2A8;
  --accent: #FF6A00;
  --accent-soft: rgba(255, 106, 0, 0.14);
  --shadow: rgba(0, 0, 0, 0.35);
}

html {
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255,255,255,0.04), transparent 18%),
              radial-gradient(circle at 85% 12%, rgba(255,106,0,0.08), transparent 12%),
              linear-gradient(180deg, rgba(255,255,255,0.02), transparent 30%),
              var(--bg);
  color: var(--text);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.12;
  pointer-events: none;
}

.site-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text);
}

.site-brand span {
  color: var(--accent);
}

.brand-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

.brand-header {
  padding: 1.5rem 0 0;
}

.content-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2rem;
  box-shadow: 0 40px 100px var(--shadow);
}

.card-body {
  padding: 3rem;
}

.page-heading {
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.splash-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  border-radius: 2rem;
  background: rgba(243, 241, 237, 0.02);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.splash-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.11), transparent 16%),
    radial-gradient(circle at 84% 14%, rgba(255,106,0,0.12), transparent 14%),
    linear-gradient(140deg, rgba(255,255,255,0.05), transparent 40%);
  pointer-events: none;
}

.splash-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 52% 32%, rgba(255,255,255,0.04), transparent 18%),
                    radial-gradient(circle at 28% 76%, rgba(255,255,255,0.04), transparent 16%);
  pointer-events: none;
}

.hero-eyebrow,
.hero-title,
.hero-text,
.hero-flag,
.cta-row {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.38em;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  position: relative;
  z-index: 1;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  max-width: 11ch;
  margin: 0 0 1.5rem;
  letter-spacing: -0.05em;
}

.hero-text {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  max-width: 44rem;
  color: rgba(243,241,237,0.86);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.cta-row .btn {
  min-width: 220px;
}

.hero-flag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 0.85rem 1.3rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: var(--muted);
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  border-radius: 1.5rem;
}

.section-label {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.72rem;
  margin-bottom: 1rem;
}

.form-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-control {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  border-radius: 0.85rem;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(255,106,0,0.16);
  border-color: rgba(255,106,0,0.8);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.auth-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.5rem;
  width: 100%;
  max-width: 420px;
}

.auth-form .form-actions {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  width: 100%;
}

.auth-form .btn {
  width: 100%;
  max-width: 320px;
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #0A0A0B;
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn-accent:hover {
  background-color: #ff7d24;
  border-color: #ff7d24;
  transform: translateY(-1px);
}

.btn-themed {
  min-width: 260px;
  max-width: 320px;
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}

.alert {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

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