:root {
  --bg: #07060a;
  --bg2: #100c14;
  --card: #16101c;
  --card2: #1e1526;
  --line: rgba(255, 224, 102, 0.14);
  --text: #f4efe6;
  --muted: #a89ab0;
  --gold: #ffe066;
  --hot: #ff2d95;
  --teal: #3dffc4;
  --good: #3dd68c;
  --bad: #ff6b7a;
  --warn: #f0b429;
  --shadow: 0 28px 80px rgba(0,0,0,.55);
  --sans: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --display: "Archivo Black", Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(255,45,149,.22), transparent 55%),
    radial-gradient(700px 420px at -5% 15%, rgba(255,224,102,.12), transparent 50%),
    linear-gradient(180deg, #050408 0%, var(--bg) 40%, #0c0810 100%);
  line-height: 1.5;
  letter-spacing: -0.011em;
  padding-top: 48px;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--hot); }

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

.urgency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 12px;
  padding: 10px 16px;
  background: linear-gradient(90deg, #ffe066 0%, #ff2d95 55%, #ffe066 100%);
  background-size: 200% 100%;
  animation: urgency-shine 6s linear infinite;
  color: #120810;
  font-weight: 800;
  font-size: clamp(.82rem, 2.4vw, .95rem);
  text-decoration: none;
  letter-spacing: .01em;
  box-shadow: 0 8px 28px rgba(255,45,149,.45);
  border-bottom: 3px solid #120810;
}
.urgency-bar:hover { color: #120810; filter: brightness(1.05); }
.urgency-bar strong {
  font-family: var(--display);
  font-size: 1.05em;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.urgency-bar__sep { opacity: .55; }
.urgency-bar__cta {
  margin-left: 4px;
  background: #120810;
  color: #ffe066;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .85em;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.urgency-bar__pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #120810;
  box-shadow: 0 0 0 0 rgba(18,8,16,.55);
  animation: urgency-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes urgency-pulse {
  0% { box-shadow: 0 0 0 0 rgba(18,8,16,.55); }
  70% { box-shadow: 0 0 0 10px rgba(18,8,16,0); }
  100% { box-shadow: 0 0 0 0 rgba(18,8,16,0); }
}
@keyframes urgency-shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@media (max-width: 640px) {
  .urgency-bar { font-size: .78rem; padding: 9px 12px; gap: 6px 8px; }
  .urgency-bar__sep { display: none; }
  body { padding-top: 56px; }
}

.wrap { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; padding: 0 20px; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 16px; flex-wrap: wrap;
}
.brand {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  font-family: var(--display); letter-spacing: -.02em;
}
.brand .mark {
  font-size: 1.35rem; color: var(--gold);
  text-shadow: 2px 2px 0 var(--hot);
}
.brand .mark:has(.wm) { text-shadow: none; color: inherit; }
h1 .accent:has(.wm) { text-shadow: none; }
.wm--hero { font-size: 0.92em; }
.urgency-bar .wm { font-size: 1em; vertical-align: -0.08em; }
.urgency-bar .wm__fix { width: 0.72em; height: 1em; }
.urgency-bar .wm__o { bottom: 0.1em; font-size: 1.05em; }

/* Cute wordmark nod: SWAT → scratch A → O pops in; final brand = SWOT (loops) */
.wm {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display);
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
  vertical-align: baseline;
  color: var(--gold);
  text-shadow: 2px 2px 0 var(--hot);
}
.wm__yt { margin-right: .18em; }
.wm__fix {
  position: relative;
  display: inline-block;
  width: .78em;
  height: 1.05em;
  margin: 0 .01em;
  vertical-align: baseline;
  overflow: visible;
}
.wm__a {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  opacity: 1;
  color: inherit;
  font-size: 1em;
  line-height: 1;
  user-select: none;
  animation: wm-a 5.8s ease-in-out infinite;
}
.wm__scratch {
  position: absolute;
  left: 50%;
  bottom: .02em;
  width: 1.15em;
  height: 1em;
  transform: translateX(-50%) rotate(-6deg);
  color: var(--hot);
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}
.wm__scratch path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-dasharray: 56;
  stroke-dashoffset: 56;
  opacity: 0;
  animation: wm-scratch 5.8s ease-in-out infinite;
}
.wm__scratch path:nth-child(2) {
  animation-delay: 0.12s;
}
.wm__o {
  position: absolute;
  left: 48%;
  bottom: .18em;
  color: var(--teal);
  font-size: 1.12em;
  line-height: 1;
  z-index: 3;
  text-shadow:
    1.5px 1.5px 0 rgba(7,6,10,.85),
    0 0 10px rgba(61,255,196,.35);
  transform-origin: 55% 70%;
  user-select: none;
  opacity: 0;
  transform: translateX(-40%) rotate(-14deg) scale(0);
  animation: wm-o 5.8s cubic-bezier(.34,1.56,.64,1) infinite;
}
@keyframes wm-a {
  0%, 10% { opacity: 1; }
  22%, 78% { opacity: .42; }
  90%, 100% { opacity: 1; }
}
@keyframes wm-scratch {
  0%, 10% { stroke-dashoffset: 56; opacity: 0; }
  14% { opacity: 1; }
  26%, 78% { stroke-dashoffset: 0; opacity: 1; }
  88%, 100% { stroke-dashoffset: 56; opacity: 0; }
}
@keyframes wm-o {
  0%, 26% {
    opacity: 0;
    transform: translateX(-40%) rotate(-8deg) scale(0) translateY(.22em);
  }
  34% {
    opacity: 1;
    transform: translateX(-40%) rotate(-18deg) scale(1.28) translateY(-.1em);
  }
  42% {
    opacity: 1;
    transform: translateX(-40%) rotate(-8deg) scale(.9) translateY(.02em);
  }
  50% {
    opacity: 1;
    transform: translateX(-40%) rotate(-14deg) scale(1.05) translateY(0);
  }
  58%, 76% {
    opacity: 1;
    transform: translateX(-40%) rotate(-12deg) scale(1) translateY(0);
  }
  70% {
    transform: translateX(-40%) rotate(-16deg) scale(1.04) translateY(-.03em);
  }
  86%, 100% {
    opacity: 0;
    transform: translateX(-40%) rotate(-10deg) scale(0) translateY(.18em);
  }
}
.wm--hero {
  color: var(--gold);
  text-shadow: 3px 3px 0 var(--hot);
}
.wm--hero .wm__a { text-shadow: 2px 2px 0 rgba(255,45,149,.45); }
.wm--hero .wm__o {
  color: var(--teal);
  text-shadow:
    2px 2px 0 var(--hot),
    0 0 14px rgba(61,255,196,.4);
}
.wm--hero .wm__a,
.wm--hero .wm__scratch path,
.wm--hero .wm__o { animation-delay: 0.35s; }
.wm--hero .wm__scratch path:nth-child(2) { animation-delay: 0.47s; }

.wm--bar {
  font-family: var(--display);
  font-size: 1.05em;
  color: #120810;
  text-shadow: none;
}
.wm--bar .wm__a { color: #120810; }
.wm--bar .wm__scratch { color: #ff2d95; }
.wm--bar .wm__o {
  color: #0a5c4a;
  text-shadow: 1px 1px 0 rgba(255,224,102,.9);
}
.wm--bar .wm__a,
.wm--bar .wm__scratch path,
.wm--bar .wm__o { animation-duration: 6.4s; animation-delay: 0.15s; }
.wm--bar .wm__scratch path:nth-child(2) { animation-delay: 0.27s; }

.wm--footer { font-family: var(--display); color: var(--gold); text-shadow: 1px 1px 0 var(--hot); font-size: 1em; }
.wm--footer .wm__a,
.wm--footer .wm__scratch path,
.wm--footer .wm__o { animation-duration: 7s; animation-delay: 0.8s; }
.wm--footer .wm__scratch path:nth-child(2) { animation-delay: 0.92s; }

@media (prefers-reduced-motion: reduce) {
  .wm__a {
    animation: none !important;
    opacity: .45;
  }
  .wm__scratch path {
    animation: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
  }
  .wm__o {
    animation: none !important;
    opacity: 1 !important;
    transform: translateX(-40%) rotate(-14deg) scale(1) !important;
  }
}

.brand .by {
  font-family: var(--sans); font-size: .85rem; color: var(--muted); font-weight: 600;
}
.powered {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); border: 1px solid var(--line); padding: 6px 10px; border-radius: 999px;
}
.powered strong { color: var(--gold); font-weight: 800; }

.hero { padding: 36px 0 20px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,45,149,.12); border: 1px solid rgba(255,45,149,.35);
  color: var(--hot); font-weight: 800; font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; padding: 8px 12px; border-radius: 999px; margin-bottom: 18px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); }

h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: .95; letter-spacing: -.03em; margin: 0 0 16px;
  color: var(--text);
}
h1 .accent { color: var(--gold); text-shadow: 3px 3px 0 var(--hot); }
.tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--muted); max-width: 38rem; margin: 0 0 28px;
}
.tagline em { color: var(--text); font-style: normal; font-weight: 700; }

.panel {
  background: linear-gradient(180deg, var(--card) 0%, var(--card2) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 14px; }
@media (min-width: 720px) {
  .form-grid.two { grid-template-columns: 1.4fr 1fr; }
}
label {
  display: block; font-size: .78rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
input {
  width: 100%;
  background: #0b0810;
  border: 2px solid rgba(255,224,102,.22);
  color: var(--text);
  border-radius: 14px;
  padding: 16px 16px;
  font-size: 1.05rem;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
input:focus {
  border-color: var(--hot);
  box-shadow: 0 0 0 4px rgba(255,45,149,.18);
}
input::placeholder { color: #6d5f78; }

.cta {
  width: 100%;
  margin-top: 6px;
  appearance: none; border: 0; cursor: pointer;
  font-family: var(--display);
  font-size: 1.15rem; letter-spacing: -.01em;
  padding: 18px 22px; border-radius: 14px;
  color: #120810;
  background: linear-gradient(90deg, var(--gold), #ffb347, var(--hot));
  background-size: 200% 100%;
  box-shadow: 0 10px 30px rgba(255,45,149,.35), 0 0 0 2px rgba(255,224,102,.35) inset;
  transition: transform .12s, filter .12s, background-position .3s;
}
.cta:hover { transform: translateY(-2px); filter: brightness(1.05); background-position: 100% 0; }
.cta:disabled { opacity: .55; cursor: wait; transform: none; }
.fine {
  margin: 12px 0 0; color: var(--muted); font-size: .88rem; text-align: center;
}
.fine b { color: var(--teal); }

.status {
  display: none; margin-top: 14px; padding: 14px 16px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(61,255,196,.06);
  color: var(--text); font-size: .95rem;
}
.status.show { display: block; }
.status.err { background: rgba(255,107,122,.08); border-color: rgba(255,107,122,.35); }
.status a { font-weight: 800; }

.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 28px 0 8px;
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  border-radius: 16px; padding: 16px;
}
.stat .k { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 800; }
.stat .v { font-family: var(--display); font-size: 1.55rem; color: var(--gold); margin-top: 6px; }

.section { padding: 42px 0 10px; }
.section h2 {
  font-family: var(--display); font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -.02em; margin: 0 0 8px;
}
.section p.lead { color: var(--muted); margin: 0 0 22px; max-width: 40rem; }

.preview-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .preview-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 18px;
}
.card h3 {
  margin: 0 0 10px; font-family: var(--display); font-size: 1.15rem;
  display: flex; align-items: center; gap: 8px;
}
.card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.card li { margin: 6px 0; }
.s { color: var(--good); }
.w { color: var(--warn); }
.o { color: var(--teal); }
.t { color: var(--bad); }

.sample {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  margin-top: 18px; padding: 18px; border-radius: 18px;
  background: linear-gradient(90deg, rgba(255,224,102,.08), rgba(255,45,149,.1));
  border: 1px solid var(--line);
}
.sample .who { font-weight: 800; }
.sample .who span { color: var(--muted); font-weight: 600; display: block; font-size: .9rem; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: 12px; font-weight: 800;
  border: 2px solid var(--gold); color: var(--gold); background: transparent;
}
.btn-ghost:hover { background: var(--gold); color: #120810; }

.horizons {
  display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.hz {
  border-radius: 14px; padding: 14px; text-align: center;
  border: 1px solid var(--line); background: rgba(0,0,0,.25);
}
.hz b { display: block; font-family: var(--display); color: var(--hot); font-size: 1.3rem; }
.hz span { color: var(--muted); font-size: .85rem; }

footer {
  margin: 50px 0 30px; padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .88rem;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
}

/* Weighted SWOT explainer */
.accent-inline { color: var(--gold); text-shadow: 2px 2px 0 var(--hot); }
.weighted .lead em { color: var(--text); font-style: normal; font-weight: 800; }

.swot-letters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 22px;
}
@media (min-width: 720px) {
  .swot-letters { grid-template-columns: repeat(4, 1fr); }
}
.swot-letter {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 12px;
  text-align: center;
}
.swot-letter span {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 6px;
}
.swot-letter b {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.swot-letter small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .8rem;
}

.weight-block {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,224,102,.07), rgba(255,45,149,.08));
  border: 1px solid var(--line);
}
@media (min-width: 800px) {
  .weight-block {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }
}
.weight-copy h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -.015em;
}
.weight-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}
.weight-copy strong { color: var(--text); font-weight: 800; }

.weight-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}
@media (min-width: 800px) {
  .weight-chips { justify-content: flex-end; }
}
.weight-chips li {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,224,102,.28);
  background: rgba(0,0,0,.28);
  color: var(--gold);
}

.help-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin: 0 0 18px;
}
@media (min-width: 640px) {
  .help-grid { grid-template-columns: repeat(2, 1fr); }
}
.help-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.help-card h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--teal);
}
.help-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.weight-cta {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(61,255,196,.06);
  border: 1px solid rgba(61,255,196,.22);
  color: var(--muted);
  font-size: .95rem;
  text-align: center;
}
.weight-cta a {
  display: inline-block;
  margin-left: 6px;
  font-weight: 800;
  color: var(--teal);
}
.weight-cta a:hover { color: var(--gold); }

@media (max-width: 640px) {
  .weight-block { padding: 14px; }
  .swot-letter { padding: 12px 8px; }
  .swot-letter span { font-size: 1.35rem; }
}


/* MBA vs PhD tier picker */
.tier-fieldset {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 14px 10px;
  margin: 4px 0 0;
}
.tier-fieldset legend {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 6px;
}
.tier-cards {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .tier-cards { grid-template-columns: 1fr 1fr; }
}
.tier-card {
  display: block;
  cursor: pointer;
  background: rgba(0,0,0,.28);
  border: 2px solid rgba(255,224,102,.18);
  border-radius: 14px;
  padding: 14px 14px 12px;
  transition: border-color .15s, box-shadow .15s, transform .12s;
}
.tier-card input { position: absolute; opacity: 0; pointer-events: none; }
.tier-card__top {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 6px;
}
.tier-card__top strong {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--text);
}
.tier-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.tier-card.is-selected,
.tier-card:has(input:checked) {
  border-color: var(--hot);
  box-shadow: 0 0 0 3px rgba(255,45,149,.18);
  transform: translateY(-1px);
}
.tier-pill {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.tier-pill.free {
  background: rgba(61,255,196,.15);
  color: var(--teal);
}
.tier-pill.promo {
  background: rgba(255,179,71,.16);
  color: #ffb347;
}
.promo-wrap { margin-top: 12px; }
.promo-hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .82rem;
}
.tier-compare {
  margin: 28px 0 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.tier-compare__title {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.tier-compare__grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 720px) {
  .tier-compare__grid { grid-template-columns: 1fr 1fr; }
}
.tier-compare__grid article {
  background: rgba(0,0,0,.22);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}
.tier-compare__grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--gold);
}
.tier-compare__grid ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.tier-compare__grid li { margin: .4rem 0; }
.tier-compare__grid strong { color: var(--text); }

.eligibility-note {
  margin: 4px 0 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 193, 74, .35);
  background: rgba(255, 193, 74, .08);
  color: var(--text);
  font-size: .92rem;
  line-height: 1.45;
  text-align: center;
}
.eligibility-note strong { color: var(--gold); font-weight: 800; }


/* MBA-only public form (PhD dormant) */
.mba-only-note {
  margin: 0 0 1rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,106,0,.35);
  background: linear-gradient(120deg, rgba(255,193,74,.1), rgba(255,106,0,.12));
  color: var(--text);
  font-size: .95rem;
  line-height: 1.45;
}
.mba-only-note .eligibility {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .88rem;
}
.mba-only-note .eligibility b { color: var(--gold); }
