:root {
  --bg: #04070d;
  --bg-soft: #0a1020;
  --panel: rgba(17, 24, 39, 0.58);
  --panel-strong: rgba(15, 23, 42, 0.82);
  --line: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #9ca3af;
  --blue: #60a5fa;
  --blue-soft: rgba(96, 165, 250, 0.18);
  --gold: #f5c56b;
  --gold-soft: rgba(245, 197, 107, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.22), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(245, 197, 107, 0.14), transparent 22%),
    linear-gradient(180deg, #060912 0%, #04070d 55%, #060912 100%);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.orb-1 {
  width: 360px;
  height: 360px;
  top: 60px;
  left: -80px;
  background: rgba(37, 99, 235, 0.22);
}

.orb-2 {
  width: 280px;
  height: 280px;
  top: 120px;
  right: -60px;
  background: rgba(245, 197, 107, 0.12);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.9), transparent 82%);
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 28px 80px;
}

.hero {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 0 24px;
}

.eyebrow,
.panel-label,
.card-index {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--gold);
}

h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  margin: 16px 0 18px;
  letter-spacing: -0.04em;
}

.subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #08111f;
  background: linear-gradient(135deg, #f5c56b, #ffe3a1);
  box-shadow: 0 12px 30px rgba(245, 197, 107, 0.25);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}

.glass-panel {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.48));
  border-radius: 28px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.glass-panel h2,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 12px 0 16px;
  letter-spacing: -0.03em;
}

.panel-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
}

.panel-accent {
  display: grid;
  align-items: center;
}

.accent-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.12), rgba(245, 197, 107, 0.08));
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.accent-card span {
  font-size: 1rem;
  color: #dbeafe;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.accent-card span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.focus {
  margin-top: 72px;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.focus-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17,24,39,0.82), rgba(10,16,32,0.75));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.focus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96,165,250,0.3);
}

.focus-card h3 {
  margin: 14px 0 10px;
  font-size: 1.35rem;
}

.focus-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.closing-band {
  margin-top: 72px;
  padding: 28px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 1.02rem;
}

@media (max-width: 900px) {
  .glass-panel {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }
}
