* { box-sizing: border-box; }
:root {
  --bg: #0c0f12;
  --steel: #151a1f;
  --steel-2: #20272e;
  --panel: #171c21;
  --text: #f4f6f8;
  --muted: #a7adb4;
  --soft: #cfd3d8;
  --line: rgba(255,255,255,.12);
  --yellow: #f5b301;
  --yellow-2: #ffd166;
  --shadow: 0 24px 70px rgba(0,0,0,.36);
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Rajdhani", Inter, system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(245,179,1,.16), transparent 30rem),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.07), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
input, select, textarea, button { font: inherit; }
button { cursor: pointer; }
h1, h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .01em; }
.logo-box, .footer-logo {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--steel-2);
}
.logo-box img, .footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-link {
  border-radius: 10px;
  color: var(--soft);
  font-size: .84rem;
  font-weight: 800;
  padding: .65rem .9rem;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav-link:hover { background: rgba(245,179,1,.12); color: #fff; transform: translateY(-1px); }
.nav-cta, .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 12px;
  background: var(--yellow);
  color: #121212;
  font-weight: 900;
  line-height: 1;
  padding: .92rem 1.18rem;
  box-shadow: 0 18px 40px rgba(245,179,1,.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav-cta:hover, .primary-btn:hover { background: var(--yellow-2); transform: translateY(-2px); box-shadow: 0 18px 46px rgba(245,179,1,.24); }
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-weight: 900;
  line-height: 1;
  padding: .92rem 1.18rem;
  background: rgba(255,255,255,.05);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.secondary-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(245,179,1,.45); transform: translateY(-2px); }
.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--steel);
  color: var(--text);
}
#mobile-menu a {
  display: block;
  border-radius: 12px;
  color: var(--soft);
  font-weight: 900;
  padding: .95rem 1rem;
}
#mobile-menu a:hover { background: rgba(245,179,1,.12); color: #fff; }
.nav-scrolled { background: rgba(17,20,24,.94) !important; box-shadow: 0 14px 38px rgba(0,0,0,.32); }
.section-kicker {
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-title {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 700;
  line-height: .92;
}
.premium-card {
  background: linear-gradient(180deg, rgba(32,39,46,.94), rgba(21,26,31,.94));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.premium-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0,0,0,.24);
  color: var(--text);
  outline: none;
  padding: .92rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.premium-input:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(245,179,1,.13); }
.premium-input::placeholder { color: #79818a; }
.content-shell { max-width: 1100px; margin: 0 auto; padding: 8.5rem 1rem 5rem; }
.policy-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(32,39,46,.86);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 3rem);
}
.policy-card h1 { color: var(--text); font-size: clamp(3rem, 5vw, 5.2rem); font-weight: 700; line-height: .92; margin-bottom: 1.5rem; }
.policy-card h2 { color: var(--yellow); font-size: 1.18rem; font-weight: 900; margin-top: 2rem; margin-bottom: .75rem; }
.policy-card p, .policy-card li { color: var(--soft); line-height: 1.85; }
.policy-card ul { padding-left: 1.2rem; }
.soft-footer {
  background: linear-gradient(180deg, #151a1f, #090b0d);
  border-top: 1px solid var(--line);
  color: #fff;
}
.footer-title { color: #fff; font-size: .72rem; font-weight: 900; letter-spacing: .16em; margin-bottom: 1rem; text-transform: uppercase; }
.footer-links { display: grid; gap: .7rem; }
.footer-links a { color: var(--soft); font-size: .9rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--yellow); }
.newsletter { display: flex; overflow: hidden; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.06); }
.newsletter input { min-width: 0; flex: 1; background: transparent; border: 0; outline: none; color: #fff; padding: .9rem 1rem; }
.newsletter input::placeholder { color: var(--muted); }
.newsletter button { display: grid; place-items: center; width: 48px; background: var(--yellow); color: #111; }
::selection { background: var(--yellow); color: #111; }
