@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: dark light;
  --ink: oklch(20% 0.014 210);
  --ink-deep: oklch(15% 0.012 210);
  --slate: oklch(31% 0.025 210);
  --paper: oklch(96% 0.008 115);
  --paper-deep: oklch(90% 0.011 135);
  --stone: oklch(84% 0.012 135);
  --copper: oklch(68% 0.17 42);
  --copper-hover: oklch(74% 0.15 45);
  --copper-text: oklch(44% 0.14 42);
  --mint: oklch(82% 0.095 155);
  --muted-dark: oklch(79% 0.018 210);
  --muted-paper: oklch(39% 0.016 210);
  --focus-ring: var(--copper-hover);
  --focus-halo: var(--ink-deep);
  --font: "Manrope", "Segoe UI Variable", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: clamp(20px, 4.4vw, 72px);
  --section: clamp(88px, 12vw, 176px);
  --max: 1440px;
}

.mode-copy {
  display: block;
  animation: copy-mode-enter 240ms var(--ease) both;
}

.mode-copy--technical {
  display: none;
}

html[data-content-mode="technical"] .mode-copy--ordinary {
  display: none;
}

html[data-content-mode="technical"] .mode-copy--technical {
  display: block;
}

@keyframes copy-mode-enter {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: clip;
  background: var(--ink-deep);
}

section[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 450;
  line-height: 1.55;
  letter-spacing: -0.015em;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: oklch(8% 0.01 210 / 34%);
  backdrop-filter: blur(3px);
  content: "";
  pointer-events: none;
  animation: menu-backdrop-in 300ms var(--ease) both;
}

.mobile-nav-fallback {
  display: none;
}

button,
input,
textarea,
select,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5.8vw, 6rem);
  font-weight: 620;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--focus-halo);
}

.site-header {
  --page-progress: 0%;
  position: fixed;
  z-index: 100;
  top: clamp(10px, 1.5vw, 18px);
  left: clamp(10px, 2vw, 28px);
  width: calc(100% - clamp(20px, 4vw, 56px));
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 0 clamp(12px, 1.4vw, 20px);
  color: var(--paper);
  background: oklch(15% 0.014 210 / 92%);
  border: 1px solid oklch(100% 0 0 / 16%);
  border-radius: 18px;
  box-shadow: 0 18px 54px oklch(8% 0.01 210 / 18%);
  backdrop-filter: blur(18px) saturate(0.88);
  opacity: 0;
  transform: translateY(-18px) scaleX(0.78);
  animation: masthead-unfold 760ms var(--ease) 80ms forwards;
  transition: color 260ms var(--ease), background-color 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease), transform 300ms var(--ease);
}

.site-header.is-sticky {
  color: var(--paper);
  background: oklch(13% 0.014 210 / 97%);
  border-color: oklch(100% 0 0 / 20%);
  box-shadow: 0 20px 62px oklch(7% 0.01 210 / 30%);
}

.site-header::after {
  position: absolute;
  right: auto;
  bottom: -1px;
  left: 18px;
  width: calc(100% - 36px);
  height: 2px;
  background: var(--copper);
  border-radius: 999px;
  box-shadow: 0 0 14px color-mix(in oklch, var(--copper) 55%, transparent);
  content: "";
  transform: scaleX(var(--page-progress));
  transform-origin: left;
  transition: transform 120ms linear;
}

.site-header:focus-within {
  transform: translateY(0) !important;
}

.product-lockup {
  width: clamp(218px, 19vw, 258px);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-8px);
  animation: masthead-item-in 560ms var(--ease) 360ms forwards;
  transition: transform 220ms var(--ease), filter 220ms var(--ease);
}

.product-lockup:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.product-lockup img {
  width: 100%;
  height: auto;
  display: block;
}

.product-lockup .lockup-dark {
  display: none;
}

.phone-brandmark {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--copper);
  border-radius: 2px 8px 2px 2px;
  transform: rotate(-6deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  margin-left: auto;
  opacity: 0;
  transform: translateY(-8px);
  animation: masthead-item-in 560ms var(--ease) 430ms forwards;
}

.preference-controls {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: clamp(18px, 2vw, 30px);
  opacity: 0;
  transform: translateY(-8px);
  animation: masthead-item-in 560ms var(--ease) 500ms forwards;
}

.content-mode-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  border: 1px solid oklch(100% 0 0 / 24%);
  border-radius: 12px;
  background: oklch(7% 0.01 210 / 42%);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 8%);
  overflow: hidden;
}

.content-mode-toggle::before {
  position: absolute;
  z-index: 0;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  background: var(--copper);
  border-radius: 8px;
  box-shadow: 0 6px 16px color-mix(in oklch, var(--copper) 24%, transparent);
  content: "";
  transform: translateX(0);
  transition: transform 340ms var(--ease), background-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

html[data-content-mode="technical"] .content-mode-toggle::before {
  transform: translateX(100%);
}

.content-mode-toggle button {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding: 0 12px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 0.73rem;
  font-weight: 680;
  white-space: nowrap;
  cursor: pointer;
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

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

.content-mode-toggle button[aria-pressed="true"] {
  color: var(--ink-deep);
  background: transparent;
}

.content-mode-toggle button:not([aria-pressed="true"]):hover {
  color: var(--paper);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  color: inherit;
  background: oklch(7% 0.01 210 / 36%);
  border: 1px solid oklch(100% 0 0 / 24%);
  border-radius: 12px;
  cursor: pointer;
  transition: color 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.theme-toggle:hover {
  color: var(--copper-hover);
  background: oklch(100% 0 0 / 10%);
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--copper) 46%, transparent);
  transform: translateY(-1px) rotate(-7deg);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.theme-toggle .sun-icon {
  display: none;
}

html[data-theme="dark"] .theme-toggle .moon-icon {
  display: none;
}

html[data-theme="dark"] .theme-toggle .sun-icon {
  display: block;
  animation: theme-glyph-in 380ms var(--ease) both;
}

html[data-theme="light"] .theme-toggle .moon-icon {
  animation: theme-glyph-in 380ms var(--ease) both;
}

.preference-note {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(310px, 80vw);
  margin: 0;
  padding: 14px 16px;
  color: var(--ink-deep);
  background: var(--copper);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
  box-shadow: 0 18px 42px oklch(8% 0.01 210 / 24%);
}

.preference-note::before {
  position: absolute;
  top: -6px;
  right: 64px;
  width: 12px;
  height: 12px;
  background: var(--copper);
  content: "";
  transform: rotate(45deg);
}

.preference-note[hidden] {
  display: none;
}

.mobile-preferences {
  display: none;
}

.desktop-nav a,
.site-footer > a:last-child {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-inline: 10px;
  position: relative;
  color: color-mix(in oklch, currentColor 76%, transparent);
  font-size: 0.86rem;
  font-weight: 620;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.desktop-nav a:hover,
.site-footer > a:last-child:hover {
  color: currentColor;
}

.desktop-nav a::after {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 2px;
  background: var(--copper);
  border-radius: 99px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="location"] {
  color: currentColor;
  transform: translateY(-1px);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-left: clamp(24px, 3vw, 48px);
  padding: 0 16px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  gap: 10px;
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--ink) 12%, transparent), 0 10px 28px color-mix(in oklch, var(--copper) 16%, transparent);
  opacity: 0;
  transform: translateY(-8px);
  animation: masthead-item-in 560ms var(--ease) 570ms forwards;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.header-cta::after {
  content: "→";
  transition: transform 220ms var(--ease);
}

.header-cta:hover {
  background: var(--copper-hover);
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--ink) 14%, transparent), 0 14px 32px color-mix(in oklch, var(--copper) 28%, transparent);
  transform: translateY(-2px) scale(1.01);
}

.header-cta:hover::after {
  transform: translateX(3px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  background: var(--ink);
  --focus-ring: var(--paper);
  --focus-halo: var(--ink-deep);
}

.hero-picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  display: block;
}

.hero-image {
  object-fit: cover;
  object-position: 57% center;
  scale: 1.035;
  animation: hero-image 1500ms var(--ease) 80ms both;
}

.hero-shade {
  background:
    linear-gradient(90deg, oklch(13% 0.014 210 / 91%) 0%, oklch(14% 0.015 210 / 72%) 31%, transparent 64%),
    linear-gradient(0deg, oklch(12% 0.012 210 / 66%) 0%, transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 69vw);
  padding: 156px var(--gutter) clamp(92px, 10vh, 132px);
}

.hero-kicker {
  margin-bottom: 22px;
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--copper-hover);
  opacity: 0;
  animation: hero-enter 700ms var(--ease) 260ms both;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: clamp(24px, 3.5vh, 38px);
  font-size: clamp(3.4rem, 7vw, 7.7rem);
  font-weight: 640;
  line-height: 0.91;
  letter-spacing: -0.052em;
  opacity: 0;
  transform: translateY(30px);
  animation: hero-enter 900ms var(--ease) 360ms both;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 30px;
  color: oklch(92% 0.01 130);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.52;
  opacity: 0;
  animation: hero-enter 850ms var(--ease) 480ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: hero-enter 850ms var(--ease) 600ms both;
}

.hero-contact {
  min-height: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 18px;
  margin-top: 13px;
  color: oklch(93% 0.01 120);
  font-size: 0.86rem;
  opacity: 0;
  animation: hero-enter 850ms var(--ease) 690ms both;
}

.hero-contact a,
.hero-contact button,
.copy-email {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  cursor: pointer;
}

.hero-contact button {
  color: var(--copper-hover);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 670;
  text-decoration: none;
  transition: transform 200ms var(--ease), background-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

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

.button-primary {
  color: var(--ink-deep);
  background: var(--copper);
}

.button-primary:hover {
  background: var(--copper-hover);
  box-shadow: 0 12px 30px oklch(8% 0.01 210 / 25%);
}

.button-ghost {
  color: var(--paper);
  border-color: oklch(100% 0 0 / 46%);
  background: oklch(14% 0.01 210 / 45%);
}

.button-ghost:hover {
  background: oklch(100% 0 0 / 12%);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  animation: hero-enter 700ms var(--ease) 850ms both;
}

.hero-scroll svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  animation: scroll-nudge 1900ms var(--ease) 1400ms infinite;
}

.problem,
.start {
  padding: var(--section) var(--gutter);
  background: var(--paper);
}

.problem {
  min-height: 100svh;
  --focus-ring: var(--ink);
  --focus-halo: var(--paper);
}

.problem-heading,
.problem-layout,
.problem-answer,
.handoff-line,
.start-heading,
.start-list,
.growth-line,
.workday-intro,
.workday-stage,
.control {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.problem-heading {
  display: block;
}

.problem-heading h2 {
  max-width: 970px;
}

.problem-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: clamp(44px, 8vw, 140px);
  margin-top: clamp(80px, 11vw, 160px);
}

.problem-lead {
  max-width: 470px;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  font-weight: 560;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.noise-stream {
  border-top: 1px solid color-mix(in oklch, var(--ink) 25%, transparent);
}

.noise-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: 72px 1fr 1.3fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 18%, transparent);
}

.noise-row time,
.noise-row span {
  color: var(--muted-paper);
  font-size: 0.88rem;
}

.noise-row b {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 620;
}

.problem-answer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: clamp(70px, 9vw, 136px);
  padding-top: 28px;
  border-top: 1px solid color-mix(in oklch, var(--ink) 32%, transparent);
}

.problem-answer > span {
  color: var(--copper-text);
  font-size: 2.2rem;
  line-height: 1;
}

.problem-answer p {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 580;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.workday {
  position: relative;
  padding: var(--section) var(--gutter) calc(var(--section) * 1.08);
  color: var(--paper);
  background: var(--ink-deep);
  --focus-ring: var(--paper);
  --focus-halo: var(--ink-deep);
}

.workday-intro {
  display: grid;
  grid-template-columns: minmax(440px, 3.6fr) 1fr;
  gap: clamp(38px, 5vw, 82px);
  align-items: end;
  margin-bottom: clamp(78px, 10vw, 140px);
}

.workday-intro h2 {
  max-width: 920px;
}

.workday-intro > p:last-child {
  margin: 0 0 6px 38px;
  color: var(--muted-dark);
  font-size: 0.96rem;
}

.workday-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(390px, 0.9fr);
  gap: clamp(64px, 10vw, 170px);
  align-items: start;
}

.story-steps {
  padding-bottom: 16vh;
}

.story-step {
  width: 100%;
  min-height: min(52vh, 490px);
  display: grid;
  grid-template-columns: 108px 1fr;
  align-content: center;
  gap: 24px;
  padding: 0;
  text-align: left;
  border: 0;
  border-bottom: 1px solid oklch(100% 0 0 / 13%);
  background: transparent;
  cursor: pointer;
  opacity: 1;
  transition: transform 350ms var(--ease), border-color 350ms var(--ease);
}

.story-step:hover,
.story-step.is-active {
  transform: translateX(12px);
  border-color: oklch(100% 0 0 / 34%);
}

.story-time {
  color: var(--copper-hover);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-text strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  font-weight: 590;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: oklch(82% 0.014 120);
}

.story-text {
  max-width: 580px;
  color: var(--muted-dark);
}

.story-step.is-active .story-text {
  color: var(--paper);
}

.story-step.is-active .story-text strong {
  color: var(--paper);
}

.phone-wrap {
  position: sticky;
  top: clamp(98px, 11vh, 130px);
  min-height: 720px;
  display: grid;
  place-items: start center;
  perspective: 1000px;
}

.phone-glow {
  position: absolute;
  top: 10%;
  width: 80%;
  height: 60%;
  background: var(--copper);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.13;
}

.phone {
  position: relative;
  width: min(100%, 396px);
  height: 706px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 9px solid oklch(12% 0.01 210);
  border-radius: 48px;
  box-shadow: 0 40px 100px oklch(7% 0.01 210 / 64%);
  transform: rotateY(-1.5deg) rotateX(0.5deg);
  transition: transform 550ms var(--ease);
  --focus-ring: var(--ink);
  --focus-halo: var(--paper);
}

.phone.is-switching {
  transform: rotateY(1deg) rotateX(0deg) translateY(-7px) scale(1.01);
}

.phone-hardware {
  position: absolute;
  z-index: 10;
  top: 7px;
  left: 50%;
  width: 106px;
  height: 27px;
  background: oklch(12% 0.01 210);
  border-radius: 20px;
  transform: translateX(-50%);
}

.phone-statusbar {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  font-size: 0.78rem;
  font-weight: 680;
}

.phone-appbar {
  height: 53px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-top: 1px solid color-mix(in oklch, var(--ink) 8%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 11%, transparent);
  font-size: 0.82rem;
  font-weight: 670;
}

.phone-brandmark {
  width: 14px;
  height: 14px;
}

.phone-online {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  color: var(--muted-paper);
  font-size: 0.8rem;
  font-weight: 520;
}

.phone-online i,
.permission-status i {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: var(--mint);
  border-radius: 50%;
}

.phone-screen {
  height: calc(100% - 124px);
  overflow-y: auto;
  padding: 25px 20px 34px;
  scrollbar-width: none;
}

.phone-screen::-webkit-scrollbar {
  display: none;
}

.phone-screen.view-enter > * {
  animation: view-enter 430ms var(--ease) both;
}

.phone-screen.view-enter > *:nth-child(2) { animation-delay: 45ms; }
.phone-screen.view-enter > *:nth-child(3) { animation-delay: 85ms; }
.phone-screen.view-enter > *:nth-child(4) { animation-delay: 120ms; }
.phone-screen.view-enter > *:nth-child(5) { animation-delay: 150ms; }

.phone-home {
  position: absolute;
  bottom: 9px;
  left: 50%;
  width: 116px;
  height: 4px;
  background: oklch(16% 0.01 210);
  border-radius: 4px;
  transform: translateX(-50%);
}

.phone-kicker {
  margin: 0 0 8px;
  color: var(--muted-paper);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone-screen h3 {
  margin: 0 0 21px;
  font-size: 1.72rem;
  font-weight: 630;
  line-height: 1.02;
  letter-spacing: -0.048em;
}

.phone-summary {
  margin: -8px 0 22px;
  color: var(--muted-paper);
  font-size: 0.86rem;
  line-height: 1.45;
}

.phone-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 8px;
  color: var(--muted-paper);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.task-list,
.prep-list,
.source-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.task-item {
  display: grid;
  grid-template-columns: 49px 1fr auto;
  align-items: start;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid color-mix(in oklch, var(--ink) 10%, transparent);
}

.task-time {
  color: var(--muted-paper);
  font-size: 0.8rem;
  font-weight: 650;
}

.task-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.25;
}

.task-item small {
  display: block;
  color: var(--muted-paper);
  font-size: 0.8rem;
  line-height: 1.35;
}

.priority-dot {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  background: var(--copper);
  border-radius: 50%;
}

.done-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 12px 13px;
  background: color-mix(in oklch, var(--mint) 26%, var(--paper));
  border-radius: 11px;
  font-size: 0.8rem;
  font-weight: 590;
}

.done-note span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.65rem;
}

.phone-action {
  width: 100%;
  min-height: 45px;
  margin-top: 16px;
  padding: 10px 15px;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 180ms var(--ease), transform 180ms var(--ease);
}

.phone-action:hover {
  background: var(--slate);
  transform: translateY(-1px);
}

.phone-action:disabled {
  color: var(--muted-paper);
  background: var(--paper-deep);
  border: 1px solid color-mix(in oklch, var(--ink) 22%, transparent);
  cursor: default;
  transform: none;
}

.phone-action.secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid color-mix(in oklch, var(--ink) 22%, transparent);
}

.phone-action.secondary:hover {
  background: color-mix(in oklch, var(--paper) 82%, var(--stone));
}

.prep-block {
  margin-bottom: 12px;
  padding: 14px;
  background: color-mix(in oklch, var(--paper) 86%, var(--stone));
  border-radius: 12px;
}

.prep-block b {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-paper);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prep-block p,
.prep-block li {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.42;
}

.prep-block ul {
  margin: 0;
  padding-left: 17px;
}

.source-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: var(--muted-paper);
  background: transparent;
  border: 0;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.source-drawer {
  display: none;
  margin-top: 8px;
  padding: 10px 12px;
  color: var(--muted-paper);
  background: color-mix(in oklch, var(--paper) 86%, var(--stone));
  border-radius: 10px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.source-drawer.is-open {
  display: block;
  animation: drawer-enter 240ms var(--ease) both;
}

.query-bubble {
  margin: 0 0 13px 34px;
  padding: 11px 13px;
  color: var(--paper);
  background: var(--slate);
  border-radius: 13px 13px 3px 13px;
  font-size: 0.84rem;
  line-height: 1.42;
}

.answer-bubble {
  padding: 15px;
  background: color-mix(in oklch, var(--paper) 86%, var(--stone));
  border-radius: 3px 13px 13px 13px;
  font-size: 0.84rem;
  line-height: 1.46;
}

.answer-bubble strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
}

.history {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.history li {
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 10px;
  padding: 0 0 12px 15px;
  border-left: 1px solid color-mix(in oklch, var(--ink) 18%, transparent);
  font-size: 0.8rem;
}

.history li::before {
  position: absolute;
  top: 4px;
  left: -4px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--copper);
  border-radius: 50%;
}

.history time {
  color: var(--muted-paper);
  font-weight: 650;
}

.recurring-status {
  position: relative;
  overflow: hidden;
  margin: 12px 0 16px;
  padding: 18px 15px;
  color: var(--paper);
  background: var(--slate);
  border-radius: 14px;
}

.recurring-status::after {
  position: absolute;
  top: -30px;
  right: -28px;
  width: 110px;
  height: 110px;
  content: "";
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.14;
}

.recurring-status span {
  display: block;
  margin-bottom: 5px;
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recurring-status strong {
  display: block;
  max-width: 230px;
  font-size: 1.05rem;
  line-height: 1.18;
}

.source-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 10%, transparent);
  font-size: 0.8rem;
}

.source-list li span:last-child {
  color: var(--muted-paper);
}

.phone-toast {
  position: absolute;
  z-index: 20;
  right: 16px;
  bottom: 25px;
  left: 16px;
  padding: 11px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 10px;
  box-shadow: 0 12px 32px oklch(8% 0.01 210 / 24%);
  font-size: 0.8rem;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

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

.demo-mobile-tabs {
  display: none;
}

.handoff-line {
  min-height: 134px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 36px var(--gutter);
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid color-mix(in oklch, var(--ink) 18%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 18%, transparent);
  --focus-ring: var(--ink);
  --focus-halo: var(--paper);
}

.handoff-line p {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
}

.handoff-line strong {
  margin-right: 0.28em;
}

.handoff-line a {
  min-height: 44px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 700;
  text-underline-offset: 6px;
}

.start {
  background: var(--paper-deep);
  --focus-ring: var(--ink);
  --focus-halo: var(--paper-deep);
}

.start-heading {
  display: grid;
  grid-template-columns: minmax(500px, 2.2fr) 0.75fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(70px, 9vw, 128px);
}

.start-heading > p:last-child {
  margin: 0 0 7px;
  color: var(--muted-paper);
}

.start-list {
  padding: 0;
  list-style: none;
  border-top: 1px solid color-mix(in oklch, var(--ink) 28%, transparent);
}

.start-list li {
  display: grid;
  grid-template-columns: minmax(80px, 0.5fr) minmax(420px, 2.2fr) 0.75fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 18%, transparent);
}

.start-list li > span {
  color: var(--copper-text);
  font-size: 0.85rem;
  font-weight: 750;
}

.start-list h3 {
  margin: 0 0 7px;
  font-size: clamp(1.4rem, 2.2vw, 2.05rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.start-list p {
  max-width: 640px;
  margin: 0;
  color: var(--muted-paper);
}

.growth-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0;
  margin-top: clamp(70px, 9vw, 124px);
  padding: 0;
  list-style: none;
}

.growth-line li {
  position: relative;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 64px;
  font-size: 0.94rem;
}

.growth-line li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 28px;
  height: 1px;
  content: "";
  background: color-mix(in oklch, var(--ink) 34%, transparent);
}

.growth-line b {
  margin-bottom: 4px;
  color: var(--copper-text);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.control {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(66px, 10vw, 160px);
  align-items: center;
  padding: var(--section) var(--gutter);
  color: var(--paper);
  background: var(--slate);
  --focus-ring: var(--paper);
  --focus-halo: var(--slate);
}

.control-copy h2 {
  margin-bottom: 28px;
}

.control-copy > p:last-child {
  max-width: 470px;
  color: oklch(82% 0.015 210);
}

.permission-panel {
  overflow: hidden;
  background: var(--paper);
  border-radius: 24px;
  color: var(--ink);
  --focus-ring: var(--ink);
  --focus-halo: var(--paper);
}

.permission-head,
.permission-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 3vw, 34px);
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 12%, transparent);
}

.permission-head {
  min-height: 70px;
  font-size: 0.88rem;
  font-weight: 700;
}

.permission-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-paper);
  font-size: 0.76rem;
  font-weight: 550;
}

.permission-row strong,
.permission-row small {
  display: block;
}

.permission-row strong {
  margin-bottom: 3px;
  font-size: 0.92rem;
}

.permission-row small {
  color: var(--muted-paper);
  font-size: 0.78rem;
}

.state {
  min-width: 78px;
  padding: 6px 9px;
  color: var(--muted-paper);
  background: var(--paper-deep);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 650;
  text-align: center;
}

.state-on {
  color: var(--ink-deep);
  background: color-mix(in oklch, var(--mint) 70%, var(--paper));
}

.permission-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px clamp(20px, 3vw, 34px) 25px;
  color: var(--muted-paper);
  font-size: 0.76rem;
  line-height: 1.4;
}

.permission-foot span::before {
  display: inline-block;
  margin-right: 6px;
  color: var(--copper-text);
  content: "✓";
  font-weight: 800;
}

.trust-review {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 2.2fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid oklch(100% 0 0 / 24%);
}

.trust-review strong {
  color: var(--copper-hover);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-review p {
  max-width: 860px;
  margin: 0;
  color: oklch(88% 0.014 130);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.final-cta {
  padding: clamp(100px, 14vw, 210px) var(--gutter);
  color: var(--ink-deep);
  background: var(--copper);
  --focus-ring: var(--ink-deep);
  --focus-halo: var(--paper);
}

.final-cta-inner {
  width: min(100%, 1160px);
  margin-inline: auto;
}

.final-cta-inner > p:first-child {
  margin-bottom: 23px;
  font-size: 0.8rem;
  font-weight: 730;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 1040px;
  margin-bottom: 34px;
  font-size: clamp(3.1rem, 7.2vw, 7.5rem);
}

.final-cta-inner > p:nth-of-type(2) {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.button-dark {
  color: var(--paper);
  background: var(--ink-deep);
}

.button-dark:hover {
  background: var(--slate);
  box-shadow: 0 12px 30px oklch(12% 0.01 210 / 20%);
}

.cta-contact {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 20px;
}

.email-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  font-weight: 650;
  text-underline-offset: 6px;
}

.copy-email {
  color: var(--ink-deep);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 2fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px var(--gutter);
  color: var(--paper);
  background: var(--ink-deep);
}

.site-footer p {
  max-width: 470px;
  margin: 0 auto;
  color: var(--muted-dark);
  font-size: 0.78rem;
  text-align: center;
}

.site-footer > a:last-child {
  justify-self: end;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms var(--ease), transform 750ms var(--ease);
}

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

/* Individcentrerad berättelse */

.section-eyebrow {
  margin-bottom: 20px;
  color: var(--copper-text);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-intro-note {
  margin-bottom: 20px;
  color: var(--copper-hover);
  font-size: 0.95rem;
  font-weight: 620;
}

.hero-content {
  width: min(980px, 73vw);
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(3.4rem, 6.35vw, 7rem);
}

.hero-note {
  margin: 24px 0 0;
  color: oklch(86% 0.015 125);
  font-size: 0.79rem;
  font-weight: 590;
  letter-spacing: 0.015em;
  opacity: 0;
  animation: hero-enter 850ms var(--ease) 720ms both;
}

.offer-summary {
  padding: clamp(48px, 6vw, 82px) var(--gutter);
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid oklch(100% 0 0 / 15%);
}

.offer-summary-inner {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: start;
  margin-inline: auto;
}

.offer-summary-inner > div:first-child > p {
  margin-bottom: 16px;
  color: var(--copper-hover);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-summary h2 {
  font-size: clamp(2rem, 3.25vw, 3.55rem);
  line-height: 1.02;
}

.offer-parts {
  border-top: 1px solid oklch(100% 0 0 / 24%);
}

.offer-parts p {
  display: grid;
  grid-template-columns: minmax(160px, 0.65fr) 1.35fr;
  gap: 24px;
  margin: 0;
  padding: 19px 0;
  border-bottom: 1px solid oklch(100% 0 0 / 15%);
}

.offer-parts strong {
  font-size: 0.88rem;
}

.offer-parts span {
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.personal-intelligence {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: end;
  padding: var(--section) var(--gutter);
  color: var(--ink);
  background: var(--paper-deep);
  --focus-ring: var(--ink);
  --focus-halo: var(--paper-deep);
}

.personal-intelligence-copy,
.intelligence-comparison,
.library-copy,
.library-figure,
.mandate-heading,
.mandate-scale,
.mandate-note,
.possibilities-intro,
.possibility-explorer,
.possibility-note,
.films-intro,
.film-stage,
.yours-intro,
.yours-steps,
.learning-curve,
.delivery-heading,
.delivery-lines,
.hosting-copy,
.hosting-options,
.pricing-head,
.pricing-levels,
.pricing-plain,
.start-price,
.faq-intro,
.faq-list,
.shape-intro,
.shape-form,
.shape-result,
.direct-contact {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.personal-intelligence-copy {
  margin: 0;
}

.personal-intelligence-copy h2 {
  max-width: 880px;
  margin-bottom: 34px;
}

.personal-intelligence-copy > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted-paper);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
}

.intelligence-comparison {
  margin: 0;
  border-top: 1px solid color-mix(in oklch, var(--ink) 30%, transparent);
}

.intelligence-comparison > div {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 18%, transparent);
}

.intelligence-comparison h3 {
  margin: 0;
  color: var(--copper-text);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intelligence-comparison p {
  margin: 0;
  font-weight: 560;
}

.library {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(68px, 9vw, 150px);
  align-items: center;
  padding: var(--section) var(--gutter);
  color: var(--paper);
  background: var(--slate);
  --focus-ring: var(--paper);
  --focus-halo: var(--slate);
}

.library-copy,
.library-figure {
  margin: 0;
}

.library .section-eyebrow,
.workday .section-eyebrow {
  color: var(--copper-hover);
}

.library-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(2.7rem, 4.8vw, 5.4rem);
}

.library-copy > p:not(.section-eyebrow) {
  max-width: 650px;
  color: oklch(86% 0.016 140);
}

.library-copy .personal-definition {
  margin-bottom: 30px;
  padding-bottom: 30px;
  color: var(--paper);
  border-bottom: 1px solid oklch(100% 0 0 / 19%);
  font-size: clamp(1.03rem, 1.35vw, 1.25rem);
}

.library-figure {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  background: var(--ink-deep);
  border: 1px solid oklch(100% 0 0 / 15%);
  border-radius: 24px;
}

.library-figure::before {
  position: absolute;
  top: -170px;
  right: -110px;
  width: 360px;
  height: 360px;
  content: "";
  background: var(--copper);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}

.library-figure figcaption {
  position: relative;
  margin-bottom: 18px;
  color: var(--copper-hover);
  font-size: 0.75rem;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.library-figure blockquote {
  position: relative;
  max-width: 620px;
  margin: 0 0 30px;
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  font-weight: 590;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.library-sources {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  padding: 5px;
  background: oklch(100% 0 0 / 6%);
  border-radius: 12px;
}

.library-sources span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 7px;
  color: oklch(84% 0.015 140);
  border: 1px solid oklch(100% 0 0 / 11%);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 620;
}

.library-pick {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.library-pick i {
  width: 8px;
  height: 8px;
  display: block;
  background: var(--copper);
  border-radius: 50%;
  animation: library-pulse 1900ms var(--ease) infinite;
}

.library-pick i:nth-child(2) { animation-delay: 160ms; }
.library-pick i:nth-child(3) { animation-delay: 320ms; }

.library-result {
  position: relative;
  padding-top: 22px;
  border-top: 1px solid oklch(100% 0 0 / 16%);
}

.library-result > p {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.library-result ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.library-result li {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid oklch(100% 0 0 / 11%);
}

.library-result b {
  font-size: 0.82rem;
}

.library-result span {
  color: oklch(80% 0.016 140);
  font-size: 0.8rem;
  line-height: 1.4;
}

.library-decision {
  margin: 22px 0 0;
  color: oklch(84% 0.015 140);
  font-size: 0.83rem;
}

.library-decision strong {
  color: var(--paper);
}

.illustration-note {
  max-width: 330px;
  margin: 20px auto 0;
  color: oklch(70% 0.015 210);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.mandate {
  padding: var(--section) var(--gutter);
  color: var(--ink);
  background: var(--paper);
  --focus-ring: var(--ink);
  --focus-halo: var(--paper);
}

.mandate-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1.45fr);
  gap: 70px;
  align-items: end;
  margin-bottom: clamp(74px, 9vw, 128px);
}

.mandate-heading .section-eyebrow {
  margin: 0 0 9px;
}

.mandate-heading h2 {
  grid-column: 2;
}

.mandate-scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid color-mix(in oklch, var(--ink) 30%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 30%, transparent);
}

.mandate-scale article {
  min-height: 330px;
  padding: 34px clamp(24px, 3vw, 44px) 40px 0;
}

.mandate-scale article + article {
  padding-left: clamp(24px, 3vw, 44px);
  border-left: 1px solid color-mix(in oklch, var(--ink) 20%, transparent);
}

.mandate-word {
  margin-bottom: clamp(70px, 8vw, 118px);
  color: var(--copper-text);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mandate-scale h3 {
  margin-bottom: 13px;
  font-size: clamp(1.5rem, 2.15vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.mandate-scale article > p:last-child {
  max-width: 380px;
  margin: 0;
  color: var(--muted-paper);
}

.mandate-note {
  margin-top: 24px;
  color: var(--muted-paper);
  font-size: 0.84rem;
}

.mandate-control {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  margin: clamp(74px, 9vw, 126px) auto 0;
  padding: clamp(34px, 5vw, 64px);
  color: var(--paper);
  background: var(--slate);
  border-radius: 24px;
  --focus-ring: var(--paper);
  --focus-halo: var(--slate);
}

.mandate-control .control-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 620;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.mandate-control .control-copy p {
  max-width: 520px;
  margin: 0;
  color: oklch(86% 0.015 140);
}

.becomes-yours {
  padding: var(--section) var(--gutter);
  background: var(--paper-deep);
  --focus-ring: var(--ink);
  --focus-halo: var(--paper-deep);
}

.yours-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(72px, 9vw, 130px);
}

.yours-intro .section-eyebrow,
.yours-intro h2 {
  grid-column: 1;
}

.yours-intro h2 {
  max-width: 920px;
}

.yours-intro > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-bottom: 8px;
  color: var(--muted-paper);
}

.yours-steps {
  border-top: 1px solid color-mix(in oklch, var(--ink) 28%, transparent);
}

.yours-steps article {
  display: grid;
  grid-template-columns: minmax(140px, 0.38fr) minmax(260px, 0.66fr) minmax(320px, 0.96fr);
  column-gap: clamp(24px, 4vw, 64px);
  align-items: baseline;
  padding: clamp(26px, 3.2vw, 44px) 0;
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 17%, transparent);
}

.yours-steps span {
  color: var(--copper-text);
  font-size: 0.88rem;
  font-weight: 720;
}

.yours-steps h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.yours-steps p {
  margin: 0;
  color: var(--muted-paper);
  font-size: 0.94rem;
}

.learning-curve {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(48px, 8vw, 126px);
  margin-top: clamp(62px, 8vw, 112px);
  padding: clamp(38px, 5vw, 66px);
  color: var(--paper);
  background: var(--ink);
}

.learning-curve > div:first-child > span {
  display: block;
  margin-bottom: 18px;
  color: var(--copper-hover);
  font-size: 0.8rem;
  font-weight: 720;
}

.learning-curve h3 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.65rem);
  font-weight: 610;
  line-height: 1;
  letter-spacing: -0.045em;
}

.learning-stages {
  border-top: 1px solid oklch(100% 0 0 / 22%);
}

.learning-stages p {
  display: grid;
  grid-template-columns: minmax(145px, 0.45fr) 1fr;
  gap: 24px;
  margin: 0;
  padding: 21px 0;
  border-bottom: 1px solid oklch(100% 0 0 / 14%);
}

.learning-stages strong {
  color: var(--paper);
  font-size: 0.88rem;
}

.learning-stages span {
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.possibilities {
  padding: var(--section) var(--gutter);
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid oklch(100% 0 0 / 12%);
  --focus-ring: var(--paper);
  --focus-halo: var(--ink);
}

.possibilities-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(58px, 8vw, 108px);
}

.possibilities-intro h2 {
  max-width: 980px;
}

.possibilities-intro > p {
  max-width: 570px;
  margin: 0 0 8px;
  color: var(--muted-dark);
}

.possibility-explorer {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 4vw, 58px);
  min-height: 670px;
  align-items: stretch;
  border-top: 1px solid oklch(100% 0 0 / 20%);
  border-bottom: 1px solid oklch(100% 0 0 / 20%);
}

.possibility-tabs {
  display: flex;
  flex-direction: column;
  padding: 18px clamp(18px, 2.2vw, 34px) 18px 0;
  border-right: 1px solid oklch(100% 0 0 / 16%);
}

.possibility-tabs button {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(78px, 0.4fr) 1fr;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 18px 20px 18px 0;
  color: var(--muted-dark);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid oklch(100% 0 0 / 12%);
  cursor: pointer;
  transition: color 180ms var(--ease), padding-left 220ms var(--ease), background-color 180ms var(--ease);
}

.possibility-tabs button::before {
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--copper);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity 180ms var(--ease), transform 220ms var(--ease);
}

.possibility-tabs button:hover,
.possibility-tabs button[aria-selected="true"] {
  color: var(--paper);
}

.possibility-tabs button[aria-selected="true"] {
  background: oklch(100% 0 0 / 3%);
}

.possibility-tabs button[aria-selected="true"]::before {
  opacity: 1;
  transform: scaleX(1);
}

.no-js-shape-note {
  display: none;
}

.no-js .no-js-shape-note {
  display: block;
  max-width: 760px;
  margin: 0 0 32px;
  color: var(--muted-paper);
}

.no-js .no-js-shape-note a {
  color: var(--ink);
  font-weight: 700;
}

.no-js .shape-form,
.no-js .shape-result,
.no-js .shape-intro > p {
  display: none;
}

.possibility-tabs span {
  color: var(--copper-hover);
  font-size: 0.8rem;
  font-weight: 720;
}

.possibility-tabs strong {
  font-size: clamp(0.98rem, 1.15vw, 1.14rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.possibility-panel {
  min-width: 0;
  align-self: stretch;
  margin: 0;
  overflow: clip;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 24px 70px oklch(7% 0.01 210 / 30%);
  transition: opacity 160ms var(--ease), transform 220ms var(--ease);
}

.possibility-panel.is-switching {
  opacity: 0.48;
  transform: translateY(7px);
}

.possibility-panel-bar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(22px, 3vw, 38px);
  color: var(--muted-dark);
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 680;
}

.possibility-panel-bar span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.possibility-panel-bar i {
  width: 8px;
  height: 8px;
  display: block;
  background: var(--mint);
  border-radius: 50%;
}

.possibility-panel-body {
  padding: clamp(34px, 4vw, 60px);
}

.possibility-kicker {
  margin-bottom: 18px;
  color: var(--copper-text);
  font-size: 0.82rem;
  font-weight: 720;
}

.possibility-panel h3 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 3.65vw, 4rem);
  font-weight: 620;
  line-height: 0.98;
  letter-spacing: -0.05em;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.possibility-summary {
  max-width: 670px;
  margin-bottom: clamp(34px, 4vw, 54px);
  color: var(--muted-paper);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  overflow-wrap: break-word;
}

.possibility-source {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid color-mix(in oklch, var(--ink) 20%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 14%, transparent);
  font-size: 0.82rem;
}

.possibility-source span {
  color: var(--muted-paper);
}

.possibility-result {
  margin: 0;
  padding: 0;
  list-style: none;
}

.possibility-result li {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 14%, transparent);
}

.possibility-result span {
  color: var(--muted-paper);
  font-size: 0.78rem;
}

.possibility-result strong {
  font-size: 0.9rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.possibility-note {
  margin-top: 24px;
  color: var(--muted-dark);
  font-size: 0.8rem;
}

.films {
  padding: var(--section) var(--gutter);
  color: var(--ink);
  background: var(--paper-deep);
  --focus-ring: var(--ink);
  --focus-halo: var(--paper-deep);
}

.films-intro {
  display: grid;
  grid-template-columns: minmax(190px, 0.4fr) minmax(0, 1.6fr);
  gap: clamp(46px, 8vw, 128px);
  margin-bottom: clamp(62px, 9vw, 122px);
}

.films-intro h2 {
  max-width: 1020px;
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
}

.films-intro > div > p {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted-paper);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.film-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(660px, 1.28fr);
  gap: clamp(48px, 8vw, 126px);
  align-items: start;
}

.film-tabs {
  position: sticky;
  top: 112px;
  border-top: 1px solid color-mix(in oklch, var(--ink) 32%, transparent);
}

.film-tabs button {
  position: relative;
  width: 100%;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 52px 24px 0;
  color: var(--muted-paper);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 20%, transparent);
  cursor: pointer;
  transition: color 180ms var(--ease), padding-left 220ms var(--ease);
}

.film-tabs button::after {
  position: absolute;
  right: 8px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  content: "→";
  opacity: 0.45;
  transform: translateX(-6px);
  transition: opacity 180ms var(--ease), transform 220ms var(--ease), background-color 180ms var(--ease);
}

.film-tabs button:hover,
.film-tabs button[aria-selected="true"] {
  color: var(--ink);
}

.film-tabs button[aria-selected="true"] {
  padding-left: 16px;
}

.film-tabs button[aria-selected="true"]::after {
  background: var(--copper);
  opacity: 1;
  transform: translateX(0);
}

.film-tabs span {
  margin-bottom: 7px;
  color: var(--copper-text);
  font-size: 0.875rem;
  font-weight: 720;
}

.film-tabs strong {
  font-size: clamp(1.16rem, 1.65vw, 1.55rem);
  font-weight: 640;
  letter-spacing: -0.03em;
}

.film-tabs small {
  margin-top: 7px;
  color: var(--muted-paper);
  font-size: 0.875rem;
}

.film-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(280px, 1.18fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
  margin: 0;
}

.film-player {
  overflow: hidden;
  background: var(--ink-deep);
  border: 8px solid var(--ink);
  border-radius: 38px;
  box-shadow: 0 38px 90px oklch(18% 0.015 210 / 24%);
  transition: opacity 160ms var(--ease), transform 220ms var(--ease);
}

.film-panel.is-switching .film-player,
.film-panel.is-switching figcaption {
  opacity: 0.5;
  transform: translateY(7px);
}

.film-player video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  background: var(--ink-deep);
  object-fit: cover;
}

.film-error {
  margin: 0;
  padding: 16px 20px;
  color: var(--paper);
  background: var(--ink-deep);
  font-size: 0.875rem;
}

.film-noscript {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid color-mix(in oklch, var(--ink) 20%, transparent);
}

.film-noscript p {
  margin: 0;
}

.film-panel .film-caption {
  transition: opacity 160ms var(--ease), transform 220ms var(--ease);
}

.film-kicker {
  margin-bottom: 15px;
  color: var(--copper-text);
  font-size: 0.8rem;
  font-weight: 720;
}

.film-panel .film-caption h3 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  font-weight: 620;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.film-panel .film-caption > p:not(.film-kicker, .film-proof, .film-disclaimer) {
  color: var(--muted-paper);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.film-proof {
  margin: clamp(34px, 5vw, 58px) 0 0;
  padding: 22px 0;
  border-top: 1px solid color-mix(in oklch, var(--ink) 28%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 18%, transparent);
}

.film-proof strong,
.film-proof span {
  display: block;
}

.film-proof strong {
  margin-bottom: 9px;
  color: var(--copper-text);
  font-size: 0.78rem;
}

.film-proof span {
  font-weight: 600;
  line-height: 1.45;
}

.film-disclaimer {
  margin: 18px 0 0;
  color: var(--muted-paper);
  font-size: 0.875rem;
}

.faq {
  padding: var(--section) var(--gutter);
  color: var(--ink);
  background: var(--stone);
  --focus-ring: var(--ink);
  --focus-halo: var(--stone);
}

.faq-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1.64fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
  margin-bottom: clamp(50px, 8vw, 104px);
}

.faq-intro h2 {
  max-width: 950px;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
}

.faq-list {
  border-top: 1px solid color-mix(in oklch, var(--ink) 35%, transparent);
}

.faq-list details {
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 24%, transparent);
}

.faq-list summary {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 22px 70px 22px 0;
  font-size: clamp(1.14rem, 1.8vw, 1.65rem);
  font-weight: 630;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  content: "+";
  font-size: 1.25rem;
  font-weight: 450;
  line-height: 1;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease);
}

.faq-list details[open] summary::after {
  color: var(--ink);
  background: var(--copper);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 820px;
  margin: -2px 0 0 clamp(180px, 20vw, 320px);
  padding: 0 0 30px;
  color: var(--muted-paper);
  font-size: clamp(0.98rem, 1.25vw, 1.13rem);
}

.delivery {
  padding: var(--section) var(--gutter);
  color: var(--paper);
  background: var(--ink);
  --focus-ring: var(--paper);
  --focus-halo: var(--ink-deep);
}

.delivery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(520px, 1.5fr);
  gap: 70px;
  align-items: end;
  margin-bottom: clamp(70px, 9vw, 126px);
}

.delivery-heading h2 {
  grid-column: 2;
}

.delivery-heading .section-eyebrow {
  margin-bottom: 8px;
}

.delivery-lines {
  border-top: 1px solid oklch(100% 0 0 / 23%);
}

.delivery-lines > div {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) 1.25fr;
  gap: 50px;
  align-items: baseline;
  padding: 31px 0;
  border-bottom: 1px solid oklch(100% 0 0 / 14%);
}

.delivery-lines strong {
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
  font-weight: 590;
  letter-spacing: -0.035em;
}

.delivery-lines p {
  max-width: 680px;
  margin: 0;
  color: var(--muted-dark);
}

.hosting {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
  padding: var(--section) var(--gutter);
  background: var(--paper);
  --focus-ring: var(--ink);
  --focus-halo: var(--paper);
}

.hosting-copy,
.hosting-options {
  margin: 0;
}

.hosting-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(2.7rem, 4.7vw, 5.2rem);
}

.hosting-copy > p:last-child {
  max-width: 620px;
  color: var(--muted-paper);
}

.hosting-options {
  border-top: 1px solid color-mix(in oklch, var(--ink) 30%, transparent);
}

.hosting-options article {
  padding: 30px 0 34px;
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 19%, transparent);
}

.hosting-options > article > span {
  color: var(--copper-text);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hosting-options h3 {
  margin: 13px 0 10px;
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hosting-options h4 {
  margin: 13px 0 10px;
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
  font-weight: 620;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hosting-options p {
  max-width: 680px;
  margin: 0;
  color: var(--muted-paper);
}

.hosting-inline {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(54px, 8vw, 130px);
  margin: clamp(78px, 10vw, 142px) auto 0;
  padding-top: clamp(38px, 5vw, 64px);
  border-top: 2px solid var(--ink);
}

.hosting-inline-heading h3 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.045em;
}

.hosting-inline-heading p {
  max-width: 550px;
  margin: 0;
  color: var(--muted-paper);
}

.web-preview {
  width: min(100%, var(--max));
  margin: clamp(80px, 10vw, 144px) auto 0;
}

.web-preview figcaption {
  margin-bottom: 16px;
  color: var(--muted-paper);
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-shell {
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--ink) 26%, transparent);
  border-radius: 18px;
  box-shadow: 0 34px 80px oklch(18% 0.014 210 / 13%);
}

.web-topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--ink-deep);
  font-size: 0.76rem;
}

.web-topbar i {
  width: 8px;
  height: 8px;
  background: oklch(100% 0 0 / 29%);
  border-radius: 50%;
}

.web-topbar span {
  margin-left: 12px;
  font-weight: 650;
}

.web-topbar b {
  margin-left: auto;
  color: var(--mint);
  font-weight: 580;
}

.web-workspace {
  min-height: 480px;
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--paper);
}

.web-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 34px 24px;
  color: var(--muted-paper);
  background: color-mix(in oklch, var(--paper) 84%, var(--stone));
  border-right: 1px solid color-mix(in oklch, var(--ink) 12%, transparent);
}

.web-side strong,
.web-side span {
  padding: 11px 12px;
  font-size: 0.8rem;
}

.web-side strong {
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
}

.web-main {
  padding: clamp(40px, 6vw, 82px);
}

.web-main > p {
  margin-bottom: 10px;
  color: var(--muted-paper);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-main h3 {
  margin-bottom: 42px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 630;
  line-height: 1;
  letter-spacing: -0.05em;
}

.web-focus {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) 1.55fr;
  gap: 26px;
  padding: 24px 0;
  border-top: 1px solid color-mix(in oklch, var(--ink) 24%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 18%, transparent);
}

.web-focus span {
  color: var(--copper-text);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.web-focus strong {
  max-width: 600px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.22;
}

.web-source-line {
  display: grid;
  grid-template-columns: minmax(120px, 0.5fr) 1.5fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 18%, transparent);
  font-size: 0.82rem;
}

.web-source-line span {
  color: var(--muted-paper);
}

.web-source-line button {
  min-height: 40px;
  padding: 8px 13px;
  color: var(--muted-paper);
  background: var(--paper-deep);
  border: 1px solid color-mix(in oklch, var(--ink) 18%, transparent);
  border-radius: 8px;
}

.pricing {
  padding: var(--section) var(--gutter);
  color: var(--ink);
  background: var(--paper-deep);
  --focus-ring: var(--ink);
  --focus-halo: var(--paper-deep);
}

.pricing-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 54px);
}

.pricing-head h2 {
  max-width: 980px;
}

.pricing-head > p:last-child {
  align-self: end;
  margin-bottom: 7px;
  color: var(--muted-paper);
}

.pricing-guidance {
  max-width: 820px;
  margin: 0 0 clamp(42px, 6vw, 76px);
  padding-top: 18px;
  color: var(--muted-paper);
  border-top: 1px solid color-mix(in oklch, var(--ink) 28%, transparent);
  font-size: 0.96rem;
}

.pricing-levels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid color-mix(in oklch, var(--ink) 32%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 32%, transparent);
}

.pricing-level {
  --capacity: 34%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(30px, 4.4vw, 60px) clamp(24px, 3.6vw, 52px) clamp(34px, 4.8vw, 66px);
  background: color-mix(in oklch, var(--paper) 26%, transparent);
  transition: transform 260ms var(--ease), background-color 260ms var(--ease);
}

.pricing-level + .pricing-level {
  border-left: 1px solid color-mix(in oklch, var(--ink) 23%, transparent);
}

.pricing-level:hover,
.pricing-level:focus-within {
  z-index: 1;
  background: color-mix(in oklch, var(--paper) 62%, var(--paper-deep));
  transform: translateY(-8px);
}

.pricing-level-flow {
  --capacity: 67%;
  background: color-mix(in oklch, var(--copper) 13%, var(--paper-deep));
}

.pricing-level-hand {
  --capacity: 100%;
  color: var(--paper);
  background: var(--ink);
}

.pricing-level-hand:hover,
.pricing-level-hand:focus-within {
  background: color-mix(in oklch, var(--copper) 15%, var(--ink));
}

.pricing-fit,
.pricing-plain-kicker {
  color: var(--copper-text);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-fit {
  margin-bottom: 12px;
}

.pricing-plain-kicker {
  margin-bottom: 26px;
}

.pricing-badge {
  min-height: 26px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin: 0 0 28px;
  padding: 5px 10px;
  color: var(--ink);
  background: color-mix(in oklch, var(--copper) 27%, var(--paper));
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.01em;
}

.pricing-level-hand .pricing-badge {
  color: var(--ink-deep);
  background: var(--copper);
}

.pricing-level-hand .pricing-fit {
  color: var(--copper-hover);
}

.pricing-level h3 {
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 3.9vw, 4.4rem);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.pricing-price {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  margin-bottom: 30px;
}

.pricing-price strong {
  font-size: clamp(3rem, 4.9vw, 5.4rem);
  font-weight: 640;
  line-height: 0.86;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.pricing-price > span {
  display: flex;
  flex-direction: column;
  padding-bottom: 2px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.pricing-price small {
  color: var(--muted-paper);
  font-size: 0.7rem;
  font-weight: 550;
}

.pricing-level-hand .pricing-price small {
  color: var(--muted-dark);
}

.pricing-summary {
  min-height: 112px;
  margin-bottom: 26px;
  color: var(--muted-paper);
}

.pricing-level-hand .pricing-summary,
.pricing-level-hand .pricing-rhythm {
  color: var(--muted-dark);
}

.pricing-level ul {
  display: grid;
  gap: 13px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.pricing-level li {
  position: relative;
  padding-left: 20px;
  color: color-mix(in oklch, var(--ink) 88%, transparent);
  font-size: 0.88rem;
  line-height: 1.45;
}

.pricing-level-hand li,
.pricing-level-hand .pricing-rhythm strong,
.pricing-level-hand .pricing-choice {
  color: var(--paper);
}

.pricing-level li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--copper-text);
}

.pricing-capacity {
  height: 3px;
  margin-top: auto;
  overflow: hidden;
  background: color-mix(in oklch, var(--ink) 14%, transparent);
}

.pricing-level-hand .pricing-capacity {
  background: oklch(100% 0 0 / 18%);
}

.pricing-capacity span {
  width: var(--capacity);
  height: 100%;
  display: block;
  background: var(--copper-text);
  transform-origin: left;
  transition: transform 400ms var(--ease);
}

.pricing-level:hover .pricing-capacity span,
.pricing-level:focus-within .pricing-capacity span {
  transform: scaleX(1.08);
}

.pricing-rhythm {
  margin: 11px 0 25px;
  color: var(--muted-paper);
  font-size: 0.875rem;
}

.pricing-rhythm strong {
  color: var(--ink);
}

.pricing-choice {
  min-height: 44px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  align-self: flex-start;
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 720;
  text-decoration-color: color-mix(in oklch, var(--copper-text) 58%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.pricing-choice span {
  color: var(--copper-text);
  font-size: 1.2em;
  transition: transform 200ms var(--ease);
}

.pricing-choice:hover span {
  transform: translateX(4px);
}

.pricing-plain {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(42px, 6vw, 78px);
  color: var(--paper);
  background: var(--ink);
}

.pricing-plain-kicker {
  color: var(--copper-hover);
}

.pricing-plain h3 {
  max-width: 690px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 620;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.pricing-plain > div:last-child > p:first-child {
  margin-bottom: 30px;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.pricing-promise {
  margin: 0;
  padding: 20px 0 0;
  color: var(--paper);
  border-top: 1px solid oklch(100% 0 0 / 22%);
}

.pricing-promise strong {
  display: block;
  margin-bottom: 5px;
}

.start-price {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) 1.25fr;
  gap: 50px;
  align-items: start;
  padding-top: clamp(36px, 5vw, 68px);
}

.start-price > div:first-child > strong {
  color: var(--copper-text);
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.2;
}

.start-price > div:first-child > p {
  margin: 8px 0 0;
  color: var(--muted-paper);
  font-size: 0.86rem;
}

.start-price > div:last-child > p {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--muted-paper);
}

.shape-cta {
  padding: clamp(100px, 13vw, 190px) var(--gutter);
  color: var(--ink-deep);
  background: var(--copper);
  --focus-ring: var(--ink-deep);
  --focus-halo: var(--paper);
}

.shape-intro {
  margin-bottom: clamp(64px, 8vw, 110px);
}

.shape-intro .section-eyebrow {
  color: var(--ink-deep);
}

.shape-intro h2 {
  max-width: 1120px;
  margin-bottom: 30px;
  font-size: clamp(3.1rem, 7vw, 7.2rem);
}

.shape-intro > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

.shape-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 66px);
}

.shape-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 2px solid var(--ink-deep);
}

.shape-form legend {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px 0;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 680;
  line-height: 1.2;
}

.shape-form label:not(.shape-note-field) {
  position: relative;
  display: block;
  border-top: 1px solid oklch(18% 0.014 210 / 24%);
  cursor: pointer;
}

.shape-form label:not(.shape-note-field):last-child {
  border-bottom: 1px solid oklch(18% 0.014 210 / 24%);
}

.shape-form input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.shape-form label:not(.shape-note-field) span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px 10px 0;
  font-size: 0.9rem;
  transition: padding 180ms var(--ease), background-color 180ms var(--ease);
}

.shape-form label:not(.shape-note-field) span::after {
  width: 17px;
  height: 17px;
  display: block;
  flex: 0 0 auto;
  content: "";
  border: 1.5px solid var(--ink-deep);
  border-radius: 50%;
}

.shape-form input[type="radio"]:checked + span {
  padding-left: 12px;
  background: oklch(96% 0.008 115 / 76%);
  font-weight: 670;
}

.shape-form input[type="radio"]:checked + span::after {
  border: 5px solid var(--ink-deep);
}

.shape-form input[type="radio"]:focus-visible + span {
  outline: 3px solid var(--ink-deep);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--paper);
}

.shape-note-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) 1.3fr;
  gap: 40px;
  align-items: start;
  margin-top: 16px;
  padding-top: 30px;
  border-top: 2px solid var(--ink-deep);
}

.shape-note-field > span {
  font-weight: 680;
}

.shape-note-field small {
  font-weight: 500;
}

.shape-note-field textarea {
  width: 100%;
  min-height: 116px;
  resize: vertical;
  padding: 16px;
  color: var(--ink-deep);
  background: oklch(96% 0.008 115 / 78%);
  border: 1px solid var(--ink-deep);
  border-radius: 12px;
}

.shape-result {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-top: clamp(56px, 8vw, 100px);
  padding: clamp(32px, 5vw, 60px) 0;
  border-top: 2px solid var(--ink-deep);
  border-bottom: 2px solid var(--ink-deep);
}

.shape-result > div:first-child > p {
  margin-bottom: 16px;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shape-result > div:first-child > strong {
  display: block;
  max-width: 830px;
  font-size: clamp(1.6rem, 3vw, 3.1rem);
  font-weight: 610;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.shape-actions {
  display: grid;
  gap: 10px;
}

.shape-actions .button {
  width: 100%;
}

.copy-shape {
  min-height: 48px;
  padding: 10px 16px;
  color: var(--ink-deep);
  background: transparent;
  border: 1px solid var(--ink-deep);
  border-radius: 12px;
  font-weight: 650;
  cursor: pointer;
}

.shape-fineprint {
  grid-column: 2;
  margin: -2px 0 0;
  font-size: 0.875rem;
}

.direct-contact {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  font-size: 0.9rem;
}

.direct-contact a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 670;
  text-underline-offset: 5px;
}

@keyframes library-pulse {
  0%, 54%, 100% { opacity: 0.28; transform: scale(0.78); }
  72% { opacity: 1; transform: scale(1); }
}

@keyframes masthead-unfold {
  from { opacity: 0; transform: translateY(-18px) scaleX(0.78); }
  to { opacity: 1; transform: translateY(0) scaleX(1); }
}

@keyframes masthead-item-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes theme-glyph-in {
  from { opacity: 0; transform: rotate(-38deg) scale(0.72); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes menu-surface-in {
  from { opacity: 0; transform: translateY(-12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes menu-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes menu-item-in {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-image {
  from { opacity: 0.58; scale: 1.09; }
  to { opacity: 1; scale: 1.035; }
}

@keyframes scroll-nudge {
  0%, 55%, 100% { transform: translateY(0); }
  72% { transform: translateY(6px); }
}

@keyframes view-enter {
  from { opacity: 0; transform: translateY(11px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes drawer-enter {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .hero-content {
    width: min(790px, 76vw);
  }

  .workday-intro {
    grid-template-columns: minmax(0, 2.6fr) 1fr;
  }

  .workday-intro > p:last-child {
    grid-column: auto;
    margin: 28px 0 0;
  }

  .workday-stage {
    grid-template-columns: minmax(330px, 1fr) 380px;
    gap: 54px;
  }

  .control {
    gap: 58px;
  }

  .start-heading {
    grid-template-columns: 1fr;
  }

  .start-heading > p:last-child {
    grid-column: auto;
    max-width: 560px;
    margin-top: 20px;
  }

  .start-list li {
    grid-template-columns: 0.4fr 2.2fr;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .mobile-nav-fallback {
    display: flex;
    gap: 4px 18px;
    flex-wrap: wrap;
    padding: 10px var(--gutter) 14px;
    color: var(--paper);
    background: var(--ink-deep);
    border-top: 1px solid oklch(100% 0 0 / 14%);
  }

  .mobile-nav-fallback a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
  }

  .site-header {
    min-height: 68px;
    justify-content: space-between;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 24px;
    height: 1.5px;
    display: block;
    background: currentColor;
    transition: transform 220ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-3.8px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    padding: 18px var(--gutter) 28px;
    color: var(--paper);
    background: var(--ink-deep);
    border-top: 1px solid oklch(100% 0 0 / 14%);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid oklch(100% 0 0 / 12%);
    text-decoration: none;
  }

  .mobile-menu a:last-child {
    justify-content: center;
    margin-top: 14px;
    color: var(--ink);
    background: var(--copper);
    border: 0;
    border-radius: 10px;
    font-weight: 680;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, oklch(13% 0.014 210 / 88%) 0%, oklch(14% 0.015 210 / 66%) 52%, transparent 92%),
      linear-gradient(0deg, oklch(12% 0.012 210 / 78%) 0%, transparent 60%);
  }

  .hero-content {
    width: 90vw;
  }

  .problem-layout {
    grid-template-columns: 1fr;
  }

  .workday-intro {
    grid-template-columns: 1fr;
  }

  .workday-intro > p:last-child {
    grid-column: auto;
  }

  .workday-stage {
    grid-template-columns: 1fr;
  }

  .story-steps {
    display: none;
  }

  .demo-mobile-tabs {
    width: min(100%, 520px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin: 0 auto 28px;
    padding: 5px;
    background: var(--slate);
    border-radius: 13px;
  }

  .demo-mobile-tabs button {
    min-height: 44px;
    padding: 5px;
    color: oklch(80% 0.015 210);
    background: transparent;
    border: 0;
    border-radius: 9px;
    font-size: 0.72rem;
    cursor: pointer;
  }

  .demo-mobile-tabs button[aria-selected="true"] {
    color: var(--ink);
    background: var(--paper);
    font-weight: 680;
  }

  .phone-wrap {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .phone {
    height: auto;
    min-height: 706px;
  }

  .phone-screen {
    height: auto;
    min-height: 582px;
    overflow: visible;
  }

  .start-list li {
    grid-template-columns: 68px 1fr;
  }

  .start-heading {
    display: block;
  }

  .start-heading h2,
  .start-heading > p:last-child {
    grid-column: auto;
  }

  .growth-line {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .growth-line li {
    min-height: 62px;
    padding: 0 0 0 24px;
    border-left: 1px solid color-mix(in oklch, var(--ink) 34%, transparent);
  }

  .growth-line li:not(:last-child)::after {
    display: none;
  }

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

  .control-copy {
    max-width: 720px;
  }

  .trust-review {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.yours-steps p .mode-copy {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

@media (max-width: 560px) {
  :root {
    --gutter: 20px;
    --section: 92px;
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .hero {
    min-height: max(720px, 100svh);
    align-items: flex-end;
  }

  .product-lockup {
    width: min(262px, calc(100vw - 100px));
  }

  .hero-image {
    animation: none;
    object-position: 65% center;
    scale: 1;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, oklch(11% 0.012 210 / 94%) 0%, oklch(12% 0.012 210 / 66%) 54%, transparent 100%),
      linear-gradient(90deg, oklch(12% 0.012 210 / 40%) 0%, transparent 100%);
  }

  .hero-content {
    width: 100%;
    padding: 126px var(--gutter) 85px;
  }

  .hero-kicker {
    margin-bottom: 15px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 9.5vw, 2.45rem);
    line-height: 0.92;
  }

  .hero-copy {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-contact {
    justify-content: space-between;
    gap: 0 12px;
    margin-top: 8px;
  }

  .button {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .problem-layout {
    margin-top: 64px;
    gap: 48px;
  }

  .noise-row {
    min-height: 82px;
    grid-template-columns: 56px 1fr;
    gap: 3px 12px;
  }

  .noise-row b {
    grid-column: 2;
  }

  .problem-answer {
    align-items: flex-start;
  }

  .workday-intro {
    margin-bottom: 42px;
  }

  .demo-mobile-tabs {
    position: sticky;
    z-index: 4;
    top: 76px;
  }

  .phone-wrap {
    min-height: 0;
  }

  .phone {
    width: min(100%, 345px);
    height: auto;
    min-height: 614px;
    border-width: 7px;
    border-radius: 41px;
  }

  .phone-screen {
    padding: 20px 17px 32px;
    height: auto;
    min-height: 501px;
    overflow: visible;
  }

  .phone-screen h3 {
    font-size: 1.5rem;
  }

  .phone-statusbar {
    height: 40px;
    padding-inline: 20px;
  }

  .phone-appbar {
    height: 49px;
    padding-inline: 16px;
  }

  .phone-hardware {
    top: 6px;
    width: 94px;
    height: 24px;
  }

  .handoff-line {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-block: 30px;
  }

  .start-list li {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .start-heading {
    margin-bottom: 58px;
  }

  .start-list li {
    padding: 24px 0;
  }

  .permission-head,
  .permission-row {
    align-items: flex-start;
    padding: 18px;
  }

  .permission-status {
    max-width: 98px;
    text-align: right;
  }

  .state {
    min-width: 68px;
  }

  .permission-foot {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .trust-review {
    padding-top: 24px;
  }

  .final-cta h2 {
    font-size: clamp(3.1rem, 14vw, 4.5rem);
  }

  .cta-contact {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 52px;
  }

  .site-footer p {
    margin: 0;
    text-align: left;
  }

  .site-footer > a:last-child {
    justify-self: start;
  }
}

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

  .motion-ready .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  :focus-visible {
    outline: 3px solid CanvasText;
    box-shadow: none;
  }

  .priority-dot,
  .phone-online i,
  .permission-status i {
    border: 2px solid CanvasText;
  }
}

@media (max-width: 1100px) {
  .offer-summary-inner,
  .personal-intelligence,
  .library,
  .hosting {
    grid-template-columns: 1fr;
  }

  .personal-intelligence-copy,
  .intelligence-comparison,
  .library-copy,
  .library-figure,
  .hosting-copy,
  .hosting-options {
    margin-inline: 0;
  }

  .personal-intelligence-copy,
  .library-copy,
  .hosting-copy {
    max-width: 820px;
  }

  .library-figure {
    width: 100%;
  }

  .mandate-heading,
  .delivery-heading {
    grid-template-columns: minmax(0, 0.5fr) minmax(440px, 1.5fr);
  }

  .yours-steps article {
    grid-template-columns: 120px minmax(220px, 0.62fr) minmax(280px, 1fr);
  }

  .mandate-control,
  .hosting-inline,
  .learning-curve {
    grid-template-columns: 1fr;
  }

  .film-stage {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .film-tabs {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .film-tabs button {
    min-height: 132px;
    padding: 22px 48px 22px 18px;
    border-right: 1px solid color-mix(in oklch, var(--ink) 18%, transparent);
  }

  .film-tabs button[aria-selected="true"] {
    padding-left: 18px;
  }

  .film-tabs small {
    display: none;
  }

  .film-panel {
    grid-template-columns: minmax(320px, 0.7fr) minmax(300px, 1.3fr);
    max-width: 920px;
    margin-inline: auto;
  }

  .mandate-control .control-copy,
  .hosting-inline-heading {
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  .personal-intelligence {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .offer-summary-inner {
    grid-template-columns: 1fr;
  }

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

  .mandate-heading,
  .delivery-heading {
    display: block;
  }

  .mandate-heading .section-eyebrow,
  .delivery-heading .section-eyebrow {
    margin-bottom: 20px;
  }

  .mandate-scale {
    grid-template-columns: 1fr;
  }

  .mandate-scale article {
    min-height: 0;
    padding: 30px 0;
  }

  .mandate-scale article + article {
    padding-left: 0;
    border-top: 1px solid color-mix(in oklch, var(--ink) 20%, transparent);
    border-left: 0;
  }

  .mandate-word {
    margin-bottom: 40px;
  }

  .yours-intro,
  .possibilities-intro,
  .pricing-head {
    display: block;
  }

  .films-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .yours-intro > p:last-child,
  .possibilities-intro > p:last-child,
  .pricing-head > p:last-child {
    max-width: 650px;
    margin-top: 28px;
  }

  .possibility-explorer {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }

  .possibility-tabs {
    flex-direction: row;
    gap: 0;
    padding: 0;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid oklch(100% 0 0 / 16%);
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .possibility-tabs button {
    min-width: 230px;
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 22px 24px;
    border-right: 1px solid oklch(100% 0 0 / 12%);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .possibility-tabs button[aria-selected="true"] {
    padding-left: 24px;
  }

  .possibility-tabs button::before {
    top: auto;
    right: 24px;
    bottom: -1px;
    left: 24px;
    width: auto;
    height: 3px;
    transform: scaleX(0.2);
  }

  .possibility-tabs button[aria-selected="true"]::before {
    transform: scaleX(1);
  }

  .possibility-panel {
    margin: 0;
    box-shadow: 0 22px 60px oklch(7% 0.01 210 / 25%);
  }

  .faq-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .faq-list details p {
    margin-left: clamp(40px, 10vw, 92px);
  }

  .film-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .film-tabs button {
    min-width: 230px;
    scroll-snap-align: start;
  }

  .film-panel {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 46px;
  }

  .film-player {
    width: min(100%, 410px);
    margin-inline: auto;
  }

  .learning-curve {
    gap: 44px;
  }

  .yours-steps {
    grid-template-columns: 1fr;
  }

  .yours-steps article:nth-child(odd),
  .yours-steps article:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .delivery-lines > div,
  .start-price {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-levels,
  .pricing-plain {
    grid-template-columns: 1fr;
  }

  .pricing-level {
    min-height: 0;
  }

  .pricing-level + .pricing-level {
    border-top: 1px solid color-mix(in oklch, var(--ink) 23%, transparent);
    border-left: 0;
  }

  .pricing-summary {
    min-height: 0;
  }

  .shape-form {
    grid-template-columns: 1fr;
  }

  .shape-form legend {
    min-height: 72px;
  }

  .shape-note-field,
  .shape-result {
    grid-template-columns: 1fr;
  }

  .shape-fineprint {
    grid-column: 1;
  }

  .web-workspace {
    grid-template-columns: 190px 1fr;
  }

  .web-main {
    padding: 44px 34px;
  }
}

@media (max-width: 560px) {
  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9.5vw, 2.45rem);
  }

  .hero-note {
    max-width: 330px;
    line-height: 1.5;
  }

  .offer-summary {
    padding-block: 56px;
  }

  .offer-summary-inner {
    gap: 46px;
  }

  .offer-parts p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .personal-intelligence,
  .library,
  .possibilities,
  .films,
  .mandate,
  .becomes-yours,
  .delivery,
  .hosting,
  .pricing,
  .faq {
    padding: var(--section) var(--gutter);
  }

  .intelligence-comparison > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .library-figure {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .library-figure blockquote {
    font-size: 1.38rem;
  }

  .library-sources {
    grid-template-columns: repeat(2, 1fr);
  }

  .library-result li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mandate-heading,
  .yours-intro,
  .delivery-heading,
  .pricing-head {
    margin-bottom: 58px;
  }

  .mandate-scale article {
    padding: 26px 0 30px;
  }

  .mandate-control {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .mandate-word {
    margin-bottom: 28px;
  }

  .yours-steps article {
    display: block;
    padding: 26px 0;
  }

  .yours-intro h2 {
    font-size: clamp(2.1rem, 9.2vw, 3.2rem);
    overflow-wrap: anywhere;
  }

  .yours-steps span {
    display: block;
    margin-bottom: 18px;
  }

  .learning-curve {
    margin-top: 52px;
    padding: 30px 22px;
  }

  .learning-curve h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .learning-stages p {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .possibilities-intro {
    margin-bottom: 52px;
  }

  .films-intro {
    margin-bottom: 52px;
  }

  .film-stage {
    gap: 42px;
  }

  .film-tabs button {
    min-width: 210px;
    min-height: 118px;
  }

  .film-player {
    width: min(100%, 350px);
    border-width: 6px;
    border-radius: 31px;
  }

  .film-panel .film-caption h3 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .possibility-tabs button {
    min-width: 205px;
    min-height: 88px;
    padding: 18px;
  }

  .possibility-tabs button[aria-selected="true"] {
    padding-left: 18px;
  }

  .possibility-tabs button::before {
    right: 18px;
    left: 18px;
  }

  .possibility-panel-body {
    padding: 30px 20px 34px;
  }

  .possibility-panel h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .possibility-source,
  .possibility-result li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .possibility-panel-bar {
    gap: 10px;
    padding-inline: 16px;
    font-size: 0.72rem;
  }

  .faq-intro {
    margin-bottom: 48px;
  }

  .faq-list summary {
    min-height: 72px;
    padding-right: 54px;
  }

  .faq-list summary::after {
    right: 2px;
    width: 30px;
    height: 30px;
  }

  .faq-list details p {
    margin-left: 0;
  }

  .delivery-lines > div {
    padding: 26px 0;
  }

  .hosting {
    gap: 58px;
  }

  .hosting-inline {
    gap: 44px;
  }

  .web-preview {
    margin-top: 78px;
  }

  .web-workspace {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .web-side {
    display: none;
  }

  .web-main {
    padding: 32px 20px;
  }

  .web-main h3 {
    margin-bottom: 30px;
  }

  .web-focus,
  .web-source-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .web-source-line button {
    justify-self: start;
  }

  .pricing-level {
    padding: 34px 22px 40px;
  }

  .pricing-level h3 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .pricing-price strong {
    font-size: clamp(3.4rem, 17vw, 5.1rem);
  }

  .pricing-plain {
    gap: 34px;
    padding: 38px 22px 42px;
  }

  .pricing-plain h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .pricing-promise {
    padding-left: 18px;
  }

  .start-price {
    gap: 26px;
  }

  .shape-cta {
    padding: 96px var(--gutter);
  }

  .shape-intro h2 {
    font-size: clamp(3rem, 13.5vw, 4.25rem);
  }

  .shape-form {
    gap: 46px;
  }

  .shape-note-field {
    gap: 18px;
    margin-top: 2px;
  }

  .shape-result {
    gap: 28px;
  }

  .direct-contact {
    flex-direction: column;
    gap: 8px;
  }
}

/* Läsnivå och färgläge. Samma innehållsstruktur i båda lägena. */

body,
.site-header,
.hero,
.offer-summary,
.problem,
.library,
.possibilities,
.films,
.mandate,
.becomes-yours,
.pricing,
.faq,
.site-footer {
  transition: color 260ms var(--ease), background-color 360ms var(--ease), border-color 260ms var(--ease);
}

html[data-theme="light"] .site-header {
  color: var(--ink-deep);
  background: oklch(97% 0.008 115 / 91%);
  border-color: color-mix(in oklch, var(--ink) 17%, transparent);
  box-shadow: 0 18px 50px oklch(25% 0.018 210 / 14%);
}

html[data-theme="light"] .site-header.is-sticky {
  color: var(--ink-deep);
  background: oklch(97% 0.008 115 / 97%);
  border-color: color-mix(in oklch, var(--ink) 19%, transparent);
  box-shadow: 0 20px 56px oklch(25% 0.018 210 / 20%);
}

html[data-theme="light"] .site-header .lockup-light {
  display: none;
}

html[data-theme="light"] .site-header .lockup-dark {
  display: block;
}

html[data-theme="light"] .content-mode-toggle,
html[data-theme="light"] .theme-toggle {
  border-color: color-mix(in oklch, var(--ink) 20%, transparent);
}

html[data-theme="light"] .content-mode-toggle {
  background: oklch(90% 0.011 135 / 72%);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 72%);
}

html[data-theme="light"] .content-mode-toggle button:not([aria-pressed="true"]):hover {
  color: var(--ink-deep);
}

html[data-theme="light"] .theme-toggle {
  background: oklch(90% 0.011 135 / 58%);
}

html[data-theme="light"] .theme-toggle:hover {
  background: color-mix(in oklch, var(--ink) 7%, transparent);
}

html[data-theme="light"] .header-cta {
  color: var(--ink-deep);
  background: var(--copper);
}

html[data-theme="light"] .header-cta:hover {
  background: var(--copper-hover);
}

html[data-theme="light"] .hero {
  color: var(--ink-deep);
  background: var(--paper);
  --focus-ring: var(--ink-deep);
  --focus-halo: var(--paper);
}

html[data-theme="light"] .hero-image {
  filter: brightness(1.08) saturate(0.84) contrast(0.94);
}

html[data-theme="light"] .hero-shade {
  background:
    linear-gradient(90deg, oklch(97% 0.008 115 / 97%) 0%, oklch(96% 0.008 115 / 90%) 34%, oklch(96% 0.008 115 / 20%) 68%, transparent 83%),
    linear-gradient(0deg, oklch(96% 0.008 115 / 68%) 0%, transparent 52%);
}

html[data-theme="light"] .hero-kicker {
  color: var(--copper-text);
}

html[data-theme="light"] .hero-copy {
  color: var(--slate);
}

html[data-theme="light"] .hero-note {
  color: var(--muted-paper);
}

html[data-theme="light"] .button-ghost {
  color: var(--ink-deep);
  border-color: color-mix(in oklch, var(--ink) 35%, transparent);
  background: oklch(96% 0.008 115 / 58%);
}

html[data-theme="light"] .button-ghost:hover {
  background: oklch(96% 0.008 115 / 86%);
}

html[data-theme="light"] .hero-scroll {
  color: var(--ink-deep);
}

html[data-theme="light"] .offer-summary {
  color: var(--ink-deep);
  background: var(--paper-deep);
  border-top-color: color-mix(in oklch, var(--ink) 18%, transparent);
  --focus-ring: var(--ink-deep);
  --focus-halo: var(--paper-deep);
}

html[data-theme="light"] .offer-summary-inner > div:first-child > p {
  color: var(--copper-text);
}

html[data-theme="light"] .offer-parts,
html[data-theme="light"] .offer-parts p {
  border-color: color-mix(in oklch, var(--ink) 18%, transparent);
}

html[data-theme="light"] .offer-parts span {
  color: var(--muted-paper);
}

html[data-theme="light"] .library {
  color: var(--ink-deep);
  background: var(--paper);
  --focus-ring: var(--ink-deep);
  --focus-halo: var(--paper);
}

html[data-theme="light"] .library .section-eyebrow {
  color: var(--copper-text);
}

html[data-theme="light"] .library-copy > p:not(.section-eyebrow) {
  color: var(--muted-paper);
}

html[data-theme="light"] .library-copy .personal-definition {
  color: var(--ink-deep);
  border-bottom-color: color-mix(in oklch, var(--ink) 20%, transparent);
}

html[data-theme="light"] .library-figure {
  color: var(--paper);
  background: var(--ink-deep);
  border-color: color-mix(in oklch, var(--ink) 20%, transparent);
}

html[data-theme="light"] .possibilities {
  color: var(--ink-deep);
  background: var(--paper-deep);
  border-top-color: color-mix(in oklch, var(--ink) 15%, transparent);
  --focus-ring: var(--ink-deep);
  --focus-halo: var(--paper-deep);
}

html[data-theme="light"] .possibilities-intro > p,
html[data-theme="light"] .possibility-note {
  color: var(--muted-paper);
}

html[data-theme="light"] .possibility-explorer,
html[data-theme="light"] .possibility-tabs,
html[data-theme="light"] .possibility-tabs button {
  border-color: color-mix(in oklch, var(--ink) 17%, transparent);
}

html[data-theme="light"] .possibility-tabs button {
  color: var(--muted-paper);
}

html[data-theme="light"] .possibility-tabs button:hover,
html[data-theme="light"] .possibility-tabs button[aria-selected="true"] {
  color: var(--ink-deep);
}

html[data-theme="light"] .possibility-tabs button[aria-selected="true"] {
  background: color-mix(in oklch, var(--paper) 65%, transparent);
}

html[data-theme="light"] .possibility-tabs span {
  color: var(--copper-text);
}

html[data-theme="dark"] body {
  color: var(--paper);
  background: var(--ink-deep);
}

html[data-theme="dark"] .problem,
html[data-theme="dark"] .films,
html[data-theme="dark"] .mandate,
html[data-theme="dark"] .becomes-yours,
html[data-theme="dark"] .pricing {
  color: var(--paper);
  background: var(--ink-deep);
  --focus-ring: var(--paper);
  --focus-halo: var(--ink-deep);
}

html[data-theme="dark"] .films,
html[data-theme="dark"] .becomes-yours,
html[data-theme="dark"] .pricing {
  background: var(--ink);
  --focus-halo: var(--ink);
}

html[data-theme="dark"] .faq {
  color: var(--paper);
  background: var(--slate);
  --focus-ring: var(--paper);
  --focus-halo: var(--slate);
}

html[data-theme="dark"] .noise-stream,
html[data-theme="dark"] .noise-row,
html[data-theme="dark"] .problem-answer,
html[data-theme="dark"] .mandate-scale,
html[data-theme="dark"] .mandate-scale article + article,
html[data-theme="dark"] .yours-steps,
html[data-theme="dark"] .yours-steps article,
html[data-theme="dark"] .hosting-inline,
html[data-theme="dark"] .film-tabs,
html[data-theme="dark"] .film-tabs button,
html[data-theme="dark"] .film-proof,
html[data-theme="dark"] .pricing-head,
html[data-theme="dark"] .pricing-guidance,
html[data-theme="dark"] .pricing-levels,
html[data-theme="dark"] .pricing-level,
html[data-theme="dark"] .faq-list,
html[data-theme="dark"] .faq-list details {
  border-color: oklch(100% 0 0 / 17%);
}

html[data-theme="dark"] .noise-row time,
html[data-theme="dark"] .noise-row span,
html[data-theme="dark"] .mandate-scale article > p:last-child,
html[data-theme="dark"] .mandate-note,
html[data-theme="dark"] .yours-intro > p:last-child,
html[data-theme="dark"] .yours-steps p,
html[data-theme="dark"] .learning-stages span,
html[data-theme="dark"] .hosting-inline-heading p,
html[data-theme="dark"] .hosting-options p,
html[data-theme="dark"] .web-preview figcaption,
html[data-theme="dark"] .films-intro > div > p,
html[data-theme="dark"] .film-tabs button,
html[data-theme="dark"] .film-panel .film-caption > p:not(.film-kicker, .film-proof, .film-disclaimer),
html[data-theme="dark"] .film-disclaimer,
html[data-theme="dark"] .pricing-head > p:last-child,
html[data-theme="dark"] .pricing-guidance,
html[data-theme="dark"] .pricing-summary,
html[data-theme="dark"] .pricing-rhythm,
html[data-theme="dark"] .start-price p,
html[data-theme="dark"] .faq-list details p {
  color: var(--muted-dark);
}

html[data-theme="dark"] .film-tabs button:hover,
html[data-theme="dark"] .film-tabs button[aria-selected="true"],
html[data-theme="dark"] .pricing-rhythm strong,
html[data-theme="dark"] .pricing-choice,
html[data-theme="dark"] .pricing-level li {
  color: var(--paper);
}

html[data-theme="dark"] .pricing-level {
  background: oklch(100% 0 0 / 2%);
}

html[data-theme="dark"] .pricing-level-flow {
  background: color-mix(in oklch, var(--copper) 12%, var(--ink));
}

html[data-theme="dark"] .pricing-level-hand {
  background: color-mix(in oklch, var(--copper) 18%, var(--ink));
}

html[data-theme="dark"] .pricing-level:hover,
html[data-theme="dark"] .pricing-level:focus-within {
  background: color-mix(in oklch, var(--paper) 8%, var(--ink));
}

html[data-theme="dark"] .pricing-level-hand:hover,
html[data-theme="dark"] .pricing-level-hand:focus-within {
  background: color-mix(in oklch, var(--copper) 25%, var(--ink));
}

html[data-theme="dark"] .pricing-price small {
  color: var(--muted-dark);
}

html[data-theme="dark"] .faq-list summary::after {
  color: var(--ink-deep);
  background: var(--paper);
}

html[data-theme="dark"] .faq-list details[open] summary::after {
  color: var(--ink-deep);
  background: var(--copper);
}

html[data-theme="dark"] .hosting-options article {
  border-color: oklch(100% 0 0 / 17%);
}

html[data-theme="dark"] .hosting-inline {
  border-top-color: var(--paper);
}

html[data-theme="dark"] .web-preview {
  color: var(--ink);
}

html[data-theme="dark"] .learning-curve {
  color: var(--paper);
  background: var(--slate);
}

html[data-theme="dark"] .start-price > div:first-child > strong,
html[data-theme="dark"] .pricing-fit,
html[data-theme="dark"] .pricing-plain-kicker,
html[data-theme="dark"] .film-kicker,
html[data-theme="dark"] .mandate-word {
  color: var(--copper-hover);
}

html[data-theme="dark"] .site-header {
  color: var(--paper);
}

html[data-theme="dark"] .site-header.is-sticky {
  background: oklch(18% 0.015 210 / 96%);
}

html[data-theme="dark"] .header-cta {
  color: var(--ink-deep);
  background: var(--copper);
}

html[data-theme="dark"] .hero {
  color: var(--paper);
  background: var(--ink-deep);
}

html[data-theme="dark"] .hero-image {
  filter: brightness(0.92) saturate(0.92);
}

html[data-theme="dark"] .hero-shade {
  background:
    linear-gradient(90deg, oklch(13% 0.014 210 / 91%) 0%, oklch(14% 0.015 210 / 72%) 31%, transparent 64%),
    linear-gradient(0deg, oklch(12% 0.012 210 / 66%) 0%, transparent 44%);
}

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

  .site-header > .preference-controls {
    display: flex;
    margin-left: auto;
  }

  .header-cta {
    display: inline-flex;
    margin-left: 18px;
  }

  .site-header {
    min-height: 68px;
    justify-content: space-between;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    color: inherit;
    background: color-mix(in oklch, currentColor 7%, transparent);
    border: 1px solid color-mix(in oklch, currentColor 22%, transparent);
    border-radius: 12px;
    margin-left: 12px;
    box-shadow: inset 0 1px 0 oklch(100% 0 0 / 9%);
    opacity: 0;
    transform: translateY(-8px);
    animation: masthead-item-in 560ms var(--ease) 640ms forwards;
    cursor: pointer;
    transition: color 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
  }

  .menu-toggle:hover {
    color: var(--copper-hover);
    background: color-mix(in oklch, currentColor 10%, transparent);
    border-color: color-mix(in oklch, var(--copper) 54%, transparent);
    transform: translateY(-1px);
  }

  .menu-toggle[aria-expanded="true"] {
    color: var(--ink-deep);
    background: var(--copper);
    border-color: var(--copper);
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .mobile-nav-fallback {
    display: flex;
    gap: 4px 18px;
    flex-wrap: wrap;
    padding: 10px var(--gutter) 14px;
    color: var(--ink-deep);
    background: var(--paper);
    border-top: 1px solid color-mix(in oklch, var(--ink) 15%, transparent);
  }

  .no-js[data-theme="dark"] .mobile-nav-fallback {
    color: var(--paper);
    background: var(--ink-deep);
    border-top-color: oklch(100% 0 0 / 14%);
  }

  .no-js .mobile-nav-fallback a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 24px;
    height: 1.5px;
    display: block;
    background: currentColor;
    transition: transform 220ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-3.8px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    padding: 18px var(--gutter) 28px;
    color: var(--paper);
    background: oklch(13% 0.014 210 / 98%);
    border: 1px solid oklch(100% 0 0 / 17%);
    border-radius: 18px;
    box-shadow: 0 26px 74px oklch(7% 0.01 210 / 36%);
    max-height: calc(100svh - 104px);
    overflow-y: auto;
    transform-origin: top;
  }

  .mobile-menu:not([hidden]) {
    animation: menu-surface-in 360ms var(--ease) both;
  }

  html[data-theme="light"] .mobile-menu {
    color: var(--ink-deep);
    background: oklch(97% 0.008 115 / 98%);
    border-color: color-mix(in oklch, var(--ink) 17%, transparent);
    box-shadow: 0 26px 70px oklch(25% 0.018 210 / 22%);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid oklch(100% 0 0 / 12%);
    text-decoration: none;
    opacity: 0;
    animation: menu-item-in 420ms var(--ease) both;
    transition: color 220ms var(--ease), transform 220ms var(--ease);
  }

  .mobile-menu a:nth-of-type(1) { animation-delay: 90ms; }
  .mobile-menu a:nth-of-type(2) { animation-delay: 130ms; }
  .mobile-menu a:nth-of-type(3) { animation-delay: 170ms; }
  .mobile-menu a:nth-of-type(4) { animation-delay: 210ms; }
  .mobile-menu a:nth-of-type(5) { animation-delay: 250ms; }

  .mobile-menu a:not(:last-child):hover,
  .mobile-menu a[aria-current="location"]:not(:last-child) {
    color: var(--copper-hover);
    transform: translateX(6px);
  }

  html[data-theme="light"] .mobile-menu a {
    border-bottom-color: color-mix(in oklch, var(--ink) 14%, transparent);
  }

  .mobile-menu a:last-child {
    justify-content: center;
    margin-top: 14px;
    color: var(--ink-deep);
    background: var(--copper);
    border: 0;
    border-radius: 10px;
    font-weight: 680;
  }

  .mobile-menu a:last-child::after {
    margin-left: 10px;
    content: "→";
    transition: transform 220ms var(--ease);
  }

  .mobile-menu a:last-child:hover::after {
    transform: translateX(4px);
  }

  .mobile-preferences {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 4px 0 18px;
    border-bottom: 1px solid oklch(100% 0 0 / 14%);
    animation: menu-item-in 420ms var(--ease) 50ms both;
  }

  html[data-theme="light"] .mobile-preferences {
    border-bottom-color: color-mix(in oklch, var(--ink) 14%, transparent);
  }

  .mobile-preferences > p {
    grid-column: 1 / -1;
    margin: 0;
    color: currentColor;
    font-size: 0.78rem;
    font-weight: 680;
  }

  .mobile-preferences > .mobile-preference-explainer {
    margin-top: -4px;
    color: color-mix(in oklch, currentColor 72%, transparent);
    font-weight: 480;
    line-height: 1.45;
  }

  .mobile-preferences .content-mode-toggle {
    width: 100%;
  }

  .mobile-theme-toggle {
    min-height: 44px;
    padding: 0 14px;
    color: currentColor;
    background: transparent;
    border: 1px solid oklch(100% 0 0 / 24%);
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 650;
  }

  html[data-theme="light"] .mobile-theme-toggle,
  html[data-theme="light"] .mobile-preferences .content-mode-toggle {
    border-color: color-mix(in oklch, var(--ink) 20%, transparent);
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  .mobile-menu {
    right: 0;
    left: auto;
    width: min(410px, calc(100vw - 40px));
    padding: 18px 24px 24px;
  }

  .mobile-menu .mobile-preferences {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header > .preference-controls,
  .header-cta {
    display: none;
  }
}

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

  .mobile-preferences > p {
    grid-column: 1;
  }

  .mobile-theme-toggle {
    width: 100%;
  }

  html[data-theme="light"] .hero-shade {
    background:
      linear-gradient(0deg, oklch(97% 0.008 115 / 97%) 0%, oklch(96% 0.008 115 / 87%) 61%, oklch(96% 0.008 115 / 30%) 100%),
      linear-gradient(90deg, oklch(97% 0.008 115 / 72%) 0%, transparent 100%);
  }

  html[data-theme="dark"] .hero-shade {
    background:
      linear-gradient(0deg, oklch(11% 0.012 210 / 94%) 0%, oklch(12% 0.012 210 / 66%) 54%, transparent 100%),
      linear-gradient(90deg, oklch(12% 0.012 210 / 40%) 0%, transparent 100%);
  }
}

/* 2026-08-21: editorial density and responsive clarity pass */

:root {
  --section: clamp(76px, 8vw, 118px);
  --max: 1360px;
}

html {
  scroll-padding-top: 106px;
}

section[id] {
  scroll-margin-top: 106px;
}

main > section {
  position: relative;
  isolation: isolate;
}

main h2 {
  font-size: clamp(2.65rem, 4.35vw, 4.85rem);
  line-height: 0.98;
  overflow-wrap: normal;
}

.library-copy > p,
.workday-intro > p,
.possibilities-intro > p,
.films-intro > div > p,
.yours-intro > p,
.pricing-head > p,
.shape-intro > p {
  max-width: 62ch;
}

.section-more {
  max-width: 650px;
  margin-top: 26px;
  border-top: 1px solid oklch(100% 0 0 / 19%);
  border-bottom: 1px solid oklch(100% 0 0 / 19%);
}

.section-more summary {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 46px 12px 0;
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

.section-more summary::-webkit-details-marker {
  display: none;
}

.section-more summary::after {
  position: absolute;
  right: 4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--ink-deep);
  background: var(--copper);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms var(--ease);
}

.section-more[open] summary::after {
  transform: rotate(45deg);
}

.section-more > div {
  padding: 2px 0 18px;
}

.section-more p {
  margin: 0 0 14px;
  color: oklch(86% 0.016 140);
  font-size: 0.94rem;
}

html[data-theme="light"] .section-more {
  border-color: color-mix(in oklch, var(--ink) 20%, transparent);
}

html[data-theme="light"] .section-more summary {
  color: var(--ink-deep);
}

html[data-theme="light"] .section-more p {
  color: var(--muted-paper);
}

.library {
  grid-template-columns: minmax(360px, 0.72fr) minmax(540px, 1.28fr);
  gap: clamp(52px, 6.5vw, 104px);
  align-items: start;
}

.library-copy h2 {
  max-width: 11ch;
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 4.15vw, 4.65rem);
}

.library-copy .personal-definition {
  max-width: 33ch;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
}

.library-figure {
  padding: clamp(28px, 3.4vw, 48px);
}

.library-figure blockquote {
  margin-bottom: 24px;
}

.library-pick {
  height: 44px;
}

.workday-intro {
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  margin-bottom: clamp(54px, 6vw, 82px);
}

.workday-intro h2 {
  max-width: 11ch;
}

.workday-intro > p:last-child {
  margin-left: 0;
}

.workday-stage {
  grid-template-columns: minmax(420px, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(52px, 8vw, 126px);
}

.story-steps {
  padding-bottom: 0;
}

.story-step {
  min-height: clamp(215px, 24vh, 270px);
}

.story-text strong {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
}

.phone-wrap {
  min-height: 706px;
}

.possibilities-intro,
.films-intro,
.yours-intro,
.pricing-head {
  gap: clamp(40px, 6vw, 92px);
  margin-bottom: clamp(48px, 5.5vw, 76px);
}

.possibilities-intro h2,
.films-intro h2,
.yours-intro h2,
.pricing-head h2 {
  max-width: 13ch;
}

.possibility-explorer {
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(24px, 3vw, 44px);
  min-height: 560px;
}

.possibility-tabs {
  padding-block: 10px;
}

.possibility-tabs button {
  min-height: 84px;
  padding-block: 14px;
}

.possibility-panel-body {
  padding: clamp(30px, 3.4vw, 48px);
}

.possibility-panel h3 {
  font-size: clamp(2.1rem, 3.15vw, 3.45rem);
}

.films-intro {
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1.7fr);
}

.film-stage {
  grid-template-columns: minmax(260px, 0.58fr) minmax(600px, 1.42fr);
  gap: clamp(42px, 6vw, 90px);
}

.film-tabs button {
  min-height: 112px;
}

.film-panel {
  grid-template-columns: minmax(290px, 0.72fr) minmax(300px, 1.28fr);
  gap: clamp(34px, 4vw, 58px);
}

.film-panel .film-caption h3 {
  font-size: clamp(2.25rem, 3.35vw, 3.65rem);
}

.mandate-heading {
  grid-template-columns: minmax(0, 0.55fr) minmax(420px, 1.45fr);
  margin-bottom: clamp(48px, 5.5vw, 76px);
}

.mandate-scale article {
  min-height: 260px;
  padding-block: 30px 34px;
}

.mandate-word {
  margin-bottom: clamp(36px, 4vw, 58px);
}

.mandate-control {
  margin-top: clamp(52px, 6vw, 82px);
}

.yours-steps article {
  grid-template-columns: minmax(110px, 0.28fr) minmax(230px, 0.62fr) minmax(300px, 1.1fr);
  padding-block: clamp(22px, 2.4vw, 32px);
}

.learning-curve {
  gap: clamp(40px, 6vw, 86px);
  margin-top: clamp(48px, 5vw, 70px);
  padding: clamp(34px, 4vw, 52px);
}

.learning-curve h3 {
  font-size: clamp(2rem, 2.9vw, 3.05rem);
}

.hosting-inline {
  gap: clamp(44px, 6vw, 90px);
  margin-top: clamp(54px, 6vw, 82px);
  padding-top: clamp(34px, 4vw, 50px);
}

.hosting-options article {
  padding-block: 24px 28px;
}

.web-preview {
  margin-top: clamp(58px, 6vw, 86px);
}

.web-workspace {
  min-height: 400px;
}

.pricing-guidance {
  margin-bottom: clamp(34px, 4vw, 52px);
}

.pricing-level {
  padding: clamp(28px, 3.4vw, 44px) clamp(22px, 2.8vw, 38px) clamp(32px, 3.6vw, 48px);
}

.pricing-level h3 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 3.4vw, 3.75rem);
}

.pricing-price {
  margin-bottom: 24px;
}

.pricing-price strong {
  font-size: clamp(3rem, 4.1vw, 4.55rem);
}

.pricing-summary {
  min-height: 92px;
  margin-bottom: 20px;
}

.pricing-level ul {
  gap: 10px;
  margin-bottom: 26px;
}

.pricing-plain {
  gap: clamp(38px, 6vw, 86px);
  padding: clamp(34px, 4.4vw, 56px);
}

.pricing-plain h3 {
  font-size: clamp(1.9rem, 2.8vw, 3rem);
}

.start-price {
  padding-top: clamp(32px, 4vw, 48px);
}

.faq-intro {
  display: block;
  margin-bottom: clamp(38px, 4vw, 58px);
}

.faq-intro h2 {
  max-width: 18ch;
}

.faq-list summary {
  min-height: 70px;
}

.shape-cta {
  padding-block: clamp(82px, 9vw, 124px);
}

.shape-intro {
  margin-bottom: clamp(48px, 5vw, 70px);
}

.shape-intro h2 {
  max-width: 13ch;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.4vw, 5.65rem);
}

.shape-form {
  gap: clamp(24px, 3vw, 44px);
}

.shape-form legend {
  min-height: 76px;
}

.shape-form label:not(.shape-note-field) span {
  min-height: 52px;
}

.shape-result {
  margin-top: clamp(44px, 5vw, 66px);
  padding-block: clamp(28px, 3.6vw, 44px);
}

@media (max-width: 1320px) {
  .header-cta {
    display: none;
  }

  .site-header > .preference-controls {
    margin-left: auto;
  }
}

@media (max-width: 1100px) {
  .library {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .library-copy {
    max-width: 760px;
  }

  .library-copy h2 {
    max-width: 13ch;
  }

  .film-stage {
    grid-template-columns: 1fr;
  }

  .film-panel {
    grid-template-columns: minmax(300px, 0.72fr) minmax(300px, 1.28fr);
  }

  .site-header > .preference-controls {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --section: 78px;
  }

  html {
    scroll-padding-top: 88px;
  }

  section[id] {
    scroll-margin-top: 88px;
  }

  main h2,
  .library-copy h2,
  .yours-intro h2 {
    max-width: 14ch;
    font-size: clamp(2.4rem, 8.8vw, 3.65rem);
    line-height: 1;
  }

  .workday-intro,
  .possibilities-intro,
  .films-intro,
  .yours-intro,
  .pricing-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 42px;
  }

  .workday-intro > p:last-child,
  .possibilities-intro > p:last-child,
  .films-intro > div > p,
  .yours-intro > p:last-child,
  .pricing-head > p:last-child {
    grid-column: 1;
    grid-row: auto;
    margin: 0;
  }

  .workday-stage {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-steps {
    display: none;
  }

  .phone-wrap {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .possibility-explorer {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .possibility-tabs button {
    min-width: 170px;
    min-height: 82px;
  }

  .possibility-tabs strong {
    font-size: 0.94rem;
  }

  .film-tabs button {
    min-width: 190px;
    min-height: 100px;
  }

  .film-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mandate-heading {
    display: block;
    margin-bottom: 42px;
  }

  .mandate-heading h2 {
    max-width: 13ch;
  }

  .mandate-scale article {
    min-height: 0;
  }

  .mandate-word {
    margin-bottom: 20px;
  }

  .mandate-control {
    gap: 34px;
    margin-top: 44px;
  }

  .yours-steps article {
    grid-template-columns: 92px minmax(210px, 0.7fr) 1fr;
    gap: 20px;
  }

  .learning-curve,
  .hosting-inline {
    gap: 34px;
  }

  .pricing-levels {
    gap: 14px;
    border: 0;
  }

  .pricing-level,
  .pricing-level + .pricing-level {
    border: 1px solid color-mix(in oklch, var(--ink) 22%, transparent);
  }

  .pricing-level:hover,
  .pricing-level:focus-within {
    transform: none;
  }

  .pricing-summary {
    min-height: 0;
  }

  .pricing-plain {
    gap: 26px;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 20px;
    --section: 68px;
  }

  html {
    scroll-padding-top: 78px;
  }

  section[id] {
    scroll-margin-top: 78px;
  }

  body {
    font-size: 1rem;
  }

  .site-header {
    min-height: 62px;
    padding-inline: 14px;
  }

  .product-lockup {
    width: min(228px, calc(100vw - 92px));
  }

  main h2,
  .library-copy h2,
  .yours-intro h2 {
    max-width: 13ch;
    font-size: clamp(2.25rem, 10.8vw, 3.1rem);
    line-height: 0.99;
    letter-spacing: -0.043em;
  }

  .section-eyebrow,
  .section-intro-note {
    margin-bottom: 14px;
  }

  .library {
    gap: 42px;
  }

  .library-copy .personal-definition {
    max-width: 34ch;
  }

  .library-figure {
    padding: 24px 18px;
  }

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

  .library-result li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .demo-mobile-tabs {
    margin-bottom: 22px;
  }

  .phone {
    width: min(100%, 350px);
    height: 624px;
    border-width: 7px;
    border-radius: 38px;
  }

  .possibility-tabs button {
    min-width: 150px;
    padding: 15px 16px;
  }

  .possibility-panel-bar {
    min-height: 54px;
  }

  .possibility-panel-body {
    padding: 28px 18px 30px;
  }

  .possibility-panel h3,
  .film-panel .film-caption h3 {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
  }

  .possibility-summary {
    margin-bottom: 28px;
  }

  .film-tabs button {
    min-width: 174px;
  }

  .film-player {
    width: min(100%, 320px);
  }

  .mandate-scale article {
    padding-block: 24px 28px;
  }

  .mandate-control {
    padding: 26px 18px;
  }

  .yours-steps article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 24px;
  }

  .yours-steps span {
    margin-bottom: 4px;
  }

  .learning-curve {
    margin-top: 42px;
    padding: 28px 20px;
  }

  .learning-curve h3 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .hosting-inline {
    margin-top: 44px;
  }

  .hosting-inline-heading h3,
  .hosting-options h4 {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
  }

  .web-preview {
    margin-top: 52px;
  }

  .web-main h3 {
    font-size: 2rem;
  }

  .pricing-guidance {
    margin-bottom: 30px;
  }

  .pricing-level {
    padding: 30px 20px 34px;
  }

  .pricing-level h3 {
    font-size: 3rem;
  }

  .pricing-price strong {
    font-size: 3.8rem;
  }

  .pricing-plain {
    padding: 30px 20px 34px;
  }

  .pricing-plain h3 {
    font-size: 2.15rem;
  }

  .faq-list summary {
    min-height: 66px;
    padding-block: 17px;
    font-size: 1.08rem;
  }

  .faq-intro h2 {
    max-width: 13ch;
  }

  .shape-cta {
    padding-block: 72px;
  }

  .shape-intro {
    margin-bottom: 42px;
  }

  .shape-intro h2 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  .shape-form {
    gap: 34px;
  }

  .shape-form legend {
    min-height: 62px;
  }

  .shape-note-field {
    gap: 14px;
    padding-top: 24px;
  }

  .shape-result {
    gap: 24px;
    margin-top: 42px;
  }

  .shape-result > div:first-child > strong {
    font-size: 1.65rem;
  }
}

/* The root scroll padding alone reserves space for the fixed masthead. */
section[id] {
  scroll-margin-top: 0;
}

/* Keep the two reading levels mutually exclusive inside responsive components. */
.mode-copy.mode-copy--technical {
  display: none;
}

html[data-content-mode="technical"] .mode-copy.mode-copy--ordinary {
  display: none;
}

html[data-content-mode="technical"] .mode-copy.mode-copy--technical {
  display: block;
}

details.learning-curve {
  display: block;
}

.learning-curve summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(420px, 1.45fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  padding-right: 64px;
  cursor: pointer;
  list-style: none;
}

.learning-curve summary::-webkit-details-marker,
.tier-more summary::-webkit-details-marker {
  display: none;
}

.learning-curve summary > span {
  color: var(--copper-hover);
  font-size: 0.8rem;
  font-weight: 720;
}

.learning-curve summary::after {
  position: absolute;
  right: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--ink-deep);
  background: var(--copper);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 180ms var(--ease);
}

.learning-curve[open] summary::after {
  transform: rotate(45deg);
}

.learning-curve .learning-stages {
  max-width: 880px;
  margin: 34px 0 0 auto;
}

.tier-more {
  margin: 0 0 24px;
  border-top: 1px solid color-mix(in oklch, currentColor 20%, transparent);
  border-bottom: 1px solid color-mix(in oklch, currentColor 20%, transparent);
}

.tier-more summary {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 34px 10px 0;
  font-size: 0.86rem;
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

.tier-more summary::after {
  position: absolute;
  right: 2px;
  content: "+";
  color: var(--copper-text);
  font-size: 1.2rem;
  transition: transform 180ms var(--ease);
}

.pricing-level-hand .tier-more summary::after {
  color: var(--copper-hover);
}

.tier-more[open] summary::after {
  transform: rotate(45deg);
}

.pricing-level .tier-more ul {
  margin: 4px 0 20px;
}

@media (max-width: 860px) {
  .motion-ready .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .learning-curve summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .learning-curve .learning-stages {
    margin-top: 26px;
  }
}
