:root {
  --forest: #195c38;
  --forest-deep: #103f29;
  --leaf: #5a9b4c;
  --water: #167ca5;
  --sky: #b7dbe6;
  --sun: #f1bf52;
  --coral: #cf6f5e;
  --ink: #173448;
  --muted: #5c7180;
  --pale: #f5f8f2;
  --paper: #fffefa;
  --white: #ffffff;
  --line: #ccd9d0;
  --header-height: 76px;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--forest-deep);
  transition: top 180ms ease;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(204, 217, 208, 0.82);
  backdrop-filter: blur(12px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(23, 52, 72, 0.08); }

.brand { display: block; width: 202px; }
.brand img { width: 100%; height: 48px; object-fit: contain; transform: scale(2.55); transform-origin: center; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a { text-decoration: none; }
.nav a:hover, .nav a:focus-visible { color: var(--water); }

.nav-action {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--forest);
  border-radius: 4px;
  background: transparent;
  color: var(--forest-deep);
  font-weight: 700;
  cursor: pointer;
}

.nav-action:hover, .nav-action:focus-visible { background: var(--forest); color: var(--white); }

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button { display: none; }
.menu-button span { width: 22px; height: 2px; margin: 2px 0; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }

.hero {
  position: relative;
  min-height: min(860px, 92svh);
  padding-top: var(--header-height);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image, .invitation-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-image { object-position: center; transform: scale(1.015); animation: settle 12s ease-out both; }

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(10, 39, 45, 0.78) 0%, rgba(10, 39, 45, 0.58) 36%, rgba(10, 39, 45, 0.12) 68%, rgba(10, 39, 45, 0.03) 100%);
}

.hero-watermark {
  position: absolute;
  z-index: -1;
  top: 104px;
  right: 4vw;
  width: min(280px, 21vw);
  height: auto;
  object-fit: contain;
  opacity: 0.22;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.hero-copy {
  width: var(--shell);
  margin: 0 auto;
  padding: 90px 0 104px;
  color: var(--white);
}

.hero-copy > * { max-width: 660px; }

.eyebrow, .section-index, .pillar-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow { margin-bottom: 20px; color: #dcf1e3; }

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 6.2vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-intro {
  margin: 28px 0 0;
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--white); color: var(--forest-deep); }
.button-primary:hover, .button-primary:focus-visible { background: #e8f2ea; }
.duration { color: var(--muted); font-weight: 700; }

.play-icon {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.text-link { font-size: 0.9rem; font-weight: 800; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.55); }
.text-link:hover, .text-link:focus-visible { border-bottom-color: var(--white); }

.hero-next {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  min-width: 390px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 34px;
  background: var(--paper);
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-shell { width: var(--shell); margin: 0 auto; }

.truth-band { padding: 120px 0; background: var(--paper); }
.truth-grid { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 56px; }
.section-index { color: var(--water); padding-top: 10px; }

.truth-copy h2, .promise-heading h2, .film-copy h2, .innovation-heading h2, .pillars-heading h2, .invitation-copy h2, .contact-intro h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 760;
}

.truth-copy { max-width: 900px; }
.truth-copy p { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: 1.18rem; }

.promise-section { padding: 110px 0 118px; background: var(--pale); }
.promise-heading { display: grid; grid-template-columns: 180px minmax(0, 720px); gap: 56px; margin-bottom: 72px; }
.promise-heading h2 { color: var(--forest-deep); }
.promise-rows { border-top: 1px solid var(--line); }
.promise-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.promise-number { color: var(--water); font-weight: 800; }
.promise-row > div { display: grid; grid-template-columns: minmax(210px, 0.55fr) minmax(300px, 1fr); gap: 56px; }
.promise-row h3 { margin: 0; color: var(--forest-deep); font-size: 1.5rem; line-height: 1.15; }
.promise-row p { margin: 0; color: var(--muted); font-size: 1.05rem; }

.film-section { padding: 110px 0 0; background: var(--ink); color: var(--white); }
.film-copy { display: grid; grid-template-columns: 180px minmax(0, 780px); gap: 56px; padding-bottom: 54px; }
.film-copy .section-index { color: var(--sky); }
.film-copy > p:last-child { grid-column: 2; margin: -24px 0 0; max-width: 600px; color: #c5d4dd; font-size: 1.05rem; }

.film-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 430px;
  display: block;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #0d1f27;
  color: var(--white);
  cursor: pointer;
}

.film-poster img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; transition: transform 650ms ease; }
.film-poster:hover img { transform: scale(1.025); }
.film-poster-shade { position: absolute; inset: 0; background: rgba(8, 27, 34, 0.46); }
.film-poster-word { position: absolute; left: 7vw; top: 50%; transform: translateY(-50%); font-size: clamp(3.5rem, 9vw, 9rem); line-height: 1; font-weight: 800; }
.film-meta { position: absolute; right: 5vw; bottom: 32px; font-size: 0.78rem; font-weight: 800; }
.film-play { position: absolute; left: 50%; top: 50%; width: 76px; height: 76px; display: grid; place-items: center; transform: translate(-50%, -50%); border: 2px solid var(--white); border-radius: 50%; background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(6px); }
.film-play span { width: 0; height: 0; margin-left: 6px; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 16px solid var(--white); }

.innovation-section { padding: 116px 0 124px; background: #eef4ef; }
.innovation-heading { display: grid; grid-template-columns: 180px minmax(0, 820px); gap: 56px; margin-bottom: 54px; }
.innovation-heading h2 { color: var(--forest-deep); }
.innovation-heading p:last-child { margin: 22px 0 0; max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.innovation-scope { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.innovation-scope span { min-height: 60px; display: grid; place-items: center; padding: 10px 8px; border-right: 1px solid var(--line); color: var(--water); font-size: 0.76rem; font-weight: 800; text-align: center; text-transform: uppercase; }
.innovation-scope span:last-child { border-right: 0; }
.ecosystem-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 64px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ecosystem-role { min-width: 0; padding: 32px 26px 36px; border-right: 1px solid var(--line); }
.ecosystem-role:last-child { border-right: 0; }
.role-label { min-height: 38px; margin: 0 0 26px; color: var(--water); font-size: 0.74rem; font-weight: 800; text-transform: uppercase; }
.ecosystem-role h3 { min-height: 76px; margin: 0; color: var(--forest-deep); font-size: 1.45rem; line-height: 1.14; }
.ecosystem-role > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 0.97rem; }
.innovation-outcome { max-width: 930px; margin: 54px 0 0 auto; color: var(--forest-deep); font-size: clamp(1.55rem, 2.7vw, 2.6rem); line-height: 1.16; font-weight: 760; }

.pillars-section { padding: 116px 0 124px; background: var(--paper); }
.pillars-heading { display: grid; grid-template-columns: 180px minmax(0, 760px); gap: 56px; margin-bottom: 64px; }
.pillars-heading h2 { color: var(--forest-deep); }
.pillars-heading p:last-child { margin: 20px 0 0; max-width: 600px; color: var(--muted); font-size: 1.05rem; }
.pillars-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 470px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pillar-tabs { display: grid; border-right: 1px solid var(--line); }
.pillar-tab { display: grid; grid-template-columns: 54px 1fr; align-items: center; min-height: 82px; padding: 0 26px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; font-weight: 800; cursor: pointer; }
.pillar-tab:last-child { border-bottom: 0; }
.pillar-tab span { color: var(--water); font-size: 0.78rem; }
.pillar-tab:hover, .pillar-tab:focus-visible { background: #eff5ef; }
.pillar-tab.is-active { background: var(--forest-deep); color: var(--white); }
.pillar-tab.is-active span { color: #bfe0c8; }
.pillar-panel { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 52px; overflow: hidden; background: #e6f1f1; transition: background 280ms ease; }
.pillar-panel::after { content: ""; position: absolute; width: 390px; height: 390px; right: -95px; top: -120px; border: 1px solid rgba(255,255,255,0.55); border-radius: 50%; }
.pillar-symbol { position: absolute; width: 120px; height: 160px; right: 60px; top: 62px; border-radius: 60% 40% 58% 42% / 72% 56% 44% 28%; transform: rotate(25deg); background: rgba(22, 124, 165, 0.78); }
.pillar-symbol::after { content: ""; position: absolute; inset: 34px 26px; border-left: 2px solid rgba(255,255,255,0.86); transform: rotate(-22deg); }
.pillar-kicker { position: relative; z-index: 2; color: var(--water); }
.pillar-statement { position: relative; z-index: 2; max-width: 590px; margin: 16px 0 0; font-size: clamp(1.65rem, 2.5vw, 2.5rem); line-height: 1.14; font-weight: 760; }
.pillar-panel.pillar-air { background: #edf4f7; }
.pillar-panel.pillar-air .pillar-symbol { background: rgba(111, 166, 184, 0.76); border-radius: 50%; height: 120px; }
.pillar-panel.pillar-energy { background: #faf1d6; }
.pillar-panel.pillar-energy .pillar-symbol { background: rgba(241, 191, 82, 0.88); border-radius: 50%; height: 120px; }
.pillar-panel.pillar-energy .pillar-kicker { color: #9b711a; }
.pillar-panel.pillar-forests { background: #e6efe2; }
.pillar-panel.pillar-forests .pillar-symbol { background: rgba(60, 126, 64, 0.78); }
.pillar-panel.pillar-agriculture { background: #f4e9de; }
.pillar-panel.pillar-agriculture .pillar-symbol { background: rgba(207, 111, 94, 0.72); }
.pillar-panel.pillar-agriculture .pillar-kicker { color: #a45143; }

.invitation-section { position: relative; min-height: 620px; display: grid; align-items: center; isolation: isolate; overflow: hidden; }
.invitation-image { object-position: 66% center; transform: scale(1.08); }
.invitation-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(12, 49, 36, 0.9), rgba(12, 49, 36, 0.68) 50%, rgba(12, 49, 36, 0.08)); }
.invitation-copy { width: var(--shell); margin: 0 auto; padding: 100px 0; color: var(--white); }
.invitation-copy > * { max-width: 730px; }
.invitation-copy .eyebrow { color: #cee8d4; margin-bottom: 18px; }
.invitation-copy p:not(.eyebrow) { max-width: 620px; margin: 24px 0 30px; font-size: 1.12rem; color: rgba(255,255,255,0.9); }
.button-light { background: var(--white); color: var(--forest-deep); }

.site-footer { min-height: 180px; display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 48px; padding: 48px 32px 34px; background: #0f2a31; color: #d8e1e5; font-size: 0.8rem; }
.footer-brand { overflow: hidden; width: 250px; }
.footer-brand img { width: 190px; height: 52px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.94; transform: scale(2.55); transform-origin: center; }
.footer-brand p { margin: 8px 0 0; }
.site-footer a { font-weight: 800; }
.site-footer > p { margin: 0; color: #98acb6; }

.modal {
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(7, 24, 31, 0.42);
}

.modal::backdrop { background: rgba(7, 24, 31, 0.8); backdrop-filter: blur(8px); }
.modal-bar { height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px 0 28px; }
.modal-bar p { margin: 0; color: var(--forest); font-size: 0.7rem; font-weight: 800; }
.modal-bar h2 { margin: 1px 0 0; font-size: 1.05rem; }
.close-button { border-radius: 50%; font-size: 2rem; font-weight: 300; }
.close-button:hover { background: #e8eee9; }
.video-frame { aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { width: 100%; height: 100%; display: block; border: 0; }

.contact-modal { width: min(1040px, calc(100% - 32px)); }
.contact-layout { position: relative; display: grid; grid-template-columns: 0.85fr 1.15fr; min-height: 600px; }
.contact-intro { padding: 72px 54px; background: var(--forest-deep); color: var(--white); }
.contact-intro .eyebrow { margin-bottom: 18px; color: #cbe5d2; }
.contact-intro h2 { font-size: clamp(2.25rem, 4vw, 3.7rem); }
.contact-intro > p:last-child { margin: 24px 0 0; color: #dcebe1; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; align-content: center; padding: 64px 52px; }
.contact-form[hidden], .contact-success[hidden] { display: none !important; }
.honey-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form label { display: grid; gap: 8px; color: var(--forest-deep); font-size: 0.78rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-width: 0; border: 0; border-bottom: 1px solid #9fb1a5; border-radius: 0; padding: 11px 2px; background: transparent; color: var(--ink); outline: none; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-bottom-color: var(--water); box-shadow: 0 2px 0 var(--water); }
.full-field { grid-column: 1 / -1; }
.form-actions { display: flex; align-items: center; gap: 18px; margin-top: 4px; }
.contact-form .button-primary { background: var(--forest); color: var(--white); }
.contact-form.is-submitting { opacity: 0.72; pointer-events: none; }
.form-privacy { margin: -8px 0 0; color: var(--muted); font-size: 0.75rem; }
.form-error { margin: 0; padding: 10px 12px; background: #f8e8e5; color: #7a3027; font-size: 0.84rem; }
.form-error a { font-weight: 800; }
.contact-success { align-self: center; padding: 64px 58px; }
.contact-success .eyebrow { margin: 18px 0 12px; color: var(--water); }
.contact-success h3 { margin: 0; color: var(--forest-deep); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; }
.contact-success > p:not(.eyebrow) { max-width: 480px; margin: 22px 0 28px; color: var(--muted); font-size: 1.02rem; }
.contact-success .button-primary { background: var(--forest); color: var(--white); }
.success-mark { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: #dcecdf; color: var(--forest); font-size: 1.5rem; font-weight: 800; }
.text-button { min-height: 44px; border: 0; background: transparent; color: var(--muted); font-weight: 800; cursor: pointer; }
.contact-close { position: absolute; top: 12px; right: 12px; }

[data-reveal] { opacity: 1; transform: none; transition: opacity 600ms ease, transform 600ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes settle { from { transform: scale(1.07); } to { transform: scale(1.015); } }

@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; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 760px); }
  .site-header { padding: 0 18px; }
  .brand { width: 176px; }
  .menu-button { display: inline-grid; }
  .nav { position: fixed; inset: var(--header-height) 0 auto 0; display: none; align-items: stretch; gap: 0; padding: 16px 20px 24px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 14px 30px rgba(23,52,72,0.1); }
  .nav.is-open { display: grid; }
  .nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .nav-action { margin-top: 16px; }
  .hero { min-height: 820px; align-items: end; }
  .hero-image { object-position: 66% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(9, 38, 43, 0.88), rgba(9,38,43,0.52) 64%, rgba(9,38,43,0.1)); }
  .hero-watermark { top: 100px; right: 18px; width: min(220px, 25vw); opacity: 0.2; }
  .hero-copy { padding: 180px 0 96px; }
  .hero-copy > * { max-width: 620px; }
  .hero-next { width: 62%; }
  .truth-grid, .promise-heading, .film-copy, .innovation-heading, .pillars-heading { grid-template-columns: 1fr; gap: 24px; }
  .film-copy > p:last-child { grid-column: 1; margin: 0; }
  .promise-row > div { gap: 30px; }
  .innovation-scope { grid-template-columns: repeat(3, 1fr); }
  .innovation-scope span:nth-child(3) { border-right: 0; }
  .innovation-scope span:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .ecosystem-grid { grid-template-columns: 1fr 1fr; }
  .ecosystem-role:nth-child(2) { border-right: 0; }
  .ecosystem-role:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pillars-layout { grid-template-columns: 1fr; }
  .pillar-tabs { border-right: 0; border-bottom: 1px solid var(--line); grid-template-columns: repeat(5, 1fr); }
  .pillar-tab { min-height: 88px; grid-template-columns: 1fr; justify-items: center; gap: 4px; padding: 10px 6px; border-right: 1px solid var(--line); border-bottom: 0; text-align: center; font-size: 0.75rem; }
  .pillar-tab:last-child { border-right: 0; }
  .pillar-panel { min-height: 390px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-intro { padding: 44px 48px; }
  .contact-form { padding: 44px 48px 52px; }
  .contact-success { padding: 52px 48px; }
  .contact-close { color: var(--white); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > p { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --header-height: 68px; --shell: calc(100% - 32px); }
  .site-header { height: var(--header-height); }
  .brand { width: 154px; }
  .brand img { height: 42px; }
  .hero { min-height: 760px; }
  .hero-watermark { top: 88px; right: 14px; width: 145px; opacity: 0.2; }
  .hero-copy { padding: 150px 0 86px; }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-intro { font-size: 1.03rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-next { width: 74%; min-width: 0; height: 46px; padding-right: 18px; }
  .truth-band, .promise-section, .innovation-section, .pillars-section { padding: 82px 0; }
  .truth-copy h2, .promise-heading h2, .film-copy h2, .innovation-heading h2, .pillars-heading h2, .invitation-copy h2, .contact-intro h2 { font-size: clamp(2.15rem, 11vw, 3rem); }
  .promise-heading { margin-bottom: 46px; }
  .promise-row { grid-template-columns: 44px minmax(0, 1fr); gap: 12px; padding: 28px 0; }
  .promise-row > div { grid-template-columns: 1fr; gap: 12px; }
  .film-section { padding-top: 82px; }
  .film-poster { min-height: 370px; aspect-ratio: 4 / 5; }
  .film-poster-word { left: 18px; top: 28%; transform: none; font-size: 4rem; }
  .film-play { width: 66px; height: 66px; }
  .film-meta { left: 18px; right: auto; }
  .innovation-heading { margin-bottom: 38px; }
  .innovation-scope { grid-template-columns: 1fr 1fr; }
  .innovation-scope span { min-height: 52px; }
  .innovation-scope span:nth-child(3) { border-right: 1px solid var(--line); }
  .innovation-scope span:nth-child(even) { border-right: 0; }
  .innovation-scope span:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .ecosystem-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .ecosystem-role, .ecosystem-role:nth-child(2) { padding: 28px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .ecosystem-role:last-child { border-bottom: 0; }
  .role-label, .ecosystem-role h3 { min-height: 0; }
  .role-label { margin-bottom: 14px; }
  .ecosystem-role > p:last-child { margin-top: 12px; }
  .innovation-outcome { margin-top: 40px; font-size: 1.65rem; }
  .pillars-heading { margin-bottom: 42px; }
  .pillar-tabs { grid-template-columns: 1fr; }
  .pillar-tab { min-height: 58px; grid-template-columns: 40px 1fr; justify-items: start; padding: 0 16px; border-right: 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
  .pillar-panel { min-height: 390px; padding: 32px 24px; }
  .pillar-symbol { right: 28px; top: 46px; transform: rotate(25deg) scale(0.78); transform-origin: top right; }
  .pillar-statement { font-size: 1.75rem; }
  .invitation-section { min-height: 640px; }
  .invitation-image { object-position: 70% center; }
  .site-footer { grid-template-columns: 1fr; align-items: start; padding: 42px 18px 28px; }
  .site-footer > p { grid-column: 1; }
  .modal { width: calc(100% - 16px); max-height: calc(100svh - 16px); }
  .modal-bar { height: 64px; padding-left: 18px; }
  .contact-modal { overflow-y: auto; }
  .contact-intro { padding: 48px 22px 34px; }
  .contact-form { grid-template-columns: 1fr; padding: 32px 22px 40px; }
  .contact-success { padding: 44px 22px; }
  .full-field { grid-column: 1; }
  .contact-close { top: 8px; right: 8px; }
}
