:root {
  --bg: #060606;
  --bg-soft: #0f0f0f;
  --text: #f8f6ef;
  --muted: #c9c3ad;
  --accent: #ffe066;
  --glass-bg: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(255, 224, 102, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 224, 102, 0.18), transparent 40%),
    radial-gradient(circle at 90% 8%, rgba(255, 224, 102, 0.1), transparent 35%),
    linear-gradient(150deg, #030303 0%, #0a0a0a 50%, #171208 100%);
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
  animation: floatOrb 8s ease-in-out infinite;
}

.orb--one {
  width: 240px;
  height: 240px;
  top: 50px;
  left: -90px;
  background: rgba(255, 224, 102, 0.45);
}

.orb--two {
  width: 210px;
  height: 210px;
  top: 42%;
  right: -70px;
  background: rgba(191, 148, 42, 0.32);
  animation-delay: -2.2s;
}

.fixed-logo {
  position: fixed;
  top: 14px;
  left: 16px;
  z-index: 120;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 0 18px rgba(255, 224, 102, 0.45);
  display: grid;
  place-items: center;
}

.fixed-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 110;
  transform: translateY(0);
  transition: transform 0.35s ease;
  border-bottom: 1px solid rgba(255, 224, 102, 0.24);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar .nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.95rem 1rem 0.95rem 4.7rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-links a {
  color: #f8df8b;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  border-color: rgba(255, 224, 102, 0.45);
  background: rgba(255, 224, 102, 0.12);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 224, 102, 0.45);
  background: rgba(0, 0, 0, 0.45);
  color: var(--accent);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
}

.page-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
  z-index: 10;
}

.glass {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.premium-card {
  border-radius: 20px;
  padding: clamp(1.2rem, 2.8vw, 2.4rem);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45);
}

.section-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-title .accent {
  color: var(--accent);
}

.section-subtitle {
  color: var(--muted);
  line-height: 1.7;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 224, 102, 0.55);
  color: #f7d877;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  padding: 0.36rem 0.82rem;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card-lift {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 54px rgba(255, 224, 102, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.55rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #1b1b1b;
  background: linear-gradient(90deg, #ffe066, #f3ca45);
  box-shadow: 0 10px 30px rgba(255, 224, 102, 0.32);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 224, 102, 0.72);
  background: rgba(7, 7, 7, 0.55);
}

.hero-xl {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: 5.8rem;
}

.hero-xl h1 {
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 5.6rem);
  font-weight: 800;
  line-height: 1.01;
}

.hero-xl h1 .accent {
  color: var(--accent);
}

.hero-xl p {
  margin: 1.1rem auto 0;
  max-width: 760px;
  color: #e6dcc0;
  font-size: clamp(1.12rem, 2.7vw, 1.62rem);
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.stats-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-card {
  padding: 1.15rem;
  border-radius: 14px;
}

.stat-card .value {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 2.7rem);
  font-weight: 800;
}

.stat-card .underline {
  width: 54px;
  height: 2px;
  margin: 0.5rem 0 0.7rem;
  background: linear-gradient(to right, var(--accent), transparent);
}

.stat-card h3 {
  margin: 0;
  color: #f4e7b7;
  font-size: 1.02rem;
}

.stat-card p {
  margin: 0.38rem 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.95rem;
}

.policy-card {
  line-height: 1.72;
}

.policy-card h2 {
  margin: 2rem 0 0.55rem;
  color: #f8e39e;
  font-size: 1.3rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 224, 102, 0.22);
}

.policy-card h3 {
  margin: 1.3rem 0 0.45rem;
  color: #f8dc80;
}

.policy-card ul,
.policy-card ol {
  padding-left: 1.2rem;
}

.policy-card li {
  margin-bottom: 0.55rem;
}

.policy-card .loud {
  border-radius: 12px;
  border: 1px solid rgba(255, 224, 102, 0.35);
  background: rgba(255, 224, 102, 0.08);
  color: #f9e6a8;
  padding: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.input-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #f5e2a0;
  font-weight: 600;
}

.input,
.select,
.textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 224, 102, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 0.9rem 0.95rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: rgba(255, 224, 102, 0.88);
  box-shadow: 0 0 0 3px rgba(255, 224, 102, 0.2);
}

.textarea {
  min-height: 130px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 0.96rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: #141414;
  background: linear-gradient(90deg, #ffe066, #f2c93f);
  box-shadow: 0 12px 34px rgba(255, 224, 102, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(255, 224, 102, 0.34);
}

.premium-footer {
  margin-top: 2.2rem;
  text-align: center;
  padding: 1.6rem 1rem 1.9rem;
  border-top: 1px solid rgba(255, 224, 102, 0.3);
  box-shadow: inset 0 7px 18px rgba(255, 224, 102, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.premium-footer p {
  margin: 0;
}

.footer-links {
  margin: 0.65rem 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #f4d77f;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-signature {
  color: #f7d775;
  letter-spacing: 0.02em;
}

.reveal {
  animation: fadeInUp 0.75s ease both;
}

@supports (animation-timeline: view()) {
  .reveal {
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(8px, -20px);
  }
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .navbar .nav-inner {
    padding: 0.78rem 0.9rem 0.78rem 3.8rem;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    border-bottom: 1px solid rgba(255, 224, 102, 0.24);
  }

  .nav-links.open {
    max-height: 360px;
  }

  .nav-links a {
    border-radius: 0;
    border-top: 1px solid rgba(255, 224, 102, 0.12);
    padding: 0.95rem 1rem;
    text-align: left;
  }

  .fixed-logo {
    width: 44px;
    height: 44px;
  }

  .fixed-logo img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .page-content {
    padding-top: 1.25rem;
  }
}
