:root {
  --bg: #1E293B;
  --bg-soft: #334155;
  --surface: rgba(255,255,255,0.06);
  --surface-strong: rgba(255,255,255,0.1);
  --text: #e5eefb;
  --muted: #bed0ea;
  --line: rgba(148, 163, 184, 0.24);
  --accent: #60A5FA;
  --accent-2: #818CF8;
  --gradient: linear-gradient(135deg, #60A5FA 0%, #818CF8 100%);
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.14), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(129,140,248,.14), transparent 28%),
    linear-gradient(180deg, #1E293B 0%, #182435 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.75; margin: 0 0 16px; }
ul { margin: 0; padding-left: 18px; }
li { color: var(--muted); margin-bottom: 10px; line-height: 1.65; }
h1, h2, h3 { margin: 0 0 18px; line-height: 1.15; }
section { position: relative; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 92px 0; }
.alt-section { background: rgba(255,255,255,0.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.site-shell { overflow: clip; }
.eyebrow, .muted-label, .mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #d7e8ff;
}
.eyebrow::before, .muted-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gradient);
}
.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}
.section-head.left { margin-bottom: 28px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(16, 24, 38, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #08101e;
  box-shadow: 0 12px 28px rgba(96, 165, 250, 0.28);
}
.brand-copy strong { display: block; font-size: 16px; }
.brand-copy small { color: var(--muted); font-size: 12px; }
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color .25s ease, transform .25s ease;
}
.nav a:hover { color: #fff; transform: translateY(-1px); }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(129,140,248,.45);
  background: rgba(255,255,255,0.04);
}

.burger {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  padding: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: .3s ease;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 16px 18px;
  background: rgba(15, 23, 42, 0.96);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a {
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}
.hero-media {
  position: absolute;
  inset: 0;
  opacity: .25;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,28,.35), rgba(10,15,28,.82));
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  max-width: 840px;
}
.lead { font-size: 1.08rem; max-width: 720px; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, rgba(255,255,255,.25), transparent 35%, rgba(255,255,255,.12));
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn:hover::before { transform: translateX(100%); }
.btn:hover { transform: translateY(-2px) scale(1.01); }
.btn-primary {
  background: var(--gradient);
  color: #08101e;
  box-shadow: 0 20px 30px rgba(96,165,250,.22);
}
.btn-secondary {
  border-color: rgba(129,140,248,.45);
  background: rgba(255,255,255,0.04);
  color: #fff;
}
.wide { width: 100%; }
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  list-style: none;
}
.hero-points li {
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  animation: floatPanel 6s ease-in-out infinite;
}
.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 0 0 rgba(125,211,252,.5);
  animation: pulse 2s infinite;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.hero-metrics article, .hero-panel, .info-card, .curriculum-card, .outcome-box, .quote-card, .method-panel, .contact-form, .success-boxes article {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
}
.hero-metrics article { padding: 18px; }
.hero-metrics strong { display: block; font-size: 2rem; margin-bottom: 6px; }
.hero-panel { padding: 20px; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .6;
  z-index: -1;
}
.hero-orb-one {
  width: 280px; height: 280px;
  background: rgba(96,165,250,.18);
  top: 12%; left: -80px;
  animation: drift 10s ease-in-out infinite;
}
.hero-orb-two {
  width: 360px; height: 360px;
  background: rgba(129,140,248,.18);
  bottom: 4%; right: -120px;
  animation: drift 12s ease-in-out infinite reverse;
}

.trust-bar { padding-top: 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-grid > div {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.trust-grid p { margin-top: 14px; }

.cards-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card, .curriculum-card, .quote-card, .outcome-box { padding: 26px; }
.feature-card h3, .curriculum-card h3 { font-size: 1.38rem; }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.tag-row span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(96,165,250,.12);
  border: 1px solid rgba(96,165,250,.2);
  color: #dcecff;
  font-size: 13px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
}
.timeline {
  display: grid;
  gap: 18px;
}
.timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.timeline span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #08101e;
  background: var(--gradient);
}
.method-panel { padding: 28px; }
.check-list { list-style: none; padding: 0; margin: 0 0 28px; }
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gradient);
}

.curriculum-grid, .outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.outcomes-grid { grid-template-columns: repeat(4, 1fr); }
.outcome-box strong { display: inline-block; margin-bottom: 12px; font-size: 1.1rem; }

.success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.success-boxes {
  display: grid;
  gap: 16px;
}
.success-boxes article { padding: 22px; }

.quote-card p { font-size: 1.02rem; }
.quote-card span { color: #dce8ff; font-size: 14px; }

.visual-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.05);
}
.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}


.faq-list {
  display: grid;
  gap: 16px;
}
.faq-list details {
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p { margin-top: 16px; }

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-details article {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-details strong { display: block; margin-bottom: 8px; }
.contact-form { padding: 28px; }
.field-group { margin-bottom: 18px; }
.field-group label {
  display: inline-block;
  margin-bottom: 8px;
  color: #dcecff;
  font-size: 14px;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(9, 15, 28, 0.7);
  color: #fff;
  padding: 15px 16px;
  font: inherit;
  resize: vertical;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: rgba(96,165,250,.8);
  box-shadow: 0 0 0 3px rgba(96,165,250,.18);
}
.form-note {
  font-size: 14px;
  margin-top: 14px;
}
.form-note a { color: #dcecff; text-decoration: underline; }

.footer {
  padding: 34px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(8, 14, 26, 0.45);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .6fr .6fr;
  gap: 26px;
}
.footer h3 { font-size: 1rem; margin-bottom: 12px; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.policy-body { min-height: 100vh; }
.policy-page { padding-top: 60px; }
.policy-wrap {
  max-width: 860px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}
.policy-wrap h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.policy-wrap h2 { margin-top: 28px; font-size: 1.3rem; }
.simple-header { position: relative; }
.simple-nav { gap: 20px; }

.alert-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 8, 18, 0.68);
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 100;
}
.alert-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.alert-box {
  width: min(520px, 100%);
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(30,41,59,.98), rgba(20,30,47,.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  transform: translateY(24px) scale(.94);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.alert-overlay.active .alert-box { transform: translateY(0) scale(1); }
.alert-icon {
  width: 76px; height: 76px;
  border-radius: 24px;
  margin-bottom: 18px;
  background: var(--gradient);
  position: relative;
  animation: pulse 2s infinite;
}
.alert-icon::before {
  content: "";
  position: absolute;
  inset: 24px 20px 20px 24px;
  border-right: 4px solid #08101e;
  border-bottom: 4px solid #08101e;
  transform: rotate(45deg);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(96,165,250,.45); }
  70% { box-shadow: 0 0 0 18px rgba(96,165,250,0); }
  100% { box-shadow: 0 0 0 0 rgba(96,165,250,0); }
}
@keyframes drift {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(24px,-18px); }
}
@keyframes floatPanel {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .success-grid,
  .contact-grid,
  .footer-grid,
  .cards-three,
  .curriculum-grid,
  .outcomes-grid,
  .trust-grid,
  .hero-points,
  .contact-details { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .split-layout,
  .success-grid,
  .contact-grid,
  .footer-grid,
  .outcomes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .burger { display: block; }
  .section { padding: 76px 0; }
  .hero { min-height: auto; }
  .hero-copy h1 { font-size: clamp(2.3rem, 10vw, 4rem); }
  .hero-points,
  .cards-three,
  .curriculum-grid,
  .trust-grid,
  .contact-details,
  .hero-metrics { grid-template-columns: 1fr; }
  .timeline article { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav-wrap { min-height: 76px; }
  .container { width: min(var(--max), calc(100% - 20px)); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-card, .contact-form, .policy-wrap, .info-card, .curriculum-card, .quote-card, .outcome-box { padding: 22px; }
  .alert-box { padding: 24px; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(96, 165, 250, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: 0.02em;
}

.brand-copy small {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 12% 18%, rgba(96, 165, 250, 0.18), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(129, 140, 248, 0.16), transparent 32%),
    linear-gradient(180deg, #0f172a 0%, #111827 42%, #0b1120 100%);
  isolation: isolate;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.hero-bg-lines,
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-lines {
  background:
    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: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 92%);
  opacity: 0.55;
  animation: gridFloat 14s linear infinite;
}

.hero-grid-overlay {
  background:
    linear-gradient(135deg, rgba(96,165,250,0.08), transparent 45%),
    linear-gradient(315deg, rgba(129,140,248,0.08), transparent 42%);
}

.hero-media {
  position: absolute;
  top: -10px;
  right: -80px;
  width: min(760px, 54vw);
  opacity: 0.18;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(96, 165, 250, 0.18));
  animation: heroMediaFloat 8s ease-in-out infinite;
}

.hero-media img {
  width: 100%;
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bfdbfe;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.25);
}

.eyebrow b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60A5FA, #818CF8);
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.12);
  animation: pulseGlow 2.2s infinite;
}

.hero-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 18px;
}

.hero-chip {
  font-size: 0.72rem;
  color: #cbd5e1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 780px;
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #f8fafc;
}

.hero-copy h1 span {
  display: inline-block;
  background: linear-gradient(135deg, #60A5FA, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(96, 165, 250, 0.16);
}

.hero-copy .lead {
  max-width: 640px;
  margin: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #cbd5e1;
}

.hero-mini-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.hero-mini-list div {
  position: relative;
  padding: 14px 14px 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.45));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
}

.hero-mini-list div::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 12px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60A5FA, #818CF8);
}

.hero-mini-list small {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #93c5fd;
  margin: 10px 0 8px;
}

.hero-mini-list strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #e2e8f0;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 24px;
}

.btn-fancy,
.btn-fancy-alt {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn-fancy {
  color: #eff6ff;
  background:
    linear-gradient(135deg, rgba(96, 165, 250, 0.22), rgba(129, 140, 248, 0.26)),
    #0f172a;
  border: 1px solid rgba(96, 165, 250, 0.34);
  box-shadow:
    0 18px 40px rgba(37, 99, 235, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.btn-fancy em {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.btn-fancy em::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-24deg);
  animation: shineMove 3.2s linear infinite;
}

.btn-fancy span,
.btn-fancy-alt span {
  position: relative;
  z-index: 2;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-fancy-alt {
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.2);
}

.btn-fancy-alt svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 2;
  transition: transform 0.28s ease;
}

.btn-fancy:hover,
.btn-fancy-alt:hover {
  transform: translateY(-3px);
}

.btn-fancy:hover {
  box-shadow:
    0 24px 50px rgba(59, 130, 246, 0.26),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-fancy-alt:hover svg {
  transform: translateX(4px);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.hero-points li span {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60A5FA, #818CF8);
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.1);
}

.hero-card {
  position: relative;
  z-index: 4;
  margin-left: auto;
  width: 100%;
  max-width: 500px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.72));
  border: 1px solid rgba(148, 163, 184, 0.14);
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 90px rgba(2, 6, 23, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.04);
  animation: cardFloat 6s ease-in-out infinite;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(96,165,250,0.32), rgba(129,140,248,0.06), rgba(96,165,250,0.16));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mini-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93c5fd;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #60A5FA;
  box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.45);
  animation: dotPulse 2.1s infinite;
}

.hero-card-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-card-line {
  height: 8px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(96,165,250,0.3), rgba(129,140,248,0.12));
}

.hero-card-line.short {
  width: 62%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.hero-metrics article {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.34);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.hero-metrics small {
  display: block;
  font-size: 0.68rem;
  color: #93c5fd;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-metrics strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  color: #f8fafc;
  margin-bottom: 8px;
}

.hero-metrics span {
  display: block;
  font-size: 0.74rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.hero-panel {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.74), rgba(2, 6, 23, 0.44));
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.hero-panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.hero-panel-top small {
  font-size: 0.7rem;
  color: #cbd5e1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60A5FA, #818CF8);
}

.hero-panel h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #f8fafc;
}

.hero-panel p {
  margin: 0 0 14px;
  font-size: 0.86rem;
  line-height: 1.75;
  color: #cbd5e1;
}

.hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-card-tags span {
  font-size: 0.7rem;
  color: #dbeafe;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.14);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-one {
  top: 90px;
  left: -70px;
  width: 220px;
  height: 220px;
  background: rgba(96, 165, 250, 0.18);
  animation: orbDriftOne 11s ease-in-out infinite;
}

.hero-orb-two {
  right: 10%;
  bottom: 30px;
  width: 180px;
  height: 180px;
  background: rgba(129, 140, 248, 0.14);
  animation: orbDriftTwo 12s ease-in-out infinite;
}

.hero-orb-three {
  top: 26%;
  right: 28%;
  width: 110px;
  height: 110px;
  background: rgba(96, 165, 250, 0.12);
  animation: orbDriftThree 9s ease-in-out infinite;
}

.hero-floating {
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.18);
}

.hero-floating-card {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.52);
}

.hero-floating-card span {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 6px;
}

.hero-floating-card strong {
  display: block;
  font-size: 0.8rem;
  color: #e2e8f0;
  font-weight: 600;
}

.hero-floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.56);
}

.hero-floating-badge i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60A5FA, #818CF8);
}

.hero-floating-badge span {
  font-size: 0.74rem;
  color: #dbeafe;
}

.hero-floating-one {
  top: 118px;
  right: 26%;
  animation: floatTag 6s ease-in-out infinite;
}

.hero-floating-two {
  bottom: 92px;
  right: 8%;
  animation: floatTag 7.4s ease-in-out infinite;
}

.hero-floating-three {
  top: 52%;
  left: 52%;
  animation: floatTag 5.7s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.12); }
  50% { transform: scale(1.14); box-shadow: 0 0 0 12px rgba(96, 165, 250, 0.04); }
}

@keyframes shineMove {
  0% { left: -120%; }
  100% { left: 140%; }
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(96, 165, 250, 0); }
  100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0); }
}

@keyframes heroMediaFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-12px) translateX(-8px); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes orbDriftOne {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(25px, -18px); }
}

@keyframes orbDriftTwo {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 14px); }
}

@keyframes orbDriftThree {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -12px) scale(1.08); }
}

@keyframes gridFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(54px); }
}

@keyframes floatTag {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-card {
    max-width: 100%;
  }

  .hero-media {
    right: -120px;
    width: min(760px, 70vw);
    opacity: 0.13;
  }

  .hero-floating-one,
  .hero-floating-two,
  .hero-floating-three {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 92px 0 72px;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 9vw, 3rem);
    line-height: 1;
  }

  .hero-copy .lead {
    font-size: 0.9rem;
  }

  .hero-mini-list,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-fancy,
  .btn-fancy-alt {
    width: 100%;
  }

  .hero-media {
    width: 100%;
    right: -30%;
    top: 10px;
    opacity: 0.1;
  }
}