:root {
  --ink: #151515;
  --ink-soft: #363533;
  --paper: #f5f1e8;
  --paper-deep: #e9e3d8;
  --paper-bright: #fffdf8;
  --white: #ffffff;
  --line: #d4cec2;
  --line-dark: #4a4844;
  --coral: #f06449;
  --coral-dark: #b63b28;
  --teal: #167c78;
  --teal-light: #d9efeb;
  --gold: #e5b947;
  --muted: #77736b;
  --content: 1180px;
  --header-height: 66px;
  --prototype-height: 0px;
  --shadow-soft: 0 10px 28px rgba(21, 21, 21, 0.1);
  --shadow-lift: 0 13px 30px rgba(21, 21, 21, 0.16);
  --motion-fast: 160ms;
  --motion-base: 220ms;
}

html.public-mode {
  --prototype-height: 0px;
}

html.public-mode .prototype-bar,
html.public-mode [data-public-hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--prototype-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3,
strong,
.button,
.kicker,
.panel-kicker {
  line-height: 1.15;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 6px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.prototype-bar {
  position: sticky;
  top: 0;
  z-index: 99;
  min-height: var(--prototype-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 16px;
  color: var(--ink);
  background: var(--gold);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header {
  position: sticky;
  top: var(--prototype-height);
  z-index: 90;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 max(28px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgba(21, 21, 21, 0.16);
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 0 0 rgba(21, 21, 21, 0);
  transition: border-color var(--motion-base) ease, box-shadow var(--motion-base) ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(21, 21, 21, 0.09);
  box-shadow: 0 8px 24px rgba(21, 21, 21, 0.1);
}

.footer-brand img {
  width: 164px;
  height: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-lockup {
  position: relative;
  width: 180px;
  display: block;
  padding: 11px 16px 4px 0;
}

.brand-logo {
  width: 164px;
  height: auto;
}

.brand-story {
  position: absolute;
  top: -1px;
  right: 0;
  color: #f04b23;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotate(-7deg);
  transform-origin: center;
  transition: color 160ms ease, transform 160ms ease;
}

.brand:hover .brand-story,
.brand:focus-visible .brand-story {
  color: var(--coral-dark);
  transform: rotate(-4deg) translateY(-1px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--motion-fast) ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--motion-base) ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--coral-dark);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 12px;
}

.mobile-menu-button,
.mobile-nav {
  display: none;
}

.mobile-menu-button {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  transition: border-color var(--motion-fast) ease, background-color var(--motion-fast) ease,
    transform var(--motion-fast) ease;
}

.mobile-menu-button:hover {
  border-color: var(--ink-soft);
  background: var(--paper-bright);
}

.mobile-menu-button:active {
  transform: translateY(1px);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.menu-icon {
  top: 19px;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.mobile-menu-button.is-open .menu-icon {
  background: transparent;
}

.mobile-menu-button.is-open .menu-icon::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-button.is-open .menu-icon::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

.language-switch {
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.language-button {
  width: 36px;
  height: 30px;
  border: 0;
  border-radius: 3px;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: color var(--motion-fast) ease, background-color var(--motion-fast) ease,
    transform var(--motion-fast) ease;
}

.language-button:hover:not(.is-active) {
  color: var(--ink);
  background: rgba(21, 21, 21, 0.07);
}

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

.language-button.is-active {
  color: var(--white);
  background: var(--ink);
}

.invest-link {
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease,
    transform var(--motion-fast) ease;
}

.hero {
  position: relative;
  min-height: min(68vh, 700px);
  height: 630px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-shade {
  background: rgba(11, 11, 10, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 56px));
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  margin: 0 auto;
  padding: 34px 0 32px;
}

.hero-copy-top,
.hero-copy-bottom {
  width: min(560px, 44vw);
}

.hero-copy-top {
  grid-row: 1;
}

.hero-copy-bottom {
  grid-row: 3;
}

.eyebrow,
.kicker,
.panel-kicker {
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 560px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.4vw, 66px);
  font-weight: 500;
  line-height: 0.98;
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.48;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(21, 21, 21, 0);
  transition: border-color var(--motion-fast) ease, background-color var(--motion-fast) ease,
    color var(--motion-fast) ease, box-shadow var(--motion-fast) ease,
    transform var(--motion-fast) ease;
}

.button:hover:not(:disabled),
.invest-link:hover:not(:disabled) {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.button:active:not(:disabled),
.invest-link:active:not(:disabled) {
  box-shadow: 0 4px 12px rgba(21, 21, 21, 0.14);
  transform: translateY(0);
}

.button:disabled,
.invest-link:disabled {
  cursor: wait;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(0, 0, 0, 0.2);
}

.button-quiet:hover {
  border-color: var(--white);
  background: rgba(0, 0, 0, 0.38);
}

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

.button-dark:hover {
  background: var(--ink-soft);
}

.hero-signature {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
}

.section {
  width: min(var(--content), calc(100% - 56px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 62px minmax(0, 780px);
  gap: 24px;
  margin-bottom: 64px;
}

.section-number {
  margin: 4px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.section-heading h2,
.route-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

.section-intro-copy {
  max-width: 750px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.statement-section {
  padding-bottom: 96px;
}

.statement-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 72px;
  align-items: start;
}

.statement-copy {
  max-width: 730px;
}

.statement-copy p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 18px;
}

.statement-copy .lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.45;
}

.principle-note {
  padding: 28px 0 28px 28px;
  border-left: 4px solid var(--coral);
}

.principle-note .quote-mark {
  height: 32px;
  margin: 0 0 12px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.75;
}

.principle-note p:not(.quote-mark) {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.35;
}

.principle-note span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.clarity-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clarity-strip > div {
  position: relative;
  min-height: 176px;
  padding: 30px 30px 28px 34px;
}

.clarity-strip > div + div {
  border-left: 1px solid var(--line);
}

.clarity-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.clarity-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.state-dot {
  position: absolute;
  top: 35px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.state-current {
  background: var(--teal);
}

.state-building {
  background: var(--gold);
}

.state-future {
  background: var(--coral);
}

.fact-note {
  margin-top: 46px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.quote-block {
  margin-top: 46px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-bright);
}

.jama-takeaway {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 54px;
  margin-top: 70px;
  padding: 52px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.jama-takeaway-label {
  padding-top: 7px;
}

.jama-takeaway-copy {
  max-width: 820px;
}

.jama-takeaway-copy h3 {
  max-width: 690px;
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.18;
}

.jama-takeaway-copy > p:not(.jama-takeaway-close):not(.takeaway-signature) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 16px;
}

.jama-takeaway-close {
  max-width: 720px;
  margin: 34px 0 0;
  padding-left: 22px;
  border-left: 4px solid var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.35;
}

.takeaway-signature {
  margin: 24px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  text-align: right;
}

.effort-band {
  margin-top: 46px;
  padding: 48px;
  color: var(--white);
  background: var(--ink);
}

.effort-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  align-items: end;
}

.effort-intro .kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--gold);
}

.effort-intro h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
}

.effort-intro > p:not(.kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.effort-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.effort-stats > div {
  min-width: 0;
  padding: 30px 22px 28px;
}

.effort-stats > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.effort-stats dt {
  margin-bottom: 13px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px;
  line-height: 1;
}

.effort-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.45;
}

.founder-funded {
  margin: 26px 0 0;
  padding: 20px 0 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--coral);
  color: rgba(255, 255, 255, 0.85);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.story-build-note {
  max-width: 950px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.quote-block-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--ink);
  color: var(--white);
}

.quote-block-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.quote-block-heading small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-block-intro {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding: 32px 28px;
  border-bottom: 1px solid var(--line);
}

.quote-block-intro p {
  margin: 0;
}

.quote-block-intro .source-note {
  color: var(--muted);
  font-size: 12px;
}

.quote-timeline {
  margin: 0;
  padding: 0 28px 18px;
  list-style: none;
}

.quote-row {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.quote-row:last-child {
  border-bottom: 0;
}

.quote-accordion-item {
  width: 100%;
}

.quote-accordion-panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.quote-accordion-panel-inner {
  padding: 14px 0 20px 130px;
}

.quote-accordion-summary {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 148px 20px;
  gap: 18px;
  align-items: center;
  padding: 20px 10px;
  cursor: pointer;
  list-style: none;
  transition: background-color var(--motion-fast) ease;
}

.quote-role,
.quote-accordion-quote,
.quote-verdict,
.quote-accordion-indicator {
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-accordion-summary:hover .quote-role,
.quote-accordion-summary:hover .quote-accordion-quote {
  transform: translateX(3px);
}

.quote-accordion-summary:hover .quote-verdict,
.quote-accordion-summary:hover .quote-accordion-indicator {
  transform: translateX(-3px);
}

.quote-accordion-summary:hover {
  background: rgba(22, 124, 120, 0.055);
}

.quote-accordion-item[open] .quote-accordion-summary {
  background: rgba(22, 124, 120, 0.085);
}

.quote-accordion-summary::-webkit-details-marker {
  display: none;
}

.quote-accordion-summary:focus-visible {
  outline: 3px solid rgba(0, 105, 112, 0.28);
  outline-offset: 5px;
}

.quote-role {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.quote-role-self {
  border-color: var(--coral);
  color: var(--coral-dark);
}

.quote-role-investor {
  border-color: var(--teal);
  color: var(--teal);
}

.quote-role-dialogue {
  border-color: var(--ink-soft);
  color: var(--ink-soft);
}

.quote-role-partner {
  border-color: var(--gold);
  color: #866616;
}

.quote-accordion-quote {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.38;
}

.quote-verdict {
  justify-self: end;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.quote-verdict-admission {
  color: var(--coral-dark);
}

.quote-verdict-fair,
.quote-verdict-insight,
.quote-verdict-lesson {
  color: #80600f;
}

.quote-verdict-opinion {
  color: var(--muted);
}

.quote-accordion-indicator {
  position: relative;
  width: 18px;
  height: 18px;
}

.quote-accordion-indicator::before,
.quote-accordion-indicator::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  background: var(--teal);
  content: "";
  transition: transform 180ms ease;
}

.quote-accordion-indicator::after {
  transform: rotate(90deg);
}

.quote-accordion-item[open] .quote-accordion-indicator::after {
  transform: rotate(0deg);
}

.quote-review {
  padding: 14px 18px;
  border-left: 3px solid var(--teal);
  background: var(--paper);
}

.quote-review strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-review p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.quote-review-admission {
  border-color: var(--coral);
}

.quote-review-admission strong {
  color: var(--coral-dark);
}

.quote-review-fair,
.quote-review-insight,
.quote-review-lesson {
  border-color: var(--gold);
}

.quote-review-fair strong,
.quote-review-insight strong,
.quote-review-lesson strong {
  color: #80600f;
}

.quote-review-opinion {
  border-color: var(--muted);
}

.quote-review-opinion strong {
  color: var(--muted);
}

.fact-note summary {
  padding: 24px 4px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.fact-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0 0 28px;
}

.fact-note-grid article {
  padding: 24px 32px 24px 4px;
  border-top: 1px solid var(--line);
}

.fact-note-grid article:nth-child(even) {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.fact-note-grid h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.fact-note-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.problem-section {
  width: 100%;
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--content)) / 2));
  padding-left: max(28px, calc((100vw - var(--content)) / 2));
  background: var(--paper);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: start;
}

.problem-story {
  max-width: 660px;
}

.problem-story .big-copy {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.4;
}

.problem-story p:last-child {
  color: var(--ink-soft);
  font-size: 17px;
}

.friction-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.friction-list li {
  min-height: 92px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.friction-list li:hover {
  border-bottom-color: var(--ink-soft);
  transform: translateX(4px);
}

.friction-list span {
  color: var(--coral-dark);
  font-family: Georgia, serif;
  font-size: 23px;
}

.friction-list p {
  margin: 0;
  font-weight: 700;
}

.heritage-band {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 46px;
  align-items: center;
  margin-top: 76px;
  padding: 36px 42px;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
}

.heritage-band > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.heritage-number {
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.8;
}

.heritage-band p {
  margin: 0;
}

.heritage-band > p {
  padding-left: 46px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 76px;
  padding: 0;
  list-style: none;
}

.journey-steps li {
  min-height: 150px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-steps li + li {
  border-left: 1px solid var(--line);
}

.journey-steps > li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-weight: 900;
}

.journey-steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

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

.oneqr-showcase {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
  min-height: 610px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.phone-stage {
  display: grid;
  place-items: center;
  padding: 54px;
  background: var(--teal-light);
}

.phone-shell {
  width: 286px;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 34px;
  background: var(--ink);
  box-shadow: 0 22px 48px rgba(21, 21, 21, 0.23);
  transition: box-shadow var(--motion-base) ease, transform var(--motion-base) ease;
}

.phone-stage:hover .phone-shell {
  box-shadow: 0 28px 58px rgba(21, 21, 21, 0.28);
  transform: translateY(-4px);
}

.phone-top {
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--ink);
}

.phone-top span {
  width: 78px;
  height: 6px;
  border-radius: 4px;
  background: #55534f;
}

.phone-screen {
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper-bright);
}

.phone-screen > img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  object-position: center 35%;
}

.phone-profile {
  padding: 18px 18px 12px;
}

.phone-profile h3 {
  margin-bottom: 4px;
  font-family: Georgia, serif;
  font-size: 27px;
}

.phone-profile p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.phone-label {
  margin-bottom: 6px;
  color: var(--coral-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.phone-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  padding: 8px 14px 18px;
}

.phone-actions button {
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color var(--motion-fast) ease, background-color var(--motion-fast) ease,
    color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.phone-actions button:hover {
  border-color: var(--coral);
  transform: translateY(-1px);
}

.phone-actions button:active {
  transform: translateY(1px);
}

.phone-actions button:last-child {
  grid-column: 1 / -1;
}

.phone-actions button.is-active {
  border-color: var(--coral);
  color: var(--white);
  background: var(--coral);
}

.journey-explanation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
  color: var(--white);
}

.status-chip {
  width: fit-content;
  margin-bottom: 20px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 3px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-explanation h3 {
  max-width: 520px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
}

.journey-explanation > p:not(.status-chip) {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.text-link {
  width: fit-content;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color var(--motion-fast) ease, text-underline-offset var(--motion-fast) ease;
}

.text-link:hover {
  color: var(--gold);
  text-underline-offset: 7px;
}

.film-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  margin-top: 112px;
  padding: 0 70px;
}

.physical-film-section {
  padding: 58px 64px;
  border-radius: 8px;
  background: var(--paper);
}

.film-copy h3 {
  max-width: 610px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 500;
}

.film-copy > p:last-child {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: 17px;
}

.film-copy .film-note {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 3px solid var(--teal);
  color: var(--muted);
  font-size: 14px;
}

.video-frame {
  width: 100%;
  max-width: 390px;
  justify-self: end;
  padding: 10px;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 22px 52px rgba(21, 21, 21, 0.2);
  transition: box-shadow var(--motion-base) ease, transform var(--motion-base) ease;
}

.video-frame:hover,
.video-frame:focus-within {
  box-shadow: 0 28px 60px rgba(21, 21, 21, 0.27);
  transform: translateY(-3px);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  background: #000;
}

.ecosystem-section {
  width: 100%;
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--content)) / 2));
  padding-left: max(28px, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: #1e2625;
}

.section-heading-light .section-number,
.section-heading-light .kicker {
  color: var(--gold);
}

.ecosystem-workbench {
  display: grid;
  grid-template-columns: 335px 1fr;
  min-height: 620px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.capability-nav {
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.capability-nav button {
  width: 100%;
  min-height: 73px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  align-items: center;
  padding: 15px 18px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.63);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color var(--motion-fast) ease, color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}

.capability-nav button:last-child {
  border-bottom: 0;
}

.capability-nav button span {
  color: rgba(255, 255, 255, 0.38);
  font-family: Georgia, serif;
  font-size: 18px;
}

.capability-nav button strong {
  font-size: 14px;
}

.capability-nav button:hover,
.capability-nav button.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.capability-nav button.is-active {
  box-shadow: inset 4px 0 0 var(--coral);
}

.capability-nav button.is-active span {
  color: var(--gold);
}

.capability-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 70px;
}

.capability-panel.is-updating > * {
  animation: panel-reveal var(--motion-base) ease both;
}

@keyframes panel-reveal {
  from {
    opacity: 0.25;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.status-light {
  border-color: rgba(255, 255, 255, 0.3);
}

.capability-panel h3 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 500;
}

.capability-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.value-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.value-columns > div {
  padding: 26px 24px 0 0;
}

.value-columns > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.value-columns span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.value-columns p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.economy-band {
  margin-top: 90px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.economy-intro {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 42px;
  align-items: start;
}

.economy-intro h3 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 500;
}

.economy-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.economy-flow > div {
  min-height: 146px;
  padding: 28px 26px 24px 0;
}

.economy-flow > div + div {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.economy-flow strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
}

.economy-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.economy-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.poll-panel,
.message-panel {
  min-height: 610px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.poll-panel {
  background: var(--paper);
}

.message-panel {
  color: var(--white);
  background: var(--teal);
}

.poll-panel h3,
.message-panel h3 {
  margin-bottom: 28px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
}

.message-panel .panel-kicker {
  color: var(--gold);
}

.message-panel > p:not(.panel-kicker) {
  color: rgba(255, 255, 255, 0.82);
}

.poll-options {
  display: grid;
  gap: 9px;
}

.poll-options button {
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease,
    background-color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.poll-options button:hover,
.poll-options button.is-selected {
  border-color: var(--coral);
  box-shadow: inset 4px 0 0 var(--coral);
}

.poll-options button:hover:not(:disabled) {
  background: var(--paper-bright);
  transform: translateX(3px);
}

.poll-options button:active:not(:disabled) {
  transform: translateX(1px);
}

.poll-options button:disabled {
  cursor: default;
  opacity: 0.68;
}

.poll-result {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.demo-label {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.poll-bars {
  display: grid;
  gap: 9px;
}

.poll-bar {
  display: grid;
  grid-template-columns: 120px 1fr 34px;
  gap: 10px;
  align-items: center;
  font-size: 11px;
}

.poll-bar-track {
  height: 7px;
  overflow: hidden;
  border-radius: 4px;
  background: #ded8cc;
}

.poll-bar-fill {
  height: 100%;
  background: var(--teal);
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1), background-color var(--motion-fast) ease;
}

.poll-bar.is-selected .poll-bar-fill {
  background: var(--coral);
}

.poll-insight {
  margin: 16px 0 0;
  padding: 14px;
  border-left: 3px solid var(--coral);
  background: var(--white);
  font-size: 13px;
}

.poll-privacy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.message-panel form {
  margin-top: 30px;
}

.message-panel label span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
}

.message-panel textarea,
.message-panel input[type="email"] {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.message-panel textarea {
  min-height: 150px;
  resize: vertical;
}

.message-panel .reply-email-field {
  display: block;
  margin-top: 18px;
}

.message-panel input[type="email"] {
  min-height: 48px;
  margin-bottom: 0;
}

.message-panel .reply-email-field small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.45;
}

.message-panel textarea:focus,
.message-panel input[type="email"]:focus {
  outline: 3px solid rgba(229, 185, 71, 0.35);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(229, 185, 71, 0.12);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.message-panel .privacy-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 6px;
}

.message-panel .privacy-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.message-panel .privacy-consent span {
  margin: 0;
  font-weight: 500;
  line-height: 1.45;
}

.privacy-short {
  margin: 8px 0 0;
  font-size: 12px;
}

.privacy-short a,
.footer-note a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--motion-fast) ease, text-underline-offset var(--motion-fast) ease;
}

.privacy-short a:hover,
.footer-note a:hover {
  color: var(--gold);
  text-underline-offset: 5px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
}

.character-count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.form-result {
  margin: 18px 0 0;
  padding: 13px;
  border-left: 3px solid var(--gold);
  background: rgba(0, 0, 0, 0.18);
  font-size: 13px;
  animation: result-reveal var(--motion-base) ease both;
}

.form-result.is-success {
  border-left-color: var(--gold);
}

.form-result.is-error {
  border-left-color: var(--coral);
}

@keyframes result-reveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.support-call {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px 54px;
  margin-top: 28px;
  padding: 44px;
  border-top: 4px solid var(--coral);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.support-call-copy h3 {
  max-width: 700px;
  margin: 14px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.22;
}

.support-call-copy > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.support-actions {
  display: grid;
  gap: 12px;
  align-content: center;
}

.support-actions .button {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  padding-right: 22px;
  padding-left: 22px;
  font-size: 13px;
  text-align: center;
}

.support-actions .button-quiet {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.support-actions .button-quiet:hover {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.support-call-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.5;
}

.routes-section {
  padding-top: 72px;
}

.route-heading {
  max-width: 690px;
  margin-bottom: 46px;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.route-list article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 285px;
  padding: 32px;
  transition: background-color var(--motion-fast) ease;
}

.route-list article:hover {
  background: var(--paper);
}

.route-list article + article {
  border-left: 1px solid var(--line);
}

.route-list article > span {
  color: var(--coral-dark);
  font-family: Georgia, serif;
  font-size: 22px;
}

.route-list h3 {
  margin: 22px 0 12px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.route-list p {
  flex: 1;
  min-height: 74px;
  color: var(--muted);
  font-size: 14px;
}

.route-list a,
.route-list button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--coral-dark);
  border-radius: 4px;
  color: var(--white);
  background: var(--coral-dark);
  box-shadow: 0 8px 20px rgba(169, 52, 34, 0.16);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin-top: 3px;
  transition: border-color var(--motion-fast) ease, color var(--motion-fast) ease,
    background-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease,
    transform var(--motion-fast) ease;
}

.route-list a:hover,
.route-list a:focus-visible {
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 11px 24px rgba(0, 105, 112, 0.19);
  transform: translateY(-2px);
}

.route-list button[data-demo-route] {
  isolation: isolate;
  border-color: transparent;
  color: var(--ink-soft);
  background: var(--paper-deep);
  box-shadow: none;
}

.route-list button[data-demo-route]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px dashed rgba(21, 21, 21, 0.34);
  border-radius: inherit;
  pointer-events: none;
  transition: border-color var(--motion-fast) ease;
}

.route-list button[data-demo-route]:hover,
.route-list button[data-demo-route]:focus-visible {
  color: var(--teal);
  background: rgba(22, 124, 120, 0.07);
  box-shadow: 0 8px 18px rgba(0, 105, 112, 0.12);
  transform: translateY(-2px);
}

.route-list button[data-demo-route]:hover::after,
.route-list button[data-demo-route]:focus-visible::after {
  border-color: var(--teal);
}

.route-list a:active,
.route-list button[data-demo-route]:active {
  box-shadow: 0 3px 9px rgba(21, 21, 21, 0.13);
  transform: translateY(1px);
}

.closing-statement {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 70px 28px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.closing-statement p {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.08;
}

.site-footer {
  display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 42px;
  row-gap: 22px;
  align-items: center;
  justify-content: center;
  padding: 54px max(28px, calc((100vw - var(--content)) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.site-footer > p {
  margin: 0;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.social-links a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--coral);
}

.footer-note {
  grid-column: 1 / -1;
  justify-self: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px !important;
  text-align: center;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  max-width: 380px;
  padding: 14px 18px;
  border-radius: 5px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  font-size: 13px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 176px 1fr auto;
    gap: 14px;
  }

  .brand-lockup {
    width: 166px;
    padding-right: 14px;
  }

  .brand-logo {
    width: 152px;
  }

  .brand-story {
    font-size: 14px;
  }

  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .film-section {
    grid-template-columns: 1fr 340px;
    gap: 50px;
    padding: 0 20px;
  }

  .ecosystem-workbench {
    grid-template-columns: 290px 1fr;
  }

  .capability-panel {
    padding: 52px 46px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 58px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .desktop-nav {
    display: none;
  }

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

  .mobile-nav {
    position: fixed;
    top: calc(var(--prototype-height) + var(--header-height));
    right: 0;
    left: 0;
    z-index: 89;
    display: grid;
    padding: 8px 20px 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.99);
    box-shadow: 0 16px 28px rgba(21, 21, 21, 0.13);
    transform-origin: top;
    animation: mobile-nav-reveal var(--motion-base) ease both;
  }

  @keyframes mobile-nav-reveal {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid rgba(21, 21, 21, 0.1);
    color: var(--ink);
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    transition: color var(--motion-fast) ease, padding-left var(--motion-fast) ease,
      background-color var(--motion-fast) ease;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    color: var(--coral-dark);
    padding-left: 8px;
    background: rgba(240, 100, 73, 0.045);
  }

  .hero {
    height: 700px;
    min-height: 0;
  }

  .hero-image {
    object-position: 60% 50%;
  }

  .hero-content {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-copy-top,
  .hero-copy-bottom {
    width: min(560px, 64vw);
  }

  .section {
    width: min(var(--content), calc(100% - 40px));
    padding: 86px 0;
  }

  .problem-section,
  .ecosystem-section {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .statement-layout,
  .problem-grid,
  .oneqr-showcase,
  .film-section,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .jama-takeaway,
  .effort-intro,
  .support-call {
    grid-template-columns: 1fr;
  }

  .jama-takeaway {
    gap: 18px;
  }

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

  .effort-stats > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .effort-stats > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .support-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-block-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .principle-note {
    max-width: 620px;
  }

  .clarity-strip,
  .journey-steps,
  .route-list {
    grid-template-columns: 1fr;
  }

  .clarity-strip > div + div,
  .journey-steps li + li,
  .route-list article + article {
    border-left: 0;
  }

  .clarity-strip > div + div,
  .journey-steps li + li {
    border-top: 0;
  }

  .route-list article + article {
    border-top: 1px solid var(--line);
  }

  .clarity-strip > div,
  .route-list article {
    min-height: auto;
  }

  .heritage-band {
    grid-template-columns: 1fr;
  }

  .heritage-band > p {
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-left: 0;
  }

  .phone-stage {
    min-height: 600px;
  }

  .journey-explanation {
    min-height: 430px;
    padding: 54px;
  }

  .film-section {
    gap: 48px;
    padding: 0 30px;
  }

  .physical-film-section {
    padding: 46px 40px;
  }

  .video-frame {
    max-width: 350px;
    justify-self: center;
  }

  .ecosystem-workbench {
    grid-template-columns: 1fr;
  }

  .capability-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  .capability-nav button:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .capability-nav button.is-active {
    box-shadow: inset 0 -4px 0 var(--coral);
  }

  .value-columns,
  .economy-flow {
    grid-template-columns: 1fr;
  }

  .value-columns > div + div,
  .economy-flow > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .value-columns > div,
  .economy-flow > div {
    min-height: auto;
    padding: 24px 0;
  }

  .economy-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .poll-panel,
  .message-panel {
    min-height: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .social-links {
    justify-self: center;
  }

  .footer-note {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .prototype-bar {
    gap: 7px;
    font-size: 9px;
  }

  .site-header {
    gap: 8px;
    padding: 0 14px;
  }

  .mobile-nav {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-lockup {
    width: 136px;
    padding-top: 8px;
    padding-right: 12px;
  }

  .brand-logo {
    width: 124px;
  }

  .brand-story {
    top: 0;
    font-size: 12px;
  }

  .header-actions {
    gap: 7px;
  }

  .invest-link {
    display: none;
  }

  .language-button {
    width: 32px;
  }

  .hero {
    height: min(720px, calc(100svh - var(--header-height) - var(--prototype-height) - 16px));
    min-height: 440px;
  }

  .hero-image {
    object-position: 61% 50%;
  }

  .hero-content {
    width: calc(100% - 34px);
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-copy-top,
  .hero-copy-bottom {
    width: 100%;
  }

  .hero h1 {
    max-width: 350px;
    font-size: 39px;
  }

  .hero-lead {
    max-width: 356px;
    margin-bottom: 13px;
    font-size: 14px;
    line-height: 1.42;
  }

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

  .hero-actions .button {
    min-height: 42px;
    padding: 0 8px;
    font-size: 11px;
  }

  .hero-signature {
    margin-top: 11px;
    font-size: 10px;
  }

  .section {
    width: calc(100% - 34px);
    padding: 72px 0;
  }

  .problem-section,
  .ecosystem-section {
    width: 100%;
    padding-right: 17px;
    padding-left: 17px;
  }

  .section-heading {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 42px;
  }

  .section-number {
    font-size: 20px;
  }

  .section-heading h2,
  .route-heading h2 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .kicker,
  .panel-kicker {
    font-size: 10px;
  }

  .statement-layout {
    gap: 36px;
  }

  .statement-copy .lead {
    font-size: 22px;
  }

  .statement-copy p {
    font-size: 16px;
  }

  .jama-takeaway {
    margin-top: 52px;
    padding: 38px 0;
  }

  .jama-takeaway-copy h3 {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .jama-takeaway-close {
    font-size: 22px;
  }

  .effort-band {
    padding: 30px 22px;
  }

  .effort-intro {
    gap: 18px;
  }

  .effort-intro h3 {
    font-size: 28px;
  }

  .effort-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }

  .effort-stats > div {
    padding: 22px 14px;
  }

  .effort-stats > div:nth-child(2),
  .effort-stats > div:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.28);
  }

  .effort-stats > div:nth-child(3),
  .effort-stats > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .effort-stats > div:nth-child(3) {
    border-left: 0;
  }

  .effort-stats dt {
    font-size: 38px;
  }

  .effort-stats dd {
    overflow-wrap: anywhere;
  }

  .founder-funded {
    padding-left: 16px;
    font-size: 17px;
  }

  .principle-note {
    padding-left: 20px;
  }

  .principle-note p:not(.quote-mark) {
    font-size: 21px;
  }

  .fact-note-grid {
    grid-template-columns: 1fr;
  }

  .quote-block-heading {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px;
  }

  .quote-block-heading h3 {
    font-size: 21px;
  }

  .quote-block-intro {
    padding: 24px 20px;
  }

  .quote-timeline {
    padding: 0 20px 10px;
  }

  .quote-row {
    padding: 0;
  }

  .quote-accordion-summary {
    grid-template-columns: minmax(0, 1fr) 20px;
    gap: 10px 12px;
    padding: 18px 0;
  }

  .quote-role {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .quote-verdict {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    padding-left: 90px;
  }

  .quote-accordion-quote {
    grid-column: 1;
    grid-row: 2;
    font-size: 19px;
  }

  .quote-accordion-indicator {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .quote-review {
    padding: 12px 14px;
  }

  .quote-accordion-panel-inner {
    padding: 12px 0 18px;
  }

  .fact-note-grid article,
  .fact-note-grid article:nth-child(even) {
    padding: 20px 4px;
    border-left: 0;
  }

  .problem-story .big-copy {
    font-size: 23px;
  }

  .heritage-band {
    gap: 22px;
    padding: 28px 24px;
  }

  .heritage-number {
    font-size: 60px;
  }

  .journey-steps {
    margin-bottom: 50px;
  }

  .journey-steps li {
    padding: 22px 8px;
  }

  .oneqr-showcase {
    min-height: 0;
  }

  .phone-stage {
    min-height: 520px;
    padding: 38px 18px;
  }

  .phone-shell {
    width: min(286px, 100%);
  }

  .journey-explanation {
    min-height: 390px;
    padding: 36px 26px;
  }

  .journey-explanation h3 {
    font-size: 34px;
  }

  .film-section {
    margin-top: 74px;
    padding: 0;
  }

  .physical-film-section {
    padding: 30px 20px;
  }

  .film-copy h3 {
    font-size: 34px;
  }

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

  .capability-nav button:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .capability-nav button {
    min-height: 70px;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 4px;
    padding: 12px 8px;
  }

  .capability-nav button span {
    font-size: 13px;
  }

  .capability-nav button strong {
    font-size: 10px;
    overflow-wrap: anywhere;
  }

  .capability-panel {
    padding: 38px 22px;
  }

  .capability-panel h3 {
    font-size: 36px;
  }

  .capability-copy {
    font-size: 16px;
  }

  .economy-band {
    margin-top: 60px;
    padding: 30px 22px;
  }

  .economy-intro h3 {
    font-size: 28px;
  }

  .voice-grid {
    gap: 18px;
  }

  .poll-panel,
  .message-panel {
    padding: 28px 20px;
  }

  .poll-panel h3,
  .message-panel h3 {
    font-size: 26px;
  }

  .poll-bar {
    grid-template-columns: 92px 1fr 30px;
    gap: 7px;
    font-size: 9px;
  }

  .form-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-row .button {
    width: 100%;
  }

  .support-call {
    gap: 24px;
    padding: 30px 20px;
  }

  .support-call-copy h3 {
    font-size: 27px;
  }

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

  .route-list article {
    padding: 26px 10px;
  }

  .route-list p {
    min-height: 0;
  }

  .closing-statement {
    min-height: 330px;
  }

  .closing-statement p {
    font-size: 38px;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
}

@media (max-width: 600px) and (max-height: 650px) {
  .hero-content {
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .eyebrow {
    margin-bottom: 7px;
    font-size: 9px;
  }

  .hero h1 {
    max-width: 300px;
    font-size: 31px;
  }

  .hero-lead {
    max-width: 300px;
    margin-bottom: 8px;
    font-size: 11px;
    line-height: 1.32;
  }

  .hero-actions .button {
    min-height: 34px;
    font-size: 9px;
  }

  .hero-signature {
    display: none;
  }
}

@media (max-width: 340px) {
  .brand-lockup {
    width: 120px;
    padding-right: 10px;
  }

  .brand-logo {
    width: 110px;
  }

  .brand-story {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
