:root{
  --bg: #070710;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --line: rgba(255,255,255,.14);

  --gold: #f2c25b;
  --blue: #76b7ff;
  --red: #ff5c7a;

  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(800px 500px at 20% 10%, rgba(118,183,255,.20), transparent 55%),
              radial-gradient(800px 500px at 80% 20%, rgba(242,194,91,.18), transparent 55%),
              radial-gradient(900px 700px at 50% 90%, rgba(255,92,122,.12), transparent 60%),
              var(--bg);
  overflow-x: hidden;
}

/* Subtle star field */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,.75) 1px, transparent 2px),
    radial-gradient(circle at 30% 35%, rgba(255,255,255,.55) 1px, transparent 2px),
    radial-gradient(circle at 60% 22%, rgba(255,255,255,.60) 1px, transparent 2px),
    radial-gradient(circle at 75% 55%, rgba(255,255,255,.45) 1px, transparent 2px),
    radial-gradient(circle at 15% 70%, rgba(255,255,255,.55) 1px, transparent 2px),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,.55) 1px, transparent 2px);
  background-size: 520px 520px;
  mix-blend-mode: screen;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 4px; }

.container{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  padding: 10px 12px;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.skip-link:focus{ left: 18px; top: 18px; z-index: 1000; }

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,7,16,.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 14px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Cinzel, Georgia, serif;
  letter-spacing: .08em;
}
.brand__mark{
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 1px rgba(242,194,91,.08), 0 20px 55px rgba(0,0,0,.35);
}
.brand__mark svg{
  width: 20px; height: 20px;
  fill: var(--gold);
  filter: drop-shadow(0 0 12px rgba(242,194,91,.24));
}
.brand__text{
  font-weight: 700;
  font-size: 14px;
}

.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__link{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}
.nav__link:hover{ background: rgba(255,255,255,.06); text-decoration: none; color: var(--text); }
.nav__link.is-active{
  color: var(--text);
  background: rgba(118,183,255,.10);
  border: 1px solid rgba(118,183,255,.20);
}

.nav__cta{
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(242,194,91,.16);
  border: 1px solid rgba(242,194,91,.28);
  font-size: 14px;
}
.nav__cta:hover{ text-decoration: none; filter: brightness(1.08); }

.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.nav-toggle span{
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.80);
  margin: 4px auto;
  border-radius: 2px;
}

/* Hero */
.hero{
  padding: 64px 0 36px;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}
.eyebrow{
  margin: 0 0 10px;
  color: rgba(242,194,91,.95);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 12px;
}
.hero h1{
  margin: 0 0 12px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.05;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero__actions{ display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--text);
  box-shadow: var(--shadow);
}
.btn:hover{ text-decoration: none; filter: brightness(1.08); }
.btn--primary{
  background: linear-gradient(135deg, rgba(242,194,91,.22), rgba(118,183,255,.14));
  border: 1px solid rgba(242,194,91,.28);
}
.btn--ghost{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: none;
}

.hero__stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat{
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 12px 12px 10px;
}
.stat__kpi{
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .02em;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label{
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.micro{ color: rgba(255,255,255,.62); font-size: 12px; margin: 10px 0 0; }

.hero__visual{
  position: relative;
  min-height: 420px;
}
.hero__card{
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: min(380px, 100%);
  padding: 18px 18px 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 25px 80px rgba(0,0,0,.5);
}
.card__title{
  margin: 0 0 10px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
.pillars{
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  gap: 10px;
}
.pillars li{ color: rgba(255,255,255,.86); font-size: 14px; line-height: 1.5; }
.muted{ color: var(--muted); }

.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 10px;
  box-shadow: 0 0 18px rgba(255,255,255,.14);
}
.dot--gold{ background: var(--gold); box-shadow: 0 0 24px rgba(242,194,91,.35); }
.dot--blue{ background: var(--blue); box-shadow: 0 0 24px rgba(118,183,255,.35); }
.dot--red{ background: var(--red); box-shadow: 0 0 24px rgba(255,92,122,.35); }

.card__link{
  display: inline-block;
  margin-top: 6px;
  color: rgba(118,183,255,.95);
}

.orb{
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: .85;
}
.orb--gold{
  top: -10px; right: -60px;
  background: radial-gradient(circle at 30% 30%, rgba(242,194,91,.45), transparent 60%);
}
.orb--blue{
  bottom: -30px; left: 0px;
  background: radial-gradient(circle at 30% 30%, rgba(118,183,255,.40), transparent 62%);
}

/* Sections */
.section{ padding: 64px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head{ margin-bottom: 18px; }
.section__head h2{
  margin: 0 0 8px;
  font-family: Cinzel, Georgia, serif;
  letter-spacing: .04em;
  font-size: 28px;
}
.subhead{ margin: 0; color: var(--muted); line-height: 1.7; max-width: 74ch; }

.grid2{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.panel{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}
.panel h3{ margin: 0 0 10px; font-size: 16px; letter-spacing: .02em; }
.bullets{ margin: 0; padding-left: 18px; color: rgba(255,255,255,.85); line-height: 1.7; }
.bullets li{ margin: 6px 0; }

.chips{ display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 10px; }
.chip{
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-size: 13px;
  color: rgba(255,255,255,.86);
}
.chip--gold{ border-color: rgba(242,194,91,.30); background: rgba(242,194,91,.09); }
.chip--red{ border-color: rgba(255,92,122,.30); background: rgba(255,92,122,.08); }
.chip--blue{ border-color: rgba(118,183,255,.30); background: rgba(118,183,255,.08); }

.cards{ display: grid; gap: 10px; }
.mini{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.mini__kicker{ margin: 0; font-size: 12px; color: rgba(242,194,91,.92); letter-spacing: .12em; font-weight: 700; }
.mini__title{ margin: 6px 0 6px; font-weight: 800; }
.mini__body{ margin: 0; color: var(--muted); line-height: 1.7; font-size: 13px; }

/* Bars */
.bars{ display: grid; gap: 10px; margin-top: 10px; }
.bar{ display: grid; grid-template-columns: 44px 1fr auto; gap: 10px; align-items: center; }
.bar__label{ color: rgba(255,255,255,.80); font-weight: 700; font-size: 13px; }
.bar__track{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
}
.bar__fill{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(242,194,91,.85), rgba(118,183,255,.65));
}
.bar__value{ color: rgba(255,255,255,.72); font-size: 13px; }

/* Callout */
.callout{
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(242,194,91,.22);
  background: linear-gradient(135deg, rgba(242,194,91,.08), rgba(118,183,255,.05));
}

/* Timeline */
.timeline{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.timeline__item{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  border-radius: 20px;
  padding: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.timeline__when{
  font-weight: 800;
  color: rgba(242,194,91,.95);
  letter-spacing: .06em;
}
.timeline__what h3{ margin: 0 0 4px; }
.timeline__what p{ margin: 0; }

/* PDF */
.pdf{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.pdf iframe{
  width: 100%;
  height: min(70vh, 720px);
  border: 0;
  display: block;
}
.note{ margin-top: 10px; }

/* Form */
.form{ display: grid; gap: 10px; margin-top: 6px; }
label{ display: grid; gap: 6px; font-size: 13px; color: rgba(255,255,255,.78); }
input, textarea{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(118,183,255,.35);
  box-shadow: 0 0 0 4px rgba(118,183,255,.12);
}
.links{ margin: 0; padding-left: 18px; line-height: 1.9; }

/* Footer */
.footer{
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__inner{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__visual{ min-height: 340px; }
  .hero__stats{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .timeline__item{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .nav-toggle{ display: inline-block; }
  .nav{
    position: fixed;
    top: 64px;
    right: 16px;
    left: 16px;
    background: rgba(7,7,16,.92);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 25px 80px rgba(0,0,0,.55);
  }
  .nav.is-open{ display: flex; }
  .nav__link, .nav__cta{ width: 100%; }
}


/* Loop */
.loop{ display: grid; gap: 10px; margin-top: 6px; }
.loop__step{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.loop__badge{
  width: 28px; height: 28px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  background: linear-gradient(135deg, rgba(242,194,91,.35), rgba(118,183,255,.18));
  border: 1px solid rgba(242,194,91,.25);
}

/* KPIs */
.kpis{ display: grid; gap: 10px; margin-top: 10px; }
.kpi{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.kpi__t{ font-weight: 800; margin-bottom: 4px; }
.kpi__b{ color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; }


/* External social links in top nav */
.nav__ext{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.nav__ext:hover{
  background: rgba(255,255,255,.06);
  text-decoration: none;
  color: var(--text);
  border-color: rgba(255,255,255,.10);
}

/* Social buttons block */
.social{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}


/* Smaller single-line hero headline override */
.hero__headline{
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.25;
  margin: 0 0 12px;
}
