:root {
  --ink: #11110f;
  --paper: #f4f0e6;
  --paper-2: #e5dfd0;
  --acid: #c9ff3d;
  --orange: #ff6a3d;
  --blue: #2f67ff;
  --green: #1f8a5b;
  --muted: #6f6a5f;
  --line: rgba(17, 17, 15, 0.16);
  --shadow: 0 28px 80px rgba(17, 17, 15, 0.18);
  --display: "Unbounded", "IBM Plex Sans", sans-serif;
  --body: "IBM Plex Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background:
    linear-gradient(rgba(17, 17, 15, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.36;
  background-image: radial-gradient(rgba(17, 17, 15, 0.18) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 230, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--acid);
  font-family: var(--display);
  font-size: 13px;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.header-cta,
.btn {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

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

.header-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.9;
}

/* Section base */
.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
}

.section-heading.center {
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  font-family: var(--display);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  text-wrap: balance;
}

h2 {
  margin: 0 auto 14px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
}

.section-sub.light {
  color: rgba(17, 17, 15, 0.72);
}

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 14px 22px;
  box-shadow: 6px 6px 0 var(--ink);
  font-weight: 800;
  font-size: 15px;
}

.btn.primary {
  background: var(--orange);
  color: var(--ink);
}

.btn.secondary {
  background: var(--paper);
}

/* Hero — full bleed */
.hero {
  width: 100%;
  border-bottom: 2px solid var(--ink);
  background: linear-gradient(180deg, rgba(244,240,230,0) 60%, rgba(244,240,230,1) 100%);
}

.hero-inner {
  display: grid;
  max-width: 1220px;
  min-height: calc(100svh - 70px);
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 48px;
  margin: 0 auto;
  padding: 48px clamp(18px, 4vw, 56px);
}

.hero-copy {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.hero-sub {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats div {
  min-width: 130px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.02em;
}

.hero-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow), 10px 10px 0 var(--ink);
  background: #181814;
  transform: rotate(1.2deg);
}

.hero-visual::after {
  position: absolute;
  inset: auto -20% -32% 12%;
  height: 220px;
  content: "";
  background: var(--blue);
  filter: blur(50px);
  opacity: 0.5;
}

.status-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(244, 240, 230, 0.18);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff564d; }
.dot.yellow { background: #ffce4a; }
.dot.green { background: #47d16c; }

.terminal-title {
  margin-left: 10px;
  color: rgba(244, 240, 230, 0.66);
  font-size: 13px;
}

.screen-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  padding: 18px;
}

.prompt-panel,
.deploy-card,
.metrics-card,
.code-card {
  border: 1px solid rgba(244, 240, 230, 0.2);
  border-radius: 10px;
  background: rgba(244, 240, 230, 0.08);
  color: var(--paper);
}

.prompt-panel {
  grid-row: span 2;
  min-height: 200px;
  padding: 20px;
}

.prompt-panel p {
  margin: 16px 0;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.prompt-panel code {
  color: var(--acid);
  font-size: 13px;
  line-height: 1.6;
}

.panel-label,
.deploy-card span,
.metrics-card span {
  color: rgba(244, 240, 230, 0.62);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.deploy-card,
.metrics-card {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.deploy-card {
  background: var(--acid);
  color: var(--ink);
}

.deploy-card span { color: rgba(17, 17, 15, 0.62); }

.deploy-card strong,
.metrics-card strong {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -0.02em;
}

.deploy-line {
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ink) 76%, transparent 76%);
}

.metrics-card {
  grid-column: 2;
  background: var(--orange);
  color: var(--ink);
}

.metrics-card span,
.metrics-card small {
  color: rgba(17, 17, 15, 0.7);
}

.code-card {
  grid-column: 1 / -1;
  padding: 18px;
}

pre {
  overflow-x: auto;
  margin: 12px 0 0;
  color: var(--acid);
  font-size: 14px;
  line-height: 1.65;
}

/* Ticker */
.ticker {
  overflow: hidden;
  width: 100%;
  padding: 18px 0;
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.ticker-track {
  display: flex;
  width: max-content;
}

.ticker-set {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  padding-right: 10px;
}

.ticker-set span {
  flex: 0 0 auto;
  padding: 8px 18px;
  border: 1px solid rgba(244, 240, 230, 0.28);
  border-radius: 999px;
  font-size: 14px;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(var(--ticker-offset, -50%)); }
}

/* Scroll reveal base */
.section-heading,
.compare-grid,
.audience-grid,
.projects-grid,
.outcome-grid,
.instructor-card,
.timeline,
.format-card,
.faq-list,
.apply-inner {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* Comparison */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.compare-col {
  padding: 32px;
  border: 2px solid var(--ink);
  border-radius: 10px;
}

.compare-col.good {
  background: var(--acid);
  box-shadow: 8px 8px 0 var(--ink);
}

.compare-col.bad {
  background: var(--paper-2);
}

.compare-header {
  margin-bottom: 22px;
}

.compare-header h3 {
  margin: 12px 0 0;
  font-size: 22px;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.badge.muted {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
}

.compare-list {
  margin: 0;
  padding-left: 18px;
}

.compare-list li {
  margin: 10px 0;
  line-height: 1.45;
  font-size: 15px;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.audience-grid article {
  min-height: 220px;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
}

.audience-num {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 16px;
}

.audience-grid h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.audience-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.audience-list {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.audience-list li {
  margin: 6px 0;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 var(--ink);
}

.project-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.project-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Outcomes */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.outcome-item {
  min-height: 220px;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
}

.outcome-num {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 16px;
}

.outcome-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.outcome-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.outcome-banner {
  margin-top: 36px;
  padding: 36px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--acid);
  box-shadow: 8px 8px 0 var(--ink);
  text-align: center;
}

.outcome-banner p {
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Instructor */
.instructor-card {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 40px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
}

.instructor-meta h2 {
  margin: 0 0 14px;
  max-width: none;
}

.instructor-bio {
  color: rgba(244, 240, 230, 0.72);
  font-size: 16px;
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 28px;
}

.instructor-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.instructor-facts div {
  width: calc(25% - 12px);
  padding: 14px 16px;
  border: 1px solid rgba(244, 240, 230, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.instructor-facts strong {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.02em;
}

.instructor-facts span {
  display: block;
  margin-top: 4px;
  color: rgba(244, 240, 230, 0.6);
  font-size: 13px;
}

.portrait {
  overflow: hidden;
  min-height: 300px;
  border: 2px solid rgba(244, 240, 230, 0.28);
  border-radius: 10px;
  background: #25251f;
}

.portrait img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

/* Program */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.timeline article {
  min-height: 220px;
  padding: 20px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.32);
}

.week-tag {
  display: inline-block;
  margin-bottom: 32px;
  padding: 5px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.timeline h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.timeline p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Format */
.format-card {
  padding: clamp(32px, 5vw, 56px);
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--orange);
  box-shadow: 10px 10px 0 var(--ink);
}

.format-card .eyebrow {
  color: var(--ink);
}

.format-header {
  text-align: center;
  margin-bottom: 32px;
}

.format-header h2 {
  margin: 0 auto 10px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.format-grid div {
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(244, 240, 230, 0.42);
  text-align: center;
}

.format-grid strong,
.format-grid span {
  display: block;
}

.format-grid strong {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -0.02em;
}

.format-grid span {
  margin-top: 6px;
  font-weight: 700;
  font-size: 14px;
}

.format-note {
  text-align: center;
}

.format-note p {
  max-width: 560px;
  margin: 0 auto 20px;
  color: rgba(17, 17, 15, 0.72);
  font-size: 16px;
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-list details {
  padding: 20px 22px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.faq-list details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* Apply */
.apply {
  width: 100%;
  padding: 92px clamp(18px, 4vw, 56px);
  border-block: 2px solid var(--ink);
}

.apply-inner {
  display: grid;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.apply-copy h2 {
  margin: 0 0 14px;
  max-width: none;
}

.apply-sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.apply-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.apply-facts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.45);
}

.apply-facts strong,
.apply-facts span {
  display: block;
}

.apply-facts strong {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.02em;
}

.apply-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 12px 12px 0 var(--acid);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid rgba(244, 240, 230, 0.28);
  border-radius: 8px;
  padding: 14px;
  background: rgba(244, 240, 230, 0.08);
  color: var(--paper);
  font: inherit;
  font-size: 15px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(244, 240, 230, 0.46);
}

select {
  color-scheme: dark;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--acid);
  outline: none;
}

.form-button {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
  font: inherit;
}

.policy {
  margin: 0;
  color: rgba(244, 240, 230, 0.56);
  font-size: 13px;
  line-height: 1.45;
}

/* Pricing */
.pricing-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 10px 10px 0 var(--ink);
}

.pricing-header {
  text-align: center;
  margin-bottom: 28px;
}

.pricing-header .badge {
  margin-bottom: 16px;
  background: var(--orange);
}

.price-main {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.pricing-split {
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--acid);
  box-shadow: 6px 6px 0 var(--ink);
  margin-bottom: 28px;
}

.split-title {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.split-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}

.split-part {
  text-align: center;
}

.split-part strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.split-part span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(17, 17, 15, 0.72);
}

.split-plus {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--muted);
}

.split-note {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(17, 17, 15, 0.7);
  line-height: 1.4;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features .feature {
  padding: 18px 14px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.pricing-features .feature strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.pricing-features .feature span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}

.pricing-cta {
  text-align: center;
}

.pricing-cta .btn {
  min-height: 60px;
  padding: 16px 28px;
  font-size: 16px;
}

.guarantee {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--muted);
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.footer span:first-child {
  font-family: var(--display);
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .compare-grid,
  .instructor-card,
  .apply-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-visual {
    min-height: 440px;
    transform: none;
  }

  .audience-grid,
  .outcome-grid,
  .format-grid,
  .pricing-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instructor-card {
    gap: 28px;
  }

  .portrait {
    min-height: 220px;
    order: -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 64px 0;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .hero-sub,
  .section-sub,
  .instructor-bio,
  .apply-sub {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .hero-visual {
    min-height: auto;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .screen-grid {
    grid-template-columns: 1fr;
  }

  .metrics-card,
  .code-card {
    grid-column: auto;
  }

  .prompt-panel p {
    font-size: 20px;
  }

  .apply-inner {
    gap: 36px;
  }

  .hero-stats div,
  .apply-facts div {
    flex: 1 1 calc(50% - 8px);
  }

  .apply-facts {
    grid-template-columns: 1fr;
  }

  .instructor-facts div {
    width: calc(50% - 8px);
  }

  .instructor-facts strong {
    font-size: 20px;
  }

  .split-row {
    flex-direction: column;
    gap: 10px;
  }

  .footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    place-items: center;
    justify-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer > * {
    max-width: 100%;
  }

  .compare-grid,
  .audience-grid,
  .outcome-grid,
  .format-grid,
  .projects-grid,
  .timeline,
  .pricing-features {
    grid-template-columns: 1fr;
  }

  .audience-grid article,
  .outcome-item,
  .timeline article,
  .project-card {
    min-height: auto;
  }

  .instructor-card,
  .lead-form,
  .pricing-card {
    padding: 22px;
  }

  .outcome-banner p {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
