:root {
  --brand-900: #0f1235;
  --brand-800: #1a1e4a;
  --brand-700: #2a2f74;
  --brand-600: #3c40ff;
  --brand-500: #5c60ff;
  --brand-100: #e8e9ff;
  --brand-50: #f0f1ff;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #fffffe;
  --emerald: #10b981;
  --font: "Inter", "Noto Sans SC", "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-glass: 0 4px 30px rgba(15, 23, 42, .05);
  --shadow-card: 0 0 0 1px rgba(15, 23, 42, .05), 0 4px 6px -1px rgba(15, 23, 42, .05), 0 2px 4px -2px rgba(15, 23, 42, .05);
  --shadow-card-hover: 0 0 0 1px rgba(15, 23, 42, .1), 0 20px 25px -5px rgba(15, 23, 42, .1), 0 8px 10px -6px rgba(15, 23, 42, .1);
  --shadow-glow: 0 0 40px -10px rgba(60, 64, 255, .3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--slate-800);
  background: var(--white);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -120px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--brand-900);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 254, .7);
  border-bottom: 1px solid rgba(226, 232, 240, .5);
  backdrop-filter: blur(20px);
  transition: box-shadow .3s ease, background .3s ease;
}

.nav-shell.is-scrolled {
  background: rgba(255, 255, 254, .84);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .04), 0 8px 22px -18px rgba(15, 23, 42, .3);
}

.nav-container {
  width: min(1280px, calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-900);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.logo-link img,
.footer-logo img {
  filter: drop-shadow(0 2px 4px rgba(15, 23, 42, .08));
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 22px;
}

.nav-links a,
.nav-text {
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-text:hover {
  color: var(--brand-900);
}

.nav-actions {
  gap: 12px;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--white);
  background: var(--brand-900);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 650;
  transition: background .2s ease, box-shadow .2s ease;
}

.nav-button:hover {
  background: var(--slate-800);
  box-shadow: 0 8px 18px -16px rgba(15, 23, 42, .5);
}

.mobile-menu {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--slate-500);
}

.mobile-menu svg {
  width: 22px;
  height: 22px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 80px;
  background: rgba(240, 241, 255, .5);
}

.mesh-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(at 40% 20%, rgba(92, 96, 255, .15) 0, transparent 50%),
    radial-gradient(at 80% 0%, rgba(60, 64, 255, .15) 0, transparent 50%),
    radial-gradient(at 0% 50%, rgba(92, 96, 255, .1) 0, transparent 50%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: .4;
  pointer-events: none;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(15, 18, 53, .03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 18, 53, .03) 1px, transparent 1px);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-layout {
  position: relative;
  min-height: 650px;
}

.hero-copy-column {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 0;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-bottom: 32px;
  padding: 6px 12px;
  color: var(--slate-600);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
  font-size: 12px;
  font-weight: 600;
}

.status-badge a {
  margin-left: 4px;
  color: var(--brand-600);
}

.ping-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
}

.ping-dot::before,
.ping-dot i {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #22c55e;
}

.ping-dot::before {
  content: "";
  animation: ping 1.5s cubic-bezier(0, 0, .2, 1) infinite;
  opacity: .75;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--brand-900);
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.hero h1 span,
.hero h1 small,
.hero h1 b {
  display: block;
}

.hero h1 small {
  margin-top: 6px;
  color: var(--slate-400);
  font-size: .82em;
  font-weight: 500;
  letter-spacing: -.045em;
}

.hero h1 b {
  color: var(--brand-600);
}

.hero-copy {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--slate-500);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  text-wrap: balance;
}

.hero-copy strong {
  color: var(--brand-900);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  color: var(--white);
  background: var(--brand-900);
  box-shadow: 0 8px 18px -16px rgba(15, 23, 42, .55);
}

.button-dark:hover {
  background: var(--slate-800);
}

.button-light {
  color: var(--slate-700);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
}

.button-light:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
}

.hero-portrait {
  position: absolute;
  right: -34px;
  bottom: -80px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(30vw, 390px);
  pointer-events: none;
}

.portrait-halo {
  position: absolute;
  right: -4%;
  bottom: 42px;
  width: min(30vw, 390px);
  height: min(30vw, 390px);
  background:
    radial-gradient(circle, rgba(255, 255, 255, .92) 0 34%, rgba(232, 233, 255, .8) 35% 54%, transparent 72%),
    radial-gradient(circle, rgba(92, 96, 255, .18), transparent 62%);
  border-radius: 50%;
  filter: blur(2px);
}

.hero-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 46px rgba(15, 18, 53, .18));
}

.metric-panel {
  position: relative;
  z-index: 2;
  max-width: 896px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: var(--shadow-glass);
}

.metric-panel div {
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--slate-100);
}

.metric-panel div:last-child {
  border-right: 0;
}

.metric-panel strong {
  display: block;
  color: var(--brand-900);
  font-size: 30px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.04em;
}

.metric-panel span {
  display: block;
  margin-top: 8px;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 750;
}

.metric-panel small {
  display: block;
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: 96px 0;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--brand-600);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--brand-900);
  font-size: clamp(30px, 4vw, 36px);
  line-height: 1.16;
  font-weight: 850;
  letter-spacing: -.035em;
}

.section-lede {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--slate-500);
  font-size: 16px;
}

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

.opportunity-grid {
  margin-bottom: 22px;
}

.opportunity-grid .bento-card {
  min-height: 210px;
}

.bento-card {
  min-height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  color: var(--slate-500);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  transition: border-color .2s ease;
}

.bento-card:hover {
  border-color: var(--slate-300);
}

.icon-box {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--slate-500);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  transition: transform .3s ease;
}

.bento-card:hover .icon-box {
  transform: scale(1.05);
}

.icon-box svg,
.solution-tag svg,
.social-row svg,
.book-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bento-card h3 {
  margin: 0 0 8px;
  color: var(--brand-900);
  font-size: 18px;
  font-weight: 850;
}

.bento-card p {
  margin: 0;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.75;
}

.bento-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 254, .22), transparent 36%),
    linear-gradient(135deg, #3c40ff 0%, #2f5bff 54%, #1d4ed8 100%);
  border-color: rgba(92, 96, 255, .55);
}

.bento-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 254, .18), transparent);
  opacity: 0;
  transition: opacity .2s ease;
}

.bento-dark:hover::before {
  opacity: 1;
}

.bento-dark > * {
  position: relative;
  z-index: 1;
}

.bento-dark h3 {
  color: var(--white);
  font-size: 20px;
}

.bento-dark p {
  color: rgba(255, 255, 254, .84);
}

.solution-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 5px 10px;
  color: #2f42ff;
  background: rgba(255, 255, 254, .94);
  border: 1px solid rgba(255, 255, 254, .42);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 750;
}

.solution-tag svg {
  width: 14px;
  height: 14px;
}

.bento-dark a {
  display: inline-flex;
  gap: 5px;
  margin-top: 24px;
  color: rgba(255, 255, 254, .94);
  font-size: 14px;
  font-weight: 650;
}

.lesson-core-section {
  background:
    linear-gradient(180deg, var(--slate-50), var(--white));
  border-top: 1px solid var(--slate-100);
}

.lesson-deck {
  position: relative;
}

.lesson-stage {
  position: relative;
}

.deck-slide {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  aspect-ratio: 16 / 9;
  padding: clamp(48px, 6vw, 72px);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-top: 4px solid var(--brand-600);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, .05);
}

.lesson-stage .deck-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(.99);
  transition: opacity .45s ease, transform .45s ease;
}

.lesson-stage .deck-slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.slide-logo {
  position: absolute;
  top: 42px;
  right: 44px;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.slide-number {
  display: block;
  color: rgba(15, 23, 42, .045);
  font-size: clamp(76px, 10vw, 128px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.06em;
}

.deck-title-slide,
.deck-step-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deck-title-slide h3,
.deck-step-slide h3 {
  max-width: 820px;
  margin: -6px 0 0;
  color: var(--slate-900);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.045em;
}

.deck-step-slide h3 span,
.deck-workflow-slide h3 span,
.deck-summary-slide h3 span {
  color: var(--brand-600);
}

.deck-title-slide p,
.deck-step-slide p {
  max-width: 880px;
  margin: 38px 0 0;
  color: var(--brand-600);
  font-size: clamp(19px, 2.3vw, 28px);
  font-weight: 750;
}

.deck-step-slide p {
  color: var(--slate-400);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
}

.deck-workflow-slide h3,
.deck-summary-slide h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.035em;
}

.slide-rule {
  height: 1px;
  margin: 26px 0 60px;
  background: var(--slate-200);
}

.workflow-cards {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: center;
  gap: 18px;
}

.workflow-cards > div {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 30px;
  border: 2px solid var(--brand-600);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(83, 56, 255, .08);
}

.workflow-cards b {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--brand-600);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.workflow-cards h4 {
  margin: 0;
  color: var(--slate-900);
  font-size: 26px;
  font-weight: 900;
}

.workflow-cards small {
  margin-top: 14px;
  color: var(--slate-600);
  font-size: 15px;
  font-weight: 800;
}

.workflow-cards p {
  min-height: 90px;
  margin: 28px 0 0;
  color: var(--slate-400);
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}

.workflow-cards strong {
  width: 100%;
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand-600);
  border-top: 1px dashed var(--slate-200);
  font-size: 15px;
  font-weight: 900;
}

.workflow-cards i {
  position: relative;
  height: 4px;
  background: var(--slate-200);
}

.workflow-cards i::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--brand-600);
  border-right: 4px solid var(--brand-600);
  transform: translateY(-50%) rotate(45deg);
}

.deck-summary-slide {
  min-height: 560px;
}

.deck-summary-slide .slide-rule {
  margin-bottom: 250px;
}

.timeline-line {
  position: absolute;
  left: 72px;
  right: 72px;
  top: 56%;
  height: 2px;
  background: var(--slate-200);
}

.timeline-point {
  position: absolute;
  width: 250px;
}

.timeline-point::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid var(--brand-600);
  background: var(--white);
}

.timeline-point b {
  display: block;
  color: var(--slate-900);
  font-size: 22px;
  font-weight: 900;
}

.timeline-point p {
  margin: 12px 0 0;
  color: var(--slate-400);
  font-size: 16px;
  line-height: 1.7;
}

.timeline-point.one {
  left: 72px;
  top: 60%;
}

.timeline-point.two {
  left: 32%;
  top: 39%;
}

.timeline-point.three {
  left: 55%;
  top: 60%;
}

.timeline-point.four {
  right: 72px;
  top: 39%;
}

.timeline-point.one::before,
.timeline-point.three::before {
  left: 0;
  top: -42px;
}

.timeline-point.two::before,
.timeline-point.four::before {
  left: 0;
  bottom: -48px;
}

.lesson-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.lesson-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--brand-900);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .06);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.lesson-arrow:hover {
  color: var(--brand-600);
  border-color: var(--brand-100);
  transform: translateY(-1px);
}

.lesson-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lesson-dot {
  width: 28px;
  height: 8px;
  padding: 0;
  background: var(--slate-200);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.lesson-dot.is-active {
  width: 48px;
  background: var(--brand-600);
}

.lesson-count {
  min-width: 58px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.delivery-section {
  background: linear-gradient(180deg, var(--white), var(--slate-50));
  border-top: 1px solid var(--slate-100);
}

.process-board {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 50% 22%, rgba(92, 96, 255, .16), transparent 34%),
    linear-gradient(180deg, rgba(240, 241, 255, .72), rgba(255, 255, 254, .98));
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.process-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-size: 32px 32px;
  background-image:
    linear-gradient(to right, rgba(60, 64, 255, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(60, 64, 255, .05) 1px, transparent 1px);
}

.process-board > * {
  position: relative;
  z-index: 1;
}

.process-lane {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1.08fr) 56px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.process-node {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: rgba(255, 255, 254, .84);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  box-shadow: 0 18px 46px -40px rgba(15, 18, 53, .45);
  backdrop-filter: blur(10px);
}

.process-node.active {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 254, .24), transparent 34%),
    linear-gradient(135deg, #3c40ff 0%, #2f5bff 55%, #1d4ed8 100%);
  border-color: rgba(92, 96, 255, .62);
  box-shadow: 0 26px 58px -28px rgba(47, 91, 255, .78);
}

.process-node-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.process-node-head span {
  color: var(--brand-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.process-node.active .process-node-head span {
  color: rgba(255, 255, 254, .82);
}

.process-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--brand-600);
  background: var(--white);
  border: 1px solid var(--brand-100);
  border-radius: 18px;
  font-size: 22px;
  font-weight: 900;
}

.process-node.active .process-icon {
  color: #2f42ff;
  background: rgba(255, 255, 254, .96);
  border-color: rgba(255, 255, 254, .42);
}

.process-node h3 {
  margin: 0;
  color: var(--brand-900);
  font-size: 28px;
  font-weight: 900;
}

.process-node.active h3 {
  color: var(--white);
}

.process-node p {
  margin: 12px 0 22px;
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.process-node.active p {
  color: rgba(255, 255, 254, .84);
}

.process-node strong {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  padding: 9px 12px;
  color: var(--brand-900);
  background: var(--brand-50);
  border-radius: 999px;
  font-size: 13px;
}

.process-node.active strong {
  color: #2f42ff;
  background: rgba(255, 255, 254, .94);
}

.process-output {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.process-output li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 800;
}

.process-node.active .process-output li {
  color: rgba(255, 255, 254, .9);
}

.process-output li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--brand-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(92, 96, 255, .12);
}

.process-arrow {
  position: relative;
  height: 2px;
  background: var(--brand-500);
  box-shadow: 0 0 18px rgba(92, 96, 255, .48);
}

.process-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--brand-600);
  border-right: 2px solid var(--brand-600);
  transform: translateY(-50%) rotate(45deg);
}

.process-tool-panel {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  background: rgba(255, 255, 254, .74);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
}

.process-panel-kicker {
  color: var(--brand-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
}

.process-tool-panel h3 {
  margin: 8px 0 0;
  color: var(--brand-900);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -.03em;
}

.tool-chain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tool-chain div,
.acceptance-strip span {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--brand-100);
  border-radius: 14px;
  text-align: center;
}

.tool-chain b,
.tool-chain span {
  display: block;
}

.tool-chain b {
  color: var(--brand-900);
  font-size: 14px;
  font-weight: 900;
}

.tool-chain span {
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 800;
}

.tool-chain small {
  display: block;
  margin-top: 6px;
  color: var(--slate-400);
  font-size: 11px;
  font-weight: 700;
}

.acceptance-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.acceptance-strip span {
  color: var(--brand-900);
  background: rgba(255, 255, 254, .9);
  border-color: var(--slate-200);
  font-size: 13px;
  font-weight: 800;
}

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

.delivery-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.featured-delivery {
  color: var(--white);
  background: var(--brand-900);
  border-color: var(--brand-700);
  box-shadow: var(--shadow-glow);
}

.delivery-step {
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 10px;
  color: var(--brand-600);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
}

.featured-delivery .delivery-step {
  color: var(--white);
  background: var(--brand-700);
  border-color: rgba(255, 255, 255, .14);
}

.delivery-card h3 {
  margin: 0;
  color: var(--brand-900);
  font-size: 24px;
  font-weight: 850;
}

.featured-delivery h3 {
  color: var(--white);
}

.delivery-card p {
  margin: 12px 0 0;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.75;
}

.featured-delivery p {
  color: var(--slate-300);
}

.delivery-card ul,
.day-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.delivery-card li {
  position: relative;
  margin: 12px 0;
  padding-left: 24px;
  color: var(--slate-700);
  font-size: 14px;
  line-height: 1.65;
}

.delivery-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--brand-600);
  border-radius: 50%;
}

.day-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  padding-left: 0;
  color: var(--slate-200);
}

.day-list b {
  color: #c4c7ff;
  font-size: 13px;
}

.day-list span {
  min-width: 0;
}

.delivery-output {
  margin-top: auto;
  padding: 14px;
  color: var(--brand-900);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.featured-delivery .delivery-output {
  color: var(--white);
  background: var(--brand-800);
  border-color: var(--brand-700);
}

.cases-section {
  overflow: hidden;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-link {
  display: inline-flex;
  color: var(--brand-600);
  font-size: 14px;
  font-weight: 650;
}

.case-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.case-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}

.case-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.case-shot {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, .74), rgba(238, 242, 255, .5));
  border-bottom: 1px solid var(--slate-100);
}

.case-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform .45s ease, filter .45s ease;
}

.case-card:hover .case-shot img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.mock-frame {
  padding: 16px;
  background: rgba(248, 250, 252, .55);
  border-bottom: 1px solid var(--slate-100);
}

.browser-bar {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate-200);
}

.browser-bar em {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 16px;
  margin-left: auto;
  margin-right: auto;
  color: var(--slate-400);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  font-size: 8px;
  font-style: normal;
}

.mock-screen {
  min-height: 154px;
  overflow: hidden;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
  transition: transform .5s ease;
}

.case-card:hover .mock-screen {
  transform: translateY(-4px);
}

.mock-frame.orange .mock-screen {
  background: rgba(255, 247, 237, .55);
}

.mock-frame.blue .mock-screen {
  background: rgba(239, 246, 255, .5);
}

.mock-frame.green .mock-screen {
  background: rgba(236, 253, 245, .5);
}

.mock-screen i,
.mock-screen b,
.mock-screen strong,
.mock-screen span {
  display: block;
  border-radius: 4px;
}

.handmade i {
  width: 34%;
  height: 12px;
  margin-bottom: 12px;
  background: rgba(251, 146, 60, .35);
}

.handmade b {
  height: 8px;
  margin-bottom: 6px;
  background: var(--slate-100);
}

.handmade b:nth-of-type(2) {
  width: 80%;
}

.handmade div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 28px;
}

.handmade span {
  height: 48px;
  background: var(--white);
  border: 1px solid rgba(251, 146, 60, .22);
}

.portfolio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.portfolio i {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(191, 219, 254, .85);
}

.portfolio b {
  height: 10px;
  background: var(--slate-200);
}

.portfolio b:nth-of-type(1) {
  width: 50%;
  margin-bottom: 8px;
}

.portfolio b:nth-of-type(2) {
  width: 75%;
  height: 6px;
  margin-bottom: 16px;
  background: var(--slate-100);
}

.portfolio strong {
  width: 100%;
  height: 24px;
  border: 1px solid rgba(60, 64, 255, .18);
  background: rgba(60, 64, 255, .08);
}

.course div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}

.course b {
  width: 34%;
  height: 12px;
  background: rgba(110, 231, 183, .5);
}

.course i {
  width: 24px;
  height: 12px;
  background: var(--slate-200);
}

.course strong {
  height: 24px;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--slate-200);
}

.course strong:nth-of-type(2) {
  background: var(--brand-900);
}

.case-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.tag-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tag-row span,
.plan-label {
  display: inline-flex;
  padding: 3px 8px;
  color: var(--slate-600);
  background: var(--slate-100);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-body h3 {
  margin: 0;
  color: var(--brand-900);
  font-size: 17px;
  font-weight: 850;
}

.case-body p {
  margin: 0 0 24px;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.65;
}

.case-body .case-domain {
  margin: 7px 0 18px;
  color: var(--brand-600);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.case-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 0 24px;
}

.case-proof b,
.case-proof span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  color: var(--brand-900);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.case-proof span {
  color: var(--slate-600);
  font-weight: 750;
}

.case-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}

.case-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #059669;
  font-size: 12px;
  font-weight: 650;
}

.case-footer span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

.case-footer a {
  color: var(--brand-600);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.mobile-only-link {
  display: none;
  margin-top: 40px;
  text-align: center;
}

.pricing-section {
  background: var(--white);
}

.center-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.center-head .section-title,
.center-head .section-lede {
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 408px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .06);
}

.price-card.featured {
  min-height: 456px;
  color: var(--white);
  background: var(--brand-900);
  border-color: var(--brand-700);
  box-shadow: var(--shadow-glow);
  transform: translateY(-16px);
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  color: var(--white);
  background: var(--brand-600);
  border: 1px solid rgba(92, 96, 255, .5);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.featured .plan-label {
  color: #c4c7ff;
  background: var(--brand-800);
  border: 1px solid var(--brand-700);
}

.price-card h3 {
  margin: 20px 0 0;
  color: var(--brand-900);
  font-size: 21px;
  font-weight: 850;
}

.featured h3 {
  color: var(--white);
}

.price {
  margin-top: 16px;
  color: var(--brand-900);
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.featured .price {
  color: var(--white);
}

.price small {
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.featured .price small {
  color: var(--slate-400);
}

.price-card p {
  margin: 18px 0 0;
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
}

.featured p {
  color: var(--slate-300);
}

.plan-visual,
.week-map {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.plan-visual {
  grid-template-columns: repeat(3, 1fr);
}

.plan-visual span,
.week-map span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 8px;
  color: var(--brand-900);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.week-map {
  grid-template-columns: repeat(7, 1fr);
}

.featured .week-map span {
  color: var(--white);
  background: var(--brand-800);
  border-color: var(--brand-700);
}

.price-card ul {
  flex: 1;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  margin: 12px 0;
  padding-left: 26px;
  color: var(--slate-700);
  font-size: 14px;
}

.featured li {
  color: var(--slate-200);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-100);
  box-shadow: inset 0 0 0 5px var(--brand-600);
}

.featured li::before {
  background: var(--brand-800);
  box-shadow: inset 0 0 0 5px var(--brand-500);
}

.plan-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  margin-top: 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
}

.plan-button.light {
  color: var(--slate-700);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}

.plan-button.brand {
  color: var(--white);
  background: var(--brand-600);
}

.plan-button.outline {
  color: var(--slate-700);
  border: 1px solid var(--slate-300);
}

.fit-section {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}

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

.fit-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.fit-panel h3 {
  margin: 0;
  color: var(--brand-900);
  font-size: 22px;
  font-weight: 850;
}

.fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.fit-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: #047857;
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.fit-tags.muted span {
  color: #9a3412;
  background: rgba(249, 115, 22, .1);
  border-color: rgba(249, 115, 22, .18);
}

.fit-panel ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fit-panel li {
  position: relative;
  margin: 14px 0;
  padding-left: 26px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.7;
}

.fit-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.fit-good li::before {
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
}

.fit-warn li::before {
  background: #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .12);
}

.faq-section {
  background: var(--white);
  border-top: 1px solid var(--slate-100);
}

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

.faq-item {
  padding: 24px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
}

.faq-item h3 {
  margin: 0;
  color: var(--brand-900);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.35;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.75;
}

.faq-item p b {
  color: var(--brand-900);
}

.checklist-section {
  position: relative;
  overflow: hidden;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}

.checklist-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(to left, var(--brand-50), transparent);
  opacity: .5;
  pointer-events: none;
}

.checklist-wrap {
  position: relative;
  max-width: 928px;
}

.checklist-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.book-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--brand-600);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 10px;
}

.book-icon svg {
  width: 24px;
  height: 24px;
}

.checklist-copy h2 {
  margin: 0 0 12px;
  color: var(--brand-900);
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.16;
  font-weight: 850;
  letter-spacing: -.035em;
}

.checklist-copy p {
  margin: 0 0 24px;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.75;
}

.checklist-copy strong {
  color: var(--slate-700);
}

.reader-proof {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--slate-400);
  font-size: 12px;
  font-weight: 650;
}

.reader-proof span {
  width: 24px;
  height: 24px;
  margin-right: -8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--slate-200);
}

.reader-proof span:nth-child(2) {
  background: var(--slate-300);
}

.reader-proof span:nth-child(3) {
  margin-right: 12px;
  background: var(--slate-400);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 24px;
  background: rgba(248, 250, 252, .55);
  border: 1px solid var(--slate-100);
  border-radius: 14px;
}

.lead-form label {
  display: block;
}

.lead-form span {
  display: block;
  margin-bottom: 6px;
  color: var(--slate-600);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .06em;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  color: var(--slate-800);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
}

.lead-form textarea {
  min-height: 86px;
  padding-top: 12px;
  resize: vertical;
  line-height: 1.55;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(92, 96, 255, .14);
}

.lead-form button {
  min-height: 42px;
  margin-top: 4px;
  color: var(--white);
  background: var(--brand-900);
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.lead-form p {
  margin: 6px 0 0;
  color: var(--slate-400);
  font-size: 11px;
  text-align: center;
}

.lead-form p.success {
  color: #059669;
  font-weight: 700;
}

.footer {
  padding: 64px 0 32px;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--brand-900);
  font-weight: 850;
}

.footer-brand p {
  max-width: 420px;
  margin: 0 0 24px;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.75;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--slate-400);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  transition: color .2s ease, border-color .2s ease;
}

.social-row a:hover {
  color: var(--slate-600);
  border-color: var(--slate-300);
}

.social-row svg {
  width: 16px;
  height: 16px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--brand-900);
  font-size: 14px;
  font-weight: 750;
}

.footer-main div:not(.footer-brand):not(.footer-logo):not(.social-row) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-main a,
.footer-bottom a {
  color: var(--slate-500);
  font-size: 14px;
  transition: color .2s ease;
}

.footer-main a:hover,
.footer-bottom a:hover {
  color: var(--brand-600);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--slate-100);
}

.footer-bottom p {
  margin: 0;
  color: var(--slate-400);
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

.footer-bottom a {
  font-size: 12px;
  color: var(--slate-400);
}

@media (max-width: 1024px) {
  .hero-layout {
    min-height: auto;
  }

  .hero-copy-column {
    padding-bottom: 0;
  }

  .hero-portrait {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(70vw, 390px);
    margin: 40px auto -64px;
    min-height: auto;
  }

  .hero-portrait img {
    width: 100%;
    transform: none;
  }

  .bento-grid,
  .delivery-grid,
  .case-showcase,
  .fit-grid,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .delivery-card {
    min-height: 0;
  }

  .price-card.featured {
    min-height: 456px;
    transform: none;
  }
}

@media (max-width: 768px) {
  .container,
  .nav-container {
    width: min(100% - 32px, 1280px);
  }

  .nav-container {
    height: 64px;
  }

  .mobile-menu {
    display: grid;
    place-items: center;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  body.nav-open .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    display: grid;
    gap: 0;
    padding: 12px 24px 20px;
    background: rgba(255, 255, 254, .96);
    border-bottom: 1px solid var(--slate-200);
    backdrop-filter: blur(20px);
  }

  body.nav-open .nav-links a {
    padding: 12px 0;
  }

  .hero {
    padding: 96px 0 56px;
  }

  .status-badge {
    align-items: flex-start;
    border-radius: 14px;
    text-align: left;
    line-height: 1.5;
  }

  .hero-copy-column {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero h1 small {
    font-size: .76em;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .process-board {
    padding: 20px;
  }

  .deck-slide {
    min-height: 0;
    aspect-ratio: auto;
    padding: 32px;
  }

  .slide-logo {
    top: 24px;
    right: 24px;
    width: 34px;
    height: 34px;
  }

  .deck-workflow-slide h3,
  .deck-summary-slide h3 {
    padding-right: 54px;
    font-size: clamp(28px, 8vw, 34px);
  }

  .deck-title-slide h3,
  .deck-step-slide h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .workflow-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .workflow-cards > div {
    min-height: 0;
    padding: 28px;
  }

  .workflow-cards p {
    min-height: 0;
    text-align: center;
  }

  .workflow-cards i {
    width: 2px;
    height: 28px;
    margin: 0 auto;
  }

  .workflow-cards i::after {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(50%) rotate(135deg);
  }

  .deck-summary-slide .slide-rule {
    margin-bottom: 28px;
  }

  .timeline-line {
    display: none;
  }

  .timeline-point {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    margin-top: 22px;
    padding-left: 28px;
  }

  .timeline-point.one,
  .timeline-point.two,
  .timeline-point.three,
  .timeline-point.four {
    left: auto;
    right: auto;
    top: auto;
  }

  .timeline-point::before,
  .timeline-point.one::before,
  .timeline-point.two::before,
  .timeline-point.three::before,
  .timeline-point.four::before {
    left: 0;
    top: 4px;
    bottom: auto;
    width: 12px;
    height: 12px;
  }

  .lesson-controls {
    flex-wrap: wrap;
    gap: 10px;
  }

  .lesson-dots {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .lesson-dot {
    width: 22px;
  }

  .lesson-dot.is-active {
    width: 38px;
  }

  .process-lane {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-node {
    min-height: 0;
  }

  .process-tool-panel {
    grid-template-columns: 1fr;
  }

  .process-arrow {
    width: 2px;
    height: 32px;
    margin: 0 auto;
  }

  .process-arrow::after {
    right: 50%;
    top: auto;
    bottom: -2px;
    transform: translateX(50%) rotate(135deg);
  }

  .tool-chain,
  .acceptance-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-visual {
    grid-template-columns: 1fr;
  }

  .week-map {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-portrait {
    width: min(84vw, 330px);
    margin: 34px auto -54px;
    min-height: auto;
  }

  .hero-portrait img {
    width: 100%;
    transform: none;
  }

  .portrait-halo {
    right: 50%;
    bottom: 34px;
    width: 330px;
    height: 330px;
    transform: translateX(50%);
  }

  .metric-panel {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .metric-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--slate-100);
  }

  .metric-panel div:nth-child(odd) {
    border-right: 0;
  }

  .metric-panel div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--slate-100);
  }

  .metric-panel div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-head-row {
    display: block;
  }

  .section-head-row .section-link {
    display: none;
  }

  .mobile-only-link {
    display: block;
  }

  .checklist-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
