:root {
  --paper: #f7f3ea;
  --paper-deep: #eee8dc;
  --surface: #fffdf8;
  --ink: #102019;
  --muted: #69766f;
  --line: #d9d5ca;
  --deep: #0b382c;
  --deep-2: #0d4637;
  --green: #0f6b4c;
  --green-soft: #e7f2ed;
  --sage: #4f685d;
  --sage-light: #78a38e;
  --brown: #574033;
  --orange: #ff9d5c;
  --orange-deep: #c96e2d;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-lg: 30px;
  --radius-md: 22px;
  --shadow: 0 20px 50px rgba(16, 32, 25, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--deep);
  border-radius: 999px;
  transform: translateY(-150%);
}

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

.shell {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(16, 32, 25, 0.1);
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  font: 500 clamp(25px, 2vw, 34px) / 1 var(--serif);
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(16, 32, 25, 0.12);
}

.brand > span > span {
  color: var(--green);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #405048;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding-block: 12px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 23px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.topic-chips a:focus-visible,
.mode-expanded a:focus-visible {
  outline: 3px solid rgba(255, 157, 92, 0.5);
  outline-offset: 3px;
}

.menu-toggle:focus-visible,
.mode-trigger:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 8px;
}

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

.button--dark:hover {
  background: var(--green);
  box-shadow: 0 12px 26px rgba(11, 56, 44, 0.18);
}

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

.button--orange:hover {
  background: #ffad76;
  box-shadow: 0 12px 26px rgba(255, 157, 92, 0.2);
}

.button--outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  min-height: 625px;
  margin-top: 44px;
  padding: 58px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 88% 4%, rgba(255, 157, 92, 0.18), transparent 24rem),
    var(--deep);
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -310px;
  width: 690px;
  height: 690px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  align-self: center;
  max-width: 620px;
}

.pill,
.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  padding: 10px 17px;
  color: #d3e9df;
  background: rgba(62, 132, 103, 0.22);
  border: 1px solid rgba(137, 191, 165, 0.22);
  border-radius: 999px;
}

.hero-hook {
  padding: 13px 21px;
  color: #17231d;
  background: var(--orange);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(255, 142, 75, 0.24);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 640px;
  margin: 28px 0 22px;
  font: 400 clamp(54px, 5.2vw, 82px) / 0.99 var(--serif);
  letter-spacing: -0.04em;
}

.hero-intro {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.process-line {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.process-line span {
  margin-inline: 7px;
}

.hero-deck {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  min-height: 500px;
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.question-card {
  position: absolute;
  width: 405px;
  overflow: hidden;
  color: var(--ink);
  background: #f8f5ef;
  border: 1px solid rgba(16, 32, 25, 0.16);
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(3, 21, 16, 0.24);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
}

.question-card--front {
  z-index: 3;
  top: 115px;
  left: 120px;
  min-height: 390px;
}

.question-card--learn {
  z-index: 1;
  top: 85px;
  left: 26px;
  transform: rotate(6deg);
}

.question-card--prediction {
  z-index: 2;
  top: 50px;
  right: -12px;
  transform: rotate(-7deg);
}

.hero-deck:hover .question-card--learn {
  transform: translate(-42px, -12px) rotate(3deg);
}

.hero-deck:hover .question-card--prediction {
  transform: translate(38px, -12px) rotate(-4deg);
}

.hero-deck:hover .question-card--front {
  transform: translateY(-8px);
}

.card-band {
  min-height: 112px;
  padding: 22px;
  color: white;
  background: var(--green);
}

.question-card--learn .card-band {
  background: var(--sage);
}

.question-card--prediction .card-band {
  background: #b6642e;
}

.card-band small {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-band span {
  display: block;
  font-size: 10px;
  opacity: 0.72;
}

.question-card--back h2 {
  min-height: 235px;
  margin: 0;
  padding: 34px 26px;
  font: 500 25px / 1.07 var(--serif);
}

.card-body {
  padding: 28px 24px 24px;
}

.card-body h2 {
  margin: 0;
  font: 500 30px / 1.03 var(--serif);
}

.card-options {
  display: grid;
  gap: 10px;
  margin-top: 31px;
}

.card-options span {
  padding: 15px 17px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 13px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.card-options span:last-child {
  color: #9a4d2a;
  background: #f7e6dc;
}

.card-body > p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.card-body i {
  margin-inline: 7px;
  font-style: normal;
}

.hover-hint {
  position: absolute;
  right: 34px;
  bottom: 4px;
  width: 230px;
  margin: 0;
  padding: 11px 18px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 10px;
  text-align: center;
}

.modes-section {
  padding-block: 118px 90px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.section-heading h2,
.method-copy h2,
.community-copy h2,
.final-cta h2 {
  margin: 18px 0 0;
  font: 400 clamp(42px, 4vw, 65px) / 1.04 var(--serif);
  letter-spacing: -0.035em;
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.mode-panels {
  display: flex;
  height: 570px;
  gap: 12px;
}

.mode-panel {
  --panel: var(--deep);
  --visual: #2f7d65;
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  color: white;
  background: var(--panel);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    flex 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms ease,
    box-shadow 220ms ease;
  scroll-margin-top: 120px;
}

.mode-panel--community {
  --panel: #0e493a;
  --visual: #8b6342;
}

.mode-panel--learn {
  --panel: var(--sage);
  --visual: #6d9b84;
}

.mode-panel--prediction {
  --panel: var(--brown);
  --visual: #c77b3a;
}

.mode-panels.is-engaged .mode-panel {
  flex: 0.72 1 0;
}

.mode-panels.is-engaged .mode-panel.is-active {
  flex: 2.55 1 0;
  box-shadow: var(--shadow);
}

.mode-trigger {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: none;
  border: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
}

.mode-trigger i {
  display: none;
  color: var(--orange);
  font-size: 18px;
  font-style: normal;
  line-height: 0.8;
}

.mode-visual {
  position: relative;
  height: 265px;
  margin-top: 34px;
  overflow: hidden;
  background: var(--visual);
  border-radius: 16px;
}

.mode-visual span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.16);
  font: 400 108px / 1 var(--serif);
  transform: translate(-50%, -50%);
}

.mode-visual strong {
  position: absolute;
  right: 14px;
  bottom: 16px;
  left: 14px;
  color: white;
  font: 500 19px / 1.05 var(--serif);
}

.mode-summary {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  transition: opacity 160ms ease;
}

.mode-summary p {
  margin: 0 0 18px;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mode-summary h3 {
  margin: 0;
  font: 400 clamp(21px, 1.8vw, 29px) / 1.05 var(--serif);
}

.mode-summary small {
  display: block;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  text-transform: uppercase;
}

.mode-expanded {
  position: absolute;
  top: 70px;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
  gap: 32px;
  align-items: stretch;
  visibility: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 200ms;
}

.mode-panels.is-engaged .mode-panel.is-active .mode-summary,
.mode-panels.is-engaged .mode-panel.is-active .mode-visual {
  visibility: hidden;
  opacity: 0;
}

.mode-panels.is-engaged .mode-panel.is-active .mode-expanded {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 70ms;
}

.network-art {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #062d23;
  border-radius: 18px;
}

.network-art b,
.community-art b {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.1);
  font: 400 150px / 1 var(--serif);
  transform: translate(-50%, -50%);
}

.network-art span,
.community-art span {
  position: absolute;
  width: 22px;
  height: 22px;
  background: #8ebda5;
  border-radius: 50%;
}

.network-art span:nth-child(1),
.community-art span:nth-child(1) {
  top: 14%;
  left: 10%;
}

.network-art span:nth-child(2),
.community-art span:nth-child(2) {
  top: 14%;
  left: 42%;
  background: #2e735e;
}

.network-art span:nth-child(3),
.community-art span:nth-child(3) {
  top: 14%;
  right: 16%;
  width: 35px;
  height: 35px;
}

.network-art span:nth-child(4),
.community-art span:nth-child(4) {
  bottom: 18%;
  left: 15%;
  width: 40px;
  height: 40px;
  background: var(--orange);
}

.network-art span:nth-child(5),
.community-art span:nth-child(5) {
  right: 16%;
  bottom: 21%;
  background: #2e735e;
}

.expanded-copy {
  display: flex;
  flex-direction: column;
}

.mode-expanded h3 {
  margin: 28px 0 15px;
  font: 400 clamp(31px, 3vw, 48px) / 1 var(--serif);
}

.mode-expanded > div > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.mode-expanded .eyebrow {
  color: #c7e4d6;
}

.mini-use-cases {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.mini-use-cases span {
  padding: 13px 15px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  font-size: 11px;
}

.mini-use-cases span:first-child {
  color: var(--ink);
  background: var(--green-soft);
}

.mini-use-cases b {
  display: block;
  margin-bottom: 5px;
  color: inherit;
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mode-expanded a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: auto;
  padding: 12px 20px;
  gap: 12px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.interaction-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 70px;
  padding: 58px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.method-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.old-loop {
  margin-top: 44px;
  padding: 26px;
  color: #8a867d;
  background: #e4ded3;
  border-radius: 18px;
}

.old-loop small {
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.old-loop p {
  margin: 18px 0 13px;
  font: 400 23px / 1 var(--serif);
}

.old-loop-mobile {
  display: none;
}

.old-loop p span {
  margin-inline: 10px;
}

.old-loop > span {
  font-size: 9px;
}

.method-list {
  display: grid;
  align-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  min-height: 112px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.method-list li:nth-child(2) {
  color: white;
  background: var(--deep-2);
  border-color: var(--deep-2);
}

.method-list li > span {
  align-self: start;
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
}

.method-list li:nth-child(2) > span,
.method-list li:nth-child(2) b {
  color: var(--orange);
}

.method-list small {
  color: var(--green);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.method-list p {
  margin: 9px 0 0;
  font: 400 21px / 1.15 var(--serif);
}

.method-list b {
  color: #8da198;
  font-weight: 400;
}

.community-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
  margin-top: 44px;
  padding: 32px;
  color: white;
  background: #123f33;
  border-radius: var(--radius-lg);
}

.community-art {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #062d23;
  border-radius: 20px;
}

.community-art span:nth-child(4) {
  bottom: 17%;
  left: 10%;
  width: 24px;
  height: 24px;
  background: #8ebda5;
}

.community-art span:nth-child(6) {
  right: 12%;
  bottom: 17%;
  background: #367861;
}

.community-copy {
  align-self: center;
  max-width: 670px;
  padding-right: 35px;
}

.community-copy .eyebrow {
  color: var(--orange);
}

.community-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.topic-chips a {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  transition: background-color 160ms ease;
}

.topic-chips a:first-child,
.topic-chips a:hover {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.final-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 12px 34px;
  margin-block: 44px 56px;
  padding: 50px 64px 32px;
  background: var(--orange);
  border-radius: var(--radius-lg);
}

.cta-brand {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 22px;
}

.cta-brand img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
}

.cta-brand p {
  max-width: 150px;
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 3.5vw, 58px);
}

.final-cta > .button {
  min-width: 230px;
}

.cta-signature {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  font-size: 10px;
}

.cta-signature span {
  margin-inline: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1100px) {
  .shell {
    width: min(100% - 40px, 960px);
  }

  .hero {
    grid-template-columns: 1fr 0.82fr;
    min-height: 590px;
    padding: 42px;
  }

  .hero h1 {
    font-size: clamp(47px, 6vw, 64px);
  }

  .question-card {
    width: 320px;
  }

  .question-card--front {
    left: 20px;
  }

  .question-card--learn {
    left: -22px;
  }

  .question-card--prediction {
    right: -75px;
  }

  .mode-panels {
    height: 530px;
  }

  .mode-panel {
    padding: 18px;
  }

  .mode-expanded {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 22px;
  }

  .mini-use-cases {
    display: none;
  }

  .method-section {
    gap: 40px;
    padding: 42px;
  }

  .final-cta {
    grid-template-columns: auto 1fr;
  }

  .final-cta > .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 800px) {
  :root {
    --radius-lg: 20px;
    --radius-md: 18px;
  }

  .shell {
    width: calc(100% - 28px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    font-size: 24px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .menu-toggle {
    display: grid;
    align-content: center;
    justify-items: end;
    width: 44px;
    height: 44px;
    padding: 10px;
    gap: 7px;
    background: transparent;
    border: 0;
  }

  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

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

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

  .site-nav {
    position: absolute;
    z-index: 20;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    padding: 18px 22px 26px;
    gap: 4px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 0ms linear 160ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0ms;
  }

  .site-nav a {
    padding: 14px 2px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    margin-top: 14px;
    padding: 24px 16px 16px;
    overflow: hidden;
  }

  .pill {
    padding: 8px 12px;
    font-size: 8px;
  }

  .hero h1 {
    margin: 28px 0 18px;
    font-size: clamp(43px, 12.7vw, 61px);
    line-height: 0.98;
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-actions {
    display: block;
    margin-top: 24px;
  }

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

  .hero-actions .button--outline-light {
    display: none;
  }

  .process-line {
    margin: 14px 0 2px;
    font-size: 9px;
    text-align: center;
  }

  .hero-deck {
    min-height: 350px;
    margin-top: 30px;
    transform: none !important;
  }

  .question-card {
    width: 100%;
    border-radius: 17px;
  }

  .question-card--back {
    display: none;
  }

  .question-card--front {
    position: relative;
    top: auto;
    left: auto;
    min-height: 0;
  }

  .card-band {
    min-height: 82px;
    padding: 16px;
  }

  .card-band small {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .card-body {
    padding: 22px 16px 17px;
  }

  .card-body h2 {
    font-size: 25px;
  }

  .card-options {
    margin-top: 22px;
  }

  .card-options span {
    padding: 13px;
    font-size: 10px;
  }

  .hover-hint {
    display: none;
  }

  .modes-section {
    padding-block: 48px 44px;
  }

  .section-heading {
    display: block;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .method-copy h2,
  .community-copy h2,
  .final-cta h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .section-heading > p {
    display: none;
  }

  .mode-panels,
  .mode-panels.is-engaged {
    display: grid;
    height: auto;
    gap: 10px;
  }

  .mode-panel,
  .mode-panels.is-engaged .mode-panel,
  .mode-panels.is-engaged .mode-panel.is-active {
    flex: none;
    min-height: 58px;
    padding: 20px 16px;
    border-radius: 16px;
    box-shadow: none;
    transition: min-height 260ms cubic-bezier(0.22, 1, 0.36, 1);
    scroll-margin-top: 82px;
  }

  .mode-panel.is-active,
  .mode-panels.is-engaged .mode-panel.is-active {
    min-height: 405px;
  }

  .mode-trigger i {
    display: inline;
  }

  .mode-visual,
  .mode-summary {
    display: none;
  }

  .mode-expanded,
  .mode-panels.is-engaged .mode-panel.is-active .mode-expanded {
    position: static;
    display: none;
    visibility: visible;
    grid-template-columns: 1fr;
    margin-top: 26px;
    opacity: 1;
    transform: none;
  }

  .mode-panel.is-active .mode-expanded,
  .mode-panels.is-engaged .mode-panel.is-active .mode-expanded {
    display: block;
  }

  .network-art {
    display: none;
  }

  .mode-expanded h3 {
    margin: 0 0 16px;
    font-size: 32px;
  }

  .mode-expanded .eyebrow {
    display: none;
  }

  .mode-expanded > div > p:not(.eyebrow) {
    font-size: 13px;
  }

  .mini-use-cases {
    display: none;
  }

  .mode-expanded a {
    min-height: 48px;
    margin-top: 28px;
  }

  .interaction-note {
    display: none;
  }

  .method-section {
    display: block;
    padding: 28px 16px;
  }

  .method-copy > p:not(.eyebrow),
  .old-loop small,
  .old-loop > span {
    display: none;
  }

  .old-loop {
    margin-top: 25px;
    padding: 18px;
    background: var(--deep-2);
    border-radius: 14px;
  }

  .old-loop p {
    margin: 0;
    color: white;
    font: 500 10px / 1 var(--sans);
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .old-loop-desktop {
    display: none;
  }

  .old-loop-mobile {
    display: block;
  }

  .method-list {
    display: none;
  }

  .community-section {
    display: block;
    margin-top: 28px;
    padding: 24px 16px;
  }

  .community-art {
    display: none;
  }

  .community-copy {
    padding: 0;
  }

  .community-copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .topic-chips {
    display: grid;
    margin-top: 25px;
  }

  .topic-chips a {
    color: var(--ink);
    background: var(--green-soft);
    border: 0;
  }

  .final-cta {
    display: block;
    margin-block: 28px 18px;
    padding: 22px 16px 16px;
  }

  .cta-brand {
    display: block;
  }

  .cta-brand img {
    width: 54px;
    height: 54px;
    border-radius: 12px;
  }

  .cta-brand p {
    display: none;
  }

  .final-cta h2 {
    margin-top: 24px;
    font-size: 37px;
  }

  .final-cta > .button {
    width: 100%;
    margin-top: 24px;
  }

  .cta-signature {
    display: none;
  }
}

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

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