/* =====================================================================
   Alexandria's Design — Mockup Stylesheet
   Light bg + Navy/Blue/Teal/Amber. Apple-product-page restraint.
   ===================================================================== */

:root {
  /* Brand */
  --bg:        #FFFFFF;
  --bg-soft:   #F7F9FC;
  --bg-mute:   #EEF2F8;
  --navy:      #1E3A5F;       /* Display + body */
  --navy-60:   rgba(30, 58, 95, 0.62);
  --navy-40:   rgba(30, 58, 95, 0.40);
  --navy-08:   rgba(30, 58, 95, 0.08);
  --blue:      #3182CE;       /* Support */
  --teal:      #0694A2;       /* Support */
  --amber:     #D97706;       /* Accent — used once per view */
  --amber-ink: #FFFFFF;       /* Text on amber */
  --green:     #10B981;       /* Pill dot only */

  /* Type */
  --font-display: "Newsreader", ui-serif, Georgia, serif;
  --font-body:    "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --section-y:  clamp(96px, 14vw, 200px);
  --container:  1240px;
  --gutter:     clamp(20px, 4vw, 48px);

  /* Motion */
  --ease:        cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:      0.22s;
  --t-med:       0.6s;
  --t-slow:      1s;
}

/* Reset / base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* Container */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* =====================================================================
   Typography
   ===================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  color: var(--navy);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-60);
  display: inline-block;
}
.lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--navy-60);
  max-width: 56ch;
  margin: 0;
}
.h-display {
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.h-section {
  font-size: clamp(36px, 5.2vw, 68px);
  letter-spacing: -0.035em;
  line-height: 1.0;
}
.h-card {
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* =====================================================================
   Pill badge (with green dot)
   ===================================================================== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 0.5px solid var(--navy-08);
  background: var(--bg-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-60);
  letter-spacing: 0.02em;
}
.pill::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 0.5px solid transparent;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--amber);
  color: var(--amber-ink);
}
.btn--primary:hover { background: #B65E04; }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-08);
}
.btn--ghost:hover {
  background: var(--bg-soft);
  border-color: var(--navy-40);
}
.btn--link {
  padding: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--navy-08);
  border-radius: 0;
}
.btn--link:hover { border-bottom-color: var(--navy); }
.btn .arrow {
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* =====================================================================
   Top nav
   ===================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 0.5px solid transparent;
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--navy-08);
  background: rgba(255, 255, 255, 0.92);
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__mark {
  width: 22px; height: 22px;
  display: inline-block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-60);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}
.nav__link:hover { color: var(--navy); }
.nav__link.is-active { color: var(--navy); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--amber);
}
.nav__cta { padding: 10px 20px; font-size: 14px; }

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  padding-top: clamp(140px, 14vw, 200px);
  padding-bottom: var(--section-y);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: 980px;
  position: relative;
  z-index: 2;
}
.hero__pill { margin-bottom: 32px; }
.hero__headline {
  margin: 0 0 32px;
}
.hero__headline .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.22em;
}
.hero__headline .word:last-child { margin-right: 0; }
.hero__headline .word > span {
  display: inline-block;
  will-change: transform;
  animation: word-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes word-rise {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
.hero__headline .word:nth-child(1)  > span { animation-delay: 0.15s; }
.hero__headline .word:nth-child(2)  > span { animation-delay: 0.20s; }
.hero__headline .word:nth-child(3)  > span { animation-delay: 0.25s; }
.hero__headline .word:nth-child(4)  > span { animation-delay: 0.30s; }
.hero__headline .word:nth-child(5)  > span { animation-delay: 0.35s; }
.hero__headline .word:nth-child(6)  > span { animation-delay: 0.40s; }
.hero__headline .word:nth-child(7)  > span { animation-delay: 0.45s; }
.hero__headline .word:nth-child(8)  > span { animation-delay: 0.50s; }
.hero__headline .word:nth-child(9)  > span { animation-delay: 0.55s; }
.hero__headline .word:nth-child(10) > span { animation-delay: 0.60s; }
.hero__headline .word:nth-child(11) > span { animation-delay: 0.65s; }
.hero__headline .word:nth-child(12) > span { animation-delay: 0.70s; }
@media (prefers-reduced-motion: reduce) {
  .hero__headline .word > span {
    animation: none;
    transform: translateY(0) !important;
  }
}
.hero__lede {
  margin-bottom: 44px;
  max-width: 60ch;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Subtle hero glow — restrained, not gradient-y */
.hero__glow {
  position: absolute;
  top: -10%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(closest-side, rgba(217, 119, 6, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* =====================================================================
   SPEED OF LIGHT — animated streak across hero
   ===================================================================== */
.lightstreak {
  position: absolute;
  top: 38%;
  left: -200px;
  height: 2px;
  width: 280px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent,
    rgba(217, 119, 6, 0.0) 0%,
    rgba(217, 119, 6, 0.7) 40%,
    rgba(255, 255, 255, 1.0) 50%,
    rgba(217, 119, 6, 0.7) 60%,
    rgba(217, 119, 6, 0.0) 100%
  );
  filter: blur(0.5px);
  box-shadow: 0 0 24px rgba(217, 119, 6, 0.45);
  animation: lightstreak-fly 2.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
  border-radius: 999px;
}
.lightstreak::after {
  content: "";
  position: absolute;
  inset: -3px 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(217, 119, 6, 0.18) 45%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(217, 119, 6, 0.18) 55%,
    transparent 100%
  );
  filter: blur(8px);
  border-radius: 999px;
}
@keyframes lightstreak-fly {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateX(calc(100vw + 280px));
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lightstreak { display: none; }
}

/* Button shimmer pass — extends the speed-of-light motif */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-22deg);
  transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.btn--primary:hover::before { left: 125%; }
@media (prefers-reduced-motion: reduce) {
  .btn--primary::before { display: none; }
}

/* =====================================================================
   IMAGINE — vision-state editorial moment between hero and impact
   ===================================================================== */
.imagine {
  padding-block: clamp(80px, 12vw, 160px);
  position: relative;
}
.imagine__inner {
  max-width: 980px;
  position: relative;
}
.imagine__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}
.imagine__kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--amber);
}
.imagine__copy {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--navy);
  max-width: 22ch;
  margin: 0;
}
.imagine__copy em {
  font-style: italic;
  color: var(--amber);
}
.imagine__copy .strike {
  text-decoration: line-through;
  text-decoration-color: var(--navy-40);
  text-decoration-thickness: 2px;
  color: var(--navy-40);
}
.imagine__line {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--navy-08);
  padding-top: 28px;
}
@media (max-width: 720px) { .imagine__line { grid-template-columns: 1fr; gap: 18px; padding-top: 18px; } }
.imagine__line__cell {
  font-size: 14px;
  color: var(--navy-60);
  padding-right: 18px;
}
.imagine__line__cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 4px;
}

/* =====================================================================
   Impact strip (counters)
   ===================================================================== */
.impact {
  padding-block: clamp(48px, 7vw, 96px);
  background: var(--bg-soft);
  border-top: 0.5px solid var(--navy-08);
  border-bottom: 0.5px solid var(--navy-08);
}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.impact__cell {
  padding: 8px 28px;
  border-left: 1px solid var(--navy-08);
}
.impact__cell:first-child { border-left: 0; padding-left: 0; }
.impact__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
  display: block;
  margin-bottom: 10px;
}
.impact__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-60);
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .impact__grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .impact__cell { border-left: 0; padding: 0; }
  .impact__cell:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--navy-08); }
}

/* =====================================================================
   Audience cards (Three ways we work with you)
   ===================================================================== */
.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; gap: 24px; }
}
.section__head .h-section { max-width: 16ch; }
.section__head .lede { justify-self: end; }
@media (max-width: 880px) { .section__head .lede { justify-self: start; } }

.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--navy-08);
}
.audience__item {
  display: block;
  padding: 36px 32px 56px;
  border-right: 1px solid var(--navy-08);
  border-bottom: 1px solid var(--navy-08);
  position: relative;
  transition: background var(--t-fast) var(--ease);
}
.audience__item:last-child { border-right: 0; }
.audience__item:hover { background: var(--bg-soft); }
.audience__item:hover .audience__arrow { transform: translateX(6px); color: var(--amber); }
.audience__num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--navy-40);
  margin-bottom: 64px;
  text-transform: uppercase;
}
.audience__title {
  margin-bottom: 16px;
}
.audience__desc {
  color: var(--navy-60);
  margin: 0 0 28px;
  font-size: 16px;
  max-width: 32ch;
}
.audience__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  transition: transform var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
@media (max-width: 880px) {
  .audience { grid-template-columns: 1fr; }
  .audience__item { border-right: 0; padding: 28px 0 36px; }
  .audience__num { margin-bottom: 24px; }
}

/* =====================================================================
   Capabilities Statement section
   ===================================================================== */
.cap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .cap { grid-template-columns: 1fr; gap: 48px; } }

.cap__title {
  margin-bottom: 28px;
}
.cap__copy {
  color: var(--navy-60);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 50ch;
}
.cap__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  border-top: 1px solid var(--navy-08);
}
.cap__list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--navy-08);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 15px;
}
.cap__list .k {
  font-family: var(--font-display);
  color: var(--navy-40);
  font-size: 14px;
}
.cap__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--navy-08);
  border-left: 1px solid var(--navy-08);
}
.cap__credentials > div {
  border-right: 1px solid var(--navy-08);
  border-bottom: 1px solid var(--navy-08);
  padding: 24px;
}
.cap__credentials .badge {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}
.cap__credentials .meta {
  font-size: 12px;
  color: var(--navy-60);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =====================================================================
   Rapid AI Course Design — Pricing tiers
   ===================================================================== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; } }

.tier {
  background: var(--bg);
  border: 0.5px solid var(--navy-08);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  transition: transform var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.tier:hover {
  transform: translateY(-3px);
  border-color: var(--navy-40);
}
.tier--featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.tier--featured h4,
.tier--featured .tier__price,
.tier--featured .tier__sample-name { color: #fff; }
.tier--featured .tier__meta { color: rgba(255,255,255,0.6); }
.tier--featured .tier__feature { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.12); }

.tier__level {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.tier--featured .tier__level { color: #F4A341; }
.tier__name {
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.tier__meta {
  font-size: 13px;
  color: var(--navy-60);
  font-weight: 500;
  margin-bottom: 28px;
}
.tier__price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.tier__price-note {
  font-size: 13px;
  color: var(--navy-40);
  margin-bottom: 28px;
}
.tier--featured .tier__price-note { color: rgba(255,255,255,0.5); }
.tier__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.tier__feature {
  font-size: 14px;
  color: var(--navy-60);
  padding: 12px 0;
  border-top: 1px solid var(--navy-08);
}
.tier__feature:last-child { border-bottom: 1px solid var(--navy-08); }
.tier__sample {
  display: block;
  padding: 16px;
  margin-bottom: 24px;
  background: var(--bg-soft);
  border-radius: 10px;
  font-size: 13px;
}
.tier--featured .tier__sample { background: rgba(255,255,255,0.06); }
.tier__sample-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-40);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.tier--featured .tier__sample-tag { color: rgba(255,255,255,0.5); }
.tier__sample-name {
  font-weight: 600;
  color: var(--navy);
}
.tier__cta {
  width: 100%;
  justify-content: center;
}

.tiers__voice {
  margin-top: 64px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  color: var(--navy-60);
  max-width: 64ch;
  margin-inline: auto;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

/* Honest-timelines callout under tier grids and level grids */
.timeline-note {
  max-width: 760px;
  margin: 56px auto 0;
  padding: 24px 28px;
  border-left: 2px solid var(--amber);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy-60);
  border-radius: 4px;
}
.timeline-note strong {
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* =====================================================================
   Interaction Levels (Step 02)
   ===================================================================== */
.levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 880px) { .levels { grid-template-columns: 1fr; } }

.level {
  background: var(--bg);
  border: 0.5px solid var(--navy-08);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.level--mid {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(49, 130, 206, 0.2);
}
.level--top {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px rgba(6, 148, 162, 0.2);
}

.level__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-40);
  margin-bottom: 16px;
}
.level--mid .level__num { color: var(--blue); }
.level--top .level__num { color: var(--teal); }

.level__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 8px;
}

.level__tag {
  font-size: 13px;
  color: var(--navy-60);
  font-weight: 500;
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--navy-08);
}

.level__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}
.level__list li {
  font-size: 15px;
  color: var(--navy);
  padding: 10px 0 10px 22px;
  position: relative;
  line-height: 1.5;
}
.level__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 1px;
  background: var(--amber);
}
.level--mid .level__list li::before { background: var(--blue); }
.level--top .level__list li::before { background: var(--teal); }

.level__use {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--navy-60);
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--navy-08);
  letter-spacing: -0.01em;
  line-height: 1.45;
}

/* =====================================================================
   Beyond Courses (services row)
   ===================================================================== */
.beyond {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--navy-08);
  border-bottom: 1px solid var(--navy-08);
}
.beyond__item {
  padding: 48px 32px;
  border-right: 1px solid var(--navy-08);
}
.beyond__item:last-child { border-right: 0; }
.beyond__icon {
  width: 36px; height: 36px;
  margin-bottom: 24px;
  color: var(--teal);
}
.beyond__item:nth-child(2) .beyond__icon { color: var(--blue); }
.beyond__item:nth-child(3) .beyond__icon { color: var(--amber); }
.beyond__title {
  font-size: 22px;
  margin-bottom: 12px;
}
.beyond__desc {
  font-size: 15px;
  color: var(--navy-60);
  margin: 0;
  max-width: 32ch;
}
@media (max-width: 880px) {
  .beyond { grid-template-columns: 1fr; }
  .beyond__item { border-right: 0; border-bottom: 1px solid var(--navy-08); }
  .beyond__item:last-child { border-bottom: 0; }
}

/* =====================================================================
   PLAYABLE DEMO — branching scenario widget
   ===================================================================== */
.demo {
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}
.demo__shell {
  max-width: 920px;
  margin: 64px auto 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border: 0.5px solid var(--navy-08);
  border-radius: 22px;
  padding: 44px 48px 40px;
  position: relative;
  box-shadow: 0 4px 30px rgba(30, 58, 95, 0.05);
}
@media (max-width: 720px) { .demo__shell { padding: 28px 24px; } }
.demo__hud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-40);
  padding-bottom: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--navy-08);
}
.demo__hud .step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-60);
}
.demo__hud .step::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.demo__hud .reset {
  color: var(--navy-40);
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  padding: 0;
  transition: color var(--t-fast) var(--ease);
}
.demo__hud .reset:hover { color: var(--navy); }

.demo__q {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 8px;
}
.demo__qsub {
  font-size: 14px;
  color: var(--navy-60);
  margin: 0 0 28px;
}
.demo__choices {
  display: grid;
  gap: 10px;
}
.demo__choice {
  text-align: left;
  background: var(--bg);
  border: 0.5px solid var(--navy-08);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}
.demo__choice:hover {
  border-color: var(--amber);
  transform: translateX(2px);
}
.demo__choice .letter {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  width: 22px;
  flex-shrink: 0;
  padding-top: 1px;
}
.demo__choice .text { flex: 1; line-height: 1.45; }

.demo__outcome {
  display: none;
  animation: outcome-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.demo__outcome.is-shown { display: block; }
@keyframes outcome-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.demo__verdict {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.demo__verdict--good {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  border: 0.5px solid rgba(16, 185, 129, 0.4);
}
.demo__verdict--mixed {
  background: rgba(217, 119, 6, 0.08);
  color: #92590A;
  border: 0.5px solid rgba(217, 119, 6, 0.4);
}
.demo__verdict--bad {
  background: rgba(220, 38, 38, 0.06);
  color: #B71D1D;
  border: 0.5px solid rgba(220, 38, 38, 0.3);
}

.demo__feedback {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 18px;
}
.demo__rationale {
  font-size: 15px;
  color: var(--navy-60);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 60ch;
}
.demo__again {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: gap var(--t-fast) var(--ease);
}
.demo__again:hover { gap: 14px; }

.demo__caption {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--navy-40);
  font-style: italic;
}

/* =====================================================================
   Closing CTA
   ===================================================================== */
.closing {
  padding-block: clamp(120px, 18vw, 220px);
  text-align: center;
}
.closing__head {
  font-size: clamp(40px, 6.5vw, 88px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 36px;
}
.closing__sub {
  color: var(--navy-60);
  font-size: 18px;
  margin-bottom: 44px;
  max-width: 50ch;
  margin-inline: auto;
}
.closing__ctas {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =====================================================================
   Footer
   ===================================================================== */
.foot {
  padding: 64px 0 48px;
  border-top: 1px solid var(--navy-08);
  background: var(--bg-soft);
}
.foot__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .foot__top { grid-template-columns: 1fr 1fr; } }
.foot__brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.foot__tag {
  color: var(--navy-60);
  font-size: 14px;
  max-width: 30ch;
}
.foot h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-40);
  margin: 0 0 18px;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 12px; font-size: 14px; }
.foot li a { color: var(--navy-60); transition: color var(--t-fast) var(--ease); }
.foot li a:hover { color: var(--navy); }
.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--navy-08);
  font-size: 13px;
  color: var(--navy-40);
  flex-wrap: wrap;
  gap: 16px;
}
.foot__bottom .creds {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
}
.foot__bottom .creds span {
  border: 0.5px solid var(--navy-08);
  padding: 4px 10px;
  border-radius: 999px;
}

/* =====================================================================
   Stub page styling (for Government / Corporate / etc placeholders)
   ===================================================================== */
.stub {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-block: 200px;
}
.stub__inner { max-width: 760px; }
.stub__back {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-60);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  gap: 8px;
}
.stub__back:hover { color: var(--navy); }
.stub__title {
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 28px;
}
.stub__desc {
  font-size: 19px;
  color: var(--navy-60);
  margin-bottom: 40px;
  max-width: 56ch;
  line-height: 1.55;
}
.stub__list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  border-top: 1px solid var(--navy-08);
}
.stub__list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--navy-08);
  font-size: 16px;
  color: var(--navy);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: baseline;
}
.stub__list .k {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--amber);
}
.stub__note {
  display: inline-block;
  font-size: 13px;
  color: var(--navy-40);
  font-style: italic;
}

/* =====================================================================
   Academy — Four delivery formats grid
   ===================================================================== */
.academy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .academy-grid { grid-template-columns: 1fr; } }

.academy-card {
  background: var(--bg);
  border: 0.5px solid var(--navy-08);
  border-radius: 18px;
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.academy-card:hover {
  transform: translateY(-2px);
  border-color: var(--navy-40);
}
.academy-card--featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.academy-card--featured h3,
.academy-card--featured h4 { color: #fff; }
.academy-card--featured .academy-card__lede,
.academy-card--featured .academy-card__list li,
.academy-card--featured .academy-card__use { color: rgba(255,255,255,0.78); }
.academy-card--featured .academy-card__list li::before { background: #F4A341; }
.academy-card--featured .academy-card__use { border-top-color: rgba(255,255,255,0.12); }
.academy-card--featured .academy-card__sub { color: rgba(255,255,255,0.5); border-bottom-color: rgba(255,255,255,0.12); }
.academy-card--featured .academy-card__num { color: #F4A341; }
.academy-card--featured .academy-card__tag { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.18); background: transparent; }

.academy-card__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0;
  margin-bottom: 16px;
  display: block;
}
.academy-card__tag {
  display: inline-block;
  padding: 4px 10px;
  border: 0.5px solid var(--navy-08);
  background: var(--bg-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy-60);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.academy-card__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--navy);
}
.academy-card__lede {
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy-60);
  margin: 0 0 28px;
}
.academy-card__sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-40);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--navy-08);
}
.academy-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}
.academy-card__list li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.5;
}
.academy-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 1px;
  background: var(--amber);
}
.academy-card__use {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--navy-60);
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--navy-08);
  letter-spacing: -0.01em;
  line-height: 1.45;
}

/* =====================================================================
   Catalog grid
   ===================================================================== */
.catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--navy-08);
  border-left: 1px solid var(--navy-08);
}
@media (max-width: 880px) { .catalog { grid-template-columns: 1fr; border-left: 0; } }

.catalog__item {
  padding: 32px 28px;
  border-right: 1px solid var(--navy-08);
  border-bottom: 1px solid var(--navy-08);
  background: var(--bg);
  transition: background var(--t-fast) var(--ease);
}
.catalog__item:hover { background: rgba(255,255,255,0.5); }
@media (max-width: 880px) { .catalog__item { border-right: 0; } }

.catalog__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.catalog__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 10px;
}
.catalog__desc {
  font-size: 14px;
  color: var(--navy-60);
  margin: 0;
  line-height: 1.55;
}

/* =====================================================================
   Licensing 4-up
   ===================================================================== */
.licensing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--navy-08);
}
@media (max-width: 880px) { .licensing { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .licensing { grid-template-columns: 1fr; } }

.licensing__item {
  padding: 32px 28px;
  border-right: 1px solid var(--navy-08);
  border-bottom: 1px solid var(--navy-08);
}
.licensing__item:last-child { border-right: 0; }
@media (max-width: 880px) {
  .licensing__item:nth-child(2) { border-right: 0; }
  .licensing__item { border-right: 1px solid var(--navy-08); }
}
.licensing__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}
.licensing__item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 12px;
}
.licensing__item p {
  font-size: 14px;
  color: var(--navy-60);
  margin: 0;
  line-height: 1.55;
}

/* =====================================================================
   Quote form
   ===================================================================== */
.quote-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg);
  border: 0.5px solid var(--navy-08);
  border-radius: 18px;
  padding: 40px;
}
@media (max-width: 880px) { .quote-form { padding: 28px; } }

.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 720px) {
  .quote-form__row { grid-template-columns: 1fr; }
}

.quote-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.quote-form__field span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy-60);
  text-transform: uppercase;
}
.quote-form__field input,
.quote-form__field select,
.quote-form__field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  padding: 12px 14px;
  border: 0.5px solid var(--navy-08);
  border-radius: 8px;
  background: var(--bg-soft);
  outline: none;
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}
.quote-form__field input:focus,
.quote-form__field select:focus,
.quote-form__field textarea:focus {
  border-color: var(--amber);
  background: var(--bg);
}
.quote-form__field textarea {
  resize: vertical;
  min-height: 100px;
}
.quote-form button {
  margin-top: 8px;
}
.quote-form__note {
  font-size: 13px;
  color: var(--navy-40);
  margin: 16px 0 0;
}

/* =====================================================================
   Reveal animations (for split-text + section reveals)
   ===================================================================== */
/* Reveal: opacity & lift only when motion is allowed AND we're at scroll-top.
   Fallback: visible. ScrollTrigger replaces is-in for the visible class.
   We only HIDE if html has class .js-reveal-anim (set by motion.js after detecting
   GSAP + ScrollTrigger and not reduced-motion). */
.reveal { opacity: 1; transform: none; }
.js-reveal-anim .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.js-reveal-anim .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__headline .word > span { transform: translateY(0) !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   DARK SECTION + BOX TREATMENT — borrowed from the live site palette
   Used on index.html to add visual weight per Marie's note re: "colors
   and boxes from alexandrias-design-site"
   ===================================================================== */

/* Dark impact strip modifier */
.impact--dark {
  background: #0a1628;
  border-top-color: rgba(255,255,255,0.06);
  border-bottom-color: rgba(255,255,255,0.06);
}
.impact--dark .impact__cell { border-left-color: rgba(255,255,255,0.10); }
.impact--dark .impact__num { color: #c9a84c; }
.impact--dark .impact__label { color: rgba(255,255,255,0.66); }
@media (max-width: 720px) {
  .impact--dark .impact__cell:nth-child(even) { border-left-color: rgba(255,255,255,0.10); }
}

/* Dark performance section — full new block */
.section--dark {
  padding-block: clamp(80px, 10vw, 140px);
  background: #0a1628;
  color: rgba(255,255,255,0.92);
}
.section--dark .h-section { color: #fff; }
.section--dark .lede { color: rgba(255,255,255,0.66); }
.section--dark .eyebrow { color: #c9a84c; }

.perf-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 50px;
}
.perf-row__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 28px;
  transition: all var(--t-fast) var(--ease);
}
.perf-row__card:hover {
  border-color: #c9a84c;
  background: rgba(201,168,76,0.05);
  transform: translateY(-3px);
}
.perf-row__card-client {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  font-weight: 600;
}
.perf-row__card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin: 10px 0 14px;
  color: #fff;
}
.perf-row__card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.66);
}
.perf-row__card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.perf-row__card-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* Boxy audience cards — more visible boxes per Marie's note */
.audience--boxy {
  border-top: 0;
  gap: 18px;
}
.audience--boxy .audience__item {
  background: #fff;
  border: 1px solid var(--navy-08);
  border-radius: 14px;
  padding: 32px;
  transition: all var(--t-fast) var(--ease);
}
.audience--boxy .audience__item:last-child { border-right: 1px solid var(--navy-08); }
.audience--boxy .audience__item:hover {
  border-color: var(--amber);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 58, 95, 0.08);
}
.audience--boxy .audience__num {
  margin-bottom: 24px;
  color: var(--amber);
  font-weight: 600;
}

/* Dark closing — overrides the cream closing variant */
.closing--dark {
  background: #0a1628;
  color: #fff;
}
.closing--dark .closing__head { color: #fff; }
.closing--dark .closing__sub { color: rgba(255,255,255,0.72); }
.closing--dark .btn--primary {
  background: #c9a84c;
  color: #0a1628;
  border: 0;
}
.closing--dark .btn--primary:hover { background: #d6b860; }
.closing--dark .btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}
.closing--dark .btn--ghost:hover {
  background: rgba(255,255,255,0.14);
}
