:root {
  --yellow: #ddff00;
  --violet: #ae6cff;
  --ink: #121212;
  --paper: #fffdf7;
  --white: #ffffff;
  --muted: #6f6a73;
  --line: rgba(18, 18, 18, .17);
  --shadow: 0 22px 60px rgba(29, 15, 44, .12);
  --radius: 26px;
  --max: 1240px;
  --header-h: 82px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Platypi", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
::selection { background: var(--yellow); color: var(--ink); }
a { color: inherit; }
img, svg { max-width: 100%; }
button, input { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--yellow);
  color: var(--ink);
  padding: .7rem 1rem;
  border: 2px solid var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 247, .9);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -.035em;
  line-height: .85;
  font-size: 1.18rem;
}
.brand img { width: 42px; height: 42px; }
.brand-word { display: grid; }
.nav-primary { display: flex; align-items: center; gap: 26px; }
.nav-primary a {
  text-decoration: none;
  font-size: .86rem;
  font-weight: 680;
  position: relative;
}
.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 3px;
  background: var(--violet);
  transition: right .2s var(--ease);
}
.nav-primary a:hover::after,
.nav-primary a[aria-current="page"]::after { right: 0; }
.nav-primary a[aria-current="page"] {
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .35em;
}
.menu-button {
  appearance: none;
  border: 1.5px solid currentColor;
  background: transparent;
  border-radius: 999px;
  padding: .55rem .85rem;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 720;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.menu-button:hover { transform: translateY(-2px); }
.menu-button { display: inline-flex; }
.header-actions { display: flex; align-items: center; gap: 8px; }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--violet);
  color: var(--yellow);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  overflow: auto;
}
body.nav-open .menu-overlay { opacity: 1; visibility: visible; }
.menu-overlay-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 100%;
  margin: 0 auto;
  padding: 28px 0 56px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.menu-top { display: flex; justify-content: space-between; align-items: center; }
.menu-close {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  background: transparent;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}
.menu-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 0 64px;
  margin: 70px 0;
}
.menu-links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(221,255,0,.35);
  text-decoration: none;
  font-size: clamp(1.6rem, 3.2vw, 3.6rem);
  font-weight: 760;
  letter-spacing: -.04em;
}
.menu-links small { display: none; }
.menu-meta { display: flex; justify-content: space-between; gap: 24px; font-size: .8rem; }
.menu-meta a { text-underline-offset: 4px; }

main { display: block; }
.section { padding: clamp(80px, 11vw, 150px) 0; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 40px), 900px); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.25rem;
  font-size: .77rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.display {
  margin: 0;
  font-size: clamp(3.2rem, 8.5vw, 8.8rem);
  line-height: .91;
  letter-spacing: -.062em;
  font-weight: 790;
}
.h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: .94;
  letter-spacing: -.057em;
  font-weight: 790;
}
.h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5.5vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 770;
}
.h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 740;
}
.lead { font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.5; }
.kicker { font-size: clamp(1.15rem, 2.2vw, 1.9rem); line-height: 1.35; }
.muted { color: var(--muted); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: .75rem 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 760;
  transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease;
}
.button::after { content: "→"; transition: transform .2s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 7px 0 var(--ink); }
.button:hover::after { transform: translateX(4px); }
.button:focus-visible { outline: 4px solid var(--violet); outline-offset: 4px; }
.button-solid { background: var(--yellow); color: var(--ink); }
.button-violet { background: var(--violet); color: var(--ink); }
.button-light { border-color: var(--yellow); color: var(--yellow); }
.button-light:hover { box-shadow: 0 7px 0 var(--yellow); }
.button-white { background: var(--white); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 70px) 0 70px;
  display: flex;
  align-items: center;
  background: var(--violet);
  color: var(--yellow);
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: min(70vw, 820px);
  aspect-ratio: 1;
  right: -24vw;
  top: -24vw;
  border: 1px solid rgba(221,255,0,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(221,255,0,.045), 0 0 0 180px rgba(221,255,0,.035);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
}
.hero-copy { max-width: 850px; }
.hero-copy .display { max-width: 980px; }
.hero-copy .display span { color: var(--white); font-style: italic; font-weight: 360; }
.hero-copy .lead { max-width: 760px; margin: 34px 0 0; color: var(--white); }
.hero-mark-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
.hero-mark {
  width: min(88%, 410px);
  filter: drop-shadow(0 35px 55px rgba(58, 19, 92, .22));
  transform: translate3d(var(--mx,0), var(--my,0), 0) rotate(var(--mr,0));
  transition: transform .18s linear;
}
.orbit {
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid rgba(221,255,0,.46);
  border-radius: 50%;
  transform-origin: 50% 50%;
  will-change: transform;
  animation: orbit 14s linear infinite;
  animation-play-state: running !important;
}
.orbit::before, .orbit::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 7px rgba(221,255,0,.15);
}
.orbit::before { top: 8%; left: 18%; }
.orbit::after { right: 4%; bottom: 24%; }
@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-foot {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: min(calc(100% - 40px), var(--max));
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--white);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-cue { display: inline-flex; align-items: center; gap: 10px; }
.scroll-cue::before { content: "↓"; color: var(--yellow); font-size: 1.1rem; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}
.copy-stack > * + * { margin-top: 1.35rem; }
.copy-stack p { margin-bottom: 0; }
.statement {
  margin: 0;
  font-size: clamp(1.6rem, 3.6vw, 3.25rem);
  line-height: 1.16;
  letter-spacing: -.035em;
  font-weight: 650;
}
.statement em { font-weight: 350; }

.problem {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.home-problem::after {
  content: "WACHSTUM";
  position: absolute;
  right: -20px;
  bottom: -45px;
  font-size: clamp(7rem, 18vw, 17rem);
  line-height: .75;
  font-weight: 800;
  letter-spacing: -.08em;
  opacity: .055;
  text-decoration: line-through 10px var(--violet);
  pointer-events: none;
}
.quote-block {
  padding: clamp(28px, 5vw, 60px);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255,255,255,.22);
  box-shadow: 12px 12px 0 var(--violet);
}
.quote-block blockquote { margin: 0; font-size: clamp(1.5rem, 3.5vw, 3.4rem); line-height: 1.12; letter-spacing: -.04em; font-weight: 700; }
.quote-block figcaption { margin-top: 24px; font-size: .9rem; }

.principles { background: var(--ink); color: var(--white); }
.principles .eyebrow, .principles .h2 { color: var(--yellow); }
.number-list { margin-top: 66px; border-top: 1px solid rgba(255,255,255,.25); }
.number-item {
  display: grid;
  grid-template-columns: 110px minmax(240px, .75fr) minmax(0, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  align-items: start;
}
.number { color: var(--violet); font-size: 1.05rem; font-weight: 780; }
.number-item h3 { margin: 0; color: var(--yellow); font-size: clamp(1.55rem, 2.8vw, 2.8rem); line-height: 1.06; letter-spacing: -.04em; }
.number-item p { margin: 0; color: rgba(255,255,255,.75); }
.plan-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(26px, 5vw, 72px); margin-top: 58px; }
.plan-item h3 { margin: 0; color: var(--yellow); font-size: clamp(1.55rem, 2.8vw, 2.8rem); line-height: 1.06; letter-spacing: -.04em; }
.plan-item p { margin: 18px 0 0; color: rgba(255,255,255,.75); }
.du-footnote-marker { margin-left: .15em; color: var(--violet); font-size: .55em; vertical-align: super; }
.du-footnote { margin-top: 28px !important; font-size: .82rem; color: var(--muted); }

.band {
  padding: 40px 0;
  overflow: hidden;
  background: var(--violet);
  color: var(--yellow);
  border-block: 2px solid var(--ink);
}
.marquee {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: marquee 16s linear infinite;
  animation-play-state: running !important;
  will-change: transform;
}
.marquee span {
  flex: 0 0 auto;
  padding-right: 1.2em;
  font-size: clamp(2.3rem, 6vw, 6rem);
  line-height: 1;
  font-weight: 780;
  letter-spacing: -.05em;
  white-space: nowrap;
}
@keyframes marquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

.cards-section { background: var(--paper); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 54px;
}
.section-head p { margin: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card {
  min-height: 330px;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  box-shadow: 0 0 0 transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease;
}
.card:hover { transform: translateY(-7px) rotate(-.4deg); box-shadow: 9px 9px 0 var(--violet); }
.card:nth-child(2n):hover { transform: translateY(-7px) rotate(.4deg); box-shadow: 9px 9px 0 var(--yellow); }
.card-index { display: flex; justify-content: space-between; align-items: center; font-size: .75rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--yellow);
  font-size: 1.25rem;
}
.card h3 { margin: 0 0 16px; font-size: clamp(1.55rem, 2.4vw, 2.35rem); line-height: 1.06; letter-spacing: -.04em; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.card-link { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; font-size: .83rem; font-weight: 760; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.card-yellow { background: var(--yellow); }
.card-violet { background: var(--violet); }
.card-yellow p, .card-violet p { color: rgba(18,18,18,.72); }

.accordion-list { border-top: 2px solid var(--ink); }
.choice-intro { margin: 0 0 34px; font-size: clamp(2.8rem, 7vw, 7rem); line-height: .95; letter-spacing: -.055em; }
.accordion { border-bottom: 2px solid var(--ink); }
.accordion-button {
  width: 100%;
  padding: 25px 0;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}
.accordion-button strong { font-size: clamp(1.3rem, 2.5vw, 2.4rem); line-height: 1.1; letter-spacing: -.035em; }
.accordion-button .plus { font-size: 2rem; transition: transform .2s ease; }
.accordion.open .plus { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.accordion.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel > div { overflow: hidden; }
.accordion-content { padding: 0 0 28px 78px; max-width: 900px; }
.accordion-content p { margin-top: 0; }

.action-section { background: var(--violet); }
.action-section .section-head { color: var(--yellow); }
.action-section .section-head p { color: var(--white); }
.action-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.action-card {
  position: relative;
  min-height: 440px;
  padding: 32px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.action-card:nth-child(2), .action-card:nth-child(3) { background: var(--yellow); }
.action-card h3 { margin: 0; max-width: 550px; font-size: clamp(2rem, 4vw, 4.8rem); line-height: .98; letter-spacing: -.055em; }
.action-card p { max-width: 570px; margin: 20px 0 0; }
.action-card .stamp {
  position: absolute;
  width: 150px; height: 150px;
  right: 24px; top: 24px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  font-size: .75rem;
  font-weight: 780;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.local-section { background: var(--yellow); }
.local-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: clamp(48px, 8vw, 110px); align-items: center; }
.map-art {
  position: relative;
  min-height: 520px;
  border: 3px solid var(--ink);
  border-radius: 50% 44% 54% 47%;
  background: var(--violet);
  overflow: hidden;
  box-shadow: 14px 14px 0 var(--ink);
}
.map-art::before, .map-art::after {
  content: "";
  position: absolute;
  border: 3px solid var(--yellow);
  border-radius: 50%;
}
.map-art::before { width: 70%; height: 70%; left: 10%; top: 16%; }
.map-art::after { width: 36%; height: 36%; right: 7%; top: 7%; }
.city-dot { position: absolute; display: flex; align-items: center; gap: 10px; color: var(--yellow); font-weight: 760; }
.city-dot::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: var(--yellow); border: 3px solid var(--ink); box-shadow: 0 0 0 9px rgba(221,255,0,.2); }
.city-aachen { left: 18%; top: 42%; }
.city-halle { right: 13%; top: 34%; }
.city-next { left: 40%; bottom: 18%; font-style: italic; }
.city-next::before { background: var(--white); }
.city-list { border-top: 2px solid var(--ink); margin-top: 40px; }
.city { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 2px solid var(--ink); font-weight: 700; }
.city small { font-size: .75rem; font-weight: 520; }

.team-section { background: var(--paper); }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.person-card { border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.person-art { aspect-ratio: 4 / 3; position: relative; display: grid; place-items: center; background: var(--violet); overflow: hidden; }
.person-card:nth-child(2n) .person-art { background: var(--yellow); }
.person-art img { width: 100%; height: 100%; object-fit: cover; }
.founder-name-grid .person-copy { min-height: 88px; display: flex; align-items: center; }
.person-initials { position: absolute; z-index: 2; font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 790; letter-spacing: -.08em; }
.person-copy { padding: 24px; }
.person-copy h3 { margin: 0; font-size: 1.45rem; line-height: 1.1; }
.person-copy p { margin: 9px 0 0; color: var(--muted); font-size: .85rem; }

.cta {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta .container { position: relative; z-index: 1; }
.cta .h2 { max-width: 980px; margin: 0 auto; color: var(--yellow); }
.cta p { max-width: 720px; margin: 24px auto 0; }
.cta-mark { position: absolute; width: 540px; opacity: .08; right: -180px; top: -160px; animation: orbit 40s linear infinite reverse; }
.cta .button-row { justify-content: center; }
.alternative { background: var(--yellow); }
.alternative .h2 { margin-top: 0; }
.alternative .lead { max-width: none; }
.alternative .button-light { background: transparent; color: var(--ink); border-color: var(--ink); }

.site-footer { background: var(--violet); color: var(--yellow); padding: 54px 0 30px; }
.footer-main { display: grid; grid-template-columns: 1.1fr repeat(3, .7fr); gap: 36px; }
.footer-brand { max-width: 430px; }
.footer-brand .brand { font-size: 1.8rem; }
.footer-brand p { color: var(--white); margin: 20px 0 0; }
.footer-col h3 { margin: 0 0 15px; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-col a { display: block; color: var(--white); margin: 8px 0; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(221,255,0,.4); display: flex; justify-content: space-between; gap: 20px; color: var(--white); font-size: .75rem; }

/* Inner pages */
.page-hero {
  padding: calc(var(--header-h) + 90px) 0 90px;
  background: var(--violet);
  color: var(--yellow);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: var(--yellow);
  right: -100px; bottom: -160px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { max-width: 780px; color: var(--white); margin: 28px 0 0; }
.breadcrumb { margin-bottom: 32px; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.breadcrumb a { text-underline-offset: 4px; }
.prose { font-size: 1.08rem; }
.prose h2 { margin: 2.8rem 0 1rem; font-size: clamp(2rem, 4vw, 4rem); line-height: 1; letter-spacing: -.04em; }
.prose h3 { margin: 2rem 0 .75rem; font-size: 1.6rem; line-height: 1.15; }
.prose p, .prose ul { max-width: 780px; }
.prose li + li { margin-top: .65rem; }
.callout { margin: 44px 0; padding: 30px; background: var(--yellow); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: 9px 9px 0 var(--violet); }
.callout p:last-child { margin-bottom: 0; }
.jobs-callout { margin-bottom: 72px; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.info-card { padding: 28px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.info-card h2, .info-card h3 { margin-top: 0; }
.founding-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  isolation: isolate;
}
.founding-copy { position: relative; z-index: 1; }
.founding-card img {
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: 2;
  width: 80%;
  height: 80%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(126%);
  transition: transform 1s var(--ease);
}
.founding-card:hover img,
.founding-card:focus-within img { transform: translateY(0); }
.team-heading { margin: 52px 0 18px; font-size: clamp(1.65rem, 3vw, 2.4rem); }
.qr-card { display: block; color: var(--ink); text-align: center; text-decoration: none; }
.qr-card img { display: block; width: 100%; max-width: 320px; margin: 0 auto; }
.qr-card:hover { box-shadow: 7px 7px 0 var(--violet); transform: translate(-3px, -3px); }
.problem .h2 { font-size: clamp(2rem, 4.4vw, 4.5rem); overflow-wrap: normal; word-break: normal; hyphens: none; }
.action-collage-large {
  display: block;
  width: 100%;
  height: auto;
  margin-top: clamp(38px, 6vw, 72px);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}
.inline-action { margin: 12px 0 4px; }
.inline-action-wrap { margin-top: 16px; }
.inline-action-wrap .inline-action {
  min-width: min(100%, 230px);
  min-height: 58px;
  padding: .9rem 1.45rem;
  white-space: normal;
  text-align: center;
}
.collage-frame { margin-top: 34px; }
.timeline { border-left: 3px solid var(--violet); margin: 40px 0 0 14px; padding-left: 32px; }
.timeline-item { position: relative; padding: 0 0 34px; }
.timeline-item::before { content: ""; position: absolute; width: 17px; height: 17px; border-radius: 50%; background: var(--yellow); border: 3px solid var(--ink); left: -43px; top: 6px; }
.timeline-item h3 { margin: 0; }
.timeline-item p { margin: 7px 0 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.tag { padding: .35rem .7rem; border: 1.5px solid var(--ink); border-radius: 999px; font-size: .76rem; font-weight: 680; }
.material-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin: 34px 0; }
.filter-button { border: 1.5px solid var(--ink); border-radius: 999px; padding: .55rem .9rem; background: transparent; cursor: pointer; font-size: .78rem; font-weight: 720; }
.filter-button.active { background: var(--yellow); }
.material-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.material { padding: 24px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--white); min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; }
.material.hidden { display: none; }
.material-type { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 760; color: var(--violet); }
.material h3 { margin: 20px 0 10px; font-size: 1.5rem; }
.material p { color: var(--muted); font-size: .88rem; }
.material-meta { font-size: .78rem !important; font-weight: 720; letter-spacing: .02em; }
.material-byline { font-size: .82rem !important; }
.material-more { margin-top: 26px; }
.logo-clip { margin: 22px 0 0; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.logo-clip img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: contain; background: var(--white); }
.clip-controls { display: flex; justify-content: flex-start; padding: 14px 16px; }
.media-frame figcaption, .logo-clip figcaption { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.image-lightbox { width: min(96vw, 1500px); max-width: none; max-height: 94vh; padding: 0; border: 0; background: transparent; overflow: visible; }
.image-lightbox::backdrop { background: rgba(10,8,14,.92); }
.image-lightbox img { display: block; width: 100%; max-height: 90vh; object-fit: contain; }
.image-lightbox button { position: absolute; z-index: 2; top: 10px; right: 10px; width: 46px; height: 46px; border: 2px solid var(--white); border-radius: 50%; background: var(--ink); color: var(--white); font-size: 1.5rem; cursor: pointer; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; max-width: 720px; margin-top: 30px; }
.newsletter-form input { min-height: 58px; border: 2px solid var(--ink); border-radius: 999px; background: var(--white); padding: 0 1.2rem; }
.form-status { min-height: 1.5em; margin-top: 12px; font-size: .83rem; }
.placeholder-note { padding: 18px 20px; border-left: 5px solid var(--violet); background: rgba(174,108,255,.12); font-size: .9rem; }
.channel-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.channel { padding: 24px; border: 2px solid var(--ink); border-radius: 20px; background: var(--white); text-decoration: none; min-height: 160px; display: flex; flex-direction: column; justify-content: space-between; }
.channel[aria-disabled="true"] { opacity: .6; cursor: not-allowed; }
.channel span:last-child { font-size: 1.7rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reduce-motion *, .reduce-motion *::before, .reduce-motion *::after { animation: none !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }

@media (max-width: 1050px) {
  .nav-primary { display: none; }
  .menu-button { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 30px; }
  .hero-mark-wrap { position: absolute; right: -150px; bottom: -140px; width: 520px; min-height: 520px; opacity: .28; z-index: -1; }
  .hero-copy .lead { max-width: 650px; }
  .split, .section-head, .local-layout { grid-template-columns: 1fr; }
  .number-item { grid-template-columns: 70px 1fr; }
  .number-item p { grid-column: 2; }
  .card-grid, .team-grid, .material-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-main { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px) {
  :root { --header-h: 70px; }
  body { font-size: 16px; }
  .header-inner, .container, .narrow, .hero-foot, .menu-overlay-inner { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 36px; height: 36px; }
  .brand { font-size: 1rem; }
  .hero { padding-top: calc(var(--header-h) + 72px); }
  .hero-foot { display: none; }
  .hero-mark-wrap { right: -210px; bottom: -210px; }
  .menu-links { grid-template-columns: 1fr; gap: 0; margin: 45px 0; }
  .menu-links a { font-size: 1.55rem; }
  .menu-meta { flex-direction: column; }
  .section { padding: 78px 0; }
  .number-item { grid-template-columns: 48px 1fr; gap: 16px; }
  .plan-list { grid-template-columns: 1fr; margin-top: 38px; }
  .card-grid, .action-grid, .team-grid, .material-grid, .two-col, .channel-grid { grid-template-columns: 1fr; }
  .card { min-height: 280px; }
  .action-card { min-height: 390px; }
  .action-card .stamp { width: 105px; height: 105px; font-size: .6rem; }
  .map-art { min-height: 390px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .newsletter-form { grid-template-columns: 1fr; }
  .accordion-button { grid-template-columns: 38px 1fr auto; }
  .accordion-content { padding-left: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero .orbit { animation: orbit 14s linear infinite !important; }
  .marquee { animation: marquee 16s linear infinite !important; }
}

.site-header:not(.scrolled) { color: var(--yellow); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* 2026 content architecture */
.header-inner { width: min(calc(100% - 32px), 1540px); }
.nav-primary { gap: clamp(8px, 1.05vw, 18px); }
.nav-primary a { font-size: clamp(.7rem, .76vw, .82rem); white-space: nowrap; }
.menu-links a[aria-current="page"] { color: var(--yellow); }
.scroll-cue { color: inherit; text-decoration: none; }
.scroll-cue:hover { color: var(--yellow); }
.problem .h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.reduce-motion .reveal { opacity: 1; transform: none; }
.reduce-motion .hero .orbit { animation: orbit 14s linear infinite !important; }
.reduce-motion .marquee { animation: marquee 16s linear infinite !important; }
.footer-main { grid-template-columns: minmax(230px, 1.3fr) repeat(4, minmax(130px, .8fr)); }
.footer-col a { max-width: 240px; }
.reading-column { width: min(calc(100% - 40px), 850px); margin: 0 auto; }
.reading-column > * + * { margin-top: 1.2rem; }
.reading-column .opening { font-size: clamp(1.35rem, 2.6vw, 2.2rem); line-height: 1.25; letter-spacing: -.025em; }
.feature-quote {
  margin: 42px 0;
  padding: 34px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--violet);
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  line-height: 1.12;
  font-weight: 740;
}
.content-grid { display: grid; grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr); gap: clamp(50px, 8vw, 120px); align-items: start; }
.local-intro { grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); gap: clamp(70px, 10vw, 150px); }
.action-intro-grid { grid-template-columns: minmax(250px, .64fr) minmax(0, 1.36fr); gap: clamp(42px, 6vw, 90px); }
.action-intro-grid .section-heading .h2,
.local-claim-grid .section-heading .h2 {
  max-width: 9.8ch;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.local-claim-grid { grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr); gap: clamp(42px, 6vw, 90px); }
.local-claim-grid .section-heading .h2 { max-width: 10.5ch; }
.content-grid + .content-grid { margin-top: clamp(60px, 9vw, 120px); }
.section-heading { position: static; }
.section-heading .h2 { font-size: clamp(2.1rem, 4.6vw, 4.7rem); }
.prose-wide { max-width: 860px; font-size: 1.08rem; }
.prose-wide > *:first-child { margin-top: 0; }
.prose-wide > * + * { margin-top: 1.15rem; }
.prose-wide h3 { margin-top: 2.2rem; font-size: 1.55rem; }
.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }
.detail-card { padding: 28px; border: 2px solid currentColor; border-radius: var(--radius); background: var(--white); color: var(--ink); }
.detail-card h3 { margin: 0 0 .65rem; }
.detail-card p:last-child { margin-bottom: 0; }
.step-list { counter-reset: steps; list-style: none; padding: 0; margin: 30px 0; }
.step-list li { counter-increment: steps; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; padding: 18px 0; border-top: 1px solid currentColor; }
.step-list li::before { content: counter(steps, decimal-leading-zero); font-weight: 800; color: var(--violet); }
.timeline { border-left: 3px solid var(--violet); margin: 38px 0 0 10px; padding-left: 32px; }
.timeline article { position: relative; padding: 0 0 45px; }
.timeline article::before { content: ""; position: absolute; left: -42px; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--yellow); border: 3px solid var(--violet); }
.timeline article:last-child { padding-bottom: 0; }
.timeline h3 { margin: 0 0 10px; }
.media-frame { margin: 30px 0; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.media-frame img { display: block; width: 100%; height: auto; }
.media-frame figcaption { padding: 12px 16px; font-size: .8rem; }
.notice { padding: 22px 24px; border-left: 6px solid var(--violet); background: rgba(174,108,255,.1); }
.notice strong { display: block; margin-bottom: 6px; }
.link-list { display: grid; gap: 12px; margin-top: 26px; }
.link-list a { display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; border-top: 1px solid currentColor; font-weight: 700; text-underline-offset: 4px; }
.messenger-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.messenger-card { padding: 26px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.messenger-card h3 { margin-top: 0; }
.person-feature { display: grid; grid-template-columns: 160px 1fr; gap: 26px; align-items: start; padding: 28px 0; border-top: 1px solid currentColor; }
.person-feature img { width: 160px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; background: var(--violet); }
.person-feature h3 { margin: 0 0 8px; }
.meta-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; }
.meta-links a { font-weight: 700; text-underline-offset: 4px; }
.subpage-links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.subpage-link { display: block; padding: 28px; border: 2px solid currentColor; border-radius: var(--radius); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.subpage-link:hover { transform: translate(-4px,-4px); box-shadow: 8px 8px 0 var(--violet); }
.subpage-link h3 { margin: 0 0 8px; }
.subpage-link p { margin: 0; }
.action-card .button { align-self: flex-start; }
.full-span { grid-column: 1 / -1; }

@media (max-width: 1360px) {
  .nav-primary { display: none; }
  .menu-button { display: inline-flex; }
}
@media (max-width: 1050px) {
  .content-grid { grid-template-columns: 1fr; }
  .section-heading { position: static; }
  .footer-main { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .detail-grid, .messenger-grid, .subpage-links { grid-template-columns: 1fr; }
  .person-feature { grid-template-columns: 84px 1fr; gap: 18px; }
  .person-feature img { width: 84px; }
  .feature-quote { padding: 24px; box-shadow: 6px 6px 0 var(--violet); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* Final feedback round */
.founders-section { background: var(--white); }
.founders-heading { max-width: 820px; margin-bottom: clamp(32px, 5vw, 58px); }
.founders-heading .h2 { margin-bottom: 0; }
.founders-section .team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.founders-section .button-row { margin-top: 34px; }
.founding-team-photo { margin-top: clamp(30px, 5vw, 54px); }
.founding-team-photo img { max-height: 620px; object-fit: cover; object-position: center; }

.step-list li > div { min-width: 0; }
.inline-action-wrap .inline-action {
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.material-scroll {
  max-height: min(760px, 75vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  padding: 4px 18px 28px 4px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.material-scroll:focus-visible { outline: 4px solid var(--violet); outline-offset: 4px; }
.material-scroll .material-grid { padding-top: 22px; }
.material-scroll .material-more { margin-bottom: 4px; }

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

@media (max-width: 1050px) {
  .founders-section .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .founders-section .team-grid, .channel-grid { grid-template-columns: 1fr; }
  .page-hero::after {
    width: 130px;
    height: 130px;
    right: -54px;
    bottom: -72px;
  }
  .material-scroll {
    max-height: 68vh;
    padding-right: 10px;
  }
}
