@font-face {
  font-family: Geist;
  src: url("assets/geist.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("assets/geist-mono.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --paper: var(--warm-surface);
  --white: #fff;
  --ink: var(--charcoal);
  --muted: var(--secondary-text);
  --line: var(--subtle-surface);
  --accent: var(--peach-surface);
  --accent-text: var(--warm-text);
  --soft: var(--warm-surface);
  --dark: var(--charcoal);
  --radius: 12px;
  --max: 1220px;
  --section: 112px;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Geist, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:disabled {
  cursor: default;
}
button {
  border: 0;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h1,
h2 {
  letter-spacing: -0.055em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(50px, 5.2vw, 76px);
}
h2 {
  font-size: clamp(36px, 4vw, 56px);
}
h3 {
  font-size: 19px;
  letter-spacing: -0.035em;
}
em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.06em;
}
p {
  color: var(--muted);
}
a,
button,
summary {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid var(--warm-text);
  outline-offset: 5px;
}
.container {
  width: min(var(--max), calc(100% - 96px));
  margin: auto;
}
.section {
  padding-block: var(--section);
}
.mono {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.055em;
}
.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
}
.eyebrow {
  margin-bottom: 24px;
  color: var(--muted);
}
.section-label {
  margin-bottom: 42px;
  color: var(--muted);
}
.section-label .mono {
  margin-right: 9px;
  color: var(--accent-text);
}
.large {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
}
.micro {
  font-size: 11px;
  line-height: 1.6;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--warm-text);
  border-radius: 100%;
  flex-shrink: 0;
  display: inline-block;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 15px 23px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.button:hover {
  transform: translateY(-2px);
}
.button.dark {
  background: var(--ink);
  color: var(--white);
}
.button.dark:hover {
  background: var(--warm-text);
}
.button.accent {
  background: var(--accent);
  color: var(--ink);
}
.button.accent:hover {
  background: var(--peach-surface);
}
.button > span:last-child:not(:first-child) {
  font-size: 17px;
  line-height: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: white;
  padding: 14px;
  z-index: 100;
}
.skip:focus {
  top: 15px;
}
.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  background: var(--soft);
  font-size: 10px;
}
.announcement > a {
  margin-left: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.header {
  position: sticky;
  top: 0;
  background: var(--glass);
  backdrop-filter: blur(16px);
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 79px;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  letter-spacing: -0.6px;
  line-height: 1.1;
  flex-shrink: 0;
}
.brand img {
  object-fit: contain;
}
.brand strong {
  font-weight: 650;
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-top: 6px;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 11px;
  color: var(--muted);
}
.desktop-nav a:hover {
  color: var(--ink);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-buy {
  padding: 11px 16px;
  font-size: 11px;
  gap: 20px;
}
.languages {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--secondary-text);
}
.languages button {
  background: transparent;
  padding: 7px 3px;
  font-size: 10px;
}
.languages button[aria-pressed="true"] {
  font-weight: 700;
  color: var(--ink);
}
.menu-toggle {
  display: none;
  background: transparent;
  font-size: 23px;
}
.mobile-nav {
  padding: 8px 24px 22px;
}
.mobile-nav a {
  display: block;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.hero {
  padding-top: 75px;
}
.hero-heading {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 51px;
}
.hero .eyebrow {
  margin-bottom: 21px;
}
.tiny-symbol {
  font-size: 18px;
  color: var(--accent-text);
}
.hero-copy {
  padding-top: 42px;
}
.hero-copy > p:first-child {
  font-size: 16px;
  line-height: 1.7;
  max-width: 460px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin: 24px 0 13px;
}
.play-small {
  font-size: 9px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.hero-stage {
  position: relative;
  height: 526px;
  padding: 24px 70px 0;
  background: var(--soft);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--subtle-surface);
  background-image: radial-gradient(
      ellipse at 78% 85%,
      var(--peach-surface) 0%,
      transparent 62%
    ),
    linear-gradient(120deg, var(--warm-surface), var(--warm-surface));
}
.stage-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--secondary-text);
  margin: 0 -44px 23px;
}
.stage-top > span:first-child {
  display: flex;
  gap: 8px;
  align-items: center;
}
.stage-top .mono {
  font-size: 9px;
}
.product-window {
  position: relative;
  max-width: 990px;
  margin: auto;
  border: 5px solid rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 65px var(--shadow-elevated);
  transform: perspective(2000px) rotateX(2deg);
}
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--subtle-surface);
  border-bottom: 1px solid var(--line);
  padding: 10px 15px;
  color: var(--secondary-text);
  font-family: "Geist Mono", monospace;
  font-size: 9px;
}
.window-dots {
  letter-spacing: 3px;
  font-size: 8px;
  color: var(--peach-surface);
}
.product-window > img {
  width: 100%;
  height: auto;
}
.hero-stage:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(transparent, var(--warm-surface));
  pointer-events: none;
}
.agent-note {
  position: absolute;
  right: 27px;
  bottom: 52px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--subtle-surface);
  border-radius: 10px;
  box-shadow: 0 14px 35px var(--shadow-card);
  transform: rotate(-3deg);
}
.agent-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--warm-text);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}
.agent-note strong {
  font-size: 12px;
  font-weight: 600;
}
.agent-note strong span {
  font-weight: 400;
  color: var(--muted);
}
.agent-note p {
  font-size: 10px;
  margin-top: 4px;
}
.agent-spark {
  color: var(--warm-text);
  font-size: 24px;
  margin-left: 15px;
}
.stage-foot {
  position: absolute;
  bottom: 17px;
  left: 26px;
  right: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Geist Mono", monospace;
  font-size: 8px;
  color: var(--secondary-text);
  letter-spacing: 0.04em;
}
.trust-strip {
  padding: 29px 0 31px;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.creator-mini {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.creator-mini img {
  border-radius: 50%;
  object-fit: cover;
}
.creator-mini p {
  font-size: 10px;
  line-height: 1.6;
}
.creator-mini strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
}
.creator-mini span {
  display: block;
  font-size: 9px;
}
.trust-line {
  font-size: 10px;
  border-left: 1px solid var(--line);
  padding-left: 25px;
  flex-shrink: 0;
}
.trust-line strong {
  color: var(--ink);
  font-weight: 500;
}
.stack {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.stack span {
  font-size: 16px;
  letter-spacing: -0.65px;
  font-weight: 600;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
.story-copy p + p {
  margin-top: 19px;
  font-size: 14px;
}
.story-punch {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}
.story-punch > span {
  font-size: 38px;
  font-weight: 300;
  color: var(--warm-text);
}
.story-punch p {
  font-size: 14px;
}
.story-punch strong {
  color: var(--ink);
  font-weight: 500;
}
.journey {
  display: grid;
  grid-template-columns: 1fr 75px 1fr;
  align-items: center;
  margin-top: 54px;
  border-block: 1px solid var(--line);
  padding: 26px 0;
}
.journey .mono {
  color: var(--muted);
  font-size: 9px;
}
.journey p {
  color: var(--ink);
  font-size: 16px;
  margin-top: 9px;
  letter-spacing: -0.3px;
}
.journey > div:last-child {
  padding-left: 50px;
}
.journey-arrow {
  font-size: 38px;
  color: var(--secondary-text);
  text-align: center;
}
.product-section {
  background: var(--warm-surface);
  border-block: 1px solid var(--line);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 43px;
}
.section-heading p {
  max-width: 340px;
  font-size: 13px;
  line-height: 1.8;
}
.product-tour {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 50px;
}
.tour-menu {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.tour-menu button {
  display: flex;
  text-align: left;
  gap: 13px;
  background: transparent;
  border-top: 1px solid var(--peach-surface);
  position: relative;
  padding: 23px 0;
  align-items: center;
}
.tour-menu button:last-child {
  border-bottom: 1px solid var(--peach-surface);
}
.tour-menu button[aria-selected="true"] {
  color: var(--accent-text);
}
.tour-menu button[aria-selected="true"]:before {
  content: "";
  position: absolute;
  width: 3px;
  left: -14px;
  top: 20px;
  bottom: 20px;
  background: var(--warm-text);
  border-radius: 5px;
}
.tour-number {
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  color: var(--secondary-text);
  align-self: flex-start;
  margin-top: 3px;
}
.tour-menu strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.tour-menu small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 5px;
  color: var(--muted);
}
.tour-arrow {
  margin-left: auto;
  font-size: 20px;
  opacity: 0;
}
.tour-menu [aria-selected="true"] .tour-arrow {
  opacity: 1;
}
.tour-display {
  min-width: 0;
  background: var(--white);
  padding: 10px 10px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 30px var(--shadow-soft);
}
.tour-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px 8px;
  font-size: 10px;
  color: var(--muted);
}
.expand-button {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 23px;
  line-height: 1;
}
.expand-button:hover {
  background: var(--soft);
}
.tour-image {
  aspect-ratio: 1.69;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--subtle-surface);
  border-radius: 5px;
  background: var(--subtle-surface);
}
.tour-image img {
  position: absolute;
  max-width: none;
  width: 122%;
  height: auto;
  left: -11%;
  top: -19%;
}
.tour-image.plain img {
  position: static;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.tour-note {
  font-size: 9px;
  padding: 12px 7px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  margin-top: 61px;
}
.included-grid article {
  border-top: 1px solid var(--peach-surface);
  padding-top: 23px;
}
.included-grid h3 {
  font-size: 15px;
  margin: 18px 0 9px;
}
.included-grid p {
  font-size: 12px;
  line-height: 1.8;
}
.line-icon {
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  display: block;
  height: 25px;
  color: var(--secondary-text);
}
.video-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 46px;
  align-items: start;
}
.video-poster {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}
.video-poster > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.video-poster:hover > img {
  transform: scale(1.025);
}
.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--scrim-light),
    transparent 50%,
    var(--scrim-heavy)
  );
}
.video-label {
  position: absolute;
  top: 23px;
  left: 23px;
  font-size: 9px;
}
.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ffffff70;
  backdrop-filter: blur(8px);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 4px;
  font-size: 17px;
  background: #ffffff18;
  transition: background 0.2s;
}
.video-poster:hover .play-button {
  background: #ffffff40;
}
.video-bottom {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.video-bottom strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.video-bottom small {
  display: block;
  font-size: 10px;
  margin-top: 4px;
  color: var(--peach-surface);
}
.video-bottom > .mono {
  font-size: 8px;
  white-space: nowrap;
}
.chapters > .eyebrow {
  margin-bottom: 15px;
}
.chapters > a {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding: 17px 0;
  font-size: 12px;
}
.chapters > a > span:last-child {
  margin-left: auto;
  color: var(--secondary-text);
}
.chapters > a:hover {
  color: var(--accent-text);
}
.chapters .mono {
  font-size: 10px;
  color: var(--secondary-text);
}
.chapters .micro {
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 10px;
}
.fractal-section {
  background: var(--dark);
  color: var(--warm-surface);
  padding: 91px 0 95px;
  position: relative;
  overflow: hidden;
}
.fractal-section .section-label {
  color: var(--secondary-text);
  margin-bottom: 50px;
}
.fractal-section .section-label .mono {
  color: var(--secondary-text);
}
.alpha-badge {
  margin-left: auto;
  border: 1px solid var(--warm-text);
  padding: 5px 9px;
  border-radius: 5px;
  font-size: 9px;
  color: var(--accent);
}
.fractal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: center;
}
.fractal-copy h2 {
  font-size: 53px;
}
.fractal-copy h2 em {
  color: var(--peach-surface);
}
.fractal-copy > p {
  font-size: 13px;
  color: var(--peach-surface);
  margin-top: 25px;
  max-width: 400px;
  line-height: 1.8;
}
.fractal-benefits {
  list-style: none;
  padding: 0;
  margin: 25px 0 28px;
  font-size: 12px;
  color: var(--warm-surface);
  display: grid;
  gap: 12px;
}
.fractal-benefits li:before {
  content: "↳";
  margin-right: 12px;
  color: var(--warm-text);
}
.fractal-copy .text-link {
  font-size: 12px;
  border-bottom: 1px solid var(--warm-text);
  padding-bottom: 5px;
}
.context-visual {
  background: var(--warm-surface);
  color: var(--ink);
  border-radius: 13px;
  padding: 25px 25px 0;
  box-shadow: 0 25px 70px var(--shadow-stage);
  transform: rotate(1deg);
}
.context-head {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--subtle-surface);
  padding-bottom: 22px;
  font-size: 15px;
}
.fractal-mark {
  font-size: 27px;
}
.context-head small {
  display: block;
  color: var(--secondary-text);
  font-size: 7px;
  letter-spacing: 0.07em;
  margin-top: 3px;
}
.context-head > .status-dot {
  margin-left: auto;
}
.context-message {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 23px 0 20px;
}
.context-message p {
  font-size: 10px;
}
.avatar-outline {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  border: 1px solid var(--peach-surface);
  border-radius: 50%;
  font-size: 10px;
  background: white;
}
.lia-response {
  background: #fff;
  border: 1px solid var(--warm-surface);
  border-radius: 8px;
  padding: 17px 15px;
  display: flex;
  gap: 11px;
}
.lia-response strong {
  font-weight: 600;
  font-size: 11px;
}
.lia-response strong span {
  margin-left: 7px;
  font-weight: 400;
  font-size: 8px;
  color: var(--muted);
}
.lia-response p {
  font-size: 11px;
  margin-top: 7px;
  line-height: 1.8;
  color: var(--secondary-text);
}
.context-tags {
  display: flex;
  gap: 6px;
  margin-top: 15px;
}
.context-tags span {
  font-size: 8px;
  border: 1px solid var(--subtle-surface);
  border-radius: 4px;
  padding: 3px 6px;
  color: var(--secondary-text);
}
.team-line {
  width: 1px;
  height: 24px;
  margin: auto;
  background: var(--peach-surface);
}
.team-roles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--warm-surface);
  border-radius: 7px;
  background: var(--warm-surface);
  padding: 17px 5px;
}
.team-roles > div {
  text-align: center;
}
.team-roles > div > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--peach-surface);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--warm-text);
}
.team-roles > div:nth-child(2) > span {
  background: var(--peach-surface);
}
.team-roles > div:nth-child(3) > span {
  background: #e5dbc9;
}
.team-roles > div:nth-child(4) > span {
  background: #e1d7d0;
}
.team-roles > div:nth-child(5) > span {
  background: #d6dedf;
}
.team-roles strong {
  font-size: 10px;
  font-weight: 600;
  display: block;
}
.team-roles small {
  font-size: 8px;
  color: var(--secondary-text);
  display: block;
  margin-top: 3px;
}
.context-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 19px 0 15px;
  font-size: 9px;
  color: var(--secondary-text);
}
.context-footer > span:first-child {
  font-size: 22px;
}
.diagram-caption {
  font-size: 8px;
  color: var(--secondary-text);
  border-top: 1px solid var(--warm-surface);
  padding: 12px 0 13px;
  text-align: center;
}
.founder {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 95px;
  align-items: center;
}
.founder-photo {
  position: relative;
  padding-right: 20px;
}
.founder-photo:before {
  content: "";
  position: absolute;
  inset: 24px 0 -17px 24px;
  border: 1px solid var(--peach-surface);
  border-radius: 8px;
}
.founder-photo > img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 8px 25px var(--shadow-photo);
}
.photo-tag {
  position: absolute;
  bottom: 19px;
  left: 17px;
  right: 39px;
  border: 1px solid #ffffff60;
  backdrop-filter: blur(8px);
  background: #ffffffc9;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 9px;
  letter-spacing: 0.07em;
}
.founder-copy .eyebrow {
  margin-bottom: 20px;
}
.founder-copy .large {
  font-size: 18px;
  margin: 25px 0 17px;
}
.founder-copy > p:not(.large):not(.eyebrow) {
  font-size: 13px;
  line-height: 1.8;
}
.founder-links {
  display: flex;
  gap: 22px;
  margin-top: 27px;
  font-size: 10px;
}
.founder-links a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
}
.offer-section {
  background: var(--warm-surface);
  border-block: 1px solid var(--warm-surface);
  padding: 96px 0 55px;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 100px;
  align-items: start;
}
.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid var(--peach-surface);
  border-radius: 5px;
  font-size: 9px;
  color: var(--warm-text);
  margin: 9px 0 21px;
}
.offer-intro .large {
  max-width: 390px;
  font-size: 16px;
  color: var(--secondary-text);
  margin-top: 23px;
  line-height: 1.8;
}
.bundle-list {
  margin-top: 35px;
}
.bundle-list > div {
  display: flex;
  align-items: center;
  gap: 17px;
  border-top: 1px solid var(--peach-surface);
  padding: 21px 0;
}
.bundle-list > div:last-child {
  border-bottom: 1px solid var(--peach-surface);
}
.bundle-icon {
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  font-size: 25px;
  border: 1px solid var(--peach-surface);
  border-radius: 8px;
  font-weight: 300;
}
.bundle-list p {
  flex: 1;
  min-width: 0;
}
.bundle-list strong {
  display: block;
  color: var(--warm-text);
  font-size: 13px;
  font-weight: 500;
}
.bundle-list p > span {
  display: block;
  font-size: 10px;
  margin-top: 3px;
  color: var(--secondary-text);
}
.checkmark {
  color: var(--warm-text);
  font-size: 15px;
}
.price-card {
  background: var(--paper);
  padding: 32px 33px 25px;
  border: 1px solid var(--peach-surface);
  border-radius: 12px;
  box-shadow: 0 16px 40px var(--shadow-offer);
}
.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
}
.price-card-head .mono {
  font-size: 9px;
  color: var(--muted);
}
.price-star {
  font-size: 29px;
  color: var(--warm-text);
}
.price-description {
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 20px;
}
.old-price {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 12px;
}
.savings {
  font-size: 9px;
  background: var(--warm-surface);
  color: var(--warm-text);
  padding: 3px 7px;
  border-radius: 4px;
  margin-left: 8px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 84px;
  letter-spacing: -6px;
  line-height: 1.2;
  margin-top: 6px;
  font-weight: 500;
}
.price > span:first-child {
  font-size: 27px;
  letter-spacing: -1px;
}
.price .once {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 5px;
  font-weight: 400;
}
.installments {
  font-size: 11px;
  line-height: 1.8;
  margin: 6px 0 23px;
}
.price-card > .button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  padding: 17px;
}
.purchase-help {
  font-size: 10px;
  line-height: 1.7;
  margin: 12px 7px 24px;
  text-align: center;
}
.price-checks {
  list-style: none;
  padding: 20px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  font-size: 10px;
  color: var(--warm-text);
}
.price-checks li:before {
  content: "✓";
  margin-right: 9px;
  color: var(--warm-text);
}
.offer-timing {
  display: flex;
  gap: 11px;
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}
.offer-timing p {
  font-size: 9px;
  line-height: 1.7;
}
.offer-timing > span {
  color: var(--warm-text);
  font-size: 18px;
}
.access-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 53px;
  padding-top: 32px;
  border-top: 1px solid var(--peach-surface);
}
.access-steps > div {
  display: flex;
  gap: 15px;
}
.access-steps > div > span {
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  color: var(--secondary-text);
  padding-top: 2px;
}
.access-steps strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--warm-text);
}
.access-steps small {
  display: block;
  font-size: 10px;
  line-height: 1.7;
  margin-top: 6px;
  max-width: 245px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 100px;
}
.faq-heading h2 {
  font-size: 48px;
}
.faq-heading > p:not(.eyebrow) {
  font-size: 12px;
  max-width: 285px;
  margin: 24px 0 21px;
  line-height: 1.8;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  position: relative;
  padding: 21px 34px 21px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  position: absolute;
  right: 0;
  top: 17px;
  color: var(--secondary-text);
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  font-size: 12px;
  line-height: 1.8;
  padding: 0 25px 23px 0;
}
.build-day {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 27px 33px;
  display: flex;
  gap: 23px;
  align-items: center;
}
.build-symbol {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--secondary-text);
}
.build-day > div {
  flex: 1;
}
.build-day h3 {
  font-size: 17px;
}
.build-day p {
  font-size: 11px;
  margin-top: 6px;
}
.build-day .text-link {
  font-size: 11px;
}
.final-section {
  text-align: center;
  padding: 108px 0 110px;
}
.final-section .eyebrow {
  justify-content: center;
}
.final-section h2 {
  font-size: 59px;
}
.final-section > p:not(.eyebrow) {
  font-size: 13px;
  margin: 25px 0;
}
.final-section .button {
  font-size: 12px;
}
.footer {
  border-top: 1px solid var(--line);
  background: var(--warm-surface);
  padding: 30px 0 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-top .brand {
  font-size: 13px;
}
.footer-top p,
.footer-top > a:last-child {
  font-size: 10px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--subtle-surface);
  margin-top: 25px;
  padding-top: 18px;
  color: var(--secondary-text);
  font-size: 8px;
}
.mobile-purchase {
  display: none;
}
dialog {
  border: 1px solid var(--peach-surface);
  border-radius: 12px;
  padding: 0;
  background: var(--paper);
  width: min(1100px, calc(100vw - 36px));
  max-height: 92vh;
  overflow: auto;
  color: var(--ink);
  box-shadow: 0 30px 100px #0004;
}
dialog::backdrop {
  background: var(--scrim-dialog);
  backdrop-filter: blur(8px);
}
.dialog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  font-size: 12px;
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 2;
}
.dialog-toolbar button {
  background: transparent;
  font-size: 28px;
  line-height: 1;
  width: 34px;
  height: 34px;
}
#dialog-content {
  background: var(--charcoal);
}
#dialog-content img {
  width: 100%;
  height: auto;
}
#dialog-content iframe {
  display: block;
  border: 0;
  width: 100%;
  aspect-ratio: 16/9;
}
#video-fallback {
  font-size: 11px;
  text-align: center;
  padding: 12px;
}
#video-fallback a {
  text-decoration: underline;
}
@media (min-width: 1450px) {
  .hero-stage {
    height: 565px;
  }
  .hero {
    padding-top: 86px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .hero-heading {
    gap: 38px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero-copy > p:first-child {
    font-size: 14px;
  }
  .actions {
    gap: 14px;
  }
  .actions .button {
    font-size: 11px;
    padding: 14px 16px;
    gap: 15px;
  }
  .actions .text-link {
    font-size: 11px;
  }
  .hero-stage {
    padding-inline: 50px;
    height: 450px;
  }
  .stage-top {
    margin-inline: -25px;
  }
  .trust-strip {
    gap: 20px;
  }
  .trust-line {
    display: none;
  }
  .stack {
    gap: 21px;
  }
  .stack span {
    font-size: 14px;
  }
  .story-grid {
    gap: 70px;
  }
  .product-tour {
    grid-template-columns: 270px 1fr;
    gap: 35px;
  }
  .tour-menu button {
    padding: 18px 0;
  }
  .tour-menu small {
    font-size: 9px;
  }
  .tour-menu strong {
    font-size: 12px;
  }
  .fractal-grid {
    gap: 50px;
  }
  .fractal-copy h2 {
    font-size: 47px;
  }
  .offer-grid {
    gap: 65px;
  }
  .founder {
    gap: 65px;
  }
  .faq-section {
    gap: 70px;
  }
  .video-layout {
    gap: 35px;
  }
  .chapters > a {
    padding: 13px 0;
    font-size: 11px;
  }
  .video-bottom strong {
    font-size: 18px;
  }
  .included-grid {
    gap: 24px;
  }
}
@media (max-width: 850px) {
  :root {
    --section: 80px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .desktop-nav {
    display: none;
  }
  .nav {
    height: 70px;
  }
  .nav-actions {
    gap: 17px;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding-top: 47px;
  }
  .hero-heading {
    gap: 24px;
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }
  .hero h1 {
    font-size: 66px;
  }
  .hero-copy {
    padding-top: 0;
    max-width: 530px;
  }
  .hero-copy > p:first-child {
    font-size: 15px;
  }
  .actions .button {
    font-size: 12px;
  }
  .hero-stage {
    height: 395px;
    padding: 22px 30px 0;
  }
  .stage-top {
    margin-inline: -10px;
  }
  .stage-top .mono {
    display: none;
  }
  .agent-note {
    bottom: 40px;
    padding: 12px 14px;
    right: 18px;
  }
  .stage-foot {
    font-size: 7px;
    left: 20px;
    right: 20px;
  }
  .trust-strip {
    flex-wrap: wrap;
    padding-block: 25px;
    row-gap: 23px;
  }
  .stack {
    gap: 20px;
  }
  .stack span {
    font-size: 14px;
  }
  .story-grid {
    gap: 35px;
  }
  .story h2 {
    font-size: 40px;
  }
  .story-copy .large {
    font-size: 16px;
  }
  .story-copy p + p {
    font-size: 12px;
  }
  .journey {
    grid-template-columns: 1fr 45px 1fr;
  }
  .journey > div:last-child {
    padding-left: 20px;
  }
  .journey p {
    font-size: 13px;
  }
  .section-heading {
    gap: 30px;
    align-items: start;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .section-heading p {
    font-size: 11px;
    max-width: 235px;
  }
  .product-tour {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .tour-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }
  .tour-menu button:last-child {
    border-bottom: none;
  }
  .tour-menu button[aria-selected="true"]:before {
    left: -9px;
  }
  .tour-menu strong {
    font-size: 13px;
  }
  .tour-menu small {
    font-size: 10px;
  }
  .tour-image {
    aspect-ratio: 1.8;
  }
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 42px;
  }
  .video-layout {
    grid-template-columns: 1fr;
  }
  .chapters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }
  .chapters .eyebrow,
  .chapters .micro {
    grid-column: 1/-1;
  }
  .chapters > a {
    padding: 15px 0;
  }
  .fractal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fractal-copy > p {
    max-width: 540px;
  }
  .context-visual {
    max-width: 590px;
    width: 100%;
    margin: 0 auto;
    transform: none;
  }
  .context-head {
    padding-bottom: 22px;
  }
  .lia-response p {
    font-size: 12px;
  }
  .fractal-section {
    padding: 75px 0;
  }
  .founder {
    gap: 35px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .founder h2 {
    font-size: 41px;
  }
  .founder-copy .large {
    font-size: 15px;
  }
  .founder-copy > p:not(.large):not(.eyebrow) {
    font-size: 11px;
  }
  .founder-links {
    flex-wrap: wrap;
    gap: 13px;
  }
  .offer-grid {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .offer-intro h2 {
    font-size: 42px;
  }
  .offer-intro .large {
    font-size: 13px;
  }
  .price-card {
    padding: 25px 22px;
  }
  .price {
    font-size: 73px;
  }
  .price-card > .button {
    font-size: 10px;
    gap: 7px;
    padding-inline: 12px;
  }
  .price-description {
    font-size: 11px;
  }
  .bundle-list > div {
    gap: 10px;
  }
  .bundle-icon {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
  .bundle-list strong {
    font-size: 12px;
  }
  .bundle-list p > span {
    font-size: 9px;
  }
  .access-steps {
    gap: 24px;
  }
  .access-steps > div {
    gap: 10px;
  }
  .access-steps strong {
    font-size: 11px;
  }
  .faq-section {
    gap: 35px;
    grid-template-columns: 1fr 1.2fr;
  }
  .faq-heading h2 {
    font-size: 38px;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .faq-list details p {
    font-size: 11px;
  }
  .build-day {
    padding: 23px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .build-day > div {
    min-width: 70%;
  }
  .build-day .text-link {
    margin-left: 44px;
  }
  .final-section h2 {
    font-size: 50px;
  }
  .footer-top p {
    display: none;
  }
}
@media (max-width: 560px) {
  :root {
    --section: 63px;
  }
  .container {
    width: calc(100% - 40px);
  }
  html {
    scroll-padding-top: 84px;
  }
  .announcement {
    font-size: 8px;
    gap: 6px;
    padding: 9px 14px;
  }
  .announcement > a {
    display: none;
  }
  .announcement .status-dot {
    width: 5px;
    height: 5px;
  }
  .nav {
    height: 65px;
  }
  .brand {
    font-size: 13px;
    gap: 8px;
  }
  .brand img {
    width: 23px;
    height: 23px;
  }
  .brand small {
    font-size: 7px;
  }
  .nav-buy {
    display: none;
  }
  .nav-actions {
    gap: 14px;
  }
  .languages button {
    min-height: 35px;
  }
  .menu-toggle {
    width: 29px;
    height: 38px;
    font-size: 20px;
  }
  .hero {
    padding-top: 36px;
  }
  .hero .eyebrow {
    font-size: 8px;
    gap: 8px;
    margin-bottom: 20px;
  }
  .tiny-symbol {
    font-size: 17px;
  }
  .hero h1 {
    font-size: clamp(39px, 10.3vw, 57px);
    line-height: 1.1;
    letter-spacing: -0.06em;
  }
  .hero-heading {
    gap: 21px;
    margin-bottom: 30px;
  }
  .hero-copy > p:first-child {
    font-size: 13px;
    line-height: 1.8;
  }
  .actions {
    gap: 18px;
    margin: 21px 0 11px;
    flex-wrap: wrap;
  }
  .actions .button {
    font-size: 11px;
    padding: 14px 17px;
    gap: 13px;
  }
  .actions .text-link {
    font-size: 10px;
    gap: 5px;
  }
  .hero-copy .micro {
    font-size: 9px;
  }
  .hero-stage {
    height: 310px;
    padding: 16px 15px 0;
    border-radius: 9px;
  }
  .stage-top {
    margin: 0 0 17px;
    font-size: 8px;
  }
  .stage-top .status-dot {
    width: 5px;
    height: 5px;
  }
  .product-window {
    width: 510px;
    max-width: none;
    transform: none;
    border-width: 3px;
    margin-left: 0;
    box-shadow: 0 12px 30px var(--shadow-elevated);
  }
  .window-bar {
    padding: 8px 10px;
    font-size: 7px;
  }
  .product-window > img {
    width: 100%;
  }
  .agent-note {
    right: 12px;
    bottom: 34px;
    padding: 11px;
    gap: 8px;
    transform: rotate(-3deg);
  }
  .agent-note .agent-avatar {
    width: 28px;
    height: 28px;
    font-size: 17px;
  }
  .agent-note strong {
    font-size: 10px;
  }
  .agent-note p {
    font-size: 8px;
  }
  .agent-spark {
    font-size: 21px;
    margin-left: 5px;
  }
  .stage-foot {
    left: 14px;
    right: 14px;
    bottom: 12px;
    font-size: 6px;
  }
  .stage-foot > a {
    display: none;
  }
  .hero-stage:after {
    height: 65px;
  }
  .trust-strip {
    gap: 20px;
    padding: 22px 0;
  }
  .creator-mini img {
    width: 36px;
    height: 36px;
  }
  .creator-mini p {
    font-size: 10px;
  }
  .creator-mini span {
    font-size: 8px;
  }
  .stack {
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }
  .stack span {
    font-size: 12px;
    letter-spacing: -0.5px;
  }
  .section-label {
    font-size: 8px;
    margin-bottom: 28px;
    gap: 5px;
  }
  .section-label .mono {
    font-size: 8px;
    margin-right: 4px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .story h2 {
    font-size: 42px;
  }
  .story-copy .large {
    font-size: 16px;
  }
  .story-copy p + p {
    font-size: 12px;
    line-height: 1.8;
  }
  .story-punch {
    margin-top: 23px;
    gap: 15px;
  }
  .story-punch p {
    font-size: 12px;
  }
  .journey {
    margin-top: 30px;
    padding: 23px 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .journey > div:last-child {
    padding-left: 0;
  }
  .journey-arrow {
    text-align: left;
    font-size: 25px;
    transform: rotate(90deg);
    width: 24px;
    height: 24px;
    line-height: 1;
  }
  .journey p {
    font-size: 14px;
  }
  .journey .mono {
    font-size: 8px;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .section-heading p {
    font-size: 12px;
    max-width: 100%;
    margin-top: 19px;
  }
  .tour-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .tour-menu button {
    padding: 16px 0;
  }
  .tour-menu strong {
    font-size: 13px;
  }
  .tour-menu small {
    font-size: 10px;
  }
  .tour-menu button[aria-selected="true"]:before {
    left: -10px;
    top: 15px;
    bottom: 15px;
  }
  .tour-menu button:last-child {
    border-bottom: 1px solid var(--peach-surface);
  }
  .tour-number {
    font-size: 8px;
  }
  .tour-caption {
    font-size: 9px;
    padding: 0 3px 8px;
  }
  .tour-display {
    padding: 8px 8px 0;
  }
  .tour-note {
    font-size: 8px;
    padding: 9px 3px;
  }
  .included-grid {
    gap: 27px 22px;
    margin-top: 35px;
  }
  .included-grid article {
    padding-top: 17px;
  }
  .included-grid h3 {
    font-size: 14px;
    margin-top: 14px;
  }
  .included-grid p {
    font-size: 11px;
    line-height: 1.75;
  }
  .line-icon {
    font-size: 23px;
  }
  .video-layout {
    gap: 26px;
  }
  .video-label {
    font-size: 7px;
    top: 14px;
    left: 15px;
  }
  .play-button {
    width: 47px;
    height: 47px;
    font-size: 13px;
  }
  .video-bottom {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
  .video-bottom strong {
    font-size: 16px;
  }
  .video-bottom small {
    font-size: 8px;
  }
  .video-bottom > .mono {
    display: none;
  }
  .chapters {
    display: block;
  }
  .chapters > a {
    padding: 17px 0;
    font-size: 12px;
  }
  .chapters > .eyebrow {
    font-size: 9px;
    margin-bottom: 13px;
  }
  .chapters .micro {
    font-size: 9px;
  }
  .fractal-section {
    padding: 62px 0 52px;
  }
  .fractal-section .section-label {
    flex-wrap: wrap;
    row-gap: 15px;
    margin-bottom: 29px;
  }
  .alpha-badge {
    font-size: 7px;
    margin-left: 8px;
    padding: 4px 6px;
  }
  .fractal-copy h2 {
    font-size: 41px;
  }
  .fractal-copy > p {
    font-size: 12px;
    margin-top: 22px;
  }
  .fractal-benefits {
    font-size: 11px;
    line-height: 1.7;
    gap: 9px;
  }
  .context-visual {
    padding: 19px 15px 0;
    border-radius: 10px;
  }
  .context-head {
    padding-bottom: 15px;
    font-size: 14px;
  }
  .context-head small {
    font-size: 6px;
  }
  .fractal-mark {
    font-size: 25px;
  }
  .context-message {
    padding: 17px 0;
  }
  .context-message p {
    font-size: 9px;
  }
  .lia-response {
    padding: 13px 10px;
    gap: 9px;
  }
  .lia-response .agent-avatar {
    width: 26px;
    height: 26px;
    font-size: 17px;
  }
  .lia-response strong {
    font-size: 10px;
  }
  .lia-response strong span {
    font-size: 7px;
  }
  .lia-response p {
    font-size: 10px;
  }
  .context-tags {
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .context-tags span {
    font-size: 7px;
  }
  .team-roles {
    padding: 14px 2px;
  }
  .team-roles > div > span {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
  .team-roles strong {
    font-size: 9px;
  }
  .team-roles small {
    font-size: 6px;
  }
  .context-footer {
    font-size: 8px;
    padding-block: 12px;
  }
  .diagram-caption {
    font-size: 7px;
  }
  .founder {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .founder-photo {
    max-width: 360px;
    width: 100%;
    padding-right: 16px;
    align-self: flex-start;
  }
  .founder-photo:before {
    inset: 18px 0 -14px 20px;
  }
  .photo-tag {
    right: 32px;
  }
  .founder-copy .eyebrow {
    font-size: 9px;
  }
  .founder h2 {
    font-size: 44px;
  }
  .founder-copy .large {
    font-size: 16px;
    margin-top: 21px;
  }
  .founder-copy > p:not(.large):not(.eyebrow) {
    font-size: 12px;
  }
  .founder-links {
    font-size: 10px;
    gap: 20px;
  }
  .offer-section {
    padding: 61px 0 39px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .offer-intro h2 {
    font-size: 45px;
  }
  .offer-intro .large {
    font-size: 14px;
    max-width: 100%;
  }
  .offer-pill {
    margin-top: 0;
    font-size: 9px;
    margin-bottom: 19px;
  }
  .bundle-list {
    margin-top: 27px;
  }
  .bundle-list > div {
    padding: 19px 0;
    gap: 14px;
  }
  .bundle-list strong {
    font-size: 13px;
  }
  .bundle-list p > span {
    font-size: 10px;
  }
  .bundle-icon {
    width: 36px;
    height: 36px;
  }
  .price-card {
    padding: 26px 23px 22px;
  }
  .price-description {
    font-size: 12px;
  }
  .price-card-head {
    margin-bottom: 16px;
  }
  .price {
    font-size: 82px;
  }
  .price .once {
    font-size: 11px;
  }
  .price-card > .button {
    font-size: 12px;
    padding: 16px;
    gap: 10px;
  }
  .price-checks {
    font-size: 10px;
  }
  .offer-timing p {
    font-size: 9px;
  }
  .access-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 31px;
    padding-top: 27px;
  }
  .access-steps > div {
    gap: 16px;
  }
  .access-steps strong {
    font-size: 13px;
  }
  .access-steps small {
    max-width: none;
    font-size: 11px;
    margin-top: 3px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .faq-heading h2 {
    font-size: 42px;
  }
  .faq-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .faq-heading > p:not(.eyebrow) {
    font-size: 12px;
    max-width: 100%;
  }
  .faq-list summary {
    font-size: 13px;
    padding-block: 20px;
  }
  .faq-list details p {
    font-size: 12px;
  }
  .build-day {
    padding: 23px 20px;
    gap: 12px;
  }
  .build-day h3 {
    font-size: 16px;
  }
  .build-day p {
    font-size: 11px;
    line-height: 1.8;
  }
  .build-symbol {
    display: none;
  }
  .build-day .text-link {
    margin: 6px 0 0;
    font-size: 11px;
  }
  .final-section {
    padding: 69px 0 67px;
  }
  .final-section .eyebrow {
    font-size: 9px;
  }
  .final-section h2 {
    font-size: 38px;
  }
  .final-section > p:not(.eyebrow) {
    font-size: 12px;
    margin: 21px 0;
  }
  .final-section .button {
    font-size: 11px;
    padding: 15px 18px;
    gap: 17px;
  }
  .footer {
    padding: 26px 0 95px;
  }
  .footer-top {
    gap: 10px;
  }
  .footer-top .brand {
    font-size: 11px;
    gap: 6px;
  }
  .footer-top .brand img {
    width: 22px;
    height: 22px;
  }
  .footer-top > a:last-child {
    font-size: 9px;
  }
  .footer-bottom {
    font-size: 7px;
    gap: 12px;
  }
  .mobile-purchase {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: space-between;
    background: var(--glass);
    backdrop-filter: blur(12px);
    padding: 12px 20px max(12px, env(safe-area-inset-bottom));
    z-index: 25;
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 30px var(--shadow-bar);
  }
  .mobile-purchase strong {
    font-size: 19px;
    letter-spacing: -0.7px;
    font-weight: 600;
  }
  .mobile-purchase small {
    display: block;
    font-size: 8px;
    color: var(--muted);
  }
  .mobile-purchase .button {
    font-size: 11px;
    padding: 12px 20px;
  }
  dialog {
    width: calc(100vw - 20px);
    border-radius: 8px;
  }
  .dialog-toolbar {
    padding: 8px 11px;
    font-size: 10px;
  }
  #video-fallback {
    font-size: 10px;
    padding: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover {
    transform: none;
  }
}
/* Use the original light logo on the light editorial surface. */
.brand img {
  filter: brightness(0);
  opacity: 0.88;
}
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-heading {
    animation: hero-enter 0.65s ease-out both;
  }
  .hero-stage {
    animation: hero-enter 0.8s 0.12s ease-out both;
  }
}
/* Keep supporting copy legible on the muted surfaces. */
.diagram-caption,
.context-head small,
.team-roles small,
.context-footer {
  color: var(--secondary-text);
}
.footer-bottom {
  color: var(--secondary-text);
}
.offer-timing p {
  font-size: 10px;
}
@media (max-width: 560px) {
  .purchase-help {
    font-size: 11px;
  }
  .price-checks {
    font-size: 11px;
  }
  .offer-timing p {
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 8px;
  }
}

:root {
  --warm-surface: #fff0e9;
  --charcoal: #242424;
  --secondary-text: #706661;
  --subtle-surface: #f4efec;
  --peach-surface: #ffd6c4;
  --warm-text: #a13e25;
  --shadow-elevated: #24242426;
  --shadow-card: #24242416;
  --shadow-soft: #24242409;
  --scrim-light: #24242477;
  --scrim-heavy: #242424eb;
  --shadow-stage: #24242429;
  --shadow-photo: #2424240d;
  --shadow-offer: #a13e250b;
  --scrim-dialog: #242424e8;
  --shadow-bar: #24242408;

  color-scheme: light;
  --paper: #fffaf7;
  --white: #fff;
  --ink: #252221;
  --muted: #706661;
  --line: #e7dcd5;
  --accent: #f04b23;
  --accent-text: #b33719;
  --soft: #fff0e9;
  --dark: #202020;
  --glass: #fffaf7f2;
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #1b1b1b;
  --white: #252525;
  --ink: #f6f2ef;
  --muted: #bdb7b3;
  --line: #3b3b3b;
  --accent: #ff6338;
  --accent-text: #ff9874;
  --soft: #272727;
  --dark: #141414;
  --glass: #1b1b1bf2;
  --warm-surface: #2a2a2a;
  --charcoal: #171717;
  --secondary-text: #bcb6b2;
  --subtle-surface: #2a2a2a;
  --peach-surface: #4a3028;
  --warm-text: #ffab87;
  --shadow-elevated: #17171726;
  --shadow-card: #17171716;
  --shadow-soft: #17171709;
  --scrim-light: #17171777;
  --scrim-heavy: #171717eb;
  --shadow-stage: #17171729;
  --shadow-photo: #1717170d;
  --shadow-offer: #ffab870b;
  --scrim-dialog: #171717e8;
  --shadow-bar: #17171708;
}

.button.dark,
.button.accent {
  background: var(--accent);
  color: #fff;
}
.button.dark:hover,
.button.accent:hover {
  background: #ff7950;
}
.hero-stage {
  background-image: radial-gradient(
    ellipse at 78% 85%,
    #f04b2324,
    transparent 65%
  );
}
.hero-stage:after {
  background: linear-gradient(transparent, var(--soft));
}
.status-dot {
  background: var(--accent);
}
.agent-note,
.lia-response,
.context-message > span {
  background: var(--white);
  border-color: var(--line);
}
.agent-avatar {
  background: #ffd6c4;
  color: #77270f;
}
.fractal-section {
  background: var(--dark);
  color: #f6f2ef;
}
.fractal-section .section-label,
.fractal-section .section-label .mono,
.fractal-copy > p {
  color: #bdb7b3;
}
.fractal-copy h2 em,
.fractal-benefits li:before,
.alpha-badge {
  color: #ff9874;
}
.fractal-benefits {
  color: #e7e1dd;
}
.context-visual {
  background: var(--soft);
  color: var(--ink);
}
.video-poster {
  color: white;
}
.video-poster:after {
  background: linear-gradient(180deg, #17171777, transparent 50%, #171717eb);
}
.photo-tag {
  color: #252221;
}
[data-theme="dark"] .brand img {
  filter: brightness(0) invert(1);
}
.theme-control {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}
.theme-options {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 3px;
}
.theme-options button {
  background: transparent;
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 12px;
}
.theme-options button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}
.product-window > .hero-image {
  aspect-ratio: 1.72;
  overflow: hidden;
  position: relative;
}
.hero-image img {
  height: auto;
  position: absolute;
  width: 122%;
  max-width: none;
  left: -11%;
  top: -19%;
}
.tour-display {
  align-self: start;
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) {
  .tour-display {
    position: static;
  }
}
.team-roles > div > span {
  background: #ffd6c4;
  color: #77270f;
}
[data-theme="dark"] .team-roles > div > span {
  background: #4a3028;
  color: #ffab87;
}
[data-theme="dark"] .product-window {
  border-color: #484848;
}
@media (max-width: 560px) {
  .tour-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
  .tour-menu button {
    gap: 7px;
    align-items: start;
  }
  .tour-menu strong {
    font-size: 12px;
  }
  .tour-menu small {
    font-size: 9px;
  }
  .tour-arrow {
    display: none;
  }
}
