:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --ink: #1e232c;
  --muted: #5f6672;
  --yellow: #ffd200;
  --blue: #2a6fff;
  --orange: #ff9e2c;
  --green: #12a553;
  --pink: #ea95c1;
  --violet: #582fc8;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --maxw: 1440px;
  --shadow-soft: 0 16px 44px rgba(20, 27, 43, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
}

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

main {
  display: grid;
  gap: 68px;
  padding: 28px 20px 80px;
}

section {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
}

.promo-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 6px 14px;
  background: var(--yellow);
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

.promo-ticker {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.promo-track {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  padding-right: 14px;
  color: #121417;
  font-size: 14px;
  animation: promo-marquee 24s linear infinite;
}

.promo-track strong {
  font-weight: 800;
}

.promo-dot {
  opacity: 0.58;
}

.promo-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 2px 10px 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 700;
}

.promo-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #f6f6f6;
}

.promo-chip-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-chip-icon-codex {
  background: #111;
  border-color: #111;
  padding: 3px;
}

.promo-chip-icon-codex img {
  object-fit: contain;
}

.promo-chip-icon-claude {
  border-radius: 4px;
  border-color: transparent;
  background: #fff5e9;
  padding: 2px;
}

.promo-chip-icon-claude img {
  object-fit: contain;
}

.promo-chip-icon-gpt {
  border-radius: 4px;
  border-color: transparent;
  background: transparent;
}

.promo-chip-icon-openclaw {
  border-radius: 4px;
  background: #fff3bf;
}

.promo-chip-icon-openclaw img {
  object-fit: contain;
  image-rendering: pixelated;
}

.promo-cta {
  flex-shrink: 0;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.promo-bar:hover .promo-track {
  animation-play-state: paused;
}

@keyframes promo-marquee {
  0% {
    transform: translateX(0);
  }

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

.site-header {
  width: min(var(--maxw), calc(100% - 40px));
  margin: 16px auto 0;
  padding: 14px 20px;
  border-radius: 18px;
  border: 1px solid rgba(20, 28, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(17, 25, 40, 0.08);
  position: sticky;
  top: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo span {
  color: #ff8425;
}

.logo-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.logo-word {
  color: var(--ink) !important;
}

.logo-track {
  color: #ff8425;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #29303a;
  font-size: 15px;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-ghost {
  border-color: rgba(20, 27, 43, 0.18);
  color: #252b35;
}

.btn-dark {
  background: #171a20;
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #1f232d;
  border-color: rgba(26, 32, 44, 0.12);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(34, 106, 255, 0.32);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.hero {
  display: grid;
  gap: 24px;
}

.hero-headline {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.hero h1 {
  margin: 14px 0 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(40px, 7vw, 76px);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.hero h1 span {
  display: block;
}

.hero-points {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: #444c58;
  letter-spacing: -0.01em;
}

.hero-points li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border: 1px solid rgba(34, 42, 56, 0.44);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #2f3642;
}

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

.hero-card {
  min-height: 520px;
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(24, 31, 45, 0.07);
  position: relative;
  overflow: hidden;
}

.hero-card-main {
  background: #f0eeec;
}

.hero-card-side {
  background: #f0eeec;
}

.card-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: #4a5564;
}

.hero-card h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-card-side h2 {
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 0.94;
  word-break: break-word;
  hyphens: auto;
}

.hero-card p {
  margin: 0;
}

.hero-card-main > p,
.hero-card-side > p {
  max-width: 580px;
  color: #363f4d;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hero-card .btn {
  width: fit-content;
  margin-top: 2px;
}

.hero-eligibility {
  margin-top: 2px !important;
  align-self: flex-start;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(24, 31, 45, 0.18);
  font-size: 12px !important;
  color: #4b5562 !important;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.72);
}

.hero-media {
  margin-top: auto;
  min-height: 250px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-media-main {
  background: linear-gradient(135deg, #fff4cc 0%, #ffe172 35%, #ffd200 100%);
  isolation: isolate;
}

.hero-phone,
.hero-thumb,
.hero-portrait {
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-phone {
  position: absolute;
  left: 46%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 160px;
  height: 250px;
  border-radius: 26px;
  border: 4px solid #222831;
  box-shadow: 0 12px 28px rgba(22, 29, 41, 0.24);
  z-index: 4;
}

.hero-thumb {
  position: absolute;
  border-radius: 14px;
  border: 1px solid rgba(23, 31, 45, 0.15);
  box-shadow: 0 8px 22px rgba(19, 28, 43, 0.14);
  overflow: hidden;
}

.hero-thumb-top {
  left: 26px;
  bottom: 116px;
  width: 150px;
  height: 82px;
  background-size: 138%;
  background-position: 58% 52%;
  z-index: 2;
}

.hero-thumb-bottom {
  left: 56px;
  bottom: 20px;
  width: 178px;
  height: 104px;
  background-size: 128%;
  background-position: 50% 16%;
  z-index: 3;
}

.hero-bubble {
  position: absolute;
  right: 34px;
  bottom: 58px;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.86);
  color: #2e3541;
  border: 1px solid rgba(20, 30, 42, 0.16);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(20, 31, 45, 0.12);
  z-index: 5;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hero-orb-orange {
  right: 200px;
  bottom: 44px;
  width: 150px;
  height: 150px;
  background-color: #ff8a2f;
  background-image: var(--orb-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}

.hero-orb-blue {
  right: 162px;
  bottom: 154px;
  width: 10px;
  height: 10px;
  background: var(--blue);
}

.hero-media-side {
  background: linear-gradient(180deg, #e7f2ff 0%, #d3ebff 52%, #d8eeff 100%);
}

.hero-portrait {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 206px;
  height: 284px;
  border-radius: 22px;
  border: 4px solid #232933;
  box-shadow: 0 12px 28px rgba(19, 30, 44, 0.22);
}

.hero-cloud {
  position: absolute;
  width: 56px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  filter: blur(0.2px);
}

.hero-cloud::before,
.hero-cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.hero-cloud::before {
  width: 26px;
  height: 26px;
  left: 5px;
  top: -12px;
}

.hero-cloud::after {
  width: 24px;
  height: 24px;
  right: 5px;
  top: -9px;
}

.hero-cloud-left {
  left: 30px;
  top: 84px;
}

.hero-cloud-right {
  right: 26px;
  bottom: 60px;
}

.hero-orb-side {
  width: 62px;
  height: 62px;
  left: 38px;
  bottom: 86px;
  background: var(--orange);
}

.manifesto,
.focus-matrix,
.feature-rail,
.stories,
.stats,
.library,
.faq {
  display: grid;
  gap: 16px;
}

.focus-matrix h2,
.feature-rail h2,
.stories h2,
.library h2,
.faq h2,
.cta h2,
.stats h2,
.manifesto h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.manifesto h2,
.focus-matrix h2 {
  text-align: center;
}

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

.manifesto-grid article {
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(20, 29, 45, 0.08);
  background: #fff;
}

.manifesto-grid h3 {
  margin: 0 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.manifesto-grid p {
  margin: 0;
  color: #3d4654;
}

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

.chip {
  min-height: 78px;
  border-radius: 16px;
  border: 1px solid rgba(20, 30, 46, 0.12);
  background: #fff;
  color: #303844;
  font: inherit;
  font-size: 16px;
  font-weight: 650;
  text-align: left;
  padding: 0 46px 0 14px;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.chip::after {
  content: "↗";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f4f6fa;
  border: 1px solid rgba(20, 30, 46, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.chip.is-active,
.chip:hover {
  border-color: rgba(20, 30, 46, 0.34);
  background: #fff1bf;
  transform: translateY(-2px);
}

.rail-head,
.stories-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.rail-controls {
  display: inline-flex;
  gap: 8px;
}

.rail-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(20, 29, 44, 0.16);
  background: #fff;
  color: #1c2430;
  font-size: 22px;
  cursor: pointer;
}

.rail-controls button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.rail-window,
.story-window {
  overflow: hidden;
}

.rail-window,
.story-window {
  touch-action: pan-y;
}

.rail-track,
.story-track {
  display: flex;
  gap: 12px;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.program-card {
  flex: 0 0 300px;
  border-radius: 16px;
  overflow: hidden;
  color: #1a2029;
  border: 1px solid rgba(20, 30, 44, 0.08);
}

.program-card:nth-child(1) {
  background: #ffd200;
}

.program-card:nth-child(2) {
  background: #e89ac2;
}

.program-card:nth-child(3) {
  background: #592fc8;
  color: #fff;
}

.program-card:nth-child(4) {
  background: #0ea655;
  color: #fff;
}

.program-card:nth-child(5) {
  background: #1f67f5;
  color: #fff;
}

.program-card:nth-child(6) {
  background: #ffd200;
}

.program-card:nth-child(7) {
  background: #1f67f5;
  color: #fff;
}

.program-image-wrap {
  min-height: 120px;
  padding: 12px 12px 0;
  position: relative;
}

.program-image {
  width: 108px;
  height: 104px;
  margin-left: auto;
  border-radius: 14px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.program-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
  text-transform: lowercase;
  color: #2f3642;
  background: rgba(255, 255, 255, 0.86);
}

.program-info {
  min-height: 120px;
  padding: 10px 14px 14px;
  display: grid;
  align-content: start;
  gap: 7px;
}

.program-info h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 30px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.program-info p {
  margin: 0;
  font-size: 13px;
  color: inherit;
  opacity: 0.9;
}

.stories-head p {
  margin: 8px 0 0;
  max-width: 620px;
  color: #4f5765;
}

.story-card {
  flex: 0 0 284px;
  min-height: 214px;
  border-radius: 16px;
  border: 1px solid rgba(19, 30, 44, 0.1);
  background: #fff;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.story-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
  color: #6a7382;
}

.story-quote {
  margin: 0;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #252d3a;
}

.story-link {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  background: #171b22;
  color: #fff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
}

.stats-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #3d8eff 0%, #1b66f5 42%, #0454e9 100%);
  color: #fff;
  padding: 28px;
  display: grid;
  gap: 18px;
}

.stats-card > p {
  margin: 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
}

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

.stats-grid div {
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
  display: grid;
  gap: 3px;
}

.stats-grid strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 36px;
  letter-spacing: -0.04em;
}

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

.library-grid article {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(20, 30, 45, 0.09);
  padding: 20px;
}

.library-grid article:nth-child(odd) {
  background: linear-gradient(150deg, #ffffff 0%, #fff6cc 100%);
}

.library-grid h3 {
  margin: 0 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.library-grid p {
  margin: 0;
  color: #414a57;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq details {
  border-radius: 14px;
  border: 1px solid rgba(20, 29, 43, 0.12);
  background: #fff;
  padding: 15px 18px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 650;
}

.faq summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 10px 0 0;
  color: #47505d;
  max-width: 920px;
}

.cta {
  background: linear-gradient(180deg, #ffd200 0%, #f6c300 100%);
  border-radius: 58px 58px 0 0;
  margin-bottom: -82px;
  padding: 56px 30px 74px;
  text-align: center;
  display: grid;
  gap: 14px;
}

.cta p {
  margin: 0 auto;
  max-width: 720px;
  font-size: 18px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta .btn-outline {
  color: #161b24;
  border-color: rgba(20, 29, 44, 0.34);
  background: rgba(255, 255, 255, 0.5);
}

.site-footer {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  padding: 114px 20px 50px;
  background: #f2f2f3;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(0, 1fr));
}

.footer-brand p {
  margin: 10px 0 0;
  max-width: 340px;
  color: #565e6c;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: #4c5460;
}

@media (max-width: 1240px) {
  .hero-grid,
  .stats-grid,
  .library-grid,
  .site-footer,
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    min-height: 490px;
  }

  .hero-card-side {
    min-height: 460px;
  }
}

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

  .hero h1 {
    font-size: clamp(40px, 12vw, 66px);
  }

  .hero-points li {
    font-size: 16px;
  }

  .hero-card h2 {
    font-size: clamp(34px, 8vw, 52px);
  }

  .hero-card-main > p,
  .hero-card-side > p {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .promo-bar {
    gap: 8px;
    padding: 7px 10px;
  }

  .promo-track {
    gap: 10px;
    font-size: 12px;
  }

  .promo-chip {
    font-size: 10px;
    min-height: 20px;
  }

  .promo-chip-icon {
    width: 15px;
    height: 15px;
    font-size: 7px;
  }

  .promo-cta {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
    top: 8px;
    padding: 10px 12px;
  }

  .logo {
    font-size: 19px;
  }

  .logo-mark {
    gap: 6px;
    align-items: center;
  }

  .logo-track {
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.005em;
    white-space: nowrap;
  }

  .btn-ghost {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 13px;
  }

  main {
    gap: 52px;
    padding: 20px 12px 60px;
  }

  .hero-headline {
    text-align: left;
  }

  .hero-points {
    justify-content: flex-start;
    gap: 8px;
  }

  .hero-points li {
    font-size: 15px;
  }

  .hero-card {
    padding: 20px;
    min-height: 420px;
  }

  .hero-media {
    min-height: 214px;
  }

  .hero-phone {
    width: 124px;
    height: 204px;
    left: 52%;
  }

  .hero-thumb-top {
    left: 10px;
    bottom: 96px;
    width: 118px;
    height: 70px;
  }

  .hero-thumb-bottom {
    left: 14px;
    bottom: 14px;
    width: 112px;
    height: 96px;
    z-index: 6;
    background-size: 150%;
    background-position: 34% 16%;
  }

  .hero-bubble {
    right: 14px;
    bottom: 36px;
    font-size: 12px;
    padding: 8px 10px;
  }

  .hero-orb-orange {
    right: 124px;
    bottom: 26px;
    width: 108px;
    height: 108px;
  }

  .hero-orb-blue {
    right: 110px;
    bottom: 120px;
  }

  .hero-portrait {
    width: 156px;
    height: 232px;
  }

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

  .focus-matrix h2,
  .feature-rail h2,
  .stories h2,
  .library h2,
  .faq h2,
  .cta h2,
  .stats h2,
  .manifesto h2 {
    font-size: clamp(30px, 10vw, 48px);
  }

  .rail-head,
  .stories-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .program-card {
    flex-basis: 260px;
  }

  .program-info h3 {
    font-size: 24px;
  }

  .story-card {
    flex-basis: 260px;
    min-height: 194px;
  }

  .story-quote {
    font-size: 16px;
  }

  .stats-grid,
  .library-grid {
    grid-template-columns: 1fr;
  }

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

  .cta {
    margin-bottom: -60px;
    border-radius: 36px 36px 0 0;
  }

  .site-footer {
    padding: 90px 14px 34px;
  }
}

.hero-start-pill {
  margin: 12px auto 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px 0 14px;
  border-radius: 24px;
  border: 1px solid rgba(45, 44, 43, 0.08);
  background: #f9f4f2;
  box-shadow: 0 6px 16px rgba(45, 44, 43, 0.08);
  color: #2d2c2b;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-start-pill-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.hero-start-pill-icon::before,
.hero-start-pill-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7300;
}

.hero-start-pill-icon::before {
  left: 0;
}

.hero-start-pill-icon::after {
  left: 6px;
}

@media (max-width: 760px) {
  .hero-start-pill {
    margin: 10px 0 0;
    min-height: 38px;
    padding: 0 14px 0 11px;
    border-radius: 20px;
    font-size: 14px;
  }

  .hero-start-pill-icon {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .hero-start-pill-icon::before,
  .hero-start-pill-icon::after {
    top: 2px;
    width: 8px;
    height: 8px;
  }

  .hero-start-pill-icon::after {
    left: 5px;
  }
}

.hero-start-row {
  margin: 12px auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-start-pill {
  margin: 0;
}

.hero-start-pill-dark {
  background: #2d2c2b;
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-start-pill-star {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-grid;
  place-items: center;
  color: #1f72ff;
  font-size: 14px;
  line-height: 1;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .hero-start-row {
    margin: 10px 0 0;
    justify-content: flex-start;
    gap: 8px;
  }

  .hero-start-pill-star {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
    font-size: 12px;
  }
}
