:root {
  --bg: #ffffff;
  --bg-soft: #f6fbff;
  --surface: #ffffff;
  --ink: #000000;
  --muted: #000000;
  --line: #d5e6ef;
  --brand: #167cac;
  --hero-ink: #f6fbff;
  --page-gutter: clamp(40px, 8vw, 180px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Carlito", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(900px 500px at 100% 0%, rgba(22, 124, 172, 0.08), transparent 65%);
}

.container {
  width: min(1280px, calc(100vw - (2 * var(--page-gutter))));
  margin: 0 auto;
}

.section {
  padding: 4.3rem 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(120% 130% at 12% 0%, rgba(22, 124, 172, 0.14) 0%, rgba(0, 0, 0, 0) 52%),
    linear-gradient(180deg, rgba(11, 15, 19, 0.96) 0%, rgba(4, 6, 8, 0.93) 100%);
  box-shadow: 0 10px 24px -16px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  height: 2rem;
  width: auto;
  display: block;
}

.brand-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d2e8f4;
}

.chip-link {
  font-family: "Kode Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: #9fd6f1;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  border-right: 2px solid currentColor;
  animation:
    nav-typing 3.2s steps(34, end) 0.35s forwards,
    nav-caret 0.8s step-end infinite;
}

@keyframes nav-typing {
  from {
    max-width: 0;
  }
  to {
    max-width: 36ch;
  }
}

@keyframes nav-caret {
  0%,
  49% {
    border-color: currentColor;
  }
  50%,
  100% {
    border-color: transparent;
  }
}

@keyframes led-border-flow {
  0% {
    background-position:
      -180% 0,
      100% -180%,
      180% 100%,
      0 180%;
  }
  100% {
    background-position:
      180% 0,
      100% 180%,
      -180% 100%,
      0 -180%;
  }
}

@keyframes led-glow-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  45% {
    opacity: 0.78;
  }
  70% {
    opacity: 0.58;
  }
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: url("assets/images/herobgo.jpeg") center center / cover no-repeat;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 0.78) 24%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(to right, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.76) 36%, rgba(255, 255, 255, 0.36) 60%, rgba(255, 255, 255, 0.08) 80%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.24) 16%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(100deg, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.62) 45%, rgba(255, 255, 255, 0.66) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 74%, rgba(255, 255, 255, 1) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/herobg.png") right top / cover no-repeat;
  opacity: 0.2;
  -webkit-mask-image: radial-gradient(
    132% 96% at 90% 0%,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.78) 18%,
    rgba(0, 0, 0, 0.44) 35%,
    rgba(0, 0, 0, 0.16) 56%,
    rgba(0, 0, 0, 0) 72%
  );
  mask-image: radial-gradient(
    132% 96% at 90% 0%,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.78) 18%,
    rgba(0, 0, 0, 0.44) 35%,
    rgba(0, 0, 0, 0.16) 56%,
    rgba(0, 0, 0, 0) 72%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-shell {
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(1220px, 100%);
  margin-top: clamp(1rem, 2.4vh, 2rem);
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: "Kode Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: #1f7299;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.12;
}

.hero-copy h1 {
  max-width: min(100%, 38ch);
  font-size: clamp(1.95rem, 4.2vw, 3.35rem);
  margin-bottom: 0.2rem;
  color: #113f57;
}

.hero-copy h1 span {
  display: inline;
  margin-top: 0;
  color: #167cac;
}

.hero-summary {
  margin: 1.2rem 0 0;
  max-width: min(100%, 98ch);
  color: #000000;
  font-size: 1.03rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.btn {
  margin: 0;
  padding: 0.58rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-bottom 180ms ease;
}

.btn .btn-txt {
  display: inline-block;
}

.btn:hover {
  transform: translateY(-0.5px);
}

.btn-primary {
  background: linear-gradient(#1b8fc4, #167cac);
  color: #ffffff;
  box-shadow: inset 0 2px 2px -1px #6ec8e8, 0 3px 5px -4px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid #0f5f84;
}

.btn-ghost {
  color: #0f5f84;
  background: linear-gradient(#ffffff, #eef6fb);
  box-shadow: inset 0 2px 2px -1px #ffffff, 0 3px 5px -4px rgba(0, 0, 0, 0.28);
  border: 1px solid #a4c8da;
  border-bottom: 1px solid #5c9fbe;
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-0.5px);
}

.btn-primary:hover {
  border-bottom-width: 2px;
}

.btn-ghost:hover {
  border-bottom-width: 2px;
}

.btn-primary:active,
.btn-ghost:active {
  transform: translateY(0);
}

.btn-primary:active {
  box-shadow: inset 0 2px 2px -1px #6ec8e8, 0 3px 5px -4px rgba(0, 0, 0, 0);
  border-bottom-width: 1px;
}

.btn-ghost:active {
  box-shadow: inset 0 2px 2px -1px #ffffff, 0 3px 5px -4px rgba(0, 0, 0, 0);
  border-bottom-width: 1px;
}

.btn:focus-visible {
  outline: 2px solid rgba(22, 124, 172, 0.35);
  outline-offset: 2px;
}

.hero-strip {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.05fr) minmax(0, 1.25fr);
  gap: 1.2rem;
  max-width: min(100%, 1240px);
  padding-top: 0.9rem;
  border-top: 1px solid rgba(18, 78, 104, 0.14);
}

.meta-chip {
  position: relative;
  padding: 0.2rem 0 0.22rem 0.9rem;
  border-left: 2px solid rgba(22, 124, 172, 0.32);
}

.meta-chip h3 {
  margin: 0;
  font-family: "Kode Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #3f7794;
}

.meta-chip p {
  margin: 0.36rem 0 0;
  color: #14281d;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.03rem, 1.16vw, 1.14rem);
  font-weight: 500;
  line-height: 1.36;
}

.hero-strip .meta-chip {
  border-left-color: #167cac;
  border-left-width: 3px;
}

.hero-strip .meta-chip h3 {
  color: #167cac;
}

.hero-strip .meta-chip p {
  font-size: clamp(1.18rem, 1.38vw, 1.32rem);
  font-weight: 700;
  line-height: 1.32;
}

.hero-strip .meta-chip-highlight {
  position: relative;
  padding: 0.72rem 0.84rem 0.78rem 0.9rem;
  border: 1px solid rgba(0, 147, 197, 0.66);
  border-radius: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(231, 245, 251, 0.74));
  box-shadow:
    inset 0 0 0 1px rgba(6, 55, 76, 0.1),
    0 0 10px -8px rgba(0, 147, 197, 0.42);
  isolation: isolate;
}

.hero-strip .meta-chip-highlight::before,
.hero-strip .meta-chip-highlight::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.hero-strip .meta-chip-highlight::before {
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 166, 224, 0) 0%,
      rgba(0, 166, 224, 0) 44%,
      rgba(0, 166, 224, 0.68) 50%,
      rgba(0, 166, 224, 0) 56%,
      rgba(0, 166, 224, 0) 100%
    ) -180% 0 / 180% 2px no-repeat,
    linear-gradient(
      180deg,
      rgba(0, 166, 224, 0) 0%,
      rgba(0, 166, 224, 0) 44%,
      rgba(0, 166, 224, 0.68) 50%,
      rgba(0, 166, 224, 0) 56%,
      rgba(0, 166, 224, 0) 100%
    ) 100% -180% / 2px 180% no-repeat,
    linear-gradient(
      270deg,
      rgba(0, 166, 224, 0) 0%,
      rgba(0, 166, 224, 0) 44%,
      rgba(0, 166, 224, 0.68) 50%,
      rgba(0, 166, 224, 0) 56%,
      rgba(0, 166, 224, 0) 100%
    ) 180% 100% / 180% 2px no-repeat,
    linear-gradient(
      0deg,
      rgba(0, 166, 224, 0) 0%,
      rgba(0, 166, 224, 0) 44%,
      rgba(0, 166, 224, 0.68) 50%,
      rgba(0, 166, 224, 0) 56%,
      rgba(0, 166, 224, 0) 100%
    ) 0 180% / 2px 180% no-repeat;
  filter: drop-shadow(0 0 2px rgba(0, 166, 224, 0.45)) drop-shadow(0 0 4px rgba(0, 166, 224, 0.22));
  animation: led-border-flow 2.8s linear infinite;
  z-index: 3;
}

.hero-strip .meta-chip-highlight::after {
  inset: 0;
  border: 1px solid rgba(0, 147, 197, 0.52);
  box-shadow:
    0 0 9px 0 rgba(0, 166, 224, 0.26),
    0 0 18px 2px rgba(0, 166, 224, 0.14);
  animation: led-glow-pulse 3.2s ease-in-out infinite;
  z-index: 1;
}

.hero-strip .meta-chip-highlight > * {
  position: relative;
  z-index: 4;
}

.hero-strip .meta-chip-highlight h3 {
  color: #0a5678;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero-strip .meta-chip-highlight p {
  margin-top: 0.52rem;
  color: #041b27;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero-strip .meta-chip-date p,
.hero-strip .meta-chip-location p {
  font-size: clamp(1.18rem, 1.38vw, 1.32rem);
}

.overview {
  padding: 0;
  background: #ffffff;
}

.overview-image-band {
  width: 100%;
  height: 50vh;
  min-height: 300px;
  max-height: 680px;
  overflow: hidden;
}

.overview-kicker {
  margin: 0 0 0.75rem;
  font-family: "Kode Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.overview-green-band,
.host {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #000000;
  background-image: linear-gradient(155deg, #06080b 0%, #000000 52%, #010203 100%);
  background-size: auto;
  background-blend-mode: normal;
}

.overview-green-band::before,
.host::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.62;
  background-image:
    repeating-radial-gradient(circle at 22% 26%, rgba(255, 255, 255, 0.16) 0 0.9px, transparent 1px 3.6px),
    repeating-radial-gradient(circle at 78% 64%, rgba(0, 0, 0, 0.24) 0 0.85px, transparent 0.95px 3.4px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 2px);
  background-size: 320px 320px, 280px 280px, 2px 2px;
  mix-blend-mode: soft-light;
}

.overview-green-band > .container,
.host > .container {
  position: relative;
  z-index: 1;
}

.overview-green-band {
  width: 100%;
  background-image: linear-gradient(180deg, #05080d 0%, #000000 58%, #000000 100%);
  padding: clamp(2rem, 4.8vw, 4rem) 0;
}

.overview-green-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.52;
  background-image:
    radial-gradient(58% 66% at 18% 10%, rgba(30, 137, 203, 0.44) 0%, rgba(0, 0, 0, 0) 72%),
    radial-gradient(54% 60% at 74% 14%, rgba(21, 107, 168, 0.34) 0%, rgba(0, 0, 0, 0) 74%),
    radial-gradient(48% 56% at 44% 0%, rgba(18, 88, 143, 0.24) 0%, rgba(0, 0, 0, 0) 76%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.92) 34%,
    rgba(0, 0, 0, 0.58) 50%,
    rgba(0, 0, 0, 0) 68%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.92) 34%,
    rgba(0, 0, 0, 0.58) 50%,
    rgba(0, 0, 0, 0) 68%
  );
  animation: overview-blob-float 12s ease-in-out infinite alternate;
  will-change: transform, background-position;
}

.overview-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.4rem, 3vw, 3.3rem);
  align-items: start;
}

.overview-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: #ffffff;
  line-height: 1.03;
}

.overview-panel {
  max-width: min(100%, 1020px);
  padding-left: clamp(1rem, 2vw, 1.55rem);
  border-left: 1px solid rgba(255, 255, 255, 0.36);
  --overview-copy-width: min(100%, 47rem);
}

.overview-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.8;
  font-size: clamp(0.92rem, 1vw, 1rem);
}

.overview-panel .overview-lead {
  width: var(--overview-copy-width);
  max-width: none;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.98rem, 1.34vw, 1.24rem);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.015em;
}

.overview-panel .overview-lead .text-highlight {
  color: var(--brand);
}

.overview-panel .overview-subcopy {
  margin-top: 0.95rem;
  width: var(--overview-copy-width);
  max-width: none;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.94rem, 1.22vw, 1.12rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.84);
}

.overview-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.host {
  padding: clamp(2.4rem, 4.5vw, 4rem) 0 clamp(2.6rem, 5vw, 4.2rem);
  border-top: 0;
  background-image: linear-gradient(180deg, #000000 0%, #000000 44%, #03080d 100%);
}

.host::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.54;
  background-image:
    radial-gradient(68% 72% at 86% 92%, rgba(24, 121, 185, 0.42) 0%, rgba(0, 0, 0, 0) 72%),
    radial-gradient(60% 66% at 18% 96%, rgba(16, 88, 145, 0.3) 0%, rgba(0, 0, 0, 0) 74%),
    radial-gradient(52% 58% at 56% 90%, rgba(11, 63, 108, 0.22) 0%, rgba(0, 0, 0, 0) 78%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.08) 38%,
    rgba(0, 0, 0, 0.62) 56%,
    rgba(0, 0, 0, 1) 72%,
    rgba(0, 0, 0, 1) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.08) 38%,
    rgba(0, 0, 0, 0.62) 56%,
    rgba(0, 0, 0, 1) 72%,
    rgba(0, 0, 0, 1) 100%
  );
  animation: host-blob-float 14s ease-in-out infinite alternate;
  will-change: transform, background-position;
}

@keyframes overview-blob-float {
  0% {
    transform: translate3d(-1.5%, -1.5%, 0) scale(1);
    background-position: 0% 0%, 0% 0%, 0% 0%;
  }
  35% {
    transform: translate3d(1.8%, 0.9%, 0) scale(1.05);
    background-position: 6% 4%, -5% 2%, 2% -3%;
  }
  70% {
    transform: translate3d(-1%, 1.3%, 0) scale(1.02);
    background-position: -4% 6%, 4% 5%, -2% 1%;
  }
  100% {
    transform: translate3d(2.2%, -0.6%, 0) scale(1.06);
    background-position: 8% -2%, -7% 4%, 3% -4%;
  }
}

@keyframes host-blob-float {
  0% {
    transform: translate3d(1.4%, 1.1%, 0) scale(1);
    background-position: 0% 0%, 0% 0%, 0% 0%;
  }
  32% {
    transform: translate3d(-1.8%, -0.7%, 0) scale(1.04);
    background-position: -6% -3%, 5% -2%, -2% 1%;
  }
  68% {
    transform: translate3d(1.2%, -1.3%, 0) scale(1.02);
    background-position: 3% -6%, -4% -3%, 2% -2%;
  }
  100% {
    transform: translate3d(-2.2%, 0.9%, 0) scale(1.05);
    background-position: -8% 2%, 7% 3%, -3% 2%;
  }
}

.host-shell {
  position: relative;
  padding: 0;
}

.host-shell::before {
  content: none;
}

.host-title {
  margin: 0;
  text-align: left;
  font-size: clamp(1.55rem, 3.05vw, 2.35rem);
  letter-spacing: 0.08em;
  color: #ffffff;
}

.host-grid {
  margin-top: clamp(1rem, 2.2vw, 1.6rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  padding-top: clamp(1rem, 2vw, 1.4rem);
  align-items: start;
}

.host-left {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.9vw, 1.25rem);
  padding-right: clamp(0.85rem, 2.2vw, 1.45rem);
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

.host-lead {
  margin: 0;
  font-family: "Carlito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.97rem, 1.04vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.host-logo {
  width: min(100%, 250px);
  height: auto;
  display: block;
}

.host-body {
  padding-left: clamp(0rem, 0.5vw, 0.2rem);
}

.host-body p {
  margin: 0;
  font-size: clamp(0.97rem, 1.04vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.host-body p + p {
  margin-top: 0.95rem;
}

.objective {
  background: #ffffff;
  border-top: 1px solid #d8e7ef;
  border-bottom: 1px solid #d8e7ef;
}

.objective-shell {
  max-width: 100%;
}

.objective-title {
  margin: 0;
  text-align: left;
  color: #0b2736;
  font-size: clamp(1.55rem, 3.05vw, 2.35rem);
  letter-spacing: 0.07em;
}

.objective-lead {
  margin: clamp(0.85rem, 1.8vw, 1.25rem) 0 0;
  max-width: 76ch;
  text-align: left;
  color: #1a4257;
  font-size: clamp(1rem, 1.14vw, 1.08rem);
  line-height: 1.7;
}

.objective-subtitle {
  margin: clamp(1.05rem, 2.2vw, 1.55rem) 0 0;
  font-family: "Kode Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #43738e;
}

.objective-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.5rem;
  counter-reset: objective-item;
}

.objective-list li {
  position: relative;
  margin: 0;
  padding: 0.72rem 0 0.72rem 2.3rem;
  counter-increment: objective-item;
  color: #15394d;
  font-size: 16px;
  line-height: 1.56;
  border-bottom: 1px solid #d8e7ef;
}

.objective-list li::before {
  content: counter(objective-item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.76rem;
  font-family: "Kode Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(22, 124, 172, 0.98);
}

.themes {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 340px at 100% 0%, rgba(22, 124, 172, 0.22), transparent 70%),
    linear-gradient(180deg, #05090d 0%, #000000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.themes::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/keybg.jpg") center center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.themes::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.26);
  pointer-events: none;
}

.themes-shell {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.themes-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  letter-spacing: 0.02em;
}

.themes-intro {
  margin: 0.85rem 0 0;
  max-width: 84ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.99rem, 1.06vw, 1.06rem);
  line-height: 1.66;
}

.themes-list {
  margin: clamp(1rem, 2.1vw, 1.5rem) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem clamp(1rem, 2.2vw, 1.9rem);
  counter-reset: theme-item;
}

.themes-list li {
  position: relative;
  margin: 0;
  padding: 0.82rem 0 0.82rem 2.25rem;
  counter-increment: theme-item;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.54;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.themes-list li::before {
  content: counter(theme-item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.84rem;
  font-family: "Kode Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  color: var(--brand);
}

.audience {
  background: #ffffff;
}

.audience-shell {
  max-width: 100%;
}

.audience-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(0.85rem, 2vw, 1.5rem);
  align-items: end;
  padding-bottom: clamp(0.8rem, 1.6vw, 1.15rem);
  border-bottom: 1px solid #d8e7ef;
}

.audience-head h2 {
  margin: 0;
  color: #0b2736;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  letter-spacing: 0.02em;
}

.audience-lead {
  margin: 0;
  margin-left: auto;
  text-align: right;
  color: #1b465d;
  font-size: clamp(0.99rem, 1.06vw, 1.06rem);
  line-height: 1.64;
}

.audience-subtitle {
  margin: clamp(0.95rem, 2vw, 1.35rem) 0 0;
  font-family: "Kode Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #43738e;
}

.audience-list {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.24rem clamp(0.9rem, 2vw, 1.6rem);
}

.audience-list li {
  margin: 0;
  padding: 0.76rem 0 0.76rem 0.95rem;
  color: #14374a;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.5;
  border-top: 1px solid #d8e7ef;
  border-left: 2px solid rgba(22, 124, 172, 0.45);
}

.audience-list + .audience-subtitle-secondary {
  margin-top: clamp(1.25rem, 2.4vw, 1.8rem);
}

.format {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.format::before {
  content: none;
}

.format::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(90px, 14vw, 150px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.64) 56%,
    #ffffff 100%
  );
  pointer-events: none;
  z-index: 0;
}

.format-shell {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.format-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
  grid-template-areas:
    "primary program"
    "delegates delegates";
  column-gap: clamp(1.1rem, 2.5vw, 2.35rem);
  row-gap: clamp(1rem, 2.2vw, 1.7rem);
  align-items: start;
}

.format-primary {
  grid-area: primary;
  padding-right: clamp(0.6rem, 1.5vw, 1.1rem);
}

.format-kicker {
  margin: 0 0 0.65rem;
  font-family: "Kode Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #43738e;
}

.format-primary h2 {
  margin: 0;
  color: #0b2736;
  font-size: clamp(1.55rem, 2.75vw, 2.2rem);
  letter-spacing: 0.03em;
}

.format-lead {
  margin: 0.85rem 0 0;
  color: #1b465d;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.64;
}

.format-program {
  grid-area: program;
  padding-left: clamp(0.95rem, 2.1vw, 1.5rem);
  border-left: 1px solid #d8e7ef;
}

.format-subtitle {
  margin: 0;
  font-family: "Kode Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #43738e;
}

.format-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: format-item;
}

.format-list li {
  position: relative;
  margin: 0;
  padding: 0.82rem 0 0.82rem 2.45rem;
  counter-increment: format-item;
  color: #14374a;
  font-size: clamp(1rem, 1.06vw, 1.06rem);
  line-height: 1.52;
  border-top: 1px solid #d8e7ef;
}

.format-list li::before {
  content: counter(format-item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.84rem;
  font-family: "Kode Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.format-delegates {
  grid-area: delegates;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.2rem;
  padding-top: clamp(0.95rem, 2vw, 1.25rem);
  border-top: 1px solid #d8e7ef;
}

.format-delegates-label {
  margin: 0;
  font-family: "Kode Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #43738e;
}

.format-delegates-value {
  margin: 0;
  color: #14374a;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
  line-height: 1.45;
  text-align: right;
}

.invite {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2.6rem, 4.4vw, 4rem) 0 clamp(3.1rem, 5vw, 4.8rem);
  background: #ffffff;
  border-top: 0;
  border-bottom: 1px solid #d8e7ef;
}

.invite::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/formbg.png") center center / cover no-repeat;
  filter: saturate(1.18) contrast(1.08);
  opacity: 0.52;
  z-index: 0;
}

.invite::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      58% 38% at 50% 56%,
      rgba(0, 0, 0, 0.13) 0%,
      rgba(0, 0, 0, 0.08) 36%,
      rgba(0, 0, 0, 0.03) 56%,
      rgba(0, 0, 0, 0) 72%
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.64) 12%,
      rgba(255, 255, 255, 0.2) 34%,
      rgba(255, 255, 255, 0.01) 50%,
      rgba(255, 255, 255, 0.2) 66%,
      rgba(255, 255, 255, 0.64) 88%,
      rgba(255, 255, 255, 0.92) 100%
    );
  z-index: 0;
}

.invite-shell {
  position: relative;
  z-index: 1;
  max-width: min(100%, 700px);
  margin-top: 0;
  padding: 0;
}

.invite-head {
  margin: 0 auto;
  max-width: 60ch;
  text-align: center;
}

.invite-head h2 {
  margin: 0;
  color: #0f3b50;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  letter-spacing: 0.02em;
}

.invite-kicker {
  margin: 0 0 0.62rem;
  font-family: "Kode Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3f7996;
}

.invite-lead {
  margin: 0.82rem 0 0;
  color: #1c4a63;
  font-size: clamp(0.99rem, 1.06vw, 1.06rem);
  line-height: 1.62;
}

.invite-form-card {
  position: relative;
  overflow: hidden;
  margin-top: clamp(0.8rem, 1.7vw, 1.2rem);
  padding: clamp(0.8rem, 1.8vw, 1.2rem);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 1rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.22) 100%
  );
  -webkit-backdrop-filter: blur(72px) saturate(170%) contrast(1.04) brightness(1.03);
  backdrop-filter: blur(72px) saturate(170%) contrast(1.04) brightness(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -1px 0 rgba(255, 255, 255, 0.76),
    inset 1px 0 0 rgba(255, 255, 255, 0.54),
    inset -1px 0 0 rgba(255, 255, 255, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 -16px 38px -24px rgba(0, 0, 0, 0.22),
    0 22px 56px -24px rgba(0, 0, 0, 0.28),
    0 26px 50px -36px rgba(10, 10, 10, 0.2),
    0 10px 30px -24px rgba(10, 10, 10, 0.12);
}

.invite-form-card::before {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: inherit;
  pointer-events: none;
  background: url("assets/images/formbg.png") center center / cover no-repeat;
  filter: blur(22px) saturate(130%) contrast(1) brightness(1.05);
  opacity: 0.2;
  transform: scale(1.2);
  z-index: 0;
}

.invite-form-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.14) 100%),
    radial-gradient(85% 75% at 50% 50%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 70%);
  z-index: 1;
}

.invite-form-card > * {
  position: relative;
  z-index: 2;
}

.invite-fields {
  display: grid;
  gap: 0.65rem;
}

.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;
}

.invite-input {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(240, 249, 255, 0.78);
  border-radius: 0.75rem;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(243, 250, 253, 0.23) 44%,
    rgba(224, 241, 246, 0.13) 100%
  );
  -webkit-backdrop-filter: blur(42px) saturate(145%) contrast(1.06) brightness(1.04);
  backdrop-filter: blur(42px) saturate(145%) contrast(1.06) brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(226, 240, 249, 0.18),
    0 10px 20px -18px rgba(8, 24, 14, 0.2);
  color: #111111;
  text-shadow: none;
  font-family: "Carlito", sans-serif;
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.2;
  padding: 0.68rem 0.85rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease, backdrop-filter 160ms ease;
}

.invite-input::placeholder {
  color: rgba(0, 0, 0, 0.56);
}

.invite-input:focus-visible {
  outline: none;
  border-color: rgba(208, 236, 249, 0.98);
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.48) 0%,
    rgba(247, 252, 255, 0.28) 45%,
    rgba(231, 244, 250, 0.16) 100%
  );
  -webkit-backdrop-filter: blur(46px) saturate(155%) contrast(1.08) brightness(1.05);
  backdrop-filter: blur(46px) saturate(155%) contrast(1.08) brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.93),
    0 0 0 2px rgba(185, 223, 239, 0.34),
    0 14px 28px -20px rgba(8, 24, 14, 0.18);
}

.invite-consent {
  margin-top: 0.82rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.invite-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #bcdcf0;
  flex: 0 0 auto;
}

.invite-consent span {
  color: #111111;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.84rem, 0.92vw, 0.9rem);
  line-height: 1.52;
  text-shadow: none;
}

.invite-consent a {
  color: #111111;
  text-decoration: none;
  text-underline-offset: 2px;
}

.invite-submit {
  display: block;
  width: auto;
  min-width: 170px;
  margin-top: 0.82rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.62rem 1.1rem;
  border-radius: 0.7rem;
  font-size: clamp(0.84rem, 1.05vw, 0.92rem);
  color: #ffffff;
}

.invite-submit .btn-txt {
  color: #ffffff;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 32%, #f8fbfd 100%);
  border-top: 1px solid rgba(18, 78, 104, 0.12);
  font-family: "Kode Mono", monospace;
  padding: clamp(1.45rem, 3.1vw, 2.15rem) 0 0.82rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.95) 24%,
      rgba(255, 255, 255, 0.52) 56%,
      rgba(255, 255, 255, 0) 82%
    ),
    radial-gradient(
      58% 44% at 0% 0%,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.96) 30%,
      rgba(255, 255, 255, 0.72) 52%,
      rgba(255, 255, 255, 0.18) 74%,
      rgba(255, 255, 255, 0) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/endbg.png") center center / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.15rem, 2.6vw, 2.25rem);
  padding-bottom: clamp(0.85rem, 1.9vw, 1.25rem);
  border-bottom: 1px solid #d8e7ef;
}

.footer-cogent-logo {
  width: min(100%, 198px);
  height: auto;
  display: block;
}

.footer-about {
  margin: 0.72rem 0 0;
  max-width: 46ch;
  font-family: "Carlito", sans-serif;
  font-weight: 400;
  color: #1a4257;
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.52;
}

.footer-subtitle {
  margin: clamp(0.86rem, 1.5vw, 1.12rem) 0 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #12384d;
  font-size: clamp(1.2rem, 1.7vw, 1.48rem);
  letter-spacing: -0.01em;
}

.footer-awards {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  max-width: 460px;
}

.footer-awards img {
  width: auto;
  height: 92px;
  flex: 0 0 auto;
  display: block;
}

.footer-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #12384d;
  font-size: clamp(1.22rem, 1.75vw, 1.52rem);
  letter-spacing: -0.01em;
}

.footer-office-list {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.footer-office-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.68rem;
}

.footer-office-name {
  margin: 0;
  color: #14374a;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.9rem, 0.96vw, 0.98rem);
  font-weight: 600;
  line-height: 1.3;
}

.footer-office-text {
  margin: 0.2rem 0 0;
  color: #1b465d;
  font-family: "Kode Mono", monospace;
  font-weight: 400;
  font-size: clamp(0.84rem, 0.88vw, 0.9rem);
  line-height: 1.45;
}

.footer-contact {
  margin: 0.62rem 0 0;
  display: flex;
  align-items: flex-start;
  gap: 0.52rem;
  font-family: "Kode Mono", monospace;
  font-weight: 400;
  color: #1a4257;
  font-size: clamp(0.85rem, 0.9vw, 0.92rem);
  line-height: 1.43;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-contact a:hover {
  color: #0f5f84;
}

.footer-icon {
  width: 1.02rem;
  height: 1.02rem;
  display: inline-flex;
  flex: 0 0 auto;
  color: #43738e;
  margin-top: 0.08rem;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
  padding-top: 0.72rem;
}

.footer-copy {
  margin: 0;
  font-family: "Kode Mono", monospace;
  color: #224f67;
  font-size: clamp(0.72rem, 0.8vw, 0.8rem);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-social-link {
  width: 2.28rem;
  height: 2.28rem;
  border-radius: 999px;
  border: 1px solid #d5e6ef;
  background: #f4f9fc;
  color: #164b66;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  border-color: #8fbfd5;
  color: #0f5f84;
  background: #ffffff;
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

@media (max-width: 1200px) {
  :root {
    --page-gutter: clamp(32px, 5vw, 72px);
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 3.9vw, 2.95rem);
  }
}

@media (max-width: 992px) {
  :root {
    --page-gutter: 28px;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    padding: 5.5rem 0 3.9rem;
    align-items: flex-start;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.75rem, 4.4vw, 2.5rem);
  }

  .hero-copy {
    margin-top: clamp(0.5rem, 1.2vh, 1rem);
  }

  .hero .eyebrow {
    font-size: 0.84rem;
  }

  .hero-summary {
    max-width: 100%;
  }

  .hero-strip {
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-image-band {
    height: 34vh;
    min-height: 220px;
    max-height: 380px;
  }

  .overview-row {
    grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.22fr);
    gap: 1.35rem;
  }

  .overview-title h2 {
    font-size: clamp(1.75rem, 4.1vw, 2.45rem);
  }

  .overview-panel .overview-lead {
    font-size: clamp(0.92rem, 1.72vw, 1.14rem);
    max-width: 100%;
  }

  .overview-panel .overview-subcopy {
    font-size: clamp(0.9rem, 1.58vw, 1.06rem);
  }

  .host-grid {
    grid-template-columns: 1fr;
  }

  .host-left {
    border-right: 0;
    padding-right: 0;
  }

  .host-lead {
    font-size: clamp(0.97rem, 1.04vw, 1.05rem);
    line-height: 1.7;
  }

  .objective-list {
    grid-template-columns: 1fr;
    gap: 0.34rem;
  }

  .themes-list {
    grid-template-columns: 1fr;
  }

  .audience-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .format-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "primary"
      "program"
      "delegates";
    gap: 1rem;
  }

  .format-primary {
    padding-right: 0;
    padding-bottom: 0;
  }

  .format-program {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #d8e7ef;
    padding-top: 0.95rem;
  }

  .invite-shell {
    max-width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-awards {
    max-width: 100%;
    gap: 0.32rem;
  }

  .footer-awards img {
    width: auto;
    height: 82px;
    flex-basis: auto;
  }

}

@media (max-width: 700px) {
  :root {
    --page-gutter: 20px;
  }

  .section:not(.hero):not(.overview) {
    padding: 3.1rem 0;
  }

  .overview-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.75rem 0;
    min-height: 0;
  }

  .chip-link {
    display: none;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 7.3vw, 2.05rem);
  }

  .hero-copy {
    margin-top: 0.35rem;
  }

  .hero .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .hero-summary {
    max-width: 100%;
    font-size: 0.97rem;
    line-height: 1.55;
  }

  .brand-text {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .btn {
    font-size: 0.82rem;
    padding: 0.54rem 0.76rem;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .meta-chip h3 {
    font-size: 0.72rem;
  }

  .meta-chip p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .hero-strip .meta-chip-highlight {
    padding: 0.58rem 0.68rem 0.62rem 0.72rem;
  }

  .hero-strip .meta-chip-date p,
  .hero-strip .meta-chip-location p {
    font-size: clamp(1.18rem, 1.38vw, 1.32rem);
  }

  .overview-image-band {
    height: 30vh;
    min-height: 180px;
    max-height: 300px;
  }

  .overview-green-band {
    padding: 1.8rem 0 2rem;
  }

  .overview-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .overview-title h2 {
    font-size: clamp(1.58rem, 8.5vw, 2.25rem);
  }

  .overview-panel {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    padding-top: 1rem;
  }

  .overview-panel p {
    line-height: 1.67;
    font-size: 0.9rem;
  }

  .overview-panel .overview-lead {
    font-size: clamp(0.88rem, 4.1vw, 1.02rem);
    line-height: 1.4;
    letter-spacing: -0.01em;
  }

  .overview-panel .overview-subcopy {
    margin-top: 0.82rem;
    font-size: clamp(0.86rem, 3.8vw, 0.98rem);
    line-height: 1.64;
  }

  .host {
    padding-top: 1.8rem;
  }

  .host-shell {
    padding: 0;
  }

  .host-title {
    font-size: clamp(1.2rem, 6.5vw, 1.55rem);
    letter-spacing: 0.06em;
  }

  .host-grid {
    margin-top: 0.86rem;
    gap: 0.82rem;
    padding-top: 0.86rem;
  }

  .host-left {
    gap: 0.75rem;
    padding: 0 0 0.85rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  }

  .host-lead {
    font-size: 0.94rem;
    line-height: 1.58;
    padding: 0;
  }

  .host-logo {
    width: min(100%, 210px);
  }

  .host-body {
    padding-left: 0;
  }

  .host-body p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .objective-title {
    font-size: clamp(1.2rem, 6.5vw, 1.55rem);
    letter-spacing: 0.05em;
  }

  .objective-lead {
    font-size: 0.95rem;
    line-height: 1.58;
    margin-top: 0.74rem;
  }

  .objective-subtitle {
    font-size: 0.69rem;
    margin-top: 0.95rem;
  }

  .objective-list li {
    padding: 0.62rem 0 0.62rem 2.05rem;
    font-size: 16px;
    line-height: 1.52;
  }

  .objective-list li::before {
    top: 0.64rem;
    font-size: 0.63rem;
  }

  .themes-head h2 {
    font-size: clamp(1.2rem, 6.3vw, 1.52rem);
  }

  .themes-intro {
    margin-top: 0.72rem;
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .themes-list {
    margin-top: 0.82rem;
  }

  .themes-list li {
    padding: 0.68rem 0 0.68rem 1.95rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .themes-list li::before {
    top: 0.69rem;
    font-size: 0.62rem;
  }

  .audience-head h2 {
    font-size: clamp(1.2rem, 6.3vw, 1.5rem);
  }

  .audience-lead {
    font-size: 0.95rem;
    line-height: 1.57;
  }

  .audience-subtitle {
    margin-top: 0.9rem;
    font-size: 0.68rem;
  }

  .audience-list li {
    padding: 0.64rem 0 0.64rem 0.82rem;
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .format-kicker {
    font-size: 0.68rem;
  }

  .format-primary h2 {
    font-size: clamp(1.2rem, 6.3vw, 1.5rem);
  }

  .format-lead {
    font-size: 0.95rem;
    line-height: 1.57;
  }

  .format-subtitle {
    margin-top: 0;
    font-size: 0.68rem;
  }

  .format-list li {
    padding: 0.64rem 0 0.64rem 1.92rem;
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .format-list li::before {
    top: 0.66rem;
    font-size: 0.62rem;
  }

  .format-delegates {
    display: block;
  }

  .format-delegates-label {
    font-size: 0.68rem;
  }

  .format-delegates-value {
    font-size: 1rem;
    margin-top: 0.45rem;
    text-align: left;
  }

  .invite-head h2 {
    font-size: clamp(1.2rem, 6.3vw, 1.5rem);
  }

  .invite-kicker {
    font-size: 0.68rem;
  }

  .invite-lead {
    font-size: 0.95rem;
    line-height: 1.57;
  }

  .invite-form-card {
    margin-top: 0.86rem;
    padding: 0.85rem;
    border-radius: 0.85rem;
  }

  .invite-fields {
    gap: 0.68rem;
  }

  .invite-input {
    min-height: 2.95rem;
    border-radius: 0.8rem;
    font-size: 0.95rem;
  }

  .invite-consent {
    margin-top: 0.85rem;
    gap: 0.55rem;
  }

  .invite-consent input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
  }

  .invite-consent span {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .invite-submit {
    margin-top: 0.85rem;
    width: 100%;
    min-width: 0;
    font-size: 0.92rem;
    padding: 0.72rem 0.92rem;
  }

  .site-footer {
    padding-top: 1.35rem;
  }

  .footer-cogent-logo {
    width: min(100%, 172px);
  }

  .footer-title,
  .footer-subtitle {
    font-size: clamp(1.02rem, 5.1vw, 1.3rem);
  }

  .footer-about,
  .footer-office-name {
    font-size: 0.9rem;
  }

  .footer-about {
    font-size: 0.95rem;
  }

  .footer-office-text,
  .footer-contact {
    font-size: 0.86rem;
  }

  .footer-awards {
    max-width: 250px;
    gap: 0.28rem;
  }

  .footer-awards img {
    width: auto;
    height: 70px;
    flex-basis: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.52rem;
  }

  .footer-social-link {
    width: 2.14rem;
    height: 2.14rem;
  }
}

@media (max-width: 380px) {
  :root {
    --page-gutter: 16px;
  }

  .hero {
    padding-top: 5.2rem;
  }

  .hero-actions {
    gap: 0.5rem;
  }

  .btn {
    width: 100%;
  }

  .overview-image-band {
    height: 25vh;
    min-height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chip-link {
    max-width: none;
    border-right: 0;
    animation: none;
  }

  .overview-green-band::after,
  .host::after {
    animation: none;
    transform: none;
  }

  .hero-strip .meta-chip-highlight::before,
  .hero-strip .meta-chip-highlight::after {
    animation: none;
  }
}
