:root {
  --forest: #071710;
  --forest-2: #0d2a1c;
  --forest-3: #1b4029;
  --leaf: #c0f06c;
  --leaf-deep: #88b33e;
  --paper: #f3f0e7;
  --paper-2: #e7e3d8;
  --ink: #10241a;
  --muted: #617066;
  /* For bands on --paper-2, where --muted drops below 4.5:1. */
  --muted-2: #4f5f55;
  --white: #fffef9;
  --coral: #ff7d6d;
  --lilac: #ccbaff;
  --teal: #79d8cc;
  --line: rgba(16, 36, 26, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --pad: clamp(24px, 5.2vw, 84px);
  --radius: 26px;
  --shadow: 0 20px 70px rgba(2, 20, 11, 0.15);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

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

::selection {
  background: var(--leaf);
  color: var(--forest);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s;
}

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

.section-pad {
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px var(--pad);
  color: var(--white);
  transition: background 0.35s, min-height 0.35s, color 0.35s, box-shadow 0.35s;
}

.site-header.scrolled {
  min-height: 68px;
  background: rgba(243, 240, 231, 0.94);
  color: var(--forest);
  box-shadow: 0 1px rgba(16, 36, 26, 0.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  overflow: visible;
}

.logo-mark path {
  fill: none;
  stroke: var(--leaf);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header.scrolled .logo-mark path {
  stroke: var(--forest-3);
}

.logo-type {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.logo-type small {
  margin-top: 5px;
  color: var(--leaf);
  font-size: 8px;
  letter-spacing: 0.3em;
}

.site-header.scrolled .logo-type small {
  color: var(--forest-3);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  font-size: 13px;
  font-weight: 700;
}

.site-nav > a {
  position: relative;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transition: background 0.25s, color 0.25s;
}

.site-header.scrolled .nav-cta {
  border-color: var(--forest);
}

.nav-cta:hover {
  background: var(--leaf);
  border-color: var(--leaf);
  color: var(--forest);
}

.logout-link {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: inherit;
  font-size: 11px;
  cursor: pointer;
  opacity: 0.62;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: none;
  color: inherit;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 0.25s;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(500px, 0.93fr) minmax(500px, 1.07fr);
  background: var(--forest);
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 145px clamp(30px, 5.2vw, 86px) 70px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 78%, rgba(192, 240, 108, 0.11), transparent 26%),
    linear-gradient(145deg, transparent 55%, rgba(255, 255, 255, 0.025) 55% 55.3%, transparent 55.3%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(192, 240, 108, 0.11);
}

.hero h1,
.difference h2,
.experience h2,
.community h2,
.audiences h2,
.space-plan h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(53px, 5.6vw, 94px);
}

.hero h1 em,
.difference h2 em,
.experience h2 em,
.community h2 em,
.audiences h2 em,
.space-plan h2 em {
  color: var(--leaf);
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 38px;
}

.founding-cta {
  display: grid;
  gap: 10px;
}

.founding-cta .button {
  min-width: 255px;
}

.founding-cta p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.5;
}

.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 8px 9px 8px 23px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.button-primary {
  background: var(--leaf);
  color: var(--forest);
}

.button-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--forest);
  color: var(--leaf);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: inherit;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.hero-meta {
  display: flex;
  gap: 38px;
  margin-top: clamp(50px, 8vh, 105px);
  color: rgba(255, 255, 255, 0.53);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta span {
  color: var(--leaf);
  margin-right: 8px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 18px 18px 18px 0;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 650px;
  overflow: hidden;
  border-radius: 0 0 100px 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 39, 27, 0.4), transparent 28%),
    linear-gradient(0deg, rgba(4, 19, 11, 0.52), transparent 30%);
}

.hero-caption {
  position: absolute;
  left: 36px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.hero-caption span {
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-caption strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(243, 240, 231, 0.91);
  box-shadow: var(--shadow);
  color: var(--forest);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.floating-card-top {
  top: 115px;
  left: -25px;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 6px rgba(255, 125, 109, 0.18);
  }
}

.floating-card-bottom {
  right: 0;
  bottom: 92px;
  padding: 18px 24px;
  border-radius: 20px 0 0 20px;
}

.floating-card-bottom strong {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.floating-card-bottom span {
  color: #4e6257;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 13px 0;
  background: var(--leaf);
  color: var(--forest);
  transform: rotate(-0.7deg) scale(1.01);
  transform-origin: center;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 32s linear infinite;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.ticker-track i {
  font-style: normal;
}

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

.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.section-label span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.65);
}

.manifesto {
  padding-top: clamp(110px, 15vw, 220px);
  padding-bottom: clamp(100px, 14vw, 190px);
}

.manifesto-content {
  max-width: 1400px;
  margin: 70px auto 0;
}

.manifesto-big {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 6.3vw, 106px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.manifesto-big em {
  color: var(--forest-3);
  font-weight: 400;
}

.manifesto-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(35px, 7vw, 110px);
  max-width: 900px;
  margin: 80px 0 0 auto;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.manifesto-detail p {
  margin: 0;
  color: #405147;
}

.vision {
  padding-top: clamp(95px, 12vw, 165px);
  padding-bottom: clamp(90px, 11vw, 145px);
  background: var(--forest);
  color: var(--white);
}

.vision > .kicker {
  color: var(--leaf);
}

.vision-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.68fr);
  gap: clamp(45px, 10vw, 160px);
  margin-top: 52px;
}

.vision h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6.4vw, 100px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.vision h2 em {
  color: var(--leaf);
  font-weight: 400;
}

.vision-content > div > p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.vision-line {
  display: block;
  margin-top: 34px;
  color: var(--leaf);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vision-offers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 73px;
}

.vision-offers span {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.difference {
  background: var(--paper-2);
}

.difference-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: end;
  gap: 40px;
  padding-top: 105px;
  padding-bottom: 85px;
}

.kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.difference h2,
.experience h2,
.community h2,
.audiences h2,
.space-plan h2 {
  font-size: clamp(52px, 6.4vw, 100px);
}

.difference h2 em,
.audiences h2 em {
  color: var(--forest-3);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-bottom: 110px;
}

.difference-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 48px);
  background: var(--white);
}

.difference-card:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.difference-card:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.difference-card.card-accent {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-25px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-number {
  align-self: flex-end;
  color: var(--muted);
  font-family: var(--display);
  font-size: 14px;
}

.card-accent .card-number {
  color: rgba(255, 255, 255, 0.48);
}

.line-icon {
  width: 58px;
  height: 58px;
  margin: 65px 0 36px;
}

.line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--forest-3);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-accent .line-icon svg {
  stroke: var(--leaf);
}

.difference-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(28px, 2.3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.difference-card p {
  max-width: 390px;
  margin: auto 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.card-accent p {
  color: rgba(255, 255, 255, 0.65);
}

.experience {
  padding-top: 110px;
  padding-bottom: 130px;
  background: var(--forest);
  color: var(--white);
}

.experience-head {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 80px;
  margin: 70px 0 90px;
}

.experience-head > p {
  max-width: 420px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
}

.experience-showcase {
  position: relative;
}

.experience-image {
  margin: 0;
}

.experience-image img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  border-radius: 110px 20px 20px 20px;
}

.experience-image figcaption {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-cards {
  position: relative;
  width: 89%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -45px auto 0;
}

.micro-card {
  min-height: 130px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--paper);
  color: var(--forest);
}

.micro-card:first-child {
  border-radius: 18px 0 0 18px;
}

.micro-card:last-child {
  border-radius: 0 18px 18px 0;
}

.micro-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest-3);
  font-size: 22px;
}

.micro-card div {
  display: flex;
  flex-direction: column;
}

.micro-card strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.micro-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.community {
  display: grid;
  grid-template-columns: minmax(380px, 0.75fr) minmax(500px, 1.25fr);
  gap: clamp(45px, 7vw, 120px);
  align-items: center;
  padding-top: 140px;
  padding-bottom: 140px;
}

.community-copy > p:not(.kicker) {
  max-width: 520px;
  margin: 35px 0 0;
  color: #45574c;
  font-size: 16px;
  line-height: 1.75;
}

.community h2 {
  margin-top: 25px;
}

.community h2 em {
  color: var(--forest-3);
}

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

.session-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 750;
}

.session-list span {
  color: var(--leaf-deep);
  font-family: var(--display);
  font-size: 12px;
}

.community-image {
  position: relative;
  margin: 0;
}

.community-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 32%;
  aspect-ratio: 1;
  right: -6%;
  top: -12%;
  border: 1px solid var(--forest);
  border-radius: 50%;
}

.community-image img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  border-radius: 210px 210px 22px 22px;
}

.image-note {
  position: absolute;
  left: -45px;
  bottom: 45px;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--forest);
  transform: rotate(-8deg);
}

.image-note span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.image-note strong {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
}

.audiences {
  padding-top: 120px;
  padding-bottom: 135px;
  background: var(--lilac);
}

.audiences-head {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
  margin: 65px 0 75px;
}

.audiences-head > p {
  max-width: 420px;
  margin: 0 0 6px;
  color: #493f61;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(16, 36, 26, 0.4);
}

.audience-card {
  position: relative;
  min-height: 355px;
  padding: 28px 25px 35px;
  border-right: 1px solid rgba(16, 36, 26, 0.4);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.audience-card:last-child {
  border-right: 0;
}

.audience-card:hover {
  z-index: 2;
  background: var(--forest);
  color: var(--white);
  transform: translateY(-12px);
}

.audience-index {
  font-family: var(--display);
  font-size: 14px;
}

.audience-card h3 {
  margin: 100px 0 20px;
  font-family: var(--display);
  font-size: clamp(26px, 2.2vw, 37px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.audience-card p {
  max-width: 290px;
  margin: 0;
  color: #4b435d;
  font-size: 13px;
  line-height: 1.65;
}

.audience-card:hover p {
  color: rgba(255, 255, 255, 0.63);
}

.audience-arrow {
  position: absolute;
  right: 25px;
  bottom: 26px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.space-plan {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(50px, 6vw, 100px);
  align-items: center;
  padding-top: 130px;
  padding-bottom: 130px;
  background: var(--forest);
  color: var(--white);
}

.plan-copy > p:not(.planning-note) {
  max-width: 550px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.plan-copy h2 {
  margin-top: 60px;
}

.plan-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.plan-stats > div {
  padding: 20px 12px 20px 0;
}

.plan-stats strong,
.plan-stats span {
  display: block;
}

.plan-stats strong {
  font-family: var(--display);
  font-size: clamp(23px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1;
}

.plan-stats span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.planning-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.floorplan-card {
  position: relative;
  margin: 0;
  padding: 18px;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.26);
  color: var(--forest);
  transform: rotate(1deg);
  transition: transform 0.35s;
}

.floorplan-card:hover {
  transform: rotate(0deg);
}

.floorplan-card img {
  width: 100%;
  min-height: 360px;
  object-fit: contain;
  border-radius: 16px;
  background: white;
}

.floorplan-card figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 15px 3px 2px;
  font-size: 9px;
  font-weight: 750;
}

.legend-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
}

.dot-teal {
  background: #79cfc5;
}

.dot-pink {
  background: #ee70e7;
}

.dot-dark {
  background: #1e2422;
}

.plan-zoom {
  position: absolute;
  z-index: 2;
  right: 31px;
  top: 31px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.values {
  padding-top: 145px;
  padding-bottom: 145px;
  text-align: center;
}

.values blockquote {
  max-width: 1200px;
  margin: 38px auto 60px;
  font-family: var(--display);
  font-size: clamp(38px, 5.7vw, 88px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.048em;
}

.value-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 3vw, 45px);
  color: var(--forest-3);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.value-row i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.one-pager {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 7vw, 130px);
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
  background: #dbe8cd;
  color: var(--forest);
}

.one-pager .kicker {
  color: var(--forest-3);
}

.one-pager h2 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.1vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.one-pager h2 em {
  color: var(--forest-3);
}

.one-pager-copy > p:not(.kicker) {
  max-width: 580px;
  margin: 27px 0 0;
  color: rgba(12, 39, 27, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

.one-pager-action {
  display: flex;
  min-width: min(100%, 320px);
  padding: 28px;
  align-items: flex-start;
  flex-direction: column;
  gap: 17px;
  border: 1px solid rgba(12, 39, 27, 0.17);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
}

.one-pager-file {
  color: var(--forest-3);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.one-pager-action small {
  color: rgba(12, 39, 27, 0.58);
  font-size: 11px;
}

.consent {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 12px;
  align-items: start;
  color: #617066;
  font-size: 10px;
  line-height: 1.55;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--forest);
}

.founder {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(60px, 9vw, 150px);
  padding-top: 140px;
  padding-bottom: 140px;
}

.founder-feature {
  grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr);
  align-items: center;
  padding-top: 115px;
  padding-bottom: 115px;
}

.founder-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 150px 18px 18px;
  background: var(--paper-2);
}

.founder-photo img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: 50% 34%;
}

.founder-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 9px;
  background: var(--forest);
  color: var(--leaf);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
}

.founder-story h2 {
  margin: 20px 0 28px;
  font-family: var(--display);
  font-size: clamp(42px, 5.1vw, 76px);
  font-weight: 400;
  line-height: .97;
  letter-spacing: -.055em;
}

.founder-story h2 em,
.founder-story strong {
  color: var(--forest-3);
  font-weight: 400;
}

.founder-story > p:not(.kicker) {
  max-width: 650px;
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 16px;
}

.founder-story strong {
  display: block;
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.founder-founding-cta {
  margin-top: 30px;
}

.founder-founding-cta p {
  color: var(--muted);
}

.site-footer {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.55fr 1.15fr 0.45fr;
  gap: 50px;
  align-items: start;
  padding: 90px var(--pad) 55px;
  background: #071b12;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-self: end;
  font-size: 12px;
  font-weight: 700;
}

.footer-links a {
  text-underline-offset: 4px;
}

.footer-statement {
  align-self: center;
  margin: 40px 0;
  font-family: var(--display);
  font-size: clamp(50px, 7vw, 110px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.055em;
}

.footer-statement em {
  color: var(--leaf);
  font-weight: 400;
}

.footer-meta {
  align-self: end;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  line-height: 1.6;
}

.footer-link {
  margin: 20px 0;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: var(--leaf);
  font-size: 11px;
  cursor: pointer;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.footer-legal a {
  color: var(--leaf);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.plan-dialog {
  width: min(96vw, 1600px);
  max-width: none;
  padding: 50px 20px 20px;
  border: 0;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.plan-dialog::backdrop {
  background: rgba(4, 18, 11, 0.86);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.plan-dialog img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.dialog-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-delay="1"] {
  transition-delay: 0.09s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.18s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.27s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.36s;
}

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

@media (max-width: 1180px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero h1 {
    font-size: clamp(52px, 6.4vw, 76px);
  }

  .hero-copy {
    padding-left: 42px;
    padding-right: 34px;
  }

  .experience-head,
  .audiences-head {
    grid-template-columns: 1fr 0.65fr;
  }

  .community {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .space-plan {
    grid-template-columns: 1fr;
  }

  .plan-copy {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 0 50px;
  }

  .plan-copy .section-label {
    grid-column: 1 / -1;
  }

  .plan-copy h2 {
    grid-row: 2 / span 3;
  }

  .plan-stats,
  .planning-note {
    grid-column: 2;
  }

  .one-pager {
    gap: 46px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 90px var(--pad);
    background: var(--forest);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .site-nav.open {
    z-index: -1;
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a:not(.nav-cta) {
    display: block;
    font-family: var(--display);
    font-size: 45px;
    font-weight: 400;
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    border-color: rgba(255, 255, 255, 0.45);
  }

  .site-nav .logout-link {
    color: var(--white);
  }

  .site-header.menu-active,
  .site-header.scrolled.menu-active {
    background: transparent;
    box-shadow: none;
    color: var(--white);
  }

  .site-header.menu-active .logo-mark path {
    stroke: var(--leaf);
  }

  .site-header.menu-active .logo-type small {
    color: var(--leaf);
  }

  .site-header.menu-active .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.menu-active .menu-toggle span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 720px;
    padding: 130px var(--pad) 70px;
  }

  .hero h1 {
    font-size: clamp(51px, 10vw, 82px);
  }

  .hero-visual {
    height: 72vw;
    min-height: 500px;
    padding: 0 18px 18px;
  }

  .hero-image-wrap {
    min-height: 0;
    border-radius: 0 0 80px 20px;
  }

  .floating-card-top {
    top: 35px;
    left: 5px;
  }

  .floating-card-bottom {
    bottom: 80px;
    right: 0;
  }

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

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

  .difference-card,
  .difference-card.card-accent {
    min-height: 330px;
    border-radius: var(--radius);
    transform: none;
  }

  .line-icon {
    margin-top: 30px;
  }

  .experience-head,
  .audiences-head {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .experience-image img {
    aspect-ratio: 4 / 3;
    border-radius: 80px 18px 18px;
  }

  .experience-cards {
    width: 92%;
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .micro-card:first-child {
    border-radius: 18px 18px 0 0;
  }

  .micro-card:last-child {
    border-radius: 0 0 18px 18px;
  }

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

  .community-image {
    margin-left: 30px;
  }

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

  .audience-card:nth-child(2) {
    border-right: 0;
  }

  .audience-card {
    border-bottom: 1px solid rgba(16, 36, 26, 0.4);
  }

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

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

  .footer-statement {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --pad: 21px;
    --radius: 20px;
  }

  .logo-type {
    font-size: 13px;
  }

  .hero-copy {
    min-height: 700px;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 67px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .founding-cta .button {
    width: 100%;
  }

  .hero-meta {
    gap: 18px;
  }

  .hero-meta div {
    display: flex;
    flex-direction: column;
  }

  .hero-visual {
    height: 93vw;
    min-height: 440px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-image-wrap img {
    object-position: 60% center;
  }

  .floating-card-bottom {
    padding: 14px 17px;
  }

  .floating-card-bottom strong {
    font-size: 32px;
  }

  .manifesto {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .manifesto-content {
    margin-top: 48px;
  }

  .manifesto-big {
    font-size: 42px;
  }

  .manifesto-detail {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .vision-content {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 42px;
  }

  .vision-offers {
    margin-top: 45px;
  }

  .difference-heading {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .difference h2,
.experience h2,
.community h2,
.audiences h2,
.space-plan h2 {
    font-size: 50px;
  }

  .experience,
  .audiences,
  .space-plan,
  .values,
  .founder {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .founder-feature {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    max-width: 500px;
  }

  .experience-head {
    margin-top: 48px;
    margin-bottom: 55px;
  }

  .experience-image img {
    aspect-ratio: 0.95;
    object-position: 62% center;
    border-radius: 60px 15px 15px;
  }

  .experience-image figcaption span:last-child {
    display: none;
  }

  .micro-card {
    min-height: 105px;
  }

  .community {
    padding-top: 95px;
    padding-bottom: 100px;
  }

  .community-image {
    margin: 20px 0 0 15px;
  }

  .community-image img {
    aspect-ratio: 0.88;
    object-position: 54% center;
    border-radius: 110px 110px 18px 18px;
  }

  .image-note {
    left: -14px;
    bottom: 22px;
    width: 112px;
    height: 112px;
  }

  .image-note strong {
    font-size: 24px;
  }

  .audiences-head {
    margin-top: 50px;
    margin-bottom: 50px;
  }

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

  .audience-card,
  .audience-card:nth-child(2) {
    min-height: 310px;
    border-right: 0;
  }

  .audience-card h3 {
    margin-top: 70px;
  }

  .space-plan {
    gap: 60px;
  }

  .plan-copy {
    display: block;
  }

  .plan-copy h2 {
    margin-top: 48px;
  }

  .plan-stats {
    grid-template-columns: 1fr;
  }

  .plan-stats > div + div {
    border-top: 1px solid var(--line-light);
  }

  .floorplan-card {
    padding: 10px;
    margin: 0 -8px;
    border-radius: 20px;
  }

  .floorplan-card img {
    min-height: 270px;
  }

  .plan-zoom {
    right: 20px;
    top: 20px;
  }

  .values blockquote {
    margin-top: 32px;
    font-size: 38px;
  }

  .value-row {
    flex-direction: column;
  }

  .one-pager {
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .one-pager-action {
    min-width: 0;
  }

  .founder-photo img {
    height: 450px;
  }

  .site-footer {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .footer-statement {
    grid-column: auto;
    grid-row: auto;
    font-size: 58px;
  }
}

/* AI-first and Founding co-creation additions reuse the existing page rhythm. */
.ai-first { display: grid; grid-template-columns: .28fr 1fr; gap: 60px; padding-top: 110px; padding-bottom: 110px; background: var(--paper-2); }.ai-first-content { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: start; }.ai-first h2 { margin: 14px 0 0; font-family: var(--display); font-size: clamp(43px, 5vw, 74px); font-weight: 400; line-height: .96; letter-spacing: -.055em; }.ai-first h2 em { color: var(--forest-3); font-weight: 400; }.ai-first-content > div > p:not(.kicker) { color: var(--muted); font-size: 16px; }.ai-first-content strong { display: block; margin-top: 30px; color: var(--forest-3); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 900px) { .ai-first, .ai-first-content { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 620px) { .ai-first { padding-top: 80px; padding-bottom: 80px; } }

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

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

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

/* Explore: a protected concept view that extends the existing visual system. */
.explore-page .site-header:not(.scrolled) { color: var(--white); }
.explore-hero { min-height: 710px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(38px, 7vw, 130px); align-items: center; padding-top: 135px; padding-bottom: 85px; color: var(--white); background: var(--forest); }
.explore-hero-copy { max-width: 650px; }
.explore-overline { margin: 38px 0 14px; color: var(--leaf); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.explore-hero h1, .explore-section-head h2 { margin: 0; font-family: var(--display); font-size: clamp(50px, 5.4vw, 87px); font-weight: 400; line-height: .95; letter-spacing: -.055em; }
.explore-hero h1 em, .explore-section-head em { color: var(--leaf); font-weight: 400; }
.explore-hero-copy > p:not(.eyebrow):not(.explore-overline) { max-width: 530px; margin: 31px 0; color: rgba(255,255,255,.78); font-size: 18px; }
.explore-hero-image { position: relative; margin: 0; }
.explore-hero-image::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(135deg, rgba(12,39,27,.2), transparent 56%); pointer-events: none; }
.explore-hero-image img { width: 100%; min-height: 500px; object-fit: cover; border-radius: 180px 18px 18px; }
.explore-hero-image figcaption { position: absolute; z-index: 2; right: 21px; bottom: 18px; color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.explore-section-head { display: grid; grid-template-columns: 1fr .45fr; gap: 70px; margin: 55px 0 68px; align-items: end; }
.explore-section-head > p { margin: 0; color: var(--muted); }

.explore-room-detail { min-height: 450px; padding: clamp(32px, 5vw, 65px); border-radius: 18px 100px 18px 18px; background: var(--paper-2); }
.explore-room-detail-top { display: flex; justify-content: space-between; color: var(--coral); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.explore-room-detail h3 { margin: 70px 0 7px; font-family: var(--display); font-size: clamp(40px, 4vw, 66px); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.explore-capacity { margin: 0 0 27px; color: var(--forest-3); font-size: 14px; font-weight: 750; }
.explore-room-detail > p:not(.explore-capacity):not(.explore-detail-note) { max-width: 590px; font-size: 17px; }
.explore-room-detail ul { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 27px 0; list-style: none; }
.explore-room-detail li { padding: 7px 12px; border: 1px solid rgba(16,36,26,.26); border-radius: 999px; font-size: 12px; }
.explore-detail-note { margin: 45px 0 0; color: var(--muted); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.explore-gallery { padding-top: 115px; padding-bottom: 130px; color: var(--white); background: var(--forest); }
.explore-section-head.light > p { color: rgba(255,255,255,.68); }
.explore-gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .9fr; grid-template-rows: 260px 280px; gap: 16px; }
.explore-gallery-item { position: relative; margin: 0; overflow: hidden; border-radius: 15px; }
.explore-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.explore-gallery-item:hover img { transform: scale(1.04); }
.explore-gallery-item figcaption { position: absolute; right: 15px; bottom: 13px; padding: 5px 8px; background: rgba(12,39,27,.72); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.explore-gallery-item.gallery-1 { grid-row: span 2; border-radius: 130px 15px 15px; }
.explore-gallery-item.gallery-4 { grid-column: span 2; }

.explore-concept-note { padding-left: 15px; border-left: 2px solid var(--leaf); color: rgba(255,255,255,.65) !important; font-size: 13px !important; }
.technology-people { padding-top: 125px; padding-bottom: 125px; }
.technology-people h2, .workspace-principles h2 { margin: 20px 0 0; font-family: var(--display); font-size: clamp(43px, 5vw, 76px); font-weight: 400; line-height: .98; letter-spacing: -.05em; }
.technology-people h2 em { color: var(--forest-3); }
.technology-people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 58px; }
.technology-people-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: 18px; }
.technology-people-grid figure:first-child { border-radius: 110px 18px 18px; }
.technology-people-grid img { width: 100%; height: 390px; object-fit: cover; }
.technology-people-grid figcaption { position: absolute; bottom: 14px; left: 14px; padding: 6px 9px; background: rgba(12,39,27,.78); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.technology-people-copy { max-width: 720px; margin: 38px 0 0 auto; color: var(--muted); font-size: 17px; }
.explore-layouts { padding-top: 120px; padding-bottom: 130px; background: var(--paper-2); }
.explore-layout-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.explore-layout-tab { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); font-size: 13px; font-weight: 750; cursor: pointer; }
.explore-layout-tab span { color: var(--forest-3); font-size: 11px; }
.explore-layout-tab.is-active { border-color: var(--forest); background: var(--forest); color: var(--white); }
.explore-layout-tab.is-active span { color: var(--leaf); }
.explore-layout-summary { display: grid; grid-template-columns: .65fr 1.35fr; gap: 35px; align-items: center; padding: clamp(26px, 4vw, 55px); border-radius: 18px; background: var(--white); }
.explore-layout-summary h3 { margin: 13px 0 17px; font-family: var(--display); font-size: clamp(36px, 4vw, 58px); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.explore-layout-summary p { color: var(--muted); }
.explore-layout-summary figure { position: relative; margin: 0; overflow: hidden; border-radius: 10px; background: var(--paper); }
.explore-layout-summary img { width: 100%; }
.explore-layout-summary figcaption { position: absolute; right: 10px; bottom: 10px; padding: 5px 8px; background: var(--forest); color: var(--leaf); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.explore-layout-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 32px; }
.explore-layout-metrics span { display: grid; gap: 4px; color: var(--muted); font-size: 10px; }
.explore-layout-metrics strong { color: var(--forest-3); font-family: var(--display); font-size: 25px; font-weight: 400; }
.explore-room-explorer { display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px; margin-top: 18px; }
.explore-room-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 18px; }
.explore-room-option { display: grid; gap: 3px; min-height: 104px; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink); text-align: left; cursor: pointer; }
.explore-room-option span { color: var(--forest-3); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.explore-room-option strong { font-size: 13px; }
.explore-room-option small { color: var(--muted); font-size: 10px; }
.explore-room-option.is-priority { border-color: rgba(12,39,27,.4); }
.explore-room-option.is-active { border-color: var(--forest); background: var(--forest); color: var(--white); }
.explore-room-option.is-active span { color: var(--leaf); }.explore-room-option.is-active small { color: rgba(255,255,255,.7); }
.explore-room-detail { min-height: 330px; padding: clamp(28px, 4vw, 48px); border-radius: 14px 75px 14px 14px; background: var(--forest); color: var(--white); }
.explore-room-detail h3 { margin: 48px 0 8px; font-family: var(--display); font-size: clamp(37px, 4vw, 61px); font-weight: 400; letter-spacing: -.05em; line-height: 1; }.explore-room-detail h4 { margin: 28px 0 10px; color: var(--leaf); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }.explore-room-detail > p:not(.explore-capacity):not(.explore-detail-note) { max-width: 520px; color: rgba(255,255,255,.72); }.explore-room-detail li { border-color: rgba(255,255,255,.32); }.explore-room-detail .explore-detail-note { color: rgba(255,255,255,.5); }
.workspace-principles { padding-top: 110px; padding-bottom: 120px; }.workspace-principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 52px; background: var(--line); }.workspace-principles-grid article { min-height: 240px; padding: 26px; background: var(--paper); }.workspace-principles-grid span { color: var(--coral); font-size: 11px; font-weight: 800; }.workspace-principles-grid h3 { margin: 55px 0 10px; font-size: 20px; }.workspace-principles-grid p { margin: 0; color: var(--muted); font-size: 13px; }

@media (max-width: 900px) {
  .explore-hero { grid-template-columns: 1fr; min-height: 0; padding-top: 125px; }
  .explore-hero-image { max-width: 700px; }
  .explore-section-head { grid-template-columns: 1fr; gap: 35px; }

  .explore-layout-summary, .explore-room-explorer { grid-template-columns: 1fr; }
  .workspace-principles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .explore-hero { padding-bottom: 56px; }
  .explore-hero-image img { min-height: 340px; border-radius: 90px 14px 14px; }

  .explore-section-head { margin: 42px 0; }

  .explore-room-detail { min-height: 0; border-radius: 18px 60px 18px; }
  .explore-room-detail h3 { margin-top: 45px; }
  .explore-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 250px 190px 190px; }
  .explore-gallery-item.gallery-1 { grid-column: span 2; grid-row: auto; border-radius: 90px 14px 14px; }
  .explore-gallery-item.gallery-4 { grid-column: auto; }
  .explore-gallery { padding-top: 85px; padding-bottom: 85px; }
  .technology-people, .explore-layouts, .workspace-principles { padding-top: 85px; padding-bottom: 85px; }
  .technology-people-grid, .explore-room-list { grid-template-columns: 1fr; }
  .technology-people-grid img { height: 280px; }
  .explore-layout-metrics { grid-template-columns: 1fr; }.workspace-principles-grid { grid-template-columns: 1fr; }
}

/* Founding portal: concrete spaces and the member vote on each of them. */
.portal-page { background: var(--paper); color: var(--ink); }
.portal-header { display: flex; flex-wrap: wrap; gap: 18px 32px; align-items: center; justify-content: space-between; padding: 22px clamp(20px, 4vw, 56px); background: var(--forest); color: var(--white); }

.portal-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; }
.portal-nav a, .portal-nav button { color: rgba(255,255,255,.78); font-size: 13px; font-weight: 800; text-decoration: none; }
.portal-nav a:hover, .portal-nav button:hover { color: var(--leaf); }
.portal-nav a.is-current { color: var(--leaf); }
.portal-nav form { margin: 0; }
.portal-nav button { border: 0; background: none; cursor: pointer; font-family: inherit; }
.portal-main { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 58px 0 90px; }
.portal-intro h1 { margin: 14px 0 16px; max-width: 780px; font-family: var(--display); font-size: clamp(34px, 4.4vw, 60px); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.portal-lead { max-width: 680px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.portal-empty { margin: 44px 0 0; padding: 34px; border: 1px dashed var(--line); border-radius: 16px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.portal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 22px; margin-top: 46px; }
.portal-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper-2); }
.portal-status { display: inline-block; padding: 5px 11px; border-radius: 999px; background: var(--paper); color: var(--muted-2); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.portal-status.is-shortlist { background: var(--leaf); color: var(--ink); }
.portal-status.is-dropped { opacity: .62; }
.portal-card-head h2 { margin: 14px 0 4px; font-family: var(--display); font-size: 27px; font-weight: 400; line-height: 1.05; letter-spacing: -.03em; }
.portal-district { margin: 0; color: var(--muted-2); font-size: 14px; font-weight: 750; }
.portal-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 14px; margin: 22px 0 0; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.portal-facts dt { color: var(--muted-2); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.portal-facts dd { margin: 4px 0 0; font-size: 16px; font-weight: 750; }
.portal-description { margin: 18px 0 0; color: var(--muted-2); font-size: 15px; line-height: 1.6; }
.portal-list { margin-top: 18px; }
.portal-list h3 { margin: 0 0 8px; color: var(--forest-3); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.portal-list ul { margin: 0; padding-left: 18px; color: var(--muted-2); font-size: 14px; line-height: 1.55; }
.portal-list-cons h3 { color: #a3402f; }
/* Offene Punkte sind keine Bewertung, sondern Fragen -- deshalb neutral. */
.portal-list-open h3 { color: var(--muted-2); }
.portal-voting { margin-top: auto; padding-top: 24px; }
.portal-voting-label { margin: 0 0 10px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.portal-vote-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.portal-vote { position: relative; overflow: hidden; display: grid; gap: 3px; padding: 12px 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--ink); cursor: pointer; font: inherit; text-align: center; }
.portal-vote:hover:not(:disabled) { border-color: var(--forest-3); }
.portal-vote:disabled { opacity: .6; cursor: progress; }
.portal-vote.is-active { border-color: var(--forest-3); background: var(--leaf); }
.portal-vote-bar { position: absolute; z-index: 0; inset: auto 0 0 0; height: 3px; background: var(--forest-3); transition: width .25s; }
.portal-vote-label { position: relative; z-index: 1; font-size: 12px; font-weight: 800; line-height: 1.2; }
.portal-vote-count { position: relative; z-index: 1; color: var(--muted-2); font-size: 15px; font-weight: 750; font-variant-numeric: tabular-nums; }
.portal-vote.is-active .portal-vote-count { color: var(--ink); }
.portal-feedback { margin: 12px 0 0; font-size: 13px; font-weight: 750; }
.portal-feedback.is-success { color: var(--forest-3); }
.portal-feedback.is-error { color: #a32f25; }
.portal-note { margin: 26px 0 0; color: var(--muted); font-size: 13px; }
@media (max-width: 620px) {
  .portal-main { width: min(100% - 32px, 1180px); padding: 40px 0 64px; }
  .portal-grid { grid-template-columns: 1fr; }
  .portal-card { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) { .portal-vote-bar { transition: none; } }

/* Portal option groups and the member suggestion form. */
.portal-group { margin-top: 54px; }
.portal-group-title { margin: 0; font-family: var(--display); font-size: clamp(26px, 2.8vw, 38px); font-weight: 400; letter-spacing: -.035em; }
.portal-group-lead { margin: 8px 0 0; color: var(--muted); font-size: 15px; }
.portal-group .portal-grid { margin-top: 24px; }
.portal-propose { max-width: 720px; margin: 68px 0 0; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper-2); }
.portal-propose h2 { margin: 0 0 8px; font-family: var(--display); font-size: 27px; font-weight: 400; letter-spacing: -.03em; }
.portal-propose > p { margin: 0 0 22px; color: var(--muted-2); font-size: 15px; line-height: 1.6; }
.portal-propose label { display: grid; gap: 7px; margin-bottom: 16px; font-size: 12px; font-weight: 800; }
.portal-propose input, .portal-propose select, .portal-propose textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--ink); font: inherit; resize: vertical; }
.portal-propose input:focus-visible, .portal-propose select:focus-visible, .portal-propose textarea:focus-visible { outline: 2px solid var(--forest-3); outline-offset: 1px; }
.portal-propose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.portal-propose .button { margin-top: 6px; }
@media (max-width: 620px) { .portal-propose { padding: 22px; }.portal-propose-grid { grid-template-columns: 1fr; gap: 0; } }

/* Option photos and source links in the portal. */
.portal-address { margin: 6px 0 0; color: var(--muted-2); font-size: 13px; }
.portal-link { margin: 18px 0 0; }
.portal-link a { display: inline-flex; gap: 7px; align-items: center; padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--forest-3); font-size: 13px; font-weight: 800; text-decoration: none; }
.portal-link a:hover { border-color: var(--forest-3); background: var(--paper); }

/* Single feature image instead of a grid that repeated the visuals above it. */
.explore-gallery-feature { margin: 44px 0 0; overflow: hidden; border-radius: 110px 18px 18px; position: relative; }
.explore-gallery-feature img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.explore-gallery-feature figcaption { position: absolute; right: 18px; bottom: 16px; padding: 6px 10px; background: rgba(12,39,27,.72); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 620px) { .explore-gallery-feature { margin-top: 30px; border-radius: 60px 14px 14px; } }

/* Marks pro/contra lists that Claude drafted, so nobody mistakes them for notes
   written by a person. */
.portal-ai { display: inline-flex; gap: 6px; align-items: center; margin: 18px 0 0; padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted-2); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; cursor: help; }
.portal-ai span { color: var(--forest-3); }

/* ---------------------------------------------------------------------------
   Portal: pictures of a space and the map. Files are addressed through the
   worker, so they stay behind the session like the page that shows them.
   --------------------------------------------------------------------------- */

.portal-media { display: grid; gap: 16px; margin: 20px 0 0; }
.portal-media-label { margin: 0 0 8px; color: var(--muted-2); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.portal-media-row { display: flex; flex-wrap: wrap; gap: 8px; }
.portal-media-tile { display: block; width: 96px; height: 72px; overflow: hidden; border-radius: 10px; background: var(--paper); }
.portal-media-tile img { width: 100%; height: 100%; object-fit: cover; }
.portal-media-tile:hover img { transform: scale(1.04); }
.portal-media-tile img { transition: transform .25s; }
.portal-media-file { display: inline-flex; gap: 7px; align-items: center; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--forest-3); font-size: 12px; font-weight: 750; text-decoration: none; }
.portal-media-file:hover { border-color: var(--forest-3); }

/* Nothing reaches Google before the button is pressed. */
.portal-map { margin: 18px 0 0; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.portal-map-open { display: inline-flex; gap: 8px; align-items: center; padding: 9px 15px; border: 0; border-radius: 999px; background: var(--forest); color: var(--leaf); font-size: 12px; font-weight: 800; cursor: pointer; }
.portal-map-open:hover { background: var(--forest-3); }
.portal-map-note { margin: 10px 0 0; color: var(--muted-2); font-size: 12px; line-height: 1.5; }
.portal-map-fallback { margin: 10px 0 0; font-size: 12px; }
.portal-map-fallback a { color: var(--forest-3); font-weight: 750; }
.portal-map-frame { display: block; width: 100%; height: 260px; border: 0; border-radius: 10px; }

@media (prefers-reduced-motion: reduce) { .portal-media-tile img { transition: none; } }
@media (max-width: 620px) { .portal-media-tile { width: 78px; height: 60px; } .portal-map-frame { height: 200px; } }

/* ═══════════════════════════════════════════════════════════════════════════
   Creme-Redesign der oeffentlichen Startseite (/ und /en)

   Alles hier haengt an .creme-page (oeffentliche Seiten, /ki und das Portal).
   /explore und die alte index.html tragen diese Klasse nicht und behalten
   deshalb die Forest-Palette aus :root samt der Portal-, Explore- und
   index-Regeln weiter oben. Regeln ohne Verwender sind im September 2026
   entfernt worden.

   Die Tokens --forest, --muted und --line heissen absichtlich wie in :root:
   hier ueberschatten sie die alten Werte nur innerhalb dieser Seite.
   ═══════════════════════════════════════════════════════════════════════════ */

.creme-page {
  --cream: #f6f1e8;
  --beige: #efe8d9;
  --sage: #dfe9d0;
  --forest: #1b4029;
  --ink: #10241a;
  --ink-2: #33463c;
  --muted: #5b6b61;
  --leaf: #c0f06c;
  /* Nur fuer das Wort "GROW." -- --leaf ist auf Creme nicht lesbar. */
  --grow: #4f8f2b;
  --line: rgba(16, 36, 26, 0.1);
  --line-2: rgba(16, 36, 26, 0.14);
  --line-3: rgba(16, 36, 26, 0.25); /* Palette-Token, derzeit ohne Verwender */
  /* Feldrahmen: 0.25 ergab 1,6:1 -- Eingabefelder waren kaum als solche zu erkennen. */
  --line-field: rgba(16, 36, 26, 0.55);
  --on-dark: rgba(246, 241, 232, 0.85);
  --field: #fbf8f2;
  --sans: Helvetica, "Helvetica Neue", Arial, sans-serif;

  /* Portal und Adminbereich benutzen noch die alten Tokennamen. Innerhalb der
     Creme-Seiten zeigen die auf die neuen Werte, damit nichts doppelt gepflegt
     werden muss und keine Regel umgeschrieben werden musste. */
  --paper: var(--cream);
  --paper-2: var(--beige);
  --forest-3: var(--forest);
  --muted-2: var(--ink-2);
  --white: var(--cream);
  --display: var(--sans);

  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

.creme-page h1,
.creme-page h2,
.creme-page h3,
.creme-page p,
.creme-page figure,
.creme-page ul,
.creme-page blockquote {
  margin: 0;
}
.creme-page ul { padding: 0; list-style: none; }
.creme-page svg, .creme-page img { display: block; }
.creme-page a { color: var(--forest); text-decoration: none; }
.creme-page a:hover { color: var(--ink); }
.creme-page input,
.creme-page select,
.creme-page textarea,
.creme-page button { font: inherit; }

/* Coral passt nicht in die Creme-Palette; der Ring wird gruen. Auf dunklen
   Baendern uebernimmt --leaf, sonst verschwindet er im Forest. */
.creme-page :focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 3px;
}
.creme-page .c-band-dark :focus-visible,
.creme-page .portal-header :focus-visible { outline-color: var(--leaf); }

.creme-page .c-shell {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 28px;
}

/* Bandwechsel. Tiefe entsteht nur ueber Flaeche und 1px-Linie, nie ueber
   Schatten -- deshalb gibt es im ganzen Redesign kein box-shadow. */
.creme-page .c-band { border-block: 1px solid var(--line); }
.creme-page .c-band + .c-band { border-top: 0; }
.creme-page .c-band-beige { background: var(--beige); }
.creme-page .c-band-sage { background: var(--sage); }
.creme-page .c-band-dark { background: var(--forest); color: var(--cream); }
/* Links im dunklen Band werden blattgruen -- Buttons nicht, die tragen ihre
   eigene Farbe. Ohne das :not() gewinnt dieser Selektor gegen .c-btn-leaf
   (ein Tag mehr) und der Leaf-Button haette blattgruenen Text auf
   blattgruenem Grund. */
.creme-page .c-band-dark a:not(.c-btn) { color: var(--leaf); }

.creme-page section[id] { scroll-margin-top: 80px; }

/* ── Header ─────────────────────────────────────────────────────────────── */

.creme-page .c-site-head {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 241, 232, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.creme-page .c-site-head .c-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}
.creme-page .c-brand { display: flex; align-items: center; gap: 11px; }
.creme-page .c-brand svg { width: 34px; height: 34px; }
.creme-page .c-brand-type { display: flex; flex-direction: column; line-height: 1; }
.creme-page .c-brand-type b { font-size: 17px; font-weight: 700; color: var(--ink); }
.creme-page .c-brand-type span {
  margin-top: 4px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.creme-page .c-site-nav-c {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}
.creme-page .c-site-nav-c .c-lang { color: var(--muted); }
.creme-page .c-nav-cta-c {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.creme-page .c-nav-cta-c:hover { background: var(--ink); color: var(--cream); }

/* ── Bausteine ──────────────────────────────────────────────────────────── */

.creme-page .c-kicker {
  margin: 0;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.creme-page .c-band-dark .c-kicker { color: var(--leaf); }

.creme-page .c-sec-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 32px;
  align-items: start;
}
.creme-page .c-sec-head h2 {
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.creme-page .c-sec-head > div { display: flex; flex-direction: column; gap: 14px; }
.creme-page em.c-accent,
.creme-page span.c-accent { color: var(--forest); font-style: normal; }
.creme-page .c-band-dark span.c-accent { color: var(--leaf); }
/* Das Gruen von GROW. -- nur fuer Woerter in Headline-Groesse, auf Creme und
   Beige erreicht es keine 4,5:1 fuer Fliesstext. */
.creme-page .c-grow { color: var(--grow); font-style: normal; }

.creme-page .c-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}
.creme-page .c-btn-forest { background: var(--forest); color: var(--cream); }
.creme-page .c-btn-forest:hover { background: var(--ink); color: var(--cream); }
.creme-page .c-btn-leaf { background: var(--leaf); color: var(--ink); }
.creme-page .c-btn-leaf:hover { background: #b2e55c; color: var(--ink); }
.creme-page .c-btn-outline {
  border: 1px solid rgba(246, 241, 232, 0.4);
  color: var(--cream);
}
.creme-page .c-btn-outline:hover { background: rgba(246, 241, 232, 0.1); color: var(--cream); }

.creme-page figcaption { color: var(--muted); font-size: 12px; }

/* ── 01 Hero ────────────────────────────────────────────────────────────── */

.creme-page .c-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 56px;
  align-items: center;
  padding-block: 88px 72px;
}
.creme-page .c-hero-text { display: flex; flex-direction: column; gap: 28px; }
.creme-page .c-hero-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(27, 64, 41, 0.3);
  border-radius: 999px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
/* Statisch, kein Puls: die Seite hat genau eine Animation, das Laufband. */
.creme-page .c-hero-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 3px rgba(192, 240, 108, 0.35);
}
.creme-page .c-hero h1 {
  font-size: clamp(44px, 5vw, 92px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.creme-page .c-hero-lead {
  max-width: 500px;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.5;
  text-wrap: pretty;
}
.creme-page .c-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.creme-page .c-hero-media { display: flex; flex-direction: column; gap: 10px; }
.creme-page .c-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
}

/* ── 02 Laufband ────────────────────────────────────────────────────────── */

.creme-page .c-ticker { overflow: hidden; padding: 18px 0; }
.creme-page .c-ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: creme-ticker 60s linear infinite;
}
/* Die Symbole im Band sind dieselben wie unten in den Karten: Pflanzen aus dem
   Garden, Linien-Icons aus dem Tech-Abschnitt. Das Band greift der Seite vor. */
.creme-page .c-ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.creme-page .c-ticker-track i { color: var(--leaf); font-size: 12px; font-style: normal; }
.creme-page .c-ticker-track svg { width: 18px; height: 18px; flex: 0 0 auto; }
@keyframes creme-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .creme-page .c-ticker-track { animation: none; }
}

/* ── 04 Workspace ───────────────────────────────────────────────────────── */

.creme-page .c-stack-40 { display: flex; flex-direction: column; gap: 40px; }

.creme-page .c-icon { width: 34px; height: 34px; }
.creme-page .c-footnote { color: var(--muted); font-size: 14px; }

/* ── 06 Community ───────────────────────────────────────────────────────── */

.creme-page .c-num-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
}
.creme-page .c-num-list li { display: flex; gap: 12px; }
.creme-page .c-num-list .c-n { min-width: 24px; color: var(--forest); font-weight: 700; }
.creme-page .c-num-list strong { color: var(--ink); }
.creme-page .c-band-dark .c-num-list { color: var(--on-dark); }
.creme-page .c-band-dark .c-num-list .c-n { color: var(--leaf); }
.creme-page .c-band-dark .c-num-list strong { color: var(--cream); }

/* ── 09 Gruenderin ──────────────────────────────────────────────────────── */

.creme-page .c-founder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 48px;
  align-items: start;
}
.creme-page .c-founder-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.creme-page .c-founder-aside figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 28px;
}
.creme-page .c-founder-aside img { width: 100%; height: 100%; object-fit: cover; }
.creme-page .c-founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.creme-page .c-founder-text { display: flex; flex-direction: column; gap: 22px; }
.creme-page .c-founder-text h2 {
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.creme-page .c-founder-role { color: var(--forest); font-size: 15px; font-weight: 600; }
.creme-page .c-founder-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
}

.creme-page .c-cv { display: flex; flex-direction: column; border-top: 1px solid var(--line-2); }
.creme-page .c-cv li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 15px;
  line-height: 1.5;
}
.creme-page .c-cv .c-when { color: var(--forest); font-weight: 700; }
.creme-page .c-statement-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--line-2);
}
.creme-page .c-statement {
  max-width: 960px;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.creme-page .c-signature {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 20px;
}
.creme-page .c-signature b { font-size: 15px; font-weight: 700; }
.creme-page .c-signature span {
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── 10 Founding Access ─────────────────────────────────────────────────── */

.creme-page .c-founding-intro { display: flex; flex-direction: column; gap: 16px; }
.creme-page .c-founding-intro p {
  max-width: 460px;
  color: var(--on-dark);
  font-size: 17px;
  line-height: 1.6;
}
.creme-page .c-founding-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.creme-page .c-founding-side .c-num-list { font-size: 16px; gap: 12px; }

/* ── 11 Formular ────────────────────────────────────────────────────────── */

.creme-page .c-interest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 48px;
  align-items: start;
  padding-block: 96px;
}
.creme-page .c-interest-intro {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.creme-page .c-interest-intro h2 {
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.creme-page .c-interest-intro p { max-width: 440px; color: var(--ink-2); font-size: 17px; line-height: 1.6; }
.creme-page .c-form-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
}
.creme-page .c-form-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.creme-page .c-form-card small { color: var(--muted); font-size: 14px; font-weight: 400; }
.creme-page .c-form-card input[type="text"],
.creme-page .c-form-card input[type="email"],
.creme-page .c-form-card input[type="tel"],
.creme-page .c-form-card input:not([type]),
.creme-page .c-form-card select,
.creme-page .c-form-card textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-field);
  border-radius: 12px;
  background: var(--field);
  color: var(--ink);
  font-size: 15px;
}
.creme-page .c-form-card textarea { resize: vertical; }

.creme-page .c-form-card fieldset {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}
.creme-page .c-form-card legend {
  margin-bottom: 8px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

.creme-page .c-form-card details { padding-top: 14px; border-top: 1px solid var(--line-2); }
.creme-page .c-form-card summary {
  cursor: pointer;
  color: var(--forest);
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}
.creme-page .c-form-card summary::-webkit-details-marker { display: none; }
.creme-page .c-form-card summary small { color: var(--muted); font-weight: 400; }

.creme-page .c-form-card .c-consent {
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.creme-page .c-form-card .c-consent input { margin-top: 4px; }
/* #33 Der Absenden-Button ist eine Pille, keine Vollbreite-Leiste. */
.creme-page .c-form-card .c-btn[type="submit"] { align-self: flex-start; }
.creme-page .c-required-note { color: var(--muted); font-size: 13px; }

/* founding.js setzt className auf "founding-form-feedback is-success|is-error",
   ueberschreibt also jede andere Klasse. Der Name bleibt deshalb. */
.creme-page .founding-form-feedback:empty { margin-top: -18px; padding: 0; }
.creme-page .founding-form-feedback {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.creme-page .founding-form-feedback.is-success { font-weight: 700;
  background: var(--sage);
  color: var(--ink);
}
/* Coral faellt weg; dieses Rot ist auf Creme lesbar. */
.creme-page .founding-form-feedback.is-error {
  background: rgba(138, 42, 28, 0.08);
  color: #8a2a1c;
}

/* ── 12 FAQ ─────────────────────────────────────────────────────────────── */

.creme-page .c-faq-list {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 900px;
  border-top: 1px solid var(--line-2);
}
.creme-page .c-faq-list details { border-bottom: 1px solid var(--line-2); }
.creme-page .c-faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  list-style: none;
}
.creme-page .c-faq-list summary::-webkit-details-marker { display: none; }
.creme-page .c-faq-mark { color: var(--forest); font-size: 22px; font-weight: 400; line-height: 1; }
.creme-page .c-faq-mark::before { content: "+"; }
.creme-page .c-faq-list details[open] .c-faq-mark::before { content: "\2212"; }
.creme-page .c-faq-answer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  padding: 0 0 22px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.creme-page .c-site-foot { border-top: 1px solid rgba(16, 36, 26, 0.12); }
.creme-page .c-site-foot .c-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 36px;
  color: var(--muted);
  font-size: 13px;
}
.creme-page .c-site-foot nav { display: flex; flex-wrap: wrap; gap: 20px; }

/* ── Sekundaerer Button auf Hell (Hero, Standorte) ──────────────────────── */

.creme-page .c-btn-light { border: 1px solid rgba(27, 64, 41, 0.35); background: transparent; color: var(--forest); }
.creme-page .c-btn-light:hover { background: var(--beige); color: var(--ink); }

/* ── Preise: Teil des Workspace-Bands ───────────────────────────────────── */

.creme-page .c-price-table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.4; }
.creme-page .c-price-table th {
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 36, 26, 0.22);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}
.creme-page .c-price-table td { padding: 13px 0; border-bottom: 1px solid rgba(16, 36, 26, 0.12); vertical-align: top; color: var(--ink-2); }
.creme-page .c-price-table td:first-child { color: var(--ink); font-weight: 600; }
.creme-page .c-price-table th + th,
.creme-page .c-price-table td + td { padding-left: 16px; text-align: right; }
/* Die Zahlen bleiben einzeilig, die Produktnamen duerfen umbrechen. */
.creme-page .c-price-table td + td { white-space: nowrap; }
.creme-page .c-price-table td:nth-child(2) { color: var(--forest); font-weight: 700; }

/* ── Standorte ──────────────────────────────────────────────────────────── */

.creme-page .c-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 14px;
  align-items: start;
}
.creme-page .c-location {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 12px 12px 26px;
  border-radius: 22px;
  background: var(--beige);
}
/* Die Karte ist eine schematische Zeichnung im Verhaeltnis 3:2; ein 4:3-Ausschnitt
   wuerde die Beschriftungen am Rand abschneiden. */
.creme-page .c-location-map {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 16px;
  background: var(--sage);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.creme-page .c-location-map img { width: 100%; height: 100%; object-fit: cover; }
.creme-page .c-location-body { display: flex; flex-direction: column; gap: 16px; padding: 0 14px; }
.creme-page .c-location h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.creme-page .c-location p { color: var(--muted); font-size: 15px; line-height: 1.5; }
.creme-page .c-location .c-btn { align-self: flex-start; }
.creme-page .c-location-dim { border: 1px dashed rgba(16, 36, 26, 0.3); background: transparent; opacity: 0.72; }
.creme-page .c-location-dim .c-location-map { background: var(--beige); }
.creme-page .c-location-dim h3 { color: var(--ink-2); }
/* Status-System der Flaechen, in dieser Reihenfolge: geplant, besichtigbar,
   in Verhandlung, Abstimmung laeuft, unterschrieben. */
.creme-page .c-status-row { display: flex; flex-wrap: wrap; gap: 8px; }
.creme-page .c-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(27, 64, 41, 0.3);
  border-radius: 999px;
  background: var(--cream);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.creme-page .c-status-pill i { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--forest); }
.creme-page .c-status-open i { background: var(--leaf); box-shadow: 0 0 0 3px rgba(192, 240, 108, 0.4); }
.creme-page .c-status-planned i { box-sizing: border-box; width: 7px; height: 7px; border: 1.5px solid var(--forest); background: transparent; }

.creme-page .c-facts { display: flex; flex-direction: column; gap: 8px; color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.creme-page .c-facts li { display: flex; align-items: baseline; gap: 10px; }
.creme-page .c-facts i { position: relative; top: -1px; flex: none; width: 8px; height: 8px; border-radius: 2px; background: var(--leaf); }

/* ── Founding-Zaehler ───────────────────────────────────────────────────── */

.creme-page .c-seats { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }
.creme-page .c-seats-row { display: flex; flex-wrap: wrap; gap: 6px; }
.creme-page .c-seats-row i { box-sizing: border-box; width: 16px; height: 16px; border-radius: 5px; }
.creme-page .c-seats-row .is-taken { background: var(--leaf); }
.creme-page .c-seats-row .is-free { border: 1px solid rgba(246, 241, 232, 0.45); }
.creme-page .c-seats-text { color: var(--leaf); font-size: 14px; font-weight: 700; }
.creme-page .c-band-dark .c-num-list a { text-decoration: underline; text-underline-offset: 3px; }

/* ── Gruenderin: ausfuehrliche Laufbahn aufklappbar ─────────────────────── */

.creme-page .c-founder-more { border-bottom: 1px solid var(--line-2); }
.creme-page .c-founder-more summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  color: var(--forest);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.creme-page .c-founder-more summary::-webkit-details-marker { display: none; }
.creme-page .c-founder-more summary::after { content: "+"; font-size: 22px; font-weight: 400; line-height: 1; }
.creme-page .c-founder-more[open] summary::after { content: "\2212"; }
.creme-page .c-founder-more summary:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
.creme-page .c-founder-more-body { display: flex; flex-direction: column; gap: 14px; padding: 4px 0 10px; color: var(--ink-2); font-size: 16px; line-height: 1.6; }

/* ── Haltepunkte ────────────────────────────────────────────────────────── */

@media (max-width: 900px) {

  .creme-page .c-site-nav-c {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 28px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
  }
  .creme-page .c-site-nav-c.open { display: flex; }
  .creme-page .c-site-head .c-shell { position: relative; }
  .creme-page .c-interest-grid { padding-block: 72px; }
  .creme-page .c-hero { padding-block: 56px 48px; gap: 40px; }

}

@media (max-width: 620px) {
  /* Die Badge waere bei 390px breiter als der Viewport. Kleiner gesetzt bleibt
     die deutsche einzeilig; die laengere englische darf umbrechen, statt ueber
     den Rand zu laufen (Handoff will nowrap, aber auch kein Scrollen). */
  .creme-page .c-hero-badge { flex-wrap: wrap; font-size: 11px; letter-spacing: 0.1em; white-space: normal; }
  .creme-page .c-founder-aside,
  .creme-page .c-interest-intro { position: static; }
  .creme-page .c-form-card { padding: 22px; }
  .creme-page .c-cv li { grid-template-columns: 1fr; gap: 4px; }
  .creme-page .c-interest-grid { padding-block: 56px; }
}

/* ── /ki und /en/ai: Essay-Seiten in der Creme-Palette ──────────────────── */

.creme-page .c-essay { padding-block: 72px 96px; }
.creme-page .c-essay-head { max-width: 780px; }
.creme-page .c-essay-head h1 {
  margin: 16px 0 22px;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.creme-page .c-essay-head h1 em { color: var(--forest); font-style: normal; }
.creme-page .c-essay-lead {
  max-width: 640px;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.5;
  text-wrap: pretty;
}
.creme-page .c-essay-block {
  max-width: 780px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line-2);
}
.creme-page .c-essay-block h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.creme-page .c-essay-block p {
  margin: 0 0 16px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
}
.creme-page .c-essay-block p strong { color: var(--ink); }
.creme-page .c-essay-block a { color: var(--forest); font-weight: 700; }
.creme-page .c-essay-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 26px;
  margin-top: 30px;
}
.creme-page .c-essay-split h3,
.creme-page .c-essay-stack strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.creme-page .c-essay-split h3 { margin: 0 0 12px; color: var(--forest); }
.creme-page .c-essay-split ul,
.creme-page .c-essay-list-plain {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  list-style: disc;
}
.creme-page .c-essay-list-plain { margin-top: 6px; }
.creme-page .c-essay-stack { margin-top: 24px; }
.creme-page .c-essay-signature {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.creme-page .c-essay-signature span { color: var(--muted); font-weight: 400; }
.creme-page .c-essay-cta { margin-top: 48px; }

/* ── Impressum, Datenschutz und ihre englischen Fassungen ───────────────── */

/* Die Seiten haben keine Navigation: eine Kopfzeile mit Marke und
   Sprachwechsel reicht. Der Rechtstext der Datenschutzseite kommt aus einem
   fremden Iframe -- gestaltbar ist nur die Flaeche darum. */
.creme-page.c-legal-page { min-height: 100vh; background: var(--cream); }
.creme-page .c-legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.creme-page .c-legal-brand {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.creme-page .c-legal-language { color: var(--forest); font-size: 13px; font-weight: 600; }
.creme-page .c-legal-content {
  width: min(100% - 56px, 820px);
  margin: 0 auto;
  padding: clamp(48px, 9vw, 96px) 0;
}
.creme-page .c-legal-content h1 {
  margin: 0 0 42px;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.creme-page .c-legal-content h2 { margin: 42px 0 12px; font-size: 20px; font-weight: 700; }
.creme-page .c-legal-content h3 { margin: 28px 0 8px; font-size: 16px; font-weight: 700; }
.creme-page .c-legal-content p,
.creme-page .c-legal-content li {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
}
.creme-page .c-legal-content a { color: var(--forest); }
.creme-page .c-legal-card {
  margin: 0 0 28px;
  padding: 28px;
  border: 1px solid var(--line-2);
  border-radius: 22px;
  background: var(--beige);
}
.creme-page .c-legal-note { margin-top: 24px; color: var(--muted); font-size: 14px; }

/* ── Founding Portal in der Creme-Palette ───────────────────────────────── */

/* Die .portal-*-Regeln weiter oben bleiben, weil ihre Tokens jetzt auf die
   Creme-Werte zeigen. Hier nur, was die Zuordnung allein nicht loest:
   Ueberschriften brauchen Gewicht 700, seit --display kein Georgia mehr ist. */
.creme-page .portal-intro h1,
.creme-page .portal-card-head h2,
.creme-page .portal-group-title,
.creme-page .portal-propose h2 {
  font-weight: 700;
  letter-spacing: -0.03em;
}
.creme-page .portal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
  background: var(--forest);
}
.creme-page .portal-header .brand-lockup { color: var(--cream); }
.creme-page .portal-header .brand-lockup small { color: var(--leaf); opacity: 1; }
/* Die Creme-Basis setzt list-style: none an jedem ul. Im Portal tragen die
   Listen "Spricht dafuer" und "Offene Punkte" aber Aufzaehlungspunkte -- die
   alte Regel .portal-list ul hat dieselbe Spezifitaet und verliert, weil der
   Creme-Block spaeter in der Datei steht. */
.creme-page .portal-list ul {
  padding-left: 18px;
  list-style: disc;
}
/* .creme-page a setzt Forest -- auf der dunklen Portal-Kopfzeile waeren die
   Links sonst unsichtbar (gleiche Spezifitaet, spaetere Regel gewinnt). */
.creme-page .portal-nav a { color: var(--on-dark); font-weight: 500; }
.creme-page .portal-nav a:hover { color: var(--leaf); }
.creme-page .portal-nav a.is-current { color: var(--leaf); font-weight: 700; }

.brand-lockup { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; }
.brand-lockup svg { width: 34px; height: 34px; flex: 0 0 auto; }
.brand-lockup span { display: flex; flex-direction: column; line-height: 1; }
.brand-lockup b { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.brand-lockup small { margin-top: 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; opacity: 0.85; }

/* ── Audit-Korrekturen (Sept. 2026) ─────────────────────────────────────── */
/* Das alte html { scroll-padding-top: 100px } addierte sich mit dem
   scroll-margin-top der Sections zu 180px Luecke unter der Kopfzeile. */
html:has(body.creme-page) { scroll-padding-top: 0; }

@media (max-width: 900px) {

  /* Die feste CTA-Leiste verdeckte die letzte Footer-Zeile dauerhaft; der
     Fokus per Tastatur landete dahinter. */
  .creme-page .c-site-foot .c-shell { padding-bottom: 110px; }
  html:has(body.creme-page) { scroll-padding-bottom: 90px; }
  /* Touch-Ziele: Menue-Eintraege, Checkboxen und Footer-Links auf 44px. */
  .creme-page .c-site-nav-c a { padding-block: 8px; }

  .creme-page .c-site-foot nav a { padding-block: 10px; margin-block: -10px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   "Build"-Redesign (Sept. 2026): neue Seitenstruktur der Startseite.
   Alle Werte stammen aus dem Prototyp "TechGarden Build Creme.dc.html".
   Die frueheren Sections (Pillars, Tech-Karten, Pflanzenkarten, Kompass,
   Standortliste, Mobile-CTA) sind samt ihrer Regeln entfernt.
   ═══════════════════════════════════════════════════════════════════════════ */

.creme-page .c-shell { padding-inline: clamp(20px, 3vw, 28px); }
.creme-page .c-sec { padding-block: clamp(64px, 8vw, 96px); }

/* Kopfzeile: Pille und Menue-Knopf stehen rechts, die Nav dazwischen. */
.creme-page .c-site-head .c-shell { gap: 20px; padding-block: 14px; }
.creme-page .c-head-actions { display: flex; align-items: center; gap: 10px; }
.creme-page .c-menu-btn {
  display: none;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(16, 36, 26, 0.2);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* 01 Hero */
.creme-page .c-hero { padding-block: clamp(48px, 7vw, 88px) 72px; }
.creme-page .c-hero h1 { font-size: clamp(48px, 6vw, 96px); line-height: 0.96; }
.creme-page .c-hero-status { display: flex; align-items: flex-start; gap: 12px; max-width: 520px; color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.creme-page .c-hero-status i { flex: none; width: 8px; height: 8px; margin-top: 6px; border-radius: 50%; background: var(--grow); }
.creme-page .c-hero-status a { border-bottom: 1px solid rgba(27, 64, 41, 0.35); font-weight: 600; }
.creme-page .c-hero-media img { background: var(--beige); }

/* 03 Was ist TechGarden */
.creme-page .c-statement-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 32px;
  align-items: end;
}
.creme-page .c-statement-head h2 { font-size: clamp(40px, 4.8vw, 76px); font-weight: 700; line-height: 0.98; letter-spacing: -0.04em; text-wrap: balance; }
/* Der einzige Kursivsatz der Seite, das em bringt ihn selbst mit. */
.creme-page .c-statement-head h2 em { color: var(--grow); }
.creme-page .c-statement-side { display: flex; flex-direction: column; gap: 10px; max-width: 480px; }
.creme-page .c-statement-side p { color: var(--ink-2); font-size: 18px; line-height: 1.6; text-wrap: pretty; }
.creme-page .c-seed { color: var(--forest); font-size: 17px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.creme-page .c-was-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: 14px; }
.creme-page .c-was-card { display: flex; flex-direction: column; gap: 10px; padding: 26px; border: 1px solid var(--line-2); border-radius: 22px; }
.creme-page .c-was-card strong { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.creme-page .c-was-card span { color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.creme-page .c-was-card-dark { border-color: var(--forest); background: var(--forest); color: var(--cream); }
.creme-page .c-was-card-dark span { color: var(--on-dark); }

/* 04 Klein genug + Community-Programm */
.creme-page .c-klein {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 48px;
  align-items: center;
  padding-block: clamp(64px, 8vw, 88px) 44px;
}
.creme-page .c-klein figure { display: flex; flex-direction: column; gap: 10px; }
.creme-page .c-klein img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px; background: var(--beige); }
.creme-page .c-klein figcaption { color: var(--ink-2); }
.creme-page .c-klein-text { display: flex; flex-direction: column; gap: 20px; }
.creme-page .c-klein-text h2 { font-size: clamp(32px, 3.6vw, 50px); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
.creme-page .c-klein-intro { color: var(--ink); font-size: 17px; line-height: 1.6; text-wrap: pretty; }
.creme-page .c-events { display: flex; flex-direction: column; gap: 28px; padding-bottom: clamp(64px, 8vw, 88px); scroll-margin-top: 80px; }
.creme-page .c-event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 14px; }
.creme-page .c-event { display: flex; flex-direction: column; gap: 8px; padding: 26px; border-radius: 22px; background: var(--beige); }
.creme-page .c-event-kicker { color: var(--forest); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.creme-page .c-event h3 { font-size: 22px; font-weight: 700; }
.creme-page .c-event p { color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.creme-page .c-event-dark { background: var(--forest); color: var(--cream); }
.creme-page .c-event-dark .c-event-kicker { color: var(--leaf); }
.creme-page .c-event-dark p { color: var(--on-dark); }
.creme-page .c-events-note { max-width: 780px; padding-top: 24px; border-top: 1px solid var(--line-2); color: var(--ink-2); font-size: 16px; line-height: 1.6; text-wrap: pretty; }
.creme-page .c-events-note strong { color: var(--ink); }

/* 05 Der Unterschied, 06 AI-driven: identisches Zweispalten-Layout, kein Balken. */
.creme-page .c-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 32px 48px;
  align-items: start;
}
.creme-page .c-split-head,
.creme-page .c-sec-title { display: flex; flex-direction: column; gap: 14px; }
.creme-page .c-split-head h2,
.creme-page .c-sec-title h2,
.creme-page .c-loc-head h2 { font-size: clamp(32px, 3.6vw, 50px); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
.creme-page .c-accent-line { padding-top: 10px; font-size: clamp(19px, 1.9vw, 26px); font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; text-wrap: balance; }
.creme-page .c-split-text { display: flex; flex-direction: column; gap: 16px; color: var(--ink-2); font-size: 17px; line-height: 1.6; text-wrap: pretty; }

/* 07 Fuer wen */
.creme-page .c-who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 14px; }
.creme-page .c-who { display: flex; flex-direction: column; gap: 12px; padding: clamp(24px, 3vw, 32px); border-radius: 22px; background: var(--cream); }
.creme-page .c-who p { color: var(--ink-2); font-size: 17px; line-height: 1.6; text-wrap: pretty; }
.creme-page .c-who-line { max-width: 820px; font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; text-wrap: balance; }

/* 08 Gruenderin */
.creme-page .c-sec-founder { display: flex; flex-direction: column; gap: 48px; padding-block: clamp(56px, 8vw, 96px); }
.creme-page .c-founder-aside figure { background: var(--sage); }

.creme-page .c-signature span { font-size: 17px; font-weight: 800; }

/* 09 Preise: Tabelle mit Beschreibung und Anfrage-Link je Zeile. */
.creme-page .c-prices-sec { display: flex; flex-direction: column; gap: 36px; }
.creme-page .c-sec-lead { color: var(--ink-2); font-size: 16px; line-height: 1.55; }
.creme-page .c-table-wrap { overflow-x: auto; }
.creme-page .c-price-table { min-width: 520px; font-size: 16px; }
.creme-page .c-price-table th:last-child { text-align: right; }
.creme-page .c-price-table td { padding: 16px 0; color: var(--ink); font-weight: 400; }
.creme-page .c-price-table td:first-child strong { font-weight: 700; }
.creme-page .c-price-table td:first-child span { display: block; color: var(--muted); font-size: 14px; font-weight: 400; }
.creme-page .c-price-table td + td { padding-left: 16px; }
.creme-page .c-price-table td:nth-child(2) { color: var(--forest); font-size: 20px; font-weight: 700; }
.creme-page .c-price-table td:nth-child(3) { color: var(--ink-2); font-weight: 400; }
.creme-page .c-price-table td:nth-child(4) a { font-size: 14px; font-weight: 600; white-space: nowrap; }
.creme-page .c-prices-foot { display: flex; flex-direction: column; gap: 10px; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.creme-page .c-prices-foot strong { color: var(--ink); }

/* 10 Inklusive */
.creme-page .c-includes { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); gap: 12px 28px; font-size: 16px; line-height: 1.5; }
.creme-page .c-includes li { display: flex; align-items: baseline; gap: 10px; padding: 12px 0; border-bottom: 1px solid rgba(16, 36, 26, 0.12); }
.creme-page .c-includes i { position: relative; top: -1px; flex: none; width: 8px; height: 8px; border-radius: 2px; background: var(--leaf); }

/* 11 Standorte mit Founding-Panel */
.creme-page .c-loc-head { display: flex; flex-direction: column; gap: 16px; max-width: 900px; }
.creme-page .c-loc-wish { color: var(--ink); font-size: clamp(18px, 2vw, 23px); line-height: 1.55; text-wrap: pretty; }
.creme-page .c-loc-wish strong { color: var(--forest); }
.creme-page .c-loc-note { color: var(--muted); font-size: 14px; line-height: 1.5; }
.creme-page .c-founding-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 40px;
  align-items: center;
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 48px);
  border-radius: 28px;
  background: var(--forest);
  color: var(--cream);
  scroll-margin-top: 80px;
}
.creme-page .c-founding-panel .c-founding-intro { gap: 18px; }
@media (min-width: 900px) {
  .creme-page .c-founding-panel { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
}
.creme-page .c-founding-panel .c-kicker { color: var(--leaf); }
/* Kein balance: sonst landen "für DICH." oder "by me." allein in einer Zeile.
   Der Text selbst haelt die Paare mit geschuetzten Leerzeichen zusammen. */
.creme-page .c-founding-panel h2 { font-size: clamp(34px, 3.4vw, 48px); font-weight: 700; line-height: 1.02; letter-spacing: -0.03em; }
.creme-page .c-founding-panel h2 .c-accent { color: var(--leaf); }
.creme-page .c-founding-panel p { max-width: 520px; color: rgba(246, 241, 232, 0.9); font-size: 17px; line-height: 1.6; }
/* Vorbehalt unter den Zusagen: leiser als der Text, aber lesbar (Creme 70 % auf Forest ist noch 4,5:1). */
.creme-page .c-founding-panel .c-founding-fine { color: rgba(246, 241, 232, 0.7); font-size: 14px; line-height: 1.5; }

/* 12 FAQ: Kopf links, Liste rechts. */
.creme-page .c-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 32px 48px;
  align-items: start;
}
.creme-page .c-faq-grid .c-faq-list { max-width: none; }

/* 13 Anfrage */
.creme-page .c-band-last { border-bottom: 0; }
.creme-page .c-interest-grid { padding-block: clamp(64px, 8vw, 96px); }
.creme-page .c-interest-intro { position: static; }
.creme-page .c-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 14px; }
.creme-page .c-form-card { gap: 16px; padding: clamp(22px, 3vw, 32px); min-width: 0; }
.creme-page .c-form-card input[type="number"] {
  box-sizing: border-box;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-field);
  border-radius: 12px;
  background: var(--field);
  color: var(--ink);
  font-size: 15px;
}
.creme-page .c-form-card select { font-weight: 400; }
.creme-page .c-opt { color: var(--muted); font-weight: 400; }
.creme-page .c-form-card[hidden] { display: none; }
.creme-page .c-form-success { display: flex; flex-direction: column; gap: 12px; padding: 32px; border-radius: 24px; background: var(--sage); }
.creme-page .c-form-success[hidden] { display: none; }
.creme-page .c-form-success h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.creme-page .c-form-success p { color: var(--ink-2); font-size: 17px; line-height: 1.6; }

/* Schlussband */
.creme-page .c-outro-inner { display: flex; flex-direction: column; gap: 28px; padding-block: clamp(72px, 9vw, 120px); }
.creme-page .c-outro h2 { font-size: clamp(44px, 6.4vw, 96px); font-weight: 700; line-height: 0.96; letter-spacing: -0.04em; }
.creme-page .c-outro h2 .c-accent { color: var(--leaf); }
.creme-page .c-outro-lines { display: flex; flex-direction: column; gap: 4px; color: var(--on-dark); font-size: clamp(18px, 1.8vw, 21px); line-height: 1.5; }
.creme-page .c-outro-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding-top: 8px; }
.creme-page .c-outro-claim { color: var(--leaf); font-size: 14px; font-weight: 700; letter-spacing: 0.08em; }

@media (max-width: 900px) {
  .creme-page .c-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .creme-page .c-nav-cta-c { padding: 10px 14px; }
  /* Aufgeklapptes Menue: senkrechte Linkliste mit Trennlinien. */
  .creme-page .c-site-nav-c { gap: 0; padding: 4px clamp(20px, 3vw, 28px) 20px; font-size: 18px; font-weight: 600; }
  .creme-page .c-site-nav-c a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .creme-page .c-site-nav-c a:last-child { border-bottom: 0; }
  /* Die feste CTA-Leiste gibt es nicht mehr; die Kopfzeilen-Pille bleibt sichtbar. */
  .creme-page .c-site-foot .c-shell { padding-bottom: 36px; }
}

/* Hinweiszeile unter dem Formular-Intro: .c-interest-intro p ist spezifischer als .c-footnote. */
.creme-page .c-interest-intro p.c-footnote { color: var(--muted); font-size: 14px; }

/* Der Prototyp setzt an Karten-Titeln, Labels, Knoepfen und Badges keine
   Zeilenhoehe; sie sollen nicht die 1,55 des Fliesstexts erben. */
.creme-page .c-band h3,
.creme-page .c-sec h3,
.creme-page .c-form-success h3,
.creme-page .c-was-card strong,
.creme-page .c-faq-list summary,
.creme-page .c-form-card label,
.creme-page .c-hero-badge,
.creme-page .c-ticker-track span,
.creme-page .c-btn,
.creme-page .c-nav-cta-c,
.creme-page .c-menu-btn { line-height: 1.2; }

/* Unter 360px reicht die Kopfzeile sonst ueber den rechten Rand und der
   Menue-Knopf ist nicht mehr erreichbar (body verbirgt overflow-x). */
@media (max-width: 380px) {
  .creme-page .c-site-head .c-shell { gap: 4px; }
  .creme-page .c-head-actions { gap: 6px; }
  .creme-page .c-nav-cta-c { padding: 9px 10px; font-size: 13px; }
  .creme-page .c-menu-btn { min-width: 38px; height: 38px; padding: 0 8px; font-size: 12px; }
  .creme-page .c-brand-type b { font-size: 15px; }
  .creme-page .c-brand-type span { font-size: 8px; }
  /* Lange Knopftexte ("Founding Member werden") ragen sonst aus dem Panel;
     die Pille traegt zwei Zeilen problemlos. */
  .creme-page .c-btn { white-space: normal; }
}
/* Der Hero-Badge braucht 290px in einer Zeile; bei 320px sind es 280. Engere
   Laufweite statt Umbruch, sonst steht der Punkt allein in der ersten Zeile. */
@media (max-width: 340px) {
  .creme-page .c-hero-badge { letter-spacing: 0.05em; }
}

/* Preise je Standort: die Zeile "Preise fuer ..." und der Umschalter werden vom
   Worker aus dem Katalog gefuellt, founding.js schaltet um. */
.creme-page .c-price-for { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 20px; margin-top: -12px; }
.creme-page .c-price-for p { color: var(--ink-2); font-size: 16px; }
.creme-page .c-price-for strong { color: var(--forest); }
.creme-page .c-loc-switch { display: flex; flex-wrap: wrap; gap: 8px; }
.creme-page .c-loc-chip {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(27, 64, 41, 0.3);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}
.creme-page .c-loc-chip:hover { border-color: var(--forest); }
.creme-page .c-loc-chip[aria-pressed="true"] { background: var(--forest); border-color: var(--forest); color: var(--cream); }
/* Beide Standortkarten tragen dieselben zwei Knoepfe in derselben Reihenfolge. */
.creme-page .c-location-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
