:root {
  --blue: #0487c6;
  --green: #64a83f;
  --purple: #7e5692;
  --orange: #e09526;
  --ink: #10213a;
  --ink-deep: #071625;
  --ink-soft: #31415a;
  --muted: #69758a;
  --paper: #ffffff;
  --mist: #f4f6f7;
  --blue-soft: #eaf7fd;
  --green-soft: #f0f7ec;
  --orange-soft: #fff6e5;
  --purple-soft: #f5eff7;
  --line: rgba(16, 33, 58, 0.16);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow-low: 0 12px 32px rgba(7, 22, 37, 0.1);
  --shadow-high: 0 28px 80px rgba(7, 22, 37, 0.18);
  --content: min(1240px, calc(100% - 48px));
  --wide: min(1540px, calc(100% - 48px));
  --radius: 6px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
main {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
blockquote,
.infrastructure-statement,
.final-line {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1,
h2,
h3,
p,
blockquote,
figcaption,
button,
a {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

h1 {
  max-width: 920px;
  font-size: 7rem;
  line-height: 0.86;
}

h2 {
  max-width: 980px;
  font-size: 5.2rem;
  line-height: 0.9;
}

h3 {
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.18;
}

p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.72;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.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;
}

.cmg-story {
  overflow-x: clip;
  isolation: isolate;
  background: var(--paper);
}

.section-inner,
.wide-inner {
  min-width: 0;
  margin: 0 auto;
}

.section-inner {
  width: var(--content);
}

.wide-inner {
  width: var(--wide);
}

.story-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 124px 0;
  overflow: clip;
  background: var(--paper);
}

.section-lead {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.24rem;
  line-height: 1.62;
}

.light-text {
  color: rgba(255, 255, 255, 0.76);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease), border-color 180ms var(--ease);
}

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

.button:active {
  transform: translateY(0);
}

.button-green {
  border-color: var(--green);
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 14px 34px rgba(100, 168, 63, 0.28);
}

.button-green:hover {
  background: #579636;
  box-shadow: 0 18px 40px rgba(100, 168, 63, 0.34);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(7, 22, 37, 0.32);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.button-glass:hover {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(7, 22, 37, 0.5);
}

.button-outline {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.button-ink {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 14px 34px rgba(16, 33, 58, 0.2);
}

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

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

/* Hero */
.hero {
  padding: 82px 0 72px;
  background: var(--paper);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

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

.hero h1 {
  max-width: 700px;
  color: var(--ink);
  font-size: clamp(4.2rem, 6vw, 6.7rem);
}

.hero-lead {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-media {
  position: relative;
  margin: 0;
  padding: 0 0 28px 28px;
}

.hero-media::before {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  width: 82%;
  height: 76%;
  border-radius: 8px;
  background: var(--green-soft);
  content: "";
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(16, 33, 58, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 56px rgba(16, 33, 58, 0.14);
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 900ms var(--ease), box-shadow 300ms var(--ease);
}

.hero-media:hover img {
  box-shadow: 0 34px 64px rgba(16, 33, 58, 0.19);
}

.hero-media figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: -18px 0 0 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-media figcaption span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
}

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

/* Turning point */
.turning-point {
  background: var(--paper);
  color: var(--ink);
}

.turning-point::before {
  display: none;
}

.turning-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 80px;
  align-items: start;
}

.turning-copy {
  display: grid;
  gap: 24px;
}

.turning-copy h2 {
  color: var(--ink);
}

.turning-visual {
  position: relative;
  margin: 14px 0 0;
  padding: 0 0 22px 22px;
}

.turning-visual::before {
  position: absolute;
  z-index: 0;
  inset: 24px 0 0 0;
  border-radius: 8px;
  background: var(--orange-soft);
  content: "";
}

.turning-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  border: 1px solid rgba(16, 33, 58, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(16, 33, 58, 0.1);
}

.turning-visual figcaption {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 24px);
  margin: -18px 0 0 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.turning-detail {
  display: grid;
  gap: 34px;
  padding-top: 40px;
}

.turning-detail > p {
  color: var(--ink-soft);
}

.wait-line {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.wait-line span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 700;
}

.wait-line span:last-child {
  color: var(--orange);
  font-size: 1.35rem;
}

.turning-detail blockquote {
  color: var(--ink);
  font-size: 2.65rem;
  line-height: 1;
}

/* Wonder Wheels */
.wheels {
  padding-bottom: 0;
  background: var(--paper);
}

.wheels-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 70px;
  align-items: center;
}

.wheels-copy {
  display: grid;
  gap: 22px;
}

.impact-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.impact-number {
  --impact-accent: var(--blue);
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(16, 33, 58, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: inset 0 4px 0 var(--impact-accent), 0 12px 32px rgba(16, 33, 58, 0.08);
}

.impact-communities { --impact-accent: var(--green); }

.impact-kits {
  --impact-accent: var(--purple);
  grid-column: 1 / -1;
  grid-template-columns: minmax(150px, 0.72fr) 1fr;
  min-height: 138px;
  align-items: end;
}

.impact-kits span {
  max-width: none;
}

.impact-line strong {
  color: var(--impact-accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 4.45rem;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 400;
  line-height: 0.92;
}

.impact-line span {
  max-width: 190px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.4;
}

.wheels-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-deep);
  box-shadow: var(--shadow-high);
}

.wheels-visual::before {
  content: none;
}

.wheels-visual img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translate3d(var(--drive, 0), 0, 0) scale(1.045);
  transition: transform 650ms var(--ease);
}

.visual-caption {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 24px;
  max-width: 270px;
  padding: 12px 14px;
  border-radius: 4px;
  background: rgba(7, 22, 37, 0.84);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  backdrop-filter: blur(10px);
}

.community-marquee {
  width: 100%;
  margin-top: 96px;
  overflow: hidden;
  border-top: 1px solid rgba(4, 135, 198, 0.24);
  border-bottom: 1px solid rgba(4, 135, 198, 0.24);
  background: var(--paper);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.community-intro {
  margin-top: 84px;
}

.community-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1.02;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee-track span {
  padding: 17px 24px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "/";
  margin-left: 48px;
  color: var(--orange);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Proof */
.proof {
  background: var(--paper);
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.64fr);
  gap: 60px;
  align-items: end;
}

.proof-heading > div {
  display: grid;
  gap: 22px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 330px;
  padding: 28px 24px 32px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item h3 {
  min-height: 3.1rem;
  padding-top: 18px;
  border-top: 3px solid var(--accent);
}

.proof-item p {
  font-size: 0.96rem;
}

.infrastructure-statement {
  max-width: 1120px;
  margin-top: 86px;
  color: var(--ink);
  font-size: 4.2rem;
  line-height: 0.98;
}

.infrastructure-statement em {
  color: var(--green);
  font-style: italic;
}

/* Voices */
.voices {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
}

.voices::before {
  display: none;
}

.voices-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 60px;
  align-items: end;
}

.voices-heading > div {
  display: grid;
  gap: 22px;
}

.voice-filters {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 44px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.voice-filters button {
  min-height: 44px;
  padding: 8px 15px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background-color 180ms var(--ease), color 180ms var(--ease);
}

.voice-filters button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

.voice-carousel {
  --voice-accent: var(--blue);
  --voice-soft: var(--blue-soft);
  --voice-deep: #046b9f;
  display: grid;
  gap: 22px;
  margin-top: 22px;
  color: var(--ink);
  touch-action: pan-y;
}

.voice-card-stack {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 530px;
  padding: 44px 76px 42px;
}

.voice-card-back,
.voice-next,
.voice-main {
  grid-area: 1 / 1;
}

.voice-card-back {
  z-index: 0;
  width: min(100%, 900px);
  height: calc(100% - 26px);
  justify-self: center;
  border: 1px solid color-mix(in srgb, var(--voice-accent) 20%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--voice-soft) 64%, var(--paper));
  box-shadow: 0 18px 42px rgba(16, 33, 58, 0.08);
  transform: rotate(-2.2deg) translate(-18px, 6px);
  transition: background-color 500ms var(--ease), border-color 500ms var(--ease), transform 500ms var(--ease);
}

.voice-card-back-one::after {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 58px;
  height: 7px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--voice-accent) 28%, transparent);
  content: "";
}

.voice-next {
  z-index: 1;
  display: grid;
  align-content: end;
  justify-self: center;
  width: min(100%, 900px);
  min-height: 410px;
  padding: 44px 48px 46px calc(54% + 38px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--voice-accent) 18%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--voice-soft) 48%, var(--paper));
  box-shadow: 0 22px 50px rgba(16, 33, 58, 0.09);
  color: var(--ink);
  opacity: 0.68;
  transform: rotate(1.4deg) translate(16px, -3px);
  transition: opacity 220ms ease, transform 220ms var(--ease), background-color 500ms var(--ease), border-color 500ms var(--ease);
}

.voice-next::before {
  position: absolute;
  inset: 0 auto 0 54%;
  width: 1px;
  background: color-mix(in srgb, var(--voice-accent) 18%, var(--line));
  content: "";
}

.voice-next-kicker {
  margin-bottom: 14px;
  color: var(--voice-deep);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.voice-next blockquote {
  max-width: 290px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.46;
}

.voice-next > span:last-child {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.voice-main {
  z-index: 2;
  display: grid;
  align-content: space-between;
  gap: 36px;
  justify-self: center;
  width: min(100%, 900px);
  min-height: 438px;
  padding: 42px 48px;
  border: 1px solid rgba(16, 33, 58, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 28px 56px rgba(16, 33, 58, 0.17);
  transition: opacity 220ms ease, transform 220ms var(--ease), box-shadow 300ms var(--ease);
}

.voice-carousel[data-tone="green"] { --voice-accent: var(--green); --voice-soft: var(--green-soft); --voice-deep: #4c7e31; }
.voice-carousel[data-tone="orange"] { --voice-accent: var(--orange); --voice-soft: var(--orange-soft); --voice-deep: #ad7017; }
.voice-carousel[data-tone="purple"] { --voice-accent: var(--purple); --voice-soft: var(--purple-soft); --voice-deep: #694778; }
.voice-carousel[data-tone="ink"] { --voice-accent: var(--ink); --voice-soft: #edf1f5; --voice-deep: var(--ink); }

.voice-main:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--voice-accent) 65%, white);
  outline-offset: 5px;
}

.voice-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.voice-kind,
.voice-next-kicker {
  margin: 0;
  color: var(--voice-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.voice-card-mark {
  display: flex;
  gap: 5px;
}

.voice-card-mark i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--voice-accent) 68%, white);
}

.voice-main blockquote {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 4vw, 4.1rem);
  line-height: 0.97;
  text-wrap: pretty;
}

.voice-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-attribution-dot {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.72) 0 9%, transparent 10%), var(--voice-accent);
  box-shadow: inset 0 0 0 1px rgba(16, 33, 58, 0.08);
}

.voice-attribution > div {
  display: grid;
  gap: 3px;
}

.voice-attribution strong {
  color: var(--voice-deep);
  font-size: 1.05rem;
}

.voice-attribution span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.voice-controls {
  display: flex;
  justify-content: flex-end;
  width: min(100%, 900px);
  margin: -12px auto 0;
  padding: 0 18px;
}

.voice-buttons {
  display: flex;
  gap: 8px;
}

.voice-buttons button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.voice-buttons button:hover {
  border-color: var(--voice-accent);
  background: var(--voice-soft);
  transform: translateY(-1px);
}

.voice-buttons button[aria-pressed="true"] span {
  font-size: 0;
}

.voice-buttons button[aria-pressed="true"] span::after {
  content: "▶";
  font-size: 0.92rem;
}

.voice-carousel.is-changing .voice-main,
.voice-carousel.is-changing .voice-next {
  opacity: 0;
  transform: translateY(12px) scale(0.985);
}

/* Cycle */
.cycle {
  background: var(--paper);
}

.cycle-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 78px;
  align-items: center;
}

.cycle-copy {
  display: grid;
  gap: 22px;
}

.cycle-copy .button {
  width: fit-content;
  margin-top: 14px;
}

.cycle-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbf7ed;
  box-shadow: 0 18px 46px rgba(16, 33, 58, 0.08);
  transition: background-color 700ms var(--ease), border-color 700ms var(--ease), box-shadow 700ms var(--ease);
}

.cycle-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 390px;
  height: 390px;
  border: 2px dashed rgba(224, 149, 38, 0.54);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 820ms var(--ease), height 820ms var(--ease), border 620ms var(--ease), border-radius 620ms var(--ease), background-color 620ms var(--ease), transform 820ms var(--ease);
}

.cycle-ring::after {
  position: absolute;
  right: -2px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  content: "";
  opacity: 0;
  transform: translateY(-50%) rotate(45deg);
  transition: opacity 320ms ease 240ms;
}

.cycle-visual.is-renewed {
  border-color: rgba(100, 168, 63, 0.35);
  background: #f6fbf1;
  box-shadow: 0 22px 52px rgba(100, 168, 63, 0.15);
}

.cycle-visual.is-renewed .cycle-ring {
  width: 72%;
  height: 2px;
  border: 0;
  border-radius: 0;
  background: rgba(100, 168, 63, 0.58);
  transform: translate(-50%, -50%);
}

.cycle-visual.is-renewed .cycle-ring::after {
  opacity: 1;
}

.cycle-node {
  position: absolute;
  display: grid;
  width: 145px;
  min-height: 66px;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(224, 149, 38, 0.42);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-low);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
  transition: color 500ms var(--ease), border-color 500ms var(--ease), background-color 500ms var(--ease), box-shadow 500ms var(--ease), left 820ms var(--ease), top 820ms var(--ease), right 820ms var(--ease), bottom 820ms var(--ease), transform 820ms var(--ease);
}

.node-one { left: 50%; top: 52px; transform: translateX(-50%); }
.node-two { right: 38px; top: 50%; transform: translateY(-50%); }
.node-three { left: 50%; bottom: 52px; transform: translateX(-50%); }
.node-four { left: 38px; top: 50%; transform: translateY(-50%); }

.cycle-visual.is-renewed .cycle-node {
  border-color: rgba(100, 168, 63, 0.42);
  background: var(--paper);
  color: #407628;
  box-shadow: 0 12px 26px rgba(100, 168, 63, 0.14);
}

.cycle-visual.is-renewed .node-one { left: 14%; top: 50%; bottom: auto; right: auto; transform: translate(-50%, -50%); }
.cycle-visual.is-renewed .node-two { left: 38%; top: 50%; bottom: auto; right: auto; transform: translate(-50%, -50%); }
.cycle-visual.is-renewed .node-three { left: 62%; top: 50%; bottom: auto; right: auto; transform: translate(-50%, -50%); }
.cycle-visual.is-renewed .node-four { left: 86%; top: 50%; bottom: auto; right: auto; transform: translate(-50%, -50%); }

.cycle-visual.is-renewed .cycle-center {
  top: 66px;
  color: #407628;
  font-size: 2.55rem;
  transform: translateX(-50%);
}

.cycle-center {
  position: absolute;
  left: 50%;
  top: 50%;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.3rem;
  line-height: 0.95;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: color 500ms var(--ease), font-size 500ms var(--ease), top 820ms var(--ease), transform 820ms var(--ease);
}

/* Vision */
.vision {
  background: var(--paper);
  color: var(--ink);
}

.vision-heading {
  display: grid;
  max-width: 1040px;
  gap: 24px;
}

.vision-heading h2 {
  color: var(--ink);
}

.vision .light-text {
  color: var(--ink-soft);
}

.vision-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 900px);
  margin-top: 20px;
}

.vision-facts span {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 112px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.vision-facts strong {
  color: var(--blue);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 0.86;
}

.vision-facts em {
  font-style: normal;
  line-height: 1.35;
}

.exhibit-intro {
  margin: 70px 0 0;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  line-height: 0.98;
}

.exhibit-rotator {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(300px, 0.66fr);
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 58, 0.16);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 26px 62px rgba(16, 33, 58, 0.16);
}

.exhibit-rotator-media {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

.exhibit-rotator-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease, transform 600ms var(--ease);
}

.exhibit-rotator-copy {
  display: grid;
  align-content: end;
  gap: 20px;
  padding: 42px 36px;
  background: var(--ink);
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.exhibit-rotator-index {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
}

.exhibit-rotator-copy h3 {
  color: var(--paper);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.5rem, 3.3vw, 3.8rem);
  font-weight: 400;
  line-height: 0.92;
}

.exhibit-rotator-copy > p:not(.exhibit-rotator-index) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.6;
}

.exhibit-rotator-controls {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.exhibit-rotator-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
  color: var(--paper);
  font-size: 1.25rem;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.exhibit-rotator-controls button:hover {
  border-color: var(--green);
  background: rgba(100, 168, 63, 0.18);
  transform: translateY(-1px);
}

.exhibit-rotator.is-changing .exhibit-rotator-media img,
.exhibit-rotator.is-changing .exhibit-rotator-copy {
  opacity: 0;
  transform: translateY(10px);
}

.vision-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #102844;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
}

.vision-image {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.vision-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(7, 22, 37, 0.38), transparent 50%);
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(4, 135, 198, 0.26), 0 10px 24px rgba(7, 22, 37, 0.34);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease);
}

.hotspot:hover,
.hotspot[aria-pressed="true"] {
  transform: scale(1.18);
  background: var(--orange);
  box-shadow: 0 0 0 11px rgba(224, 149, 38, 0.24), 0 12px 28px rgba(7, 22, 37, 0.4);
}

.hs-one { left: 47%; top: 55%; }
.hs-two { left: 29%; top: 69%; }
.hs-three { left: 64%; top: 37%; }
.hs-four { left: 73%; top: 62%; }
.hs-five { left: 85%; top: 78%; }
.hs-six { left: 20%; top: 44%; }

.vision-panel {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 42px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background: #102844;
}

.vision-index {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
}

.vision-panel h3 {
  color: var(--paper);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.65rem;
  font-weight: 400;
  line-height: 0.98;
}

.vision-panel p:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
}

.vision-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.vision-tabs button {
  min-height: 52px;
  padding: 10px 8px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background-color 180ms var(--ease), color 180ms var(--ease);
}

.vision-tabs button:last-child {
  border-right: 0;
}

.vision-tabs button[aria-pressed="true"],
.vision-tabs button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.exhibit-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 72px;
}

.exhibit-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #102844;
}

.exhibit-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.exhibit-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.exhibit-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(7, 22, 37, 0.92), transparent);
}

.exhibit-card figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 800;
}

.exhibit-card figcaption span {
  color: var(--orange);
  font-size: 0.72rem;
}

/* Finale */
.finale {
  background: var(--paper);
}

.finale-layout {
  display: grid;
  gap: 28px;
}

.finale-layout h2 {
  max-width: 1120px;
}

.finale-layout .section-lead {
  max-width: 720px;
}

.final-actions {
  margin-top: 10px;
}

.final-line {
  max-width: 980px;
  margin-top: 58px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  color: var(--purple);
  font-size: 3.4rem;
  line-height: 1;
}

.final-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 6px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.final-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.final-links a:hover {
  color: var(--green);
  transform: translateX(3px);
}

.final-links span {
  color: var(--green);
  font-size: 1.1rem;
}

@media (max-width: 1160px) {
  h1 { font-size: 6rem; }
  h2 { font-size: 4.5rem; }

  .proof-heading,
  .voices-heading,
  .turning-layout,
  .wheels-layout,
  .cycle-layout {
    gap: 48px;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .voice-main blockquote {
    font-size: 3.35rem;
  }

  .cycle-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --content: min(100% - 36px, 760px);
    --wide: min(100% - 36px, 900px);
  }

  h1 { font-size: 5.2rem; }
  h2 { font-size: 4rem; }

  .story-section {
    padding: 96px 0;
  }

  .hero {
    padding: 72px 0 66px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-media {
    width: min(100%, 720px);
  }

  .proof-heading,
  .voices-heading,
  .turning-layout,
  .wheels-layout,
  .cycle-layout,
  .vision-explorer {
    grid-template-columns: 1fr;
  }

  .turning-detail {
    padding-top: 0;
  }

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

  .wheels-visual {
    min-height: 520px;
  }

  .voice-card-stack {
    min-height: 500px;
    padding-inline: 48px;
  }

  .voice-main {
    min-height: 410px;
    padding: 38px 40px;
  }

  .cycle-copy {
    max-width: 680px;
  }

  .cycle-visual {
    min-height: 560px;
  }

  .vision-image {
    min-height: 520px;
  }

  .exhibit-rotator {
    grid-template-columns: minmax(0, 1.05fr) minmax(270px, 0.75fr);
  }

  .exhibit-rotator-media {
    min-height: 460px;
  }

  .vision-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

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

@media (max-width: 680px) {
  :root {
    --content: min(100% - 28px, 620px);
    --wide: min(100% - 28px, 680px);
  }

  h1 { font-size: 4.35rem; }
  h2 { font-size: 3.35rem; }
  .section-lead,
  .hero-lead { font-size: 1.08rem; }

  .story-section {
    padding: 78px 0;
  }

  .hero {
    padding: 54px 0 52px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 14vw, 4.8rem);
  }

  .hero-content {
    gap: 34px;
  }

  .hero-media {
    padding: 0 0 22px 16px;
  }

  .hero-copy {
    gap: 18px;
  }

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

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

  .turning-detail blockquote {
    font-size: 2.2rem;
  }

  .impact-line {
    grid-template-columns: 1fr;
  }

  .impact-number {
    min-height: 154px;
    padding: 22px;
  }

  .impact-kits {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .impact-line strong {
    font-size: 4rem;
  }

  .wheels-visual {
    min-height: 420px;
  }

  .wheels-visual img {
    left: 0;
    bottom: auto;
    width: 100%;
    height: 100%;
    object-position: 58% 50%;
  }

  .visual-caption {
    top: auto;
    right: auto;
    left: 18px;
    bottom: 18px;
    max-width: none;
  }

  .community-marquee {
    margin-top: 64px;
  }

  .community-intro {
    margin-top: 64px;
  }

  .community-intro p {
    font-size: 1.8rem;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .proof-item,
  .proof-item:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .proof-item h3 {
    min-height: 0;
  }

  .infrastructure-statement {
    margin-top: 62px;
    font-size: 3rem;
  }

  .voice-filters {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voice-filters button {
    padding-inline: 7px;
  }

  .voice-card-stack {
    min-height: 474px;
    padding: 24px 0 26px;
  }

  .voice-card-back {
    width: calc(100% - 20px);
    height: calc(100% - 34px);
    transform: rotate(-1.6deg) translate(-7px, 5px);
  }

  .voice-next {
    display: block;
    width: calc(100% - 20px);
    min-height: 400px;
    padding: 0;
    opacity: 0.48;
    transform: rotate(1.15deg) translate(8px, -3px);
  }

  .voice-next > * {
    display: none;
  }

  .voice-main {
    width: calc(100% - 18px);
    min-height: 400px;
    padding: 34px 26px;
  }

  .voice-main blockquote {
    font-size: clamp(2.1rem, 9vw, 2.65rem);
  }

  .voice-controls {
    padding-inline: 8px;
  }

  .cycle-visual {
    min-height: 470px;
  }

  .cycle-ring {
    width: 280px;
    height: 280px;
  }

  .cycle-node {
    width: 112px;
    min-height: 56px;
    font-size: 0.8rem;
  }

  .node-one { top: 32px; }
  .node-two { right: 10px; }
  .node-three { bottom: 32px; }
  .node-four { left: 10px; }

  .cycle-center {
    font-size: 1.75rem;
  }

  .cycle-visual.is-renewed .cycle-ring {
    width: 2px;
    height: 68%;
  }

  .cycle-visual.is-renewed .cycle-ring::after {
    right: auto;
    bottom: -2px;
    top: auto;
    transform: translateX(-50%) rotate(135deg);
  }

  .cycle-visual.is-renewed .cycle-center {
    top: 28px;
    font-size: 1.75rem;
  }

  .cycle-visual.is-renewed .node-one { left: 50%; top: 27%; transform: translate(-50%, -50%); }
  .cycle-visual.is-renewed .node-two { left: 50%; top: 44%; transform: translate(-50%, -50%); }
  .cycle-visual.is-renewed .node-three { left: 50%; top: 61%; transform: translate(-50%, -50%); }
  .cycle-visual.is-renewed .node-four { left: 50%; top: 78%; transform: translate(-50%, -50%); }

  .vision-image {
    min-height: 390px;
  }

  .vision-facts {
    grid-template-columns: 1fr;
  }

  .vision-facts span {
    min-height: 0;
  }

  .exhibit-intro {
    margin-top: 54px;
  }

  .exhibit-rotator {
    grid-template-columns: 1fr;
  }

  .exhibit-rotator-media {
    min-height: 0;
    aspect-ratio: 1.15 / 1;
  }

  .exhibit-rotator-copy {
    gap: 16px;
    padding: 30px 24px;
  }

  .hotspot {
    display: none;
  }

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

  .vision-tabs button:nth-child(2n) {
    border-right: 0;
  }

  .exhibit-gallery {
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 82%);
    grid-template-columns: none;
    gap: 10px;
    margin-right: calc((100vw - 100%) / -2);
    padding-right: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .exhibit-card {
    scroll-snap-align: start;
  }

  .final-line {
    font-size: 2.55rem;
  }

  .final-links {
    display: grid;
    gap: 4px;
  }
}

@media (max-width: 390px) {
  :root {
    --content: calc(100% - 22px);
    --wide: calc(100% - 22px);
  }

  h1 { font-size: 3.8rem; }
  h2 { font-size: 3rem; }

  .hero {
    min-height: 750px;
  }

  .voice-main {
    min-height: 422px;
    padding: 30px 20px;
  }

  .voice-main blockquote {
    font-size: 2.08rem;
  }

  .voice-buttons button {
    width: 44px;
    height: 44px;
  }

  .cycle-visual {
    min-height: 440px;
  }

  .cycle-ring {
    width: 240px;
    height: 240px;
  }

  .cycle-node {
    width: 96px;
  }

  .vision-panel {
    padding: 34px 24px;
  }
}

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

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

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

  .marquee-track {
    width: auto;
    flex-wrap: wrap;
  }

  .marquee-track span:nth-child(n + 13) {
    display: none;
  }
}
