/* ==========================================================================
   LearnWithAICE — "Kinetica" dark theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0A0A0D;
  --bg-raise: #121216;
  --surface: #17171C;
  --surface-2: #1E1E25;
  --ink: #F5F5F2;
  --ink-soft: #B7B8C2;
  --ink-faint: #7B7C87;
  --line: #2A2A32;
  --lime: #D7FF3E;
  --lime-deep: #B8E016;
  --lime-tint: rgba(215, 255, 62, 0.12);
  --violet: #8B7CFF;
  --white: #FFFFFF;
  --green-check: #6FE39B;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(.22, .9, .32, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.06;
  margin: 0;
  color: var(--white);
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width:720px) {
  .wrap {
    padding: 0 20px;
  }
}

/* -------------------------------------------------- eyebrow / kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
  background: var(--lime-tint);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .14em;
  border: 1px solid rgba(215, 255, 62, .25);
}

.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px 2px rgba(215, 255, 62, .7);
}

/* -------------------------------------------------- header / nav */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 13, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .02em;
  color: var(--white);
  text-transform: uppercase;
}
img.logo{
  width: 250px;
}

.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0D;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 0 22px -4px rgba(215, 255, 62, .8);
}

nav.links {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav.links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color .25s var(--ease);
}

nav.links a:hover {
  color: var(--white);
}

nav.links a.active {
  color: var(--white);
}

nav.links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.btn-primary {
  background: var(--lime);
  color: #0A0A0D;
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(215, 255, 62, .45);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

@media (max-width:900px) {
  nav.links {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--white);
  }
}

/* -------------------------------------------------- marquee */
.marquee-strip {
  background: var(--bg-raise);
  color: var(--white);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.marquee-track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  padding: 0 26px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.marquee-track span::after {
  content: "//";
  margin-left: 26px;
  color: var(--lime);
  font-weight: 700;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* -------------------------------------------------- hero */
.hero {
  padding: 96px 0 76px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 66px);
  text-transform: uppercase;
}

.hero h1 em {
  font-style: normal;
  color: var(--lime);
}

.hero .lede {
  margin-top: 24px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 54px;
  flex-wrap: wrap;
}

.hero-stats .stat b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  color: var(--white);
}

.hero-stats .stat span {
  font-size: 12px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-art {
  position: relative;
  border-radius: var(--radius-l);
  background: linear-gradient(155deg, var(--surface), var(--bg-raise));
  border: 1px solid var(--line);
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-art .glow {
  position: absolute;
  inset: -40% -40% auto auto;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(215, 255, 62, .35), transparent 70%);
  filter: blur(10px);
}

.hero-art .card-float {
  position: absolute;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 16px 18px;
  color: #fff;
  animation: float 6s ease-in-out infinite;
}

.hero-art .card-float.c1 {
  top: 14%;
  left: 8%;
  animation-delay: 0s;
}

.hero-art .card-float.c2 {
  bottom: 16%;
  right: 8%;
  animation-delay: 1.4s;
}

.hero-art .card-float.c3 {
  top: 44%;
  left: 38%;
  animation-delay: 2.8s;
}

.hero-art .card-float b {
  display: block;
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.hero-art .card-float span {
  font-size: 12px;
  color: #B7B8C2;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* -------------------------------------------------- section basics */
section {
  padding: 92px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
}

.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

.band-navy {
  background: var(--bg-raise);
  color: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-navy h2,
.band-navy h3 {
  color: #fff;
}

.band-navy p {
  color: var(--ink-soft);
}

.band-navy .section-head p {
  color: var(--ink-soft);
}

.section-soft {
  background: var(--bg-raise);
}

/* -------------------------------------------------- fade-up reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* -------------------------------------------------- program cards */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width:760px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
}

.program-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--lime);
}

.program-card .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--lime);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.program-card h3 {
  font-size: 22px;
  margin-top: 12px;
  text-transform: uppercase;
}

.program-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}

.program-card .meta {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.program-card .meta span {
  font-size: 11.5px;
  color: var(--ink-faint);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.program-card .meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.program-card .go {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: gap .3s var(--ease), color .3s var(--ease);
}

.program-card:hover .go {
  gap: 11px;
  color: var(--lime);
}

/* -------------------------------------------------- process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width:820px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  padding: 32px 26px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--lime);
}

.step .step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.step h3 {
  font-size: 19px;
  text-transform: uppercase;
}

.step p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* -------------------------------------------------- counters */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width:760px) {
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
}

.stat-card b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  display: block;
  color: var(--lime);
}

.stat-card span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* -------------------------------------------------- pill list */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--lime-tint);
  color: var(--lime);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 1px solid rgba(215, 255, 62, .25);
}

/* -------------------------------------------------- accordion (weeks) */
.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--surface);
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  transition: background .25s var(--ease);
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary:hover {
  background: var(--surface-2);
}

.accordion-item summary .tag {
  flex: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  color: var(--lime);
  background: var(--lime-tint);
  padding: 4px 10px;
  border-radius: 999px;
  margin-right: auto;
  margin-left: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 1px solid rgba(215, 255, 62, .25);
}

.accordion-item summary .plus {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink-soft);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.accordion-item[open] summary .plus {
  transform: rotate(45deg);
  background: var(--lime);
  color: #0A0A0D;
  border-color: var(--lime);
}

.accordion-body {
  padding: 0 24px 24px;
}

.class-block {
  padding: 14px 0;
  border-top: 1px dashed var(--line);
}

.class-block:first-child {
  border-top: none;
  padding-top: 4px;
}

.class-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.class-block ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 5px;
}

.class-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.assignment-note {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--bg-raise);
  border-left: 3px solid var(--lime);
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

/* -------------------------------------------------- tabs */
.tabbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tabbar button {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: all .3s var(--ease);
}

.tabbar button.active {
  background: var(--lime);
  color: #0A0A0D;
  border-color: var(--lime);
}

.tabbar button:hover:not(.active) {
  border-color: var(--lime);
  color: var(--lime);
}

.level-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  margin-bottom: 34px;
}

.level-toggle button {
  padding: 9px 20px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: all .3s var(--ease);
}

.level-toggle button.active {
  background: var(--lime);
  color: #0A0A0D;
  box-shadow: 0 8px 20px -8px rgba(215, 255, 62, .6);
}

.course-panel {
  display: none;
}

.course-panel.active {
  display: block;
}

.level-panel {
  display: none;
}

.level-panel.active {
  display: block;
}

/* -------------------------------------------------- course intro block */
.course-intro {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  margin-bottom: 40px;
}

@media (max-width:820px) {
  .course-intro {
    grid-template-columns: 1fr;
  }
}

.course-intro h3 {
  font-size: 25px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.course-intro p {
  color: var(--ink-soft);
  font-size: 15px;
}

.course-facts {
  display: grid;
  gap: 14px;
  align-content: start;
}

.course-facts .fact {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-raise);
  border-radius: 10px;
  font-size: 13px;
  border: 1px solid var(--line);
}

.course-facts .fact b {
  color: var(--white);
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: .04em;
}

.course-facts .fact span {
  color: var(--ink-soft);
  font-weight: 600;
}

/* -------------------------------------------------- portfolio grid */
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width:820px) {
  .req-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .req-grid {
    grid-template-columns: 1fr;
  }
}

.req-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px;
  text-align: left;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.req-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--lime);
}

.req-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--lime-tint);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
  border: 1px solid rgba(215, 255, 62, .25);
}

.req-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
}

.req-card p {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* -------------------------------------------------- assessment table */
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 16px 22px;
  font-size: 14.5px;
}

thead th {
  background: var(--bg-raise);
  color: var(--lime);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

tbody tr {
  border-top: 1px solid var(--line);
  transition: background .25s var(--ease);
  color: var(--ink-soft);
}

tbody tr:hover {
  background: var(--bg-raise);
}

td.weight {
  font-weight: 700;
  color: var(--lime);
}

/* -------------------------------------------------- timeline (standard class format) */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: tl;
}

@media (max-width:980px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

.tl-item {
  position: relative;
  padding: 26px 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.tl-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--lime);
}

.tl-item .tmin {
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  background: var(--lime-tint);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: 1px solid rgba(215, 255, 62, .25);
}

.tl-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15.5px;
  color: var(--white);
  text-transform: uppercase;
}

.tl-item p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* -------------------------------------------------- FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .plus {
  flex: none;
  font-size: 20px;
  color: var(--lime);
  transition: transform .3s var(--ease);
}

.faq-item[open] summary .plus {
  transform: rotate(45deg);
}

.faq-item .a {
  padding: 0 4px 22px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 70ch;
}

/* -------------------------------------------------- CTA band */
.cta-band {
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, var(--surface), var(--bg-raise));
  border: 1px solid var(--line);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -40%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(215, 255, 62, .25), transparent 70%);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 3.6vw, 38px);
  max-width: 480px;
  text-transform: uppercase;
}

.cta-band p {
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 44ch;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* -------------------------------------------------- footer */
footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  background: var(--bg-raise);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

@media (max-width:820px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-grid h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color .25s var(--ease);
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* -------------------------------------------------- page hero (inner pages) */
.page-hero {
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--line);
}

.page-hero .crumb {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  text-transform: uppercase;
}

.page-hero p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 60ch;
}

/* -------------------------------------------------- photography */
.media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(.15) contrast(1.05);
  transition: transform .7s var(--ease);
}

.media:hover img {
  transform: scale(1.05);
}

.media .media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  background: linear-gradient(0deg, rgba(10, 10, 13, .92), transparent 75%);
  color: #fff;
}

.media .media-caption b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  display: block;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.media .media-caption span {
  font-size: 12px;
  color: var(--ink-soft);
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: grayscale(.2) contrast(1.05);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(10, 10, 13, .25), rgba(10, 10, 13, .88) 90%);
}

.hero-photo .card-float {
  z-index: 2;
}

.hero-photo .glow {
  z-index: 1;
  mix-blend-mode: screen;
}

.card-media {
  border-radius: var(--radius-m) var(--radius-m) 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
  margin: -30px -30px 20px;
  position: relative;
}

.card-media::after {
  content: "MAKE IT REAL";
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--lime);
  color: #0A0A0D;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .08em;
  padding: 5px 10px;
  border-radius: 6px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  filter: grayscale(.15) contrast(1.05);
}

.program-card:hover .card-media img {
  transform: scale(1.06);
}

.course-media {
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
}

.course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.15) contrast(1.05);
}

.strip-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width:760px) {
  .strip-media {
    grid-template-columns: 1fr;
  }
}

.strip-media .media {
  aspect-ratio: 4/3;
}

.photo-credit {
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 8px;
  text-align: right;
}

/* -------------------------------------------------- misc */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width:820px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--lime-tint);
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 255, 62, .25);
}

/* -------------------------------------------------- kinetica extras: tool strip + path steps + testimonials */
.tool-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.tool-chip {
  padding: 14px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.tool-chip:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-3px);
}

.path-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

.path-step {
  flex: 1 1 180px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px 20px;
  margin: 6px;
  position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.path-step:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
}

.path-step .arrow {
  display: none;
}

.path-step b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .04em;
  display: block;
  margin-bottom: 8px;
}

.path-step span {
  font-size: 13px;
  color: var(--ink-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width:820px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
}

.testimonial-card p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}

.testimonial-card .who {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-faint);
}

.testimonial-card .who b {
  color: var(--white);
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .02em;
}