:root {
  font-family: Inter, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #11110f;
  background: #f4f1e8;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #11110f;
  --paper: #f4f1e8;
  --paper-strong: #fffaf0;
  --muted: rgba(17, 17, 15, 0.62);
  --line: rgba(17, 17, 15, 0.16);
  --line-strong: rgba(17, 17, 15, 0.34);
  --charcoal: #1f211d;
  --field: #59614c;
  --clay: #b5522f;
  --sky: #8ca1a7;
  --gold: #c2a258;
  --display-title: clamp(34px, 3.45vw, 58px);
  --section-title: clamp(32px, 3.2vw, 54px);
  --compact-title: clamp(24px, 2.2vw, 34px);
  --label-text: clamp(14px, 1.05vw, 17px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
  letter-spacing: 0;
}

h1,
h2 {
  text-wrap: balance;
}

.eyebrow {
  margin: 0;
  color: var(--clay);
  font-size: var(--label-text);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 70px;
  padding: 12px clamp(16px, 4vw, 56px);
  color: var(--paper-strong);
  background: rgba(17, 17, 15, 0.94);
  border-bottom: 1px solid rgba(244, 241, 232, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 188px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(13px, 2.3vw, 34px);
  overflow-x: auto;
  scrollbar-width: none;
  color: rgba(244, 241, 232, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  white-space: nowrap;
}

.language-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(244, 241, 232, 0.2);
}

.language-switch button {
  border: 0;
  padding: 7px 9px;
  color: rgba(244, 241, 232, 0.7);
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--ink);
  background: var(--paper-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.button-light {
  color: var(--ink);
  background: var(--paper-strong);
  border-color: var(--paper-strong);
}

.button-primary {
  color: var(--paper-strong);
  background: var(--clay);
  border-color: var(--clay);
}

.button-ghost {
  color: var(--paper-strong);
  background: rgba(17, 17, 15, 0.2);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.hero-platform {
  position: relative;
  min-height: calc(90vh - 70px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper-strong);
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-media img {
  filter: saturate(0.86) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(17, 17, 15, 0.12), rgba(17, 17, 15, 0.92)),
    linear-gradient(90deg, rgba(17, 17, 15, 0.82), rgba(17, 17, 15, 0.2) 56%, rgba(17, 17, 15, 0.72));
}

.hero-topline {
  position: absolute;
  top: clamp(24px, 5vw, 58px);
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(244, 241, 232, 0.3);
}

.hero-topline img {
  display: none;
}

.hero-topline span {
  justify-self: end;
  color: rgba(244, 241, 232, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(860px, 72vw);
  padding: 0 clamp(18px, 5vw, 72px) clamp(44px, 7vw, 92px);
}

.hero-copy h1 {
  margin: 16px 0 26px;
  color: var(--paper-strong);
  max-width: 820px;
  font-size: clamp(34px, 3.45vw, 58px);
  line-height: 1.06;
}

.hero-copy h1 span {
  display: block;
}

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

.hero-index {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(44px, 7vw, 92px);
  z-index: 2;
  width: min(342px, 28vw);
  border-top: 1px solid rgba(244, 241, 232, 0.34);
}

.hero-index a {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(244, 241, 232, 0.22);
}

.hero-index strong {
  font-size: 18px;
  text-transform: uppercase;
}

.hero-index span {
  color: rgba(244, 241, 232, 0.62);
  font-size: 13px;
}

.program-board,
.agency-section,
.brand-matrix,
.platform-map,
.ecosystem-section,
.cooperation-section,
.event-ladder,
.phase-system,
.why-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.program-board {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(320px, 0.44fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  display: grid;
  gap: 16px;
  align-self: start;
}

.section-kicker h2,
.index-copy h2,
.connect-section h2,
.community-copy h2,
.case-heading h2,
.feature-copy h2,
.section-heading h2,
.event-ladder h2,
.why-copy h2,
.journey-strip h3,
.contact h2 {
  margin: 0;
  max-width: 820px;
  font-size: var(--display-title);
  line-height: 1.06;
}

.program-lead {
  align-self: start;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.5;
}

.program-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.program-card {
  display: grid;
  grid-template-rows: minmax(260px, 30vw) auto;
  min-height: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.program-card > a {
  display: block;
  min-height: 0;
  overflow: hidden;
}

.program-card figure {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.program-card-copy {
  display: grid;
  align-content: end;
  min-height: 178px;
  padding: 20px;
}

.program-card-copy span,
.agency-list span,
.case-card span {
  color: var(--clay);
  font-size: var(--label-text);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.program-card-copy h3 {
  margin: 18px 0 6px;
  font-size: var(--compact-title);
  line-height: 1.02;
}

.program-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.connect-section {
  display: grid;
  grid-template-columns: minmax(150px, 0.18fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.connect-logo {
  width: min(190px, 42vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  align-self: start;
  padding: 28px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.connect-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.connect-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.connect-body p {
  margin: 0;
  padding-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.45;
}

.platform-map {
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 12px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.platform-visual-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.52fr) minmax(220px, 0.52fr);
  gap: 12px;
  margin: 38px 0 12px;
}

.platform-visual {
  min-height: clamp(220px, 27vw, 460px);
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.platform-visual-2,
.platform-visual-3 {
  min-height: clamp(220px, 27vw, 460px);
}

.platform-visual-1 img {
  object-position: center 68%;
}

.platform-visual-2 img {
  object-position: center 42%;
}

.platform-visual-3 img {
  object-position: center 56%;
}

.platform-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform-grid span,
.ecosystem-flow span,
.phase-grid span,
.ladder-list span {
  color: var(--clay);
  font-size: var(--label-text);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-grid h3 {
  margin: 0;
  font-size: var(--compact-title);
  line-height: 1.05;
}

.platform-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.index-section,
.community-feature,
.space-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: 0;
}

.index-section {
  color: var(--paper-strong);
  background: var(--charcoal);
}

.index-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(210px, 0.42fr);
  gap: 12px;
  min-height: 620px;
  padding: 12px;
  overflow: hidden;
  background: var(--ink);
}

.visual-main,
.visual-stack {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.visual-main img {
  object-position: center;
}

.visual-stack {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
}

.visual-stack > img {
  object-position: center;
}

.retro-logo-card {
  display: grid;
  place-items: center;
  min-height: 126px;
  padding: 20px;
  background: var(--paper-strong);
}

.retro-logo {
  width: min(300px, 100%);
  height: auto;
  object-fit: contain;
}

.index-copy,
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 88px);
}

.index-copy h2 {
  color: var(--paper-strong);
  margin: 14px 0 28px;
}

.line-list {
  display: grid;
  border-top: 1px solid rgba(244, 241, 232, 0.2);
}

.line-list article {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(244, 241, 232, 0.14);
}

.line-list span {
  color: var(--gold);
  font-size: var(--label-text);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.line-list h3 {
  margin: 0 0 8px;
  font-size: var(--compact-title);
}

.line-list p {
  margin: 0;
  color: rgba(244, 241, 232, 0.68);
  line-height: 1.5;
}

.agency-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.agency-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.agency-list article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.agency-list h3 {
  margin: 0;
  font-size: var(--compact-title);
  line-height: 1.05;
}

.agency-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.ecosystem-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(28px, 4vw, 56px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.ecosystem-section .section-kicker h2 {
  max-width: 640px;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.05;
}

.ecosystem-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.42fr);
  grid-template-rows: 190px 190px;
  gap: 12px;
  margin-top: 34px;
}

.ecosystem-photo {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.ecosystem-photo-1 {
  grid-row: 1 / -1;
}

.ecosystem-photo-1 img {
  object-position: center;
}

.ecosystem-photo-2 img {
  object-position: center 38%;
}

.ecosystem-photo-3 img {
  object-position: center;
}

.ecosystem-flow {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.ecosystem-flow article {
  display: grid;
  grid-template-columns: 58px minmax(160px, 0.24fr) minmax(240px, 0.36fr) minmax(260px, 1fr);
  gap: clamp(18px, 2.2vw, 34px);
  align-items: start;
  min-height: 190px;
  padding: clamp(22px, 2.6vw, 34px);
  background: var(--paper-strong);
}

.ecosystem-flow h3,
.ecosystem-flow h4,
.ecosystem-flow p {
  margin: 0;
}

.ecosystem-flow h3 {
  font-size: clamp(24px, 2.3vw, 40px);
  line-height: 1.05;
}

.ecosystem-flow h4 {
  color: var(--field);
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.35;
}

.ecosystem-flow p {
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
}

.community-feature {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
  gap: clamp(28px, 5vw, 72px);
}

.community-copy h2 {
  margin: 14px 0 28px;
}

.community-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.community-panel div {
  min-height: 98px;
  display: flex;
  align-items: end;
  padding: 15px;
  color: var(--paper-strong);
  background: var(--charcoal);
  font-weight: 900;
}

.community-panel div:nth-child(2),
.community-panel div:nth-child(5) {
  background: var(--field);
}

.community-panel div:nth-child(3) {
  background: var(--clay);
}

.community-profile {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
  border: 1px solid var(--line);
}

.community-profile article {
  padding: 18px;
  background: var(--paper-strong);
}

.community-profile h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.6vw, 24px);
}

.community-profile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.image-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: 12px;
  min-height: 560px;
}

.image-pair img:first-child {
  object-position: center;
}

.image-pair img:last-child {
  object-position: center;
}

.case-dossier {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
  color: var(--paper-strong);
  background: var(--ink);
}

.case-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(244, 241, 232, 0.2);
}

.case-heading h2 {
  color: var(--paper-strong);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-card {
  display: grid;
  grid-template-rows: 270px auto;
  min-height: 500px;
  background: #20211d;
  border: 1px solid rgba(244, 241, 232, 0.12);
}

.case-card-large {
  grid-column: auto;
}

.case-media {
  margin: 0;
  overflow: hidden;
  background: #151611;
}

.case-media img {
  object-position: center;
}

.case-card-2 .case-media img {
  object-position: center bottom;
}

.case-card-3 .case-media img {
  object-position: center 46%;
}

.case-card-5 .case-media img {
  object-position: center;
}

.case-card-6 .case-media img {
  object-position: center 58%;
}

.case-card div {
  padding: 22px;
}

.case-card h3 {
  margin: 24px 0 6px;
  color: var(--paper-strong);
  font-size: clamp(24px, 2.35vw, 38px);
  line-height: 1;
}

.case-card h4 {
  margin: 0 0 16px;
  color: rgba(244, 241, 232, 0.62);
}

.case-card p {
  margin: 0;
  color: rgba(244, 241, 232, 0.68);
  line-height: 1.5;
}

.cooperation-section {
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.cooperation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.cooperation-grid article {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 0;
  background: var(--paper);
  overflow: hidden;
}

.cooperation-grid figure {
  height: 230px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.cooperation-grid article:nth-child(2) figure img {
  object-position: center 58%;
}

.cooperation-grid article:nth-child(3) figure img {
  object-position: center 62%;
}

.cooperation-grid article:nth-child(4) figure img {
  object-position: center;
}

.cooperation-grid h3 {
  margin: 24px 24px 18px;
  font-size: var(--compact-title);
  line-height: 1.05;
}

.cooperation-grid p {
  margin: 0 24px;
  color: var(--muted);
  line-height: 1.55;
}

.cooperation-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding: 28px 24px 24px;
}

.cooperation-grid span {
  padding: 8px 10px;
  color: var(--paper-strong);
  background: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.event-ladder {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  color: var(--paper-strong);
  background: var(--charcoal);
}

.event-ladder h2 {
  margin-top: 14px;
  color: var(--paper-strong);
}

.event-intro figure {
  height: clamp(260px, 35vw, 520px);
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 232, 0.16);
}

.event-intro figure img {
  object-position: center 54%;
}

.ladder-list {
  display: grid;
  border-top: 1px solid rgba(244, 241, 232, 0.24);
}

.ladder-list article {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(244, 241, 232, 0.18);
}

.ladder-list span {
  color: var(--gold);
  font-size: clamp(26px, 2.4vw, 42px);
  line-height: 0.9;
}

.ladder-list h3 {
  margin: 0;
  font-size: var(--compact-title);
  line-height: 1.05;
}

.ladder-list p {
  margin: 0;
  color: rgba(244, 241, 232, 0.68);
  line-height: 1.55;
}

.space-feature {
  background: var(--paper-strong);
}

.space-collage {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(220px, 0.38fr);
  gap: 12px;
  min-height: 600px;
  padding: 12px;
  background: var(--ink);
}

.space-collage > img {
  object-position: center;
}

.space-collage aside {
  overflow: hidden;
}

.space-collage aside img {
  object-position: center;
}

.feature-copy h2 {
  margin: 14px 0 24px;
}

.feature-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.space-tracks {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.space-tracks article {
  padding: 18px;
  background: var(--paper);
}

.space-tracks h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.6vw, 24px);
}

.space-tracks p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.phase-system {
  color: var(--paper-strong);
  background: var(--ink);
  border-bottom: 1px solid rgba(244, 241, 232, 0.16);
}

.phase-system .section-heading h2 {
  color: var(--paper-strong);
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: rgba(244, 241, 232, 0.18);
  border: 1px solid rgba(244, 241, 232, 0.18);
}

.phase-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 0 26px 26px;
  background: #20211d;
  overflow: hidden;
}

.phase-grid figure {
  height: clamp(220px, 22vw, 360px);
  margin: 0 -26px;
  overflow: hidden;
  background: var(--ink);
}

.phase-grid article:nth-child(1) figure img {
  object-position: center;
}

.phase-grid article:nth-child(2) figure img {
  object-position: center 42%;
}

.phase-grid article:nth-child(3) figure img {
  object-position: center;
}

.phase-grid span {
  color: var(--gold);
  font-size: clamp(38px, 4vw, 72px);
  line-height: 0.9;
}

.phase-grid h3 {
  margin: 0;
  color: var(--paper-strong);
  font-size: var(--compact-title);
  line-height: 1.05;
}

.phase-grid p {
  margin: 0;
  color: rgba(244, 241, 232, 0.68);
  line-height: 1.55;
}

.brand-matrix {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-top: 14px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.brand-grid article {
  min-height: 200px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-grid h3 {
  margin: 0 0 14px;
  font-size: var(--compact-title);
}

.brand-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.why-section {
  background: var(--paper-strong);
}

.why-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.why-copy h2 {
  margin-top: 14px;
}

.why-media {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(170px, 0.48fr);
  grid-template-rows: 230px 230px;
  gap: 12px;
}

.why-media figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.why-media figure:first-child {
  grid-row: 1 / -1;
}

.why-media figure:first-child img {
  object-position: center;
}

.why-media figure:nth-child(2) img {
  object-position: center 58%;
}

.why-media figure:nth-child(3) img {
  object-position: center 60%;
}

.why-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.why-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--paper);
}

.why-grid h3 {
  margin: 0 0 16px;
  font-size: var(--compact-title);
  line-height: 1.05;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.journey-strip {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.journey-strip h3 {
  margin: 14px 0 28px;
}

.journey-strip > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.journey-strip article {
  min-height: 220px;
  padding: 22px;
  background: var(--paper);
}

.journey-strip span {
  color: var(--clay);
  font-size: var(--label-text);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-strip h4 {
  margin: 18px 0 12px;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.05;
}

.journey-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact {
  padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 72px);
  text-align: center;
  color: var(--paper-strong);
  background: var(--charcoal);
}

.contact h2 {
  margin: 14px auto 34px;
  max-width: 960px;
  color: var(--paper-strong);
  font-size: clamp(30px, 3.1vw, 50px);
  line-height: 1.08;
}

.contact-actions {
  justify-content: center;
}

.social-block {
  width: min(960px, 100%);
  margin: clamp(34px, 5vw, 62px) auto 0;
  border-top: 1px solid rgba(244, 241, 232, 0.2);
}

.social-block > p {
  margin: 18px 0 14px;
  color: rgba(244, 241, 232, 0.62);
  font-size: var(--label-text);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(244, 241, 232, 0.18);
  border: 1px solid rgba(244, 241, 232, 0.18);
}

.social-grid a,
.social-grid div {
  display: grid;
  gap: 14px;
  min-height: 132px;
  min-width: 0;
  padding: 18px;
  text-align: left;
  background: var(--charcoal);
  overflow: hidden;
}

.social-grid span {
  color: var(--clay);
  font-size: var(--label-text);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-grid strong {
  align-self: end;
  color: var(--paper-strong);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.12;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(244, 241, 232, 0.68);
  background: var(--ink);
  border-top: 1px solid rgba(244, 241, 232, 0.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .site-header,
  .program-board,
  .connect-section,
  .index-section,
  .ecosystem-section,
  .agency-section,
  .community-feature,
  .case-heading,
  .space-feature,
  .event-ladder,
  .why-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 12px;
  }

  .brand img {
    width: 170px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-copy {
    width: min(100%, 760px);
    padding-top: 170px;
  }

  .hero-copy h1 {
    max-width: 720px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.08;
  }

  .hero-index {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: auto;
    margin: 0 clamp(18px, 5vw, 72px) clamp(28px, 5vw, 54px);
  }

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

  .platform-grid,
  .platform-visual-row,
  .cooperation-grid,
  .why-media,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-visual-1,
  .why-media figure:first-child {
    grid-column: span 2;
  }

  .case-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    min-height: 0;
  }

  .language-switch {
    flex-wrap: wrap;
  }

  .hero-platform {
    min-height: 760px;
  }

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

  .hero-topline span {
    justify-self: start;
  }

  .hero-copy {
    width: 100%;
    padding-top: 210px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .program-grid,
  .platform-grid,
  .platform-visual-row,
  .connect-body,
  .line-list article,
  .ecosystem-media,
  .ecosystem-flow article,
  .agency-list,
  .community-panel,
  .index-visual,
  .image-pair,
  .case-grid,
  .cooperation-grid,
  .ladder-list article,
  .space-collage,
  .phase-grid,
  .why-media,
  .why-grid,
  .journey-strip > div,
  .social-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .program-card,
  .platform-grid article,
  .case-card,
  .case-card-large {
    grid-column: auto;
    min-height: auto;
    grid-template-rows: 280px auto;
  }

  .index-visual,
  .image-pair,
  .space-collage,
  .platform-visual-row,
  .ecosystem-media,
  .why-media {
    min-height: 420px;
  }

  .platform-visual-1,
  .why-media figure:first-child,
  .ecosystem-photo-1 {
    grid-column: auto;
    grid-row: auto;
  }

  .platform-visual,
  .ecosystem-photo,
  .why-media figure {
    min-height: 260px;
  }

  .site-footer {
    flex-direction: column;
  }
}
