/* src/styles.css */
:root {
  --purple: #2D1B69;
  --purple2: #4A3A8C;
  --purple3: #6B4FB0;
  --gold: #D4A843;
  --gold-dk: #B8923A;
  --cream: #FAF4E5;
  --cream2: #FFF8E8;
  --ink: #1c1b29;
  --muted: #615d72;
  --line: #E7E1F2;
  --white: #fff;
  --magenta: #C026D3;
  --violet: #7C3AED;
  --orange: #F59E0B;
  --pink: #EC4899;
  --grad-brand:
    linear-gradient(
      90deg,
      #F59E0B,
      #EC4899 45%,
      #7C3AED);
  --grad-warm:
    linear-gradient(
      135deg,
      #F59E0B,
      #EC4899);
  --grad-cool:
    linear-gradient(
      135deg,
      #7C3AED,
      #C026D3);
  --maxw: 1400px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  width: 100%;
}
html,
body {
  min-width: 100%;
  margin: 0;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
app-root {
  display: block;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}
h1,
h2,
h3,
.serif {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 48px;
}
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 8px;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
  border: none;
  width: auto;
  white-space: nowrap;
  line-height: 1.2;
  text-align: center;
}
.btn-gold {
  background:
    linear-gradient(
      110deg,
      var(--gold),
      #E8B94E 50%,
      var(--gold));
  color: var(--purple);
  position: relative;
  overflow: hidden;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(236, 72, 153, .35), 0 0 20px rgba(212, 168, 67, .4);
}
.btn-gold:active {
  transform: translateY(0);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .5);
  position: relative;
  overflow: hidden;
}
.btn-ghost::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .1);
  animation: shimmer 2s infinite;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 168, 67, .3);
}
.btn-purple {
  background: var(--purple);
  color: #fff;
}
.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 27, 105, .3);
}
.eyebrow {
  font-size: 24.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  background:
    linear-gradient(
      90deg,
      #B8923A,
      #C026D3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(45, 27, 105, .97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand .logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  color: #e8e2f5;
  font-size: 17px;
  font-weight: 700;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  padding: 12px 24px;
  font-size: 17px;
  flex: 0 0 auto;
  width: max-content;
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.hero {
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, .035) 0 1px,
      transparent 1px 80px),
    radial-gradient(
      720px 320px at 20% 32%,
      rgba(236, 72, 153, .24),
      transparent 62%),
    radial-gradient(
      900px 420px at 82% -6%,
      rgba(192, 38, 211, .42),
      transparent 60%),
    radial-gradient(
      760px 420px at -6% 30%,
      rgba(245, 158, 11, .20),
      transparent 55%),
    radial-gradient(
      1100px 520px at 60% 110%,
      rgba(124, 58, 237, .48),
      transparent 60%),
    linear-gradient(
      160deg,
      #2D1B69 0%,
      #241653 52%,
      #1a1234 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 40px;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(
      circle,
      rgba(212, 168, 67, .10),
      transparent 70%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -50px;
  width: 400px;
  height: 400px;
  background:
    radial-gradient(
      circle,
      rgba(236, 72, 153, .08),
      transparent 70%);
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-copy {
  position: relative;
  max-width: 760px;
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: -42px auto auto -54px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(245, 158, 11, .15),
      transparent 68%);
  filter: blur(2px);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 16px 6px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.hero-badge span {
  color: var(--purple);
  background:
    linear-gradient(
      135deg,
      var(--gold),
      #E8B94E);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(214, 168, 67, 0.25);
}
.hero-in {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 60px;
  padding: 90px 48px 92px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  margin: 16px 0 18px;
  letter-spacing: 0;
  text-shadow: 0 14px 40px rgba(0, 0, 0, .26);
}
.hero h1 em {
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.sub {
  font-size: 20px;
  color: #e4ddf3;
  max-width: 33em;
  margin-bottom: 30px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 24px;
}
.hero-cta .btn {
  flex: 0 0 auto;
  width: max-content;
  max-width: 100%;
}
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.chip {
  font-size: 14px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  padding: 8px 14px;
  border-radius: 30px;
  color: #f6f0ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.chip b {
  color: var(--gold);
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}
.hero-proof div {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.hero-proof div:last-child {
  border-right: none;
}
.hero-proof strong {
  display: block;
  color: var(--gold);
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 24px;
  line-height: 1;
}
.hero-proof span {
  display: block;
  margin-top: 5px;
  color: #ddd5ee;
  font-size: 12.5px;
  font-weight: 700;
}
.facts {
  background:
    linear-gradient(
      105deg,
      #fff 0%,
      #fff 62%,
      #FFFBF0 100%);
  color: var(--ink);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .34), 0 0 0 1px rgba(255, 255, 255, .22);
  border-top: 6px solid var(--gold);
  transform: translateY(6px);
}
.facts-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #FFF4DC,
      #FCE7F3);
  color: #9A3412;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.facts h3 {
  font-size: 25px;
  color: var(--purple);
  margin-bottom: 6px;
}
.facts .next {
  font-size: 15px;
  font-weight: 600;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 15px 0;
  padding: 10px 16px;
  background: rgba(212, 168, 67, 0.08);
  border-left: 4px solid #D4A843;
  border-radius: 4px;
  width: max-content;
  max-width: 100%;
  transform-origin: left center;
  animation: attentionZoom 3s ease-in-out infinite;
}
@keyframes attentionZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.15);
  }
}
.urgency-badge {
  background:
    linear-gradient(
      135deg,
      #D4A843,
      #E5BC5C);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(212, 168, 67, 0.2);
  display: inline-block;
  animation: subtlePulse 2.5s infinite;
}
@keyframes subtlePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(212, 168, 67, 0.35);
  }
  100% {
    transform: scale(1);
  }
}
.facts dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px 14px;
  font-size: 16px;
  margin-bottom: 24px;
}
.facts dt {
  color: var(--muted);
}
.facts dd {
  text-align: right;
  font-weight: 600;
  color: var(--purple);
}
.facts .btn {
  width: 100%;
  text-align: center;
}
.facts .reg-note {
  font-size: 12px;
  color: var(--gold-dk);
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}
.ai-orbit {
  position: relative;
  height: 150px;
  margin: 20px 0 18px;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 52% 50%,
      rgba(212, 168, 67, .28),
      transparent 28%),
    radial-gradient(
      circle at 80% 20%,
      rgba(236, 72, 153, .25),
      transparent 35%),
    linear-gradient(
      135deg,
      rgba(45, 27, 105, .98),
      rgba(124, 58, 237, .82));
  border: 1px solid rgba(212, 168, 67, .28);
  box-shadow: inset 0 0 34px rgba(255, 255, 255, .10), 0 16px 38px rgba(45, 27, 105, .18);
}
.ai-orbit::before,
.ai-orbit::after {
  content: "";
  position: absolute;
  inset: 18px 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  animation: rotate-slow 16s linear infinite;
}
.ai-orbit::after {
  inset: 34px 58px;
  border-color: rgba(212, 168, 67, .22);
  animation-duration: 11s;
  animation-direction: reverse;
}
.ai-line {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 50%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(212, 168, 67, .9),
      rgba(236, 72, 153, .7),
      transparent);
  transform-origin: center;
  opacity: .8;
  animation: line-breathe 2.8s ease-in-out infinite;
}
.ai-line:nth-child(2) {
  transform: rotate(32deg);
  animation-delay: .35s;
}
.ai-line:nth-child(3) {
  transform: rotate(-32deg);
  animation-delay: .7s;
}
.ai-node {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(212, 168, 67, .18), 0 0 24px rgba(212, 168, 67, .85);
  animation: node-pulse 2.2s ease-in-out infinite;
}
.ai-node.core {
  left: 48%;
  top: 42%;
  width: 24px;
  height: 24px;
  background: var(--gold);
  animation-delay: 0s;
}
.ai-node.n1 {
  left: 18%;
  top: 24%;
  animation-delay: .2s;
}
.ai-node.n2 {
  right: 18%;
  top: 24%;
  animation-delay: .4s;
}
.ai-node.n3 {
  left: 24%;
  bottom: 22%;
  animation-delay: .6s;
}
.ai-node.n4 {
  right: 24%;
  bottom: 22%;
  animation-delay: .8s;
}
.ai-chip-label {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.stats {
  background:
    linear-gradient(
      90deg,
      #FFF8E8,
      #FBEFF8 50%,
      #F3EDFC);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(212, 168, 67, .1) 25%,
      transparent 50%,
      rgba(236, 72, 153, .08) 75%,
      transparent);
  animation: shimmer 4s infinite;
  pointer-events: none;
}
.stats-in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 0;
  position: relative;
  z-index: 1;
}
.stat {
  text-align: center;
}
.stat .n {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .l {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 2px;
}
section.blk {
  padding: 76px 0;
}
.sec-head {
  text-align: center;
  max-width: 40em;
  margin: 0 auto 48px;
}
.sec-head h2 {
  font-size: 34px;
  color: var(--purple);
  margin: 10px 0 12px;
  line-height: 1.15;
}
.sec-head p {
  color: var(--muted);
  font-size: 16.5px;
}
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.persona {
  background: var(--cream2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  animation: slide-up 0.6s ease-out backwards;
  transition: all 0.3s ease;
}
.persona:nth-child(1) {
  animation-delay: 0.1s;
}
.persona:nth-child(2) {
  animation-delay: 0.2s;
}
.persona:nth-child(3) {
  animation-delay: 0.3s;
}
.persona::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-brand);
}
.persona:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 27, 105, .15);
}
.persona .ic {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--grad-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  animation: bounce-in 0.6s ease;
  transition: all 0.3s ease;
}
.persona:hover .ic {
  animation: rotate-slow 0.6s ease;
  transform: scale(1.1);
}
.persona:nth-child(2) .ic {
  background: var(--grad-warm);
}
.persona:nth-child(3) .ic {
  background:
    linear-gradient(
      135deg,
      #D4A843,
      #EC4899);
}
.persona h3 {
  font-size: 18px;
  color: var(--purple);
  margin-bottom: 7px;
  transition: color 0.3s ease;
}
.persona p {
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.3s ease;
}
.curric {
  background:
    linear-gradient(
      180deg,
      #fff,
      #faf7ff);
}
.spine {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.spine::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 3px;
  background:
    linear-gradient(
      180deg,
      #F59E0B,
      #EC4899 35%,
      #C026D3 65%,
      #7C3AED);
}
.mod {
  position: relative;
  padding-left: 78px;
  margin-bottom: 18px;
}
.mod .node {
  position: absolute;
  left: 12px;
  top: 6px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-warm);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-weight: 700;
  color: #fff;
  z-index: 2;
}
.mod:nth-of-type(odd) .node {
  background: var(--grad-cool);
  box-shadow: 0 0 0 3px var(--purple3);
}
.mod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(45, 27, 105, .05);
}
.mod-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
}
.mod-top:hover {
  background: #fcfaff;
}
.mod-top h3 {
  font-size: 18px;
  color: var(--purple);
}
.mod-top .wk {
  font-size: 12px;
  color: var(--gold-dk);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.mod-top .tog {
  font-size: 22px;
  color: var(--purple3);
  transition: transform .25s;
  line-height: 1;
}
.mod.open .tog {
  transform: rotate(45deg);
}
.mod-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mod.open .mod-body {
  max-height: 520px;
}
.mod-body-in {
  padding: 0 22px 20px;
}
.mod-body p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 13px;
}
.tools {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tool {
  font-size: 12px;
  background: #F6F1FE;
  border: 1px solid #E4D5FB;
  color: #6B21A8;
  padding: 5px 11px;
  border-radius: 6px;
  font-weight: 600;
}
.tool:nth-child(3n+1) {
  background: #FFF4E0;
  border-color: #F5DCA8;
  color: #92600A;
}
.tool:nth-child(3n) {
  background: #FDF0F7;
  border-color: #F8CCE3;
  color: #A21CAF;
}
.caps {
  background: var(--purple);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.caps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(212, 168, 67, .05),
      transparent);
  animation: shimmer 5s infinite;
  pointer-events: none;
}
.caps .sec-head h2 {
  color: #fff;
}
.caps .sec-head p {
  color: #cfc6e8;
}
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.cap {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .15s, border-color .15s;
  animation: slide-up 0.6s ease-out backwards;
}
.cap:nth-child(1) {
  animation-delay: 0.05s;
}
.cap:nth-child(2) {
  animation-delay: 0.1s;
}
.cap:nth-child(3) {
  animation-delay: 0.15s;
}
.cap:nth-child(4) {
  animation-delay: 0.2s;
}
.cap:nth-child(5) {
  animation-delay: 0.25s;
}
.cap:nth-child(6) {
  animation-delay: 0.3s;
}
.cap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-brand);
}
.cap:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 72, 153, .45);
  box-shadow: 0 20px 50px rgba(45, 27, 105, .2);
}
.cap:nth-child(2)::before {
  background: var(--grad-cool);
}
.cap:nth-child(3)::before {
  background: var(--grad-warm);
}
.cap:nth-child(5)::before {
  background: var(--grad-cool);
}
.cap:nth-child(6)::before {
  background:
    linear-gradient(
      90deg,
      #D4A843,
      #EC4899);
}
.cap .tag {
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.cap h3 {
  font-size: 21px;
  margin: 8px 0 10px;
  transition: color 0.3s ease;
}
.cap p {
  font-size: 14.5px;
  color: #d3cbe8;
}
.inc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.inc {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.inc .ck {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.inc h3 {
  font-size: 16px;
  color: var(--purple);
  margin-bottom: 3px;
}
.inc p {
  font-size: 14px;
  color: var(--muted);
}
.inst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.inst {
  text-align: center;
  background: var(--cream2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  animation: slide-up 0.6s ease-out backwards;
  transition: all 0.3s ease;
}
.inst:nth-child(1) {
  animation-delay: 0.1s;
}
.inst:nth-child(2) {
  animation-delay: 0.2s;
}
.inst:nth-child(3) {
  animation-delay: 0.3s;
}
.inst:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 27, 105, .15);
}
.inst .av {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background:
    linear-gradient(
      135deg,
      #F59E0B,
      #EC4899 55%,
      #7C3AED);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(192, 38, 211, .3);
  animation: bounce-in 0.8s ease;
  transition: all 0.3s ease;
}
.inst:hover .av {
  animation: rotate-slow 0.6s ease;
  box-shadow: 0 12px 30px rgba(192, 38, 211, .5);
}
.inst h3 {
  font-size: 17px;
  color: var(--purple);
}
.inst .role {
  font-size: 13px;
  color: var(--gold-dk);
  font-weight: 700;
  margin: 2px 0 8px;
}
.inst p {
  font-size: 13.5px;
  color: var(--muted);
}
.price {
  background: var(--cream);
}
.price-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(45, 27, 105, .14);
  border: 1px solid var(--line);
}
.price-top {
  background:
    radial-gradient(
      420px 180px at 85% -30%,
      rgba(236, 72, 153, .4),
      transparent 65%),
    radial-gradient(
      360px 160px at 8% 120%,
      rgba(245, 158, 11, .25),
      transparent 60%),
    var(--purple);
  color: #fff;
  padding: 30px;
  text-align: center;
}
.price-top .eyebrow {
  color: var(--gold);
}
.price-top .amt {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  margin-top: 8px;
}
.price-top .amt small {
  font-size: 15px;
  color: #cfc6e8;
  font-weight: 400;
}
.price-body {
  padding: 30px;
}
.price-body ul {
  list-style: none;
  margin-bottom: 22px;
}
.price-body li {
  padding: 9px 0 9px 30px;
  position: relative;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}
.price-body li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold-dk);
  font-weight: 800;
}
.price-body .btn {
  width: 100%;
  text-align: center;
  font-size: 16px;
}
.price-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.price-body .price-cta .btn {
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 15px;
  padding: 13px 18px;
}
.btn-ghost-purple {
  color: var(--purple);
  border-color: rgba(45, 27, 105, .35);
}
.btn-ghost-purple:hover {
  color: var(--purple);
  border-color: var(--gold-dk);
  box-shadow: 0 0 15px rgba(45, 27, 105, .16);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--purple);
  cursor: pointer;
  position: relative;
  font-family: inherit;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 18px;
  font-size: 22px;
  color: var(--gold-dk);
  transition: transform .2s;
}
.faq.open .faq-q::after {
  content: "\2212";
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq.open .faq-a {
  max-height: 240px;
}
.faq-a p {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
}
.final {
  background:
    radial-gradient(
      700px 320px at 12% 0%,
      rgba(245, 158, 11, .18),
      transparent 55%),
    radial-gradient(
      800px 360px at 90% 100%,
      rgba(192, 38, 211, .3),
      transparent 60%),
    linear-gradient(
      160deg,
      var(--purple),
      #20143f);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(212, 168, 67, .08),
      transparent);
  animation: shimmer 4s infinite;
  pointer-events: none;
}
.final h2 {
  font-size: 36px;
  margin-bottom: 14px;
  animation: slide-up 0.8s ease-out;
  position: relative;
  z-index: 1;
}
.final p {
  color: #d3cbe8;
  font-size: 17px;
  max-width: 34em;
  margin: 0 auto 28px;
  animation: slide-up 0.8s ease-out 0.2s backwards;
  position: relative;
  z-index: 1;
}
.final .hero-cta {
  justify-content: center;
  animation: slide-up 0.8s ease-out 0.4s backwards;
  position: relative;
  z-index: 1;
}
footer {
  background: #1a1130;
  color: #b9b0d4;
  padding: 60px 0 40px;
  font-size: 14px;
  border-top: 3px solid transparent;
  border-image: var(--grad-brand) 1;
}
.about-reveal {
  display: none;
  background:
    linear-gradient(
      180deg,
      #fff,
      var(--cream2));
  scroll-margin-top: 80px;
}
.about-page {
  display: block;
  background:
    linear-gradient(
      180deg,
      #fff,
      var(--cream2));
  padding: 72px 0;
  min-height: 58vh;
}
.about-page .wrap {
  max-width: 980px;
}
.about-page .about-reveal-card {
  border-top: 4px solid var(--gold);
  background: #fff;
  border-radius: 14px;
  padding: 34px;
  box-shadow: 0 18px 42px rgba(45, 27, 105, .1);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-page h2 {
  color: var(--purple);
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.about-page .about-kicker {
  color: var(--gold-dk);
  font-family: Georgia, serif;
  font-size: 17px;
  margin-bottom: 22px;
}
.about-page h3 {
  color: var(--purple);
  font-size: 20px;
  margin: 30px 0 12px;
  font-family: Georgia, serif;
}
.about-page p,
.about-page li {
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-page ul {
  padding-left: 20px;
  margin: 0;
}
.program-card-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.program-card,
.testimonial-card {
  background:
    linear-gradient(
      180deg,
      #fff,
      #FFF8E8);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}
.program-card span,
.testimonial-card span {
  display: inline-block;
  color: var(--gold-dk);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.program-card h3,
.testimonial-card h3 {
  color: var(--purple);
  margin: 0 0 8px;
  font-size: 19px;
}
.about-page .page-card-grid .cap {
  background: #fff;
  border-color: var(--line);
}
.about-page .page-card-grid .cap h3 {
  color: var(--purple);
}
.about-page .page-card-grid .cap p {
  color: var(--muted);
}
.about-page .roles .role {
  background:
    linear-gradient(
      180deg,
      #fff,
      #F7F4FC);
  border-color: var(--line);
}
.about-page .roles .role .rt {
  color: var(--purple);
}
.about-page .roles .role .rs {
  color: var(--gold-dk);
}
.about-page .salary-band span {
  color: var(--muted);
}
.page-capstone-list {
  margin-top: 24px;
}
.page-faq-list .faq {
  display: block;
}
.page-faq-list .faq summary {
  list-style: none;
}
.page-faq-list .faq summary::-webkit-details-marker {
  display: none;
}
.page-faq-list details[open] .faq-q::after {
  content: "\2212";
}
.page-faq-list details[open] .faq-a {
  max-height: 240px;
}
.about-reveal:target {
  display: block;
}
.about-reveal .wrap {
  max-width: 980px;
}
.about-reveal-card {
  border-top: 4px solid var(--gold);
  background: #fff;
  border-radius: 14px;
  padding: 34px;
  box-shadow: 0 18px 42px rgba(45, 27, 105, .1);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-reveal h2 {
  color: var(--purple);
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.about-reveal .about-kicker {
  color: var(--gold-dk);
  font-family: Georgia, serif;
  font-size: 17px;
  margin-bottom: 22px;
}
.about-reveal h3 {
  color: var(--purple);
  font-size: 20px;
  margin: 30px 0 12px;
  font-family: Georgia, serif;
}
.about-reveal p {
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-close {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-dk);
  font-weight: 700;
  font-size: 13px;
}
.team-grid-reveal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.team-member-reveal {
  background:
    linear-gradient(
      180deg,
      #fff,
      #FFF8E8);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.team-avatar-reveal {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-brand);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(45, 27, 105, .16);
}
.team-member-reveal h3 {
  margin: 0 0 6px;
  font-size: 17px;
}
.team-member-reveal p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: #b9b0d4;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 168, 67, .2);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  opacity: .95;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.footer-tagline {
  color: var(--gold);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .05em;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 168, 67, .15);
  border: 1px solid rgba(212, 168, 67, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--gold);
  color: #1a1130;
  transform: scale(1.1);
}
.footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-legal a {
  color: #b9b0d4;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: var(--gold);
}
.footer-divider {
  width: 1px;
  height: 16px;
  background: rgba(212, 168, 67, .3);
}
@media (max-width:1320px) {
  .wrap {
    padding: 0 36px;
  }
  .hero-in {
    gap: 44px;
    padding: 78px 36px 84px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero p.sub {
    font-size: 18.5px;
  }
  .nav-links {
    gap: 24px;
  }
  .nav-links a {
    font-size: 15.5px;
  }
  .nav-cta {
    padding: 11px 20px;
    font-size: 15.5px;
  }
}
@media (max-width:1120px) {
  .hero-in {
    grid-template-columns: 1.05fr .95fr;
    gap: 32px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .facts {
    padding: 28px;
  }
  .facts h3 {
    font-size: 22px;
  }
  .nav-in {
    min-height: 72px;
  }
  .brand .logo-img {
    height: 46px;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-links a {
    font-size: 14.5px;
  }
  .nav-cta {
    padding: 10px 16px;
    font-size: 14.5px;
  }
}
@media (max-width:1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width:640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  footer {
    padding: 40px 0 30px;
  }
  .about-reveal-card {
    padding: 24px;
  }
  .about-reveal h2 {
    font-size: 24px;
  }
  .team-grid-reveal {
    grid-template-columns: 1fr;
  }
}
@media (max-width:980px) {
  .nav-in {
    min-height: 68px;
  }
  .brand .logo-img {
    height: 42px;
  }
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .hero-in {
    grid-template-columns: 1fr;
    max-width: 760px;
    gap: 38px;
  }
  .hero-copy {
    max-width: none;
  }
  .facts {
    transform: none;
  }
}
@media (max-width:880px) {
  .hero-in {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 56px 36px 64px;
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero p.sub {
    font-size: 17px;
  }
  .stats-in {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .persona-grid,
  .inc-grid,
  .inst-grid,
  .cap-grid {
    grid-template-columns: 1fr;
  }
  section.blk {
    padding: 54px 0;
  }
  .sec-head h2 {
    font-size: 27px;
  }
}
@media (max-width:640px) {
  .wrap {
    padding: 0 24px;
  }
  .hero-in {
    padding: 44px 24px 54px;
  }
  .hero-cta {
    gap: 10px;
  }
  .hero-cta .btn {
    padding: 12px 14px;
    font-size: 14px;
  }
  .hero-badge {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    border-radius: 14px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .hero-proof div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
  .hero-proof div:last-child {
    border-bottom: none;
  }
  .facts {
    padding: 24px;
  }
  .facts dl {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .facts dd {
    text-align: left;
  }
  .nav-in {
    min-height: 64px;
  }
  .brand .logo-img {
    height: 38px;
  }
  .menu-btn {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion:reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto;
  }
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.phase-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 14px;
  padding-left: 6px;
}
.phase-label:first-child {
  margin-top: 0;
}
.phase-dot {
  margin-left: 60px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  flex: none;
  box-shadow: 0 0 0 4px rgba(107, 79, 176, .12);
}
.phase-name {
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--purple);
  font-size: 15.5px;
}
.phase-weeks {
  font-size: 12px;
  color: var(--muted);
  margin-left: auto;
  font-weight: 600;
}
.mod-pts {
  list-style: none;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
}
.mod-pts li {
  font-size: 13.5px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.mod-pts li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold-dk);
  font-weight: 800;
  font-size: 12px;
}
.mod-proj {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  background:
    linear-gradient(
      90deg,
      #FFF4DC,
      #FCE7F3);
  border-left: 3px solid var(--pink);
  padding: 9px 13px;
  border-radius: 0 7px 7px 0;
}
.assess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
.assess {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 24px 20px;
  text-align: center;
}
.assess .pct {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  background: var(--grad-cool);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.assess:nth-child(2) .pct {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
}
.assess:nth-child(3) .pct {
  background:
    linear-gradient(
      135deg,
      #D4A843,
      #EC4899);
  -webkit-background-clip: text;
  background-clip: text;
}
.assess:nth-child(4) .pct {
  background:
    linear-gradient(
      135deg,
      #7C3AED,
      #2D1B69);
  -webkit-background-clip: text;
  background-clip: text;
}
.assess {
  border-bottom: 3px solid var(--gold);
}
.assess:nth-child(2) {
  border-bottom-color: var(--pink);
}
.assess:nth-child(3) {
  border-bottom-color: var(--violet);
}
.assess:nth-child(4) {
  border-bottom-color: var(--magenta);
}
.assess .nm {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 3px;
}
.assess .ps {
  font-size: 12px;
  color: var(--muted);
}
.cap-opts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.cap-opt {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: #e7e1f5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cap-opt b {
  color: var(--gold);
  font-weight: 700;
}
@media (max-width:880px) {
  .assess-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cap-opts {
    grid-template-columns: 1fr;
  }
  .mod-pts {
    grid-template-columns: 1fr;
  }
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: transform .15s, box-shadow .15s;
  animation: slide-up 0.6s ease-out backwards;
}
.why:nth-child(1) {
  animation-delay: 0.05s;
}
.why:nth-child(2) {
  animation-delay: 0.1s;
}
.why:nth-child(3) {
  animation-delay: 0.15s;
}
.why:nth-child(4) {
  animation-delay: 0.2s;
}
.why:nth-child(5) {
  animation-delay: 0.25s;
}
.why:nth-child(6) {
  animation-delay: 0.3s;
}
.why:nth-child(7) {
  animation-delay: 0.35s;
}
.why:nth-child(8) {
  animation-delay: 0.4s;
}
.why:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(45, 27, 105, .15);
}
.why .ic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--grad-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}
.why:nth-child(4n+2) .ic {
  background: var(--grad-cool);
}
.why:nth-child(4n+3) .ic {
  background:
    linear-gradient(
      135deg,
      #D4A843,
      #F59E0B);
}
.why:nth-child(4n) .ic {
  background:
    linear-gradient(
      135deg,
      #EC4899,
      #7C3AED);
}
.why .ic svg path,
.why .ic svg circle {
  stroke: #fff;
}
.why {
  border-top: 3px solid transparent;
}
.why:hover {
  border-top-color: var(--pink);
}
.why h3 {
  font-size: 15.5px;
  color: var(--purple);
  margin-bottom: 5px;
}
.why p {
  font-size: 13.5px;
  color: var(--muted);
}
.outcomes {
  background:
    linear-gradient(
      160deg,
      var(--purple),
      #20143f);
  color: #fff;
}
.outcomes .sec-head h2 {
  color: #fff;
}
.outcomes .sec-head p {
  color: #cfc6e8;
}
.roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 30px;
}
.role {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  transition: transform .15s, background .15s;
}
.role:hover {
  transform: translateY(-3px);
  background: rgba(236, 72, 153, .12);
  border-color: rgba(236, 72, 153, .4);
}
.role .rt {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.role .rs {
  font-size: 12px;
  color: var(--gold);
  margin-top: 3px;
}
.salary-band {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: rgba(212, 168, 67, .12);
  border: 1px solid rgba(212, 168, 67, .35);
  border-radius: 12px;
  padding: 20px;
}
.salary-band b {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 22px;
}
.salary-band span {
  color: #e7e1f5;
  font-size: 14px;
  display: block;
  margin-top: 4px;
}
@media (max-width:880px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .roles {
    grid-template-columns: 1fr 1fr;
  }
}
.urgency {
  max-width: 560px;
  margin: 0 auto 24px;
  background:
    linear-gradient(
      90deg,
      rgba(245, 158, 11, .15),
      rgba(236, 72, 153, .12));
  border: 1px solid rgba(236, 72, 153, .35);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  font-size: 13.5px;
  color: #B0337A;
  font-weight: 600;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(236, 72, 153, .25);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(236, 72, 153, 0);
  }
}
.urgency b {
  color: var(--purple);
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 168, 67, .3), inset 0 0 20px rgba(212, 168, 67, .1);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 168, 67, .6), inset 0 0 20px rgba(212, 168, 67, .2);
  }
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes node-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: .82;
  }
  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}
@keyframes line-breathe {
  0%, 100% {
    opacity: .35;
  }
  50% {
    opacity: .95;
  }
}
@keyframes counter-up {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce-in {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero h1 {
  animation: slide-up 0.8s ease-out;
}
.hero h1 em {
  background: var(--grad-brand);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 4s ease infinite;
}
.hero p.sub {
  animation: slide-up 0.8s ease-out 0.2s backwards;
}
.hero-cta {
  animation: slide-up 0.8s ease-out 0.4s backwards;
}
.chips {
  animation: slide-up 0.8s ease-out 0.5s backwards;
}
.facts {
  animation: scale-in 0.8s ease-out 0.3s backwards;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .28), 0 0 40px rgba(212, 168, 67, .15);
}
.facts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background:
    linear-gradient(
      90deg,
      rgba(212, 168, 67, .05),
      transparent,
      rgba(212, 168, 67, .05));
  animation: shimmer 3s infinite;
  pointer-events: none;
}
.btn-gold {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, .3),
      transparent);
  animation: shimmer 2s infinite;
}
.btn-gold:hover {
  animation: bounce-in 0.6s ease;
}
.eyebrow {
  animation: slide-up 0.8s ease-out backwards;
}
.stat .n {
  animation: counter-up 1.2s ease-out 0.5s backwards;
}
.stat {
  animation: scale-in 0.6s ease-out;
}
.stat:nth-child(1) {
  animation-delay: 0.1s;
}
.stat:nth-child(2) {
  animation-delay: 0.2s;
}
.stat:nth-child(3) {
  animation-delay: 0.3s;
}
.stat:nth-child(4) {
  animation-delay: 0.4s;
}
.hero::before {
  animation: float 6s ease-in-out infinite;
}
.persona {
  transition: all 0.3s ease;
}
.persona:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 27, 105, .15);
}
.persona .ic {
  animation: bounce-in 0.6s ease;
}
.persona:nth-child(1) .ic {
  animation-delay: 0.1s;
}
.persona:nth-child(2) .ic {
  animation-delay: 0.2s;
}
.persona:nth-child(3) .ic {
  animation-delay: 0.3s;
}
.pay-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0;
}
.pay {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 16px;
  text-align: center;
  background: var(--cream2);
}
.pay .pl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 700;
}
.pay .pv {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
  margin-top: 4px;
}
.pay .pn {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}
.inst {
  text-align: left;
}
.inst-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.inst-top > div {
  flex: 1;
  text-align: left;
}
.inst-top h3 {
  text-align: left;
}
.inst-top .role {
  text-align: left;
  margin: 2px 0 0;
}
.inst .av {
  margin: 0;
  width: 58px;
  height: 58px;
  font-size: 22px;
  flex: none;
}
.inst .li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--purple3);
  font-weight: 600;
  margin-top: 10px;
}
.inst .li svg {
  width: 14px;
  height: 14px;
}
.inst-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.inst-tags span {
  font-size: 11px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--purple);
  padding: 4px 9px;
  border-radius: 5px;
  font-weight: 600;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
