:root {
  --c2-ink: #11120f;
  --c2-paper: #f3f0e8;
  --c2-white: #fffef9;
  --c2-blue: #315cff;
  --c2-blue-dark: #1737b7;
  --c2-acid: #d9ff43;
  --c2-orange: #ff5a2d;
  --c2-cyan: #71d9d0;
  --c2-muted: #62645d;
  --c2-line: rgba(17, 18, 15, 0.22);
  --c2-max: 1440px;
}

.cohort2-page {
  background: var(--c2-paper);
  color: var(--c2-ink);
}

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

.cohort2-page a:not(.c2-button) {
  color: inherit;
}

.c2-shell {
  width: min(100%, var(--c2-max));
  margin-inline: auto;
  overflow: hidden;
  border-inline: 1px solid var(--c2-line);
}

.c2-kicker,
.c2-section-marker p,
.c2-hero-topline,
.c2-stage-index em {
  margin: 0;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.c2-section-lead {
  max-width: 65ch;
  margin: 1.5rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.c2-button {
  min-height: 50px;
  padding: 0.8rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid currentColor;
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 170ms ease, background-color 170ms ease, transform 170ms ease;
}

.c2-button:hover {
  background: var(--c2-ink);
  color: #fff;
  transform: translateY(-2px);
}

.c2-button-primary {
  border-color: var(--c2-acid);
  background: var(--c2-acid);
  color: var(--c2-ink);
}

.c2-button-dark {
  border-color: var(--c2-ink);
  background: var(--c2-ink);
  color: #fff;
}

.c2-button-dark:hover {
  background: #fff;
  color: var(--c2-ink);
}

.c2-button:focus-visible,
.c2-layer-controls button:focus-visible,
.c2-faq summary:focus-visible,
.c2-hero-topline a:focus-visible {
  outline: 3px solid var(--c2-orange);
  outline-offset: 4px;
}

.c2-hero {
  position: relative;
  min-height: min(900px, calc(100vh - 56px));
  padding: clamp(22px, 4vw, 54px) clamp(18px, 4vw, 64px) clamp(34px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(17, 18, 15, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 15, 0.08) 1px, transparent 1px),
    var(--c2-blue);
  background-size: 56px 56px;
  color: #fff;
}

.c2-hero::before {
  content: "";
  position: absolute;
  right: clamp(-220px, -12vw, -80px);
  top: clamp(80px, 11vw, 150px);
  width: clamp(320px, 45vw, 720px);
  aspect-ratio: 1;
  border: clamp(26px, 4vw, 62px) solid rgba(217, 255, 67, 0.94);
  border-radius: 50%;
  pointer-events: none;
}

.c2-hero-topline {
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.c2-hero-topline a {
  text-underline-offset: 0.25em;
}

.c2-hero-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  margin-top: clamp(50px, 8vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.6fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: end;
}

.c2-hero-copy h1 {
  max-width: 1080px;
  margin: 0.45rem 0 0;
  font-size: clamp(3.65rem, 10.2vw, 9.65rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.81;
}

.c2-hero-copy h1 span {
  color: var(--c2-acid);
}

.c2-lead {
  max-width: 61ch;
  margin: 2rem 0 0;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.c2-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.c2-hero-note {
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid #fff;
  background: rgba(17, 18, 15, 0.94);
  color: #fff;
}

.c2-hero-note > p {
  margin: 0;
  color: var(--c2-acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.c2-hero-note strong {
  margin: 1.15rem 0 1.5rem;
  display: block;
  font-size: clamp(1.65rem, 2.7vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.c2-hero-note span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.c2-coordinate-line {
  position: relative;
  z-index: 1;
  margin-top: clamp(40px, 6vw, 82px);
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.c2-coordinate-line i {
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.c2-outcome,
.c2-why,
.c2-manifest,
.c2-program,
.c2-directions,
.c2-format,
.c2-faq {
  padding: clamp(64px, 9vw, 130px) clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--c2-ink);
}

.c2-section-marker {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.c2-section-marker > span {
  min-width: 2.3rem;
  padding: 0.35rem 0.28rem;
  border: 1px solid currentColor;
  font-size: 0.67rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.c2-section-marker p {
  padding-top: 0.25rem;
}

.c2-section-marker-light {
  color: #fff;
}

.c2-outcome {
  display: grid;
  grid-template-columns: minmax(120px, 0.25fr) minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(30px, 5vw, 80px);
  background: var(--c2-ink);
  color: #fff;
}

.c2-outcome h2,
.c2-section-head h2,
.c2-maplab h2,
.c2-beta h2,
.c2-showcase h2,
.c2-cta h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(2.75rem, 6.5vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.c2-outcome-main {
  min-width: 0;
}

.c2-outcome h2 {
  font-size: clamp(2.5rem, 4.8vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-wrap: balance;
}

.c2-outcome .c2-section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.c2-artifact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.c2-artifact-list li {
  padding: 0.85rem 0;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.c2-artifact-list span {
  color: var(--c2-acid);
  font-size: 0.75rem;
  font-weight: 900;
}

.c2-artifact-list p {
  margin: 0;
  line-height: 1.45;
}

.c2-section-head {
  margin-bottom: clamp(40px, 7vw, 88px);
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
}

.c2-section-head h2 {
  max-width: 1040px;
}

.c2-why {
  background: var(--c2-acid);
}

.c2-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c2-ink);
  border-left: 1px solid var(--c2-ink);
}

.c2-why-grid article {
  min-height: 310px;
  padding: clamp(22px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--c2-ink);
  border-bottom: 1px solid var(--c2-ink);
}

.c2-why-grid article > span {
  font-size: 0.7rem;
  font-weight: 900;
}

.c2-why-grid h3,
.c2-direction-grid h3,
.c2-format-flow h3 {
  margin: auto 0 0.8rem;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.c2-why-grid p {
  margin: 0;
  line-height: 1.5;
}

.c2-manifest {
  background: var(--c2-paper);
}

.c2-manifest-head {
  margin-bottom: clamp(36px, 6vw, 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}

.c2-manifest-head h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(2.55rem, 6vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.c2-manifest-head > p {
  max-width: 52ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.58;
}

.c2-manifest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 22px);
}

.c2-manifest-grid figure {
  min-width: 0;
  margin: 0;
}

.c2-manifest-grid a {
  display: block;
  border: 1px solid var(--c2-ink);
  background: var(--c2-white);
  overflow: hidden;
}

.c2-manifest-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
}

.c2-manifest-grid a:hover img {
  filter: contrast(1.03);
  transform: scale(1.012);
}

.c2-manifest-grid figcaption {
  padding-top: 0.8rem;
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 0.45rem;
}

.c2-manifest-grid figcaption span {
  color: var(--c2-blue);
  font-size: 0.65rem;
  font-weight: 900;
}

.c2-manifest-grid figcaption p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.38;
}

.c2-program {
  background: var(--c2-paper);
}

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

.c2-stage-list > li {
  padding: clamp(22px, 3vw, 38px) 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(260px, 0.8fr) minmax(220px, 0.55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  border-bottom: 1px solid var(--c2-ink);
}

.c2-stage-index {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.c2-stage-index span {
  color: var(--c2-blue);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.c2-stage-index em {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.c2-stage-copy h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.c2-stage-copy p,
.c2-stage-result {
  margin: 0;
  line-height: 1.55;
}

.c2-stage-result {
  padding-left: 1rem;
  border-left: 4px solid var(--c2-acid);
}

.c2-stage-result b {
  margin-bottom: 0.4rem;
  display: block;
  color: var(--c2-muted);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.c2-directions {
  background: var(--c2-white);
}

.c2-direction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--c2-ink);
  border-left: 1px solid var(--c2-ink);
}

.c2-direction-grid article {
  min-height: 330px;
  padding: clamp(22px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--c2-ink);
  border-bottom: 1px solid var(--c2-ink);
  transition: color 170ms ease, background-color 170ms ease;
}

.c2-direction-grid article:hover {
  background: var(--c2-blue);
  color: #fff;
}

.c2-direction-grid article > span {
  font-size: 0.68rem;
  font-weight: 900;
}

.c2-direction-grid p {
  margin: 0;
  line-height: 1.5;
}

.c2-direction-grid small {
  margin-top: 1.3rem;
  color: var(--c2-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.c2-direction-grid article:hover small {
  color: var(--c2-acid);
}

.c2-maplab {
  padding: clamp(64px, 9vw, 130px) clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  background: var(--c2-blue);
  color: #fff;
  border-bottom: 1px solid var(--c2-ink);
}

.c2-maplab-copy > .c2-kicker {
  margin-top: clamp(42px, 6vw, 76px);
  color: var(--c2-acid);
}

.c2-maplab-copy > p:not(.c2-kicker):not(.c2-map-status) {
  max-width: 55ch;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.58;
}

.c2-layer-controls {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.c2-layer-controls button {
  min-height: 48px;
  padding: 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.c2-layer-controls button[aria-pressed="true"] {
  background: var(--c2-acid);
  color: var(--c2-ink);
}

.c2-swatch {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.c2-swatch-streets { background: #f4f1e8; }
.c2-swatch-routes { background: var(--c2-orange); }
.c2-swatch-activity { background: #ffcf32; }
.c2-swatch-green { background: #61d17d; }

.c2-map-status {
  min-height: 1.35em;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
}

.c2-map-frame {
  border: 1px solid var(--c2-ink);
  background: var(--c2-paper);
  box-shadow: 18px 18px 0 var(--c2-ink);
  color: var(--c2-ink);
}

.c2-map-caption {
  padding: 0.75rem 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--c2-ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c2-map-caption b {
  white-space: nowrap;
}

.c2-map-caption i {
  font-style: normal;
}

.c2-map {
  width: 100%;
  height: auto;
  display: block;
}

.c2-map [hidden] {
  display: none;
}

.c2-map-block {
  fill: #e4e0d4;
  stroke: #aeaba2;
  stroke-width: 2;
}

.c2-map-street {
  fill: none;
  stroke: #fff;
  stroke-width: 22;
  stroke-linejoin: round;
}

.c2-map-local {
  fill: none;
  stroke: #fff;
  stroke-width: 9;
}

.c2-map-green {
  fill: #81df8f;
  opacity: 0.72;
}

.c2-map-tree {
  fill: #29a955;
  opacity: 0.72;
}

.c2-map-heat {
  fill: #ffcf32;
  opacity: 0.34;
}

.c2-map-heat-two { fill: var(--c2-orange); }
.c2-map-heat-three { fill: #ff8fc7; }

.c2-map-point {
  fill: var(--c2-ink);
  stroke: #fff;
  stroke-width: 3;
}

.c2-map-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 10;
}

.c2-map-route-a {
  stroke: var(--c2-orange);
}

.c2-map-route-b {
  stroke: var(--c2-blue);
  stroke-dasharray: 7 17;
}

.c2-map-stop {
  fill: #fff;
  stroke: var(--c2-orange);
  stroke-width: 5;
}

.c2-map-scale {
  padding: 0 0.9rem 0.85rem;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--c2-muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c2-map-scale i {
  width: 72px;
  height: 6px;
  display: inline-block;
  border-inline: 1px solid var(--c2-ink);
  border-bottom: 1px solid var(--c2-ink);
}

.c2-beta {
  padding: clamp(64px, 9vw, 130px) clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 100px);
  border-bottom: 1px solid var(--c2-ink);
  background: var(--c2-orange);
}

.c2-beta h2 {
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-wrap: balance;
}

.c2-beta-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.c2-beta-heading > p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.c2-beta-badge {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--c2-ink);
  background: var(--c2-acid);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.c2-beta .c2-section-lead {
  max-width: 68ch;
}

.c2-beta-notice {
  max-width: 760px;
  margin: 2rem 0;
  padding: 1.2rem;
  border: 1px solid var(--c2-ink);
  background: rgba(255, 255, 255, 0.5);
}

.c2-beta-notice b {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.c2-beta-notice p {
  margin: 0.5rem 0 0;
  line-height: 1.55;
}

.c2-format {
  background: var(--c2-paper);
}

.c2-format-flow {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  counter-reset: c2-format;
}

.c2-format-flow li {
  position: relative;
  min-height: 350px;
  padding: clamp(22px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c2-ink);
  border-right: 0;
}

.c2-format-flow li:last-child {
  border-right: 1px solid var(--c2-ink);
}

.c2-format-flow li::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--c2-ink);
  border-radius: 50%;
  background: var(--c2-acid);
  font-weight: 900;
  transform: translate(50%, -50%);
}

.c2-format-flow li:last-child::after {
  content: "↻";
  right: 18px;
  bottom: 18px;
  top: auto;
  transform: none;
}

.c2-format-flow li > span {
  font-size: 0.7rem;
  font-weight: 900;
}

.c2-format-flow p {
  margin: 0;
  line-height: 1.5;
}

.c2-showcase {
  padding: clamp(64px, 9vw, 130px) clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(240px, 0.45fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 5vw, 76px);
  border-bottom: 1px solid var(--c2-ink);
  background: var(--c2-ink);
  color: #fff;
}

.c2-showcase-copy,
.c2-showcase-fields,
.c2-showcase-placeholder {
  min-width: 0;
}

.c2-showcase h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-wrap: balance;
}

.c2-showcase-copy > .c2-kicker {
  margin-top: clamp(40px, 5vw, 70px);
  color: var(--c2-acid);
}

.c2-showcase-copy > p:last-child {
  max-width: 58ch;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.c2-showcase-fields {
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.c2-showcase-fields li {
  padding: 0.8rem 0;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.c2-showcase-fields span {
  color: var(--c2-acid);
  font-size: 0.66rem;
  font-weight: 900;
}

.c2-showcase-fields p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.c2-showcase-placeholder {
  align-self: center;
  display: grid;
  gap: 0.65rem;
  transform: rotate(2deg);
}

.c2-showcase-placeholder article {
  padding: 0.65rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: #252720;
}

.c2-showcase-placeholder i {
  grid-row: 1 / 3;
  min-height: 72px;
  background:
    radial-gradient(circle at 68% 35%, var(--c2-orange) 0 7px, transparent 8px),
    linear-gradient(28deg, transparent 46%, var(--c2-blue) 47% 53%, transparent 54%),
    repeating-linear-gradient(90deg, #d7d3c8 0 10px, #f3f0e8 11px 18px);
}

.c2-showcase-placeholder span {
  color: var(--c2-acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c2-showcase-placeholder b {
  align-self: end;
  font-size: 0.9rem;
}

.c2-faq {
  background: var(--c2-white);
}

.c2-faq-list {
  border-top: 1px solid var(--c2-ink);
}

.c2-faq details {
  border-bottom: 1px solid var(--c2-ink);
}

.c2-faq summary {
  min-height: 78px;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 3rem 1fr 2rem;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.c2-faq summary::-webkit-details-marker {
  display: none;
}

.c2-faq summary > span {
  color: var(--c2-blue);
  font-size: 0.7rem;
  font-weight: 900;
}

.c2-faq summary b {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
}

.c2-faq summary i {
  position: relative;
  width: 28px;
  height: 28px;
  display: block;
  border: 1px solid var(--c2-ink);
  border-radius: 50%;
}

.c2-faq summary i::before,
.c2-faq summary i::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 13px;
  height: 1px;
  background: var(--c2-ink);
}

.c2-faq summary i::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.c2-faq details[open] summary i::after {
  transform: rotate(0deg);
}

.c2-faq details > p {
  max-width: 72ch;
  margin: 0 3rem 1.5rem 4rem;
  line-height: 1.6;
}

.c2-cta {
  position: relative;
  padding: clamp(78px, 12vw, 170px) clamp(18px, 7vw, 110px);
  overflow: hidden;
  background: var(--c2-acid);
  text-align: center;
}

.c2-cta::before,
.c2-cta::after {
  content: "";
  position: absolute;
  width: clamp(220px, 28vw, 430px);
  aspect-ratio: 1;
  border: clamp(18px, 3vw, 46px) solid var(--c2-blue);
  border-radius: 50%;
  pointer-events: none;
}

.c2-cta::before {
  left: -13%;
  bottom: -45%;
}

.c2-cta::after {
  right: -15%;
  top: -45%;
}

.c2-cta > * {
  position: relative;
  z-index: 1;
}

.c2-cta h2 {
  margin-inline: auto;
}

.c2-cta > p:not(.c2-kicker) {
  max-width: 54ch;
  margin: 1.6rem auto 2rem;
  font-size: 1.08rem;
  line-height: 1.55;
}

@media (max-width: 1280px) {
  .c2-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  }

  .c2-showcase-placeholder {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: none;
  }
}

@media (max-width: 1060px) {
  .c2-hero-grid,
  .c2-maplab {
    grid-template-columns: 1fr;
  }

  .c2-hero-note {
    max-width: 580px;
  }

  .c2-outcome {
    grid-template-columns: minmax(120px, 0.3fr) 1fr;
  }

  .c2-outcome .c2-artifact-list {
    grid-column: 2;
  }

  .c2-why-grid,
  .c2-format-flow {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .c2-manifest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }

  .c2-format-flow li:nth-child(2) {
    border-right: 1px solid var(--c2-ink);
  }

  .c2-format-flow li:nth-child(2)::after {
    content: "↓";
    right: 18px;
    top: auto;
    bottom: 0;
    transform: translateY(50%);
  }

  .c2-showcase {
    grid-template-columns: minmax(280px, 1fr) minmax(240px, 0.7fr);
  }

  .c2-showcase-placeholder {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    transform: none;
  }
}

@media (max-width: 760px) {
  .c2-shell {
    border-inline: 0;
  }

  .c2-hero {
    min-height: 0;
  }

  .c2-hero::before {
    width: 310px;
    right: -190px;
    top: 130px;
    border-width: 30px;
  }

  .c2-hero-topline {
    align-items: flex-start;
  }

  .c2-hero-topline a {
    max-width: 130px;
    text-align: right;
  }

  .c2-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 5.6rem);
  }

  .c2-coordinate-line {
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
  }

  .c2-coordinate-line i {
    display: none;
  }

  .c2-outcome,
  .c2-section-head,
  .c2-manifest-head,
  .c2-beta,
  .c2-showcase {
    grid-template-columns: 1fr;
  }

  .c2-outcome .c2-artifact-list,
  .c2-showcase-placeholder {
    grid-column: auto;
  }

  .c2-why-grid,
  .c2-direction-grid,
  .c2-format-flow,
  .c2-showcase-placeholder {
    grid-template-columns: 1fr;
  }

  .c2-why-grid article,
  .c2-direction-grid article,
  .c2-format-flow li {
    min-height: 250px;
  }

  .c2-stage-list > li {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .c2-stage-index em {
    writing-mode: initial;
    transform: none;
  }

  .c2-stage-result {
    margin-left: 0;
  }

  .c2-format-flow li,
  .c2-format-flow li:nth-child(2) {
    border-right: 1px solid var(--c2-ink);
    border-bottom: 0;
  }

  .c2-format-flow li:last-child {
    border-bottom: 1px solid var(--c2-ink);
  }

  .c2-format-flow li::after,
  .c2-format-flow li:nth-child(2)::after {
    content: "↓";
    top: auto;
    right: 18px;
    bottom: 0;
    transform: translateY(50%);
  }

  .c2-format-flow li:last-child::after {
    content: "↻";
    bottom: 18px;
    transform: none;
  }

  .c2-map-frame {
    box-shadow: 10px 10px 0 var(--c2-ink);
  }

  .c2-beta-heading {
    flex-direction: row;
    align-items: center;
  }

  .c2-showcase-placeholder article {
    grid-template-columns: 72px 1fr;
  }

  .c2-faq summary {
    grid-template-columns: 2rem 1fr 1.8rem;
    gap: 0.65rem;
  }

  .c2-faq details > p {
    margin-left: 2.65rem;
    margin-right: 0;
  }
}

@media (max-width: 460px) {
  .c2-actions,
  .c2-actions .c2-button,
  .c2-layer-controls {
    width: 100%;
  }

  .c2-actions .c2-button {
    display: flex;
  }

  .c2-layer-controls {
    grid-template-columns: 1fr;
  }

  .c2-manifest-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .c2-map-caption {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

@media (forced-colors: active) {
  .c2-map-block,
  .c2-map-green,
  .c2-map-heat,
  .c2-showcase-placeholder i {
    forced-color-adjust: none;
  }
}
