:root {
  --bg-void: #050507;
  --bg-deep: #08090d;
  --bg-base: #0c0d13;
  --bg-raised: #12141d;
  --bg-surface: #181a26;
  --gold: #d4a853;
  --gold-light: #e8c778;
  --gold-dim: #a07c2e;
  --gold-glow: rgba(212, 168, 83, 0.22);
  --gold-ultra: rgba(212, 168, 83, 0.06);
  --emerald: #5be9b5;
  --emerald-dim: #2fb88a;
  --emerald-glow: rgba(91, 233, 181, 0.12);
  --silver: #c0c5d4;
  --coral: #f47a8b;
  --text-hero: #f5f3ee;
  --text-primary: #e8e6e0;
  --text-secondary: #8e91a1;
  --text-muted: #555869;
  --text-faint: #3a3d4d;
  --glass-bg: rgba(255, 255, 255, 0.025);
  --glass-border: rgba(255, 255, 255, 0.055);
  --glass-shine: rgba(255, 255, 255, 0.09);
  --clay-shadow-d: rgba(0, 0, 0, 0.6);
  --clay-shadow-l: rgba(255, 255, 255, 0.03);
  --radius: 24px;
  --radius-sm: 16px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 1000px 700px at 10% 8%, rgba(212, 168, 83, 0.045) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 88% 25%, rgba(91, 233, 181, 0.03) 0%, transparent 65%),
    radial-gradient(ellipse 800px 900px at 50% 85%, rgba(244, 122, 139, 0.025) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  z-index: 0;
}

section,
header,
nav,
main,
footer {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 56px);
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--glass-border) 20%,
    rgba(212, 168, 83, 0.12) 50%,
    var(--glass-border) 80%,
    transparent 100%
  );
}

.clay {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow:
    10px 10px 30px var(--clay-shadow-d),
    -4px -4px 14px var(--clay-shadow-l),
    inset 0 1px 0 var(--glass-shine);
}

.glass {
  background: rgba(255, 255, 255, 0.022);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.5s, box-shadow 0.5s, padding 0.4s;
}

.nav.scrolled {
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--glass-border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-logo span {
  color: var(--text-hero);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--text-hero);
}

.nav-cta {
  background: transparent;
  color: var(--gold);
  font-weight: 500;
  padding: 10px 28px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 100px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: rgba(212, 168, 83, 0.08);
  border-color: rgba(212, 168, 83, 0.5);
  box-shadow: 0 0 24px rgba(212, 168, 83, 0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  position: relative;
}

.orb {
  position: absolute;
  border-radius: 50%;
  animation: drift 10s ease-in-out infinite;
}

.orb--1 {
  width: 380px;
  height: 380px;
  top: 6%;
  right: 3%;
  background: radial-gradient(circle at 30% 30%, rgba(212, 168, 83, 0.12) 0%, rgba(212, 168, 83, 0.03) 50%, transparent 75%);
  box-shadow:
    inset -30px -30px 60px rgba(0, 0, 0, 0.25),
    inset 15px 15px 30px rgba(255, 255, 255, 0.03),
    0 0 120px rgba(212, 168, 83, 0.04);
}

.orb--2 {
  width: 200px;
  height: 200px;
  top: 52%;
  right: 16%;
  background: radial-gradient(circle at 30% 30%, rgba(91, 233, 181, 0.09) 0%, rgba(91, 233, 181, 0.02) 50%, transparent 75%);
  box-shadow: inset -16px -16px 36px rgba(0, 0, 0, 0.25), inset 8px 8px 18px rgba(255, 255, 255, 0.02);
  animation-delay: -3s;
  animation-duration: 13s;
}

.orb--3 {
  width: 110px;
  height: 110px;
  top: 28%;
  left: 6%;
  background: radial-gradient(circle at 30% 30%, rgba(244, 122, 139, 0.08) 0%, transparent 70%);
  box-shadow: inset -8px -8px 20px rgba(0, 0, 0, 0.2);
  animation-delay: -6s;
  animation-duration: 15s;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-18px) rotate(1.5deg);
  }

  66% {
    transform: translateY(8px) rotate(-1deg);
  }
}

.hero-content {
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  margin-bottom: 40px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-radius: 100px;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--text-hero);
  margin-bottom: 32px;
  animation: fadeUp 0.9s ease 0.12s both;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line-thin {
  display: block;
  font-weight: 400;
  font-size: 0.55em;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  -webkit-text-fill-color: var(--text-secondary);
  margin-top: 8px;
  font-family: var(--font-body);
  line-height: 1.4;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 48px;
  animation: fadeUp 0.9s ease 0.24s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.36s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 40px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  color: var(--bg-void);
  box-shadow: 0 4px 24px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(212, 168, 83, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.ticker {
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-void), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-void), transparent);
}

.ticker-track {
  display: flex;
  gap: 56px;
  animation: marquee 35s linear infinite;
  width: max-content;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.ticker-item .up,
.ticker-item .down {
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.ticker-item .up {
  color: var(--emerald-dim);
}

.ticker-item .down {
  color: var(--coral);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-hero);
  font-weight: 400;
  margin-bottom: 16px;
}

.section-heading em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
}

.courses {
  padding: 140px 0 120px;
}

.courses-header,
.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}

.courses-header .section-desc,
.testimonials-header .section-desc {
  margin: 0 auto;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.course-card {
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  cursor: pointer;
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-shine), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.course-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    14px 14px 40px var(--clay-shadow-d),
    -6px -6px 18px var(--clay-shadow-l),
    inset 0 1px 0 var(--glass-shine);
}

.course-card:hover::before {
  opacity: 1;
}

.course-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  display: block;
}

.course-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 28px;
  box-shadow:
    5px 5px 14px var(--clay-shadow-d),
    -2px -2px 8px var(--clay-shadow-l),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.course-icon--gold {
  background: linear-gradient(145deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.05));
}

.course-icon--emerald {
  background: linear-gradient(145deg, rgba(91, 233, 181, 0.15), rgba(91, 233, 181, 0.05));
}

.course-icon--coral {
  background: linear-gradient(145deg, rgba(244, 122, 139, 0.15), rgba(244, 122, 139, 0.05));
}

.course-icon--blue {
  background: linear-gradient(145deg, rgba(147, 175, 255, 0.15), rgba(147, 175, 255, 0.05));
}

.course-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.course-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.73rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stats {
  padding: 100px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-cell {
  text-align: center;
  padding: 48px 24px;
  position: relative;
}

.stat-cell::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
}

.stat-cell:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 400;
}

.stat-number--gold {
  color: var(--gold);
}

.stat-number--emerald {
  color: var(--emerald);
}

.stat-number--coral {
  color: var(--coral);
}

.stat-number--silver {
  color: var(--silver);
}

.stat-unit {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why {
  padding: 140px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-chart-card {
  width: 90%;
  padding: 44px 36px;
  position: relative;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 170px;
  margin-bottom: 20px;
}

.mock-bar {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  position: relative;
  transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mock-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
}

.mock-bar--gold-38 {
  height: 38%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dim));
}

.mock-bar--gold-50 {
  height: 50%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dim));
}

.mock-bar--gold-44 {
  height: 44%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dim));
}

.mock-bar--emerald-68 {
  height: 68%;
  background: linear-gradient(180deg, var(--emerald), var(--emerald-dim));
}

.mock-bar--emerald-58 {
  height: 58%;
  background: linear-gradient(180deg, var(--emerald), var(--emerald-dim));
}

.mock-bar--emerald-80 {
  height: 80%;
  background: linear-gradient(180deg, var(--emerald), var(--emerald-dim));
}

.mock-bar--emerald-73 {
  height: 73%;
  background: linear-gradient(180deg, var(--emerald), var(--emerald-dim));
}

.mock-bar--emerald-94 {
  height: 94%;
  background: linear-gradient(180deg, var(--emerald), var(--emerald-dim));
}

.mock-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.float-tag {
  position: absolute;
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  animation: drift 7s ease-in-out infinite;
}

.float-tag--1 {
  top: 2%;
  right: -8%;
  animation-delay: -1s;
  color: var(--emerald);
}

.float-tag--2 {
  bottom: 8%;
  left: -10%;
  animation-delay: -4s;
  color: var(--gold);
}

.why-content .section-desc {
  margin-bottom: 48px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-dot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 4px 4px 14px var(--clay-shadow-d), -2px -2px 6px var(--clay-shadow-l);
}

.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.feature-item p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  font-weight: 300;
}

.testimonials {
  padding: 140px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 40px 32px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  margin-bottom: 22px;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 4px 4px 12px var(--clay-shadow-d), -2px -2px 6px var(--clay-shadow-l);
}

.testimonial-avatar--gold {
  background: linear-gradient(145deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.05));
}

.testimonial-avatar--emerald {
  background: linear-gradient(145deg, rgba(91, 233, 181, 0.15), rgba(91, 233, 181, 0.05));
}

.testimonial-avatar--coral {
  background: linear-gradient(145deg, rgba(244, 122, 139, 0.15), rgba(244, 122, 139, 0.05));
}

.testimonial-name {
  font-weight: 500;
  font-size: 0.88rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.cta-section {
  padding: 80px 0 120px;
}

.cta-banner {
  text-align: center;
  padding: 88px 56px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 450px 280px at 25% 45%, rgba(212, 168, 83, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 350px 220px at 75% 55%, rgba(91, 233, 181, 0.035) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .section-heading {
  margin-bottom: 14px;
}

.cta-banner .section-desc {
  margin: 0 auto 44px;
}

.policy-hero {
  min-height: auto;
  padding-bottom: 110px;
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
}

.policy-hero-card,
.policy-side-card {
  padding: 32px 30px;
}

.policy-card-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.policy-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--glass-border);
}

.policy-meta:first-of-type {
  padding-top: 0;
}

.policy-meta:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-meta span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.policy-meta strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 500;
  color: var(--text-hero);
}

.policy-bullets,
.policy-list,
.policy-anchor-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  color: var(--text-secondary);
  font-weight: 300;
}

.policy-bullets {
  margin-top: 26px;
}

.policy-highlights {
  padding: 128px 0 120px;
}

.policy-highlight-card {
  cursor: default;
}

.policy-highlight-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.policy-content {
  padding: 132px 0 120px;
}

.policy-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.policy-main {
  display: grid;
  gap: 22px;
}

.policy-section {
  padding: 44px 40px;
}

.policy-section .section-heading {
  margin-bottom: 24px;
}

.policy-copy,
.policy-side-copy {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

.policy-copy + .policy-copy {
  margin-top: 18px;
}

.policy-list-block + .policy-list-block {
  margin-top: 30px;
}

.policy-list-block h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--text-hero);
}

.policy-emphasis {
  color: var(--gold-light);
}

.policy-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 108px;
}

.policy-anchor-list {
  list-style: none;
  padding-left: 0;
}

.policy-anchor-list a,
.policy-side-link,
.policy-copy a {
  color: var(--gold-light);
  text-decoration: none;
}

.policy-anchor-list a:hover,
.policy-side-link:hover,
.policy-copy a:hover {
  color: var(--text-hero);
}

.policy-side-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

.contact {
  padding: 140px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.contact-form {
  padding: 48px 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 15px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-primary);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px var(--gold-ultra);
}

.form-group textarea {
  min-height: 130px;
}

.form-group select option {
  background: var(--bg-surface);
}

.form-note,
.form-status {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-note {
  margin-top: 8px;
}

.form-note a {
  color: var(--gold-light);
  text-decoration: none;
}

.form-note a:hover {
  color: var(--gold);
}

.form-status {
  min-height: 1.4em;
  margin-top: 12px;
}

.form-submit {
  margin-top: 20px;
  width: 100%;
}

.bottom-bar {
  padding: 36px 0;
  border-top: 1px solid var(--glass-border);
}

.bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
}

.bottom-inner a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.bottom-inner a:hover {
  color: var(--text-secondary);
}

.bottom-links {
  display: flex;
  gap: 24px;
}

.bottom-links a[aria-current="page"] {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-stagger > .reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-stagger > .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-stagger > .reveal:nth-child(3) {
  transition-delay: 0.19s;
}

.reveal-stagger > .reveal:nth-child(4) {
  transition-delay: 0.26s;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(8, 9, 13, 0.96);
    backdrop-filter: blur(24px);
    padding: 28px 32px;
    gap: 18px;
    border-bottom: 1px solid var(--glass-border);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell:nth-child(2)::after {
    display: none;
  }

  .why-grid,
  .contact-grid,
  .policy-hero-grid,
  .policy-content-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    gap: 56px;
  }

  .policy-side {
    position: static;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 130px 0 70px;
    min-height: auto;
  }

  .orb {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 72px 28px;
  }

  .policy-section,
  .policy-hero-card,
  .policy-side-card {
    padding: 30px 24px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .bottom-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .bottom-links {
    justify-content: center;
  }
}
