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

:root {
  color-scheme: dark;
  --bg: #06080b;
  --bg-2: #0b0f14;
  --panel: rgba(10, 14, 20, 0.78);
  --panel-strong: rgba(10, 14, 20, 0.92);
  --text: #e7edf7;
  --muted: #95a3b8;
  --gold: #6ef3ff;
  --gold-2: #ffcf88;
  --blue: #8f93ff;
  --mint: #b9ff63;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 32px 70px rgba(2, 6, 12, 0.6);
  --radius: 22px;
  --font-sans: "Space Grotesk", "Onest", "Manrope", sans-serif;
  --font-display: "Syne", "Space Grotesk", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
}

.video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #06080b;
}

.video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(110, 243, 255, 0.2), transparent 60%),
    radial-gradient(700px 400px at 85% 10%, rgba(255, 207, 136, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(6, 8, 11, 0.6), rgba(6, 8, 11, 0.4) 45%, rgba(6, 8, 11, 0.65) 100%);
  opacity: 0.85;
}

.video-bg video {
  position: absolute;
  inset: -2% -2% 0;
  width: 104%;
  height: 104%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  filter: saturate(1.05) contrast(1.05) brightness(0.75);
  transform: scale(1.02);
}

.video-bg video.is-front {
  opacity: 1;
}


.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.scene canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: soft-light;
}

.site > * {
  position: relative;
  z-index: 1;
}

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

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

.site {
  min-height: 100vh;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 8, 11, 0.55), rgba(6, 8, 11, 0.32) 45%, rgba(6, 8, 11, 0.6) 100%);
  overflow-x: hidden;
}

.site::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1000px 600px at 12% -20%, rgba(110, 243, 255, 0.08), transparent 60%),
    radial-gradient(900px 700px at 85% 10%, rgba(255, 207, 136, 0.08), transparent 60%);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.site::after {
  content: "";
  position: fixed;
  inset: auto -140px 12% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 243, 255, 0.28), rgba(255, 207, 136, 0.18) 45%, transparent 70%);
  filter: blur(6px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 12, 18, 0.75);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-image: url("/assets/logo.jpg");
  background-size: 120% auto;
  background-position: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7), 0 0 24px rgba(229, 195, 107, 0.25);
}

.brand-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(229, 195, 107, 0.12);
  border: 1px solid rgba(229, 195, 107, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch button {
  padding: 6px 10px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lang-switch button.active {
  color: #0b0f14;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  color: #0b0f14;
  font-weight: 600;
  box-shadow: 0 16px 36px rgba(229, 195, 107, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(229, 195, 107, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--gold);
}

.hero {
  padding: 80px 0 40px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(229, 195, 107, 0.12);
  border: 1px solid rgba(229, 195, 107, 0.24);
  color: #f3e2a5;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.3vw, 60px);
  margin: 18px 0 16px;
  line-height: 1.08;
}

.hero-kicker {
  margin: -4px 0 10px;
  color: rgba(231, 237, 247, 0.92);
  font-size: 15px;
  letter-spacing: 0.02em;
}

.hero p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
  max-width: 560px;
}

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

.hero-policy {
  margin: 16px 0 0;
  max-width: 720px;
  color: rgba(231, 237, 247, 0.8);
  font-size: 14px;
  line-height: 1.65;
}

.hero-policy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-policy a:hover {
  color: var(--accent-2);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-card {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: var(--shadow);
}

.slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.slider {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(10, 12, 16, 0.7);
  height: 240px;
  position: relative;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.1) 0%, rgba(8, 10, 18, 0.7) 80%);
  z-index: 0;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-caption {
  position: relative;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 18, 0.7);
  font-size: 12px;
  letter-spacing: 0.6px;
}

.slider-dots {
  display: flex;
  gap: 6px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-dots button.active {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 8px rgba(229, 195, 107, 0.5);
  border-color: transparent;
}

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

.metric-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(12, 16, 26, 0.8);
  border: 1px solid rgba(229, 195, 107, 0.15);
  font-size: 12px;
  color: var(--muted);
}

.metric-chip strong {
  color: var(--gold-2);
  font-weight: 600;
}

.ticker {
  margin-top: 24px;
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker-track {
  display: inline-flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 52px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 30px;
  margin: 0 0 16px;
}

.section-sub {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h4 { margin: 0 0 10px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); line-height: 1.6; }

.legal-card p + p {
  margin-top: 12px;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-meta {
  display: grid;
  gap: 10px;
}

.legal-meta strong,
.legal-card strong {
  color: var(--text);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.metric {
  padding: 18px;
  border-radius: 16px;
  background: rgba(11, 14, 18, 0.75);
  border: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.estimator {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: var(--shadow);
}

.estimator input[type="range"] {
  width: 100%;
}

.estimator-output {
  display: grid;
  gap: 10px;
}

.estimator-output strong {
  font-size: 22px;
  color: var(--gold-2);
}

.cta {
  padding: 48px 0 80px;
}

.cta-card {
  background: linear-gradient(135deg, rgba(20, 22, 26, 0.92), rgba(10, 12, 16, 0.95));
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.reinforce-card {
  margin-top: 20px;
  background:
    linear-gradient(135deg, rgba(18, 22, 30, 0.92), rgba(8, 10, 16, 0.96)),
    radial-gradient(circle at top right, rgba(110, 243, 255, 0.12), transparent 40%);
}

.reinforce-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
}

.reinforce-card .section-sub {
  margin: 0;
  max-width: 640px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 40px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 6vh, 72px) 20px 36px;
}

.auth-shell {
  width: min(460px, 100%);
  display: grid;
  gap: 16px;
  text-align: center;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.4), rgba(7, 10, 14, 0.18));
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 30px 26px;
  box-shadow: 0 30px 70px rgba(2, 6, 12, 0.45);
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(240px 140px at 20% 10%, rgba(110, 243, 255, 0.12), transparent 60%),
    radial-gradient(240px 140px at 85% 0%, rgba(255, 207, 136, 0.1), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.auth-card > * {
  position: relative;
  z-index: 1;
}

.auth-logo {
  width: 84px;
  height: 84px;
  border-radius: 26px;
  margin: 0 auto 18px;
  background-image: url("/assets/logo.jpg");
  background-size: 140% auto;
  background-position: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55), 0 0 22px rgba(110, 243, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-title {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 8px;
}

.auth-sub { color: var(--muted); margin-bottom: 20px; }

.auth-buttons { display: grid; gap: 12px; }

.auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 16, 0.85);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-btn:hover {
  border-color: rgba(229, 195, 107, 0.3);
  transform: translateY(-1px);
}

.auth-btn img { width: 18px; height: 18px; }

.auth-btn.auth-btn-secondary {
  background: rgba(229, 195, 107, 0.08);
  border-color: rgba(229, 195, 107, 0.28);
}

.auth-card-min {
  padding: 28px;
}

.auth-card-min .auth-title {
  font-size: 24px;
}

.auth-card-min .auth-sub {
  font-size: 13px;
}

.auth-phone.minimal .auth-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.auth-phone.minimal input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 16, 0.7);
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
}

.auth-phone.minimal .auth-btn-primary {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(90, 168, 255, 0.35);
  background: linear-gradient(135deg, rgba(90, 168, 255, 0.18), rgba(169, 139, 255, 0.2));
  box-shadow: 0 8px 20px rgba(90, 168, 255, 0.18);
}

.auth-otp {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.auth-otp.hidden {
  display: none;
}

.auth-icons {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.auth-icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(15, 18, 24, 0.65), rgba(9, 11, 16, 0.5));
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-icon-btn:hover {
  border-color: rgba(229, 195, 107, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(229, 195, 107, 0.2);
}

.auth-icon-btn img {
  width: 22px;
  height: 22px;
  filter: invert(1) brightness(1.2);
  opacity: 0.95;
}

.auth-legal {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.auth-legal a {
  color: #dffbff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-consent-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(110, 243, 255, 0.22);
  background: rgba(110, 243, 255, 0.08);
  color: #d9fbff;
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.auth-title-consent {
  font-size: 24px;
}

.auth-consent-account {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 24, 0.86);
  text-align: left;
}

.auth-consent-avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(110, 243, 255, 0.2), rgba(255, 207, 136, 0.2));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.auth-consent-account-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.auth-consent-account-copy strong {
  font-size: 15px;
  color: var(--text);
}

.auth-consent-account-copy span {
  color: var(--muted);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-consent-list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  text-align: left;
}

.auth-consent-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(9, 12, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.auth-consent-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
}

.auth-consent-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.auth-legal-consent {
  margin-top: 18px;
}

.auth-consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.auth-phone {
  display: grid;
  gap: 12px;
  text-align: left;
}

.auth-field span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.auth-field input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 16, 0.7);
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
}

.auth-field input:focus {
  outline: none;
  border-color: rgba(143, 210, 167, 0.4);
  box-shadow: 0 0 0 2px rgba(143, 210, 167, 0.1);
}

.auth-row { display: flex; justify-content: center; }

.auth-recaptcha { display: flex; justify-content: center; }

.auth-hint {
  font-size: 12px;
  color: var(--muted);
  min-height: 16px;
}

.auth-hint.error { color: #ff8f8f; }

.auth-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.auth-toggle button {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
}

.auth-toggle button.active { color: var(--gold-2); }

.auth-footer { color: var(--muted); font-size: 12px; }

.back-link { color: var(--muted); font-size: 13px; text-align: left; }

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .estimator { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .header-inner { flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-metrics { grid-template-columns: 1fr; }
}


.hero-label {
  background: rgba(110, 243, 255, 0.14);
  border: 1px solid rgba(110, 243, 255, 0.35);
  color: #dffbff;
}

.slider-dots button.active {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 10px rgba(110, 243, 255, 0.55);
}

.metric-chip {
  border-color: rgba(110, 243, 255, 0.2);
}

.metric-chip strong {
  color: var(--gold);
}

.card,
.hero-card,
.metric,
.estimator,
.cta-card,
.auth-card,
.auth-btn,
.slider {
  backdrop-filter: blur(16px) saturate(1.2);
}

.btn-primary {
  box-shadow: 0 18px 36px rgba(110, 243, 255, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 26px 52px rgba(110, 243, 255, 0.35);
}

.btn-ghost:hover {
  border-color: rgba(110, 243, 255, 0.4);
  color: var(--gold);
}

.auth-btn:hover,
.auth-icon-btn:hover {
  border-color: rgba(110, 243, 255, 0.35);
  box-shadow: 0 10px 24px rgba(110, 243, 255, 0.2);
}

.auth-field input:focus {
  outline: none;
  border-color: rgba(110, 243, 255, 0.5);
  box-shadow: 0 0 0 2px rgba(110, 243, 255, 0.12);
}

.auth-toggle button.active {
  color: var(--gold-2);
}


.brand-mark {
  border: 1px solid rgba(110, 243, 255, 0.25);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7), 0 0 26px rgba(110, 243, 255, 0.35);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(110, 243, 255, 0.12);
  border: 1px solid rgba(110, 243, 255, 0.25);
}

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


.legal-document-wrap {
  padding-top: 12px;
}

.legal-doc-card {
  padding: 28px;
}

.legal-doc-panel {
  max-width: 420px;
}

.offer-copy[hidden] {
  display: none !important;
}

.offer-section + .offer-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.offer-section h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
}

.offer-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.offer-section p + p {
  margin-top: 10px;
}

.offer-section ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.offer-section li + li {
  margin-top: 8px;
}

.offer-company {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 24px;
}

@media (max-width: 720px) {
  .legal-doc-card {
    padding: 20px;
  }

  .offer-section h3 {
    font-size: 20px;
  }
}
