:root {
  color-scheme: dark;
  --brand-950: #050c14;
  --brand-900: #07121f;
  --brand-850: #0a1827;
  --brand-800: #0e2134;
  --brand-700: #123958;
  --brand-600: #1769aa;
  --brand-500: #247fc3;
  --brand-400: #3b9bd9;
  --brand-300: #73bde8;
  --brand-100: #dceffc;
  --white: #f8fbfd;
  --text: #e9f0f6;
  --muted: #91a3b5;
  --line: rgba(148, 177, 201, 0.19);
  --line-strong: rgba(115, 189, 232, 0.42);
  --air: #54b9ef;
  --land: #89a975;
  --sea: #2678ad;
  --max-width: 1280px;
  --gutter: max(5vw, calc((100vw - var(--max-width)) / 2));
  --font-sans: Inter, "Arial Nova", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--brand-600) var(--brand-950);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--brand-950);
  color: var(--text);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--brand-400);
  color: var(--brand-950);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-300);
  outline-offset: 4px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--brand-950);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid transparent;
  padding: 0 4vw;
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  min-height: 70px;
  border-bottom-color: var(--line);
  background: rgba(5, 12, 20, 0.93);
  box-shadow: 0 16px 40px rgba(0, 8, 16, 0.24);
  backdrop-filter: blur(18px);
}

.public-brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 0.78rem;
}

.public-brand-logo {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: contain;
}

.public-brand-copy strong,
.public-brand-copy small {
  display: block;
}

.public-brand-copy strong {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.public-brand-copy small {
  margin-top: 0.2rem;
  color: #9caebe;
  font-size: 0.65rem;
  letter-spacing: 0.045em;
}

.public-navigation {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.65vw, 1.8rem);
  color: #c5d2dd;
  font-size: 0.78rem;
  font-weight: 750;
}

.public-navigation a {
  position: relative;
  padding: 0.7rem 0;
}

.public-navigation a:not(.nav-cta)::after {
  position: absolute;
  right: 100%;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  background: var(--brand-300);
  content: "";
  transition: right 180ms ease;
}

.public-navigation a:hover,
.public-navigation a:focus-visible {
  color: white;
}

.public-navigation a:hover::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(115, 189, 232, 0.55);
  padding: 0.65rem 0.9rem !important;
  background: rgba(23, 105, 170, 0.14);
  color: var(--brand-100) !important;
}

.nav-cta:hover {
  background: rgba(23, 105, 170, 0.3);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(7, 18, 31, 0.88);
  color: white;
  cursor: pointer;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(780px, 100svh);
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  scale: 1.015;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 12, 20, 0.99) 0%, rgba(5, 12, 20, 0.91) 31%, rgba(5, 12, 20, 0.35) 62%, rgba(5, 12, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 12, 20, 0.98) 0%, transparent 32%, rgba(5, 12, 20, 0.22) 100%);
}

.hero-grid {
  z-index: -1;
  opacity: 0.68;
  background-image:
    linear-gradient(rgba(115, 189, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 189, 232, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-inner {
  display: flex;
  width: 100%;
  max-width: var(--max-width);
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin: 0 auto;
  padding: 8.5rem 0 11rem;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-300);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 890px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.65rem, 7.7vw, 8.25rem);
  font-weight: 950;
  letter-spacing: -0.067em;
  line-height: 0.88;
}

.hero h1 span {
  display: block;
  margin-top: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(220, 239, 252, 0.7);
}

.hero-copy {
  max-width: 630px;
  margin: 1.9rem 0 0;
  color: #b6c5d2;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  padding: 0.8rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary {
  background: var(--brand-400);
  color: var(--brand-950);
}

.button-primary:hover {
  background: #67baf0;
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(220, 239, 252, 0.28);
  background: rgba(5, 12, 20, 0.34);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: var(--brand-300);
  background: rgba(23, 105, 170, 0.17);
}

.button-disabled {
  border-color: var(--line);
  color: #adbdca;
  cursor: not-allowed;
}

.hero-corner-note {
  display: flex;
  max-width: 280px;
  align-items: flex-start;
  align-self: flex-end;
  gap: 0.85rem;
  margin-bottom: 2rem;
  border-left: 1px solid var(--brand-300);
  padding: 0.15rem 0 0.15rem 1rem;
}

.hero-corner-note strong,
.hero-corner-note small {
  display: block;
}

.hero-corner-note strong {
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-corner-note small {
  margin-top: 0.45rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.signal-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--brand-300);
  box-shadow: 0 0 0 6px rgba(115, 189, 232, 0.12), 0 0 22px rgba(115, 189, 232, 0.8);
}

.hero-domain-rail {
  position: absolute;
  right: var(--gutter);
  bottom: 0;
  left: var(--gutter);
  display: grid;
  border-top: 1px solid rgba(220, 239, 252, 0.22);
  grid-template-columns: repeat(3, 1fr);
  background: rgba(5, 12, 20, 0.66);
  backdrop-filter: blur(14px);
}

.hero-domain-rail a {
  display: grid;
  min-height: 112px;
  align-content: center;
  border-right: 1px solid var(--line);
  grid-template-columns: auto 1fr;
  column-gap: 0.8rem;
  padding: 1.25rem 1.5rem;
}

.hero-domain-rail a:last-child {
  border-right: 0;
}

.hero-domain-rail a:hover {
  background: rgba(23, 105, 170, 0.16);
}

.hero-domain-rail span {
  align-self: center;
  grid-row: 1 / 3;
  color: var(--brand-300);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.hero-domain-rail strong {
  font-size: 0.94rem;
}

.hero-domain-rail small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.development-note {
  display: flex;
  max-width: var(--max-width);
  align-items: flex-start;
  gap: 0.9rem;
  margin: 2rem auto 0;
  border: 1px solid rgba(115, 189, 232, 0.22);
  background: rgba(23, 105, 170, 0.07);
  padding: 0.95rem 1.15rem;
  color: #9eb8ca;
}

.development-note i {
  margin-top: 0.2rem;
  color: var(--brand-300);
}

.development-note p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.65;
}

.development-note strong {
  color: var(--brand-100);
}

.metrics {
  display: grid;
  max-width: var(--max-width);
  grid-template-columns: repeat(4, 1fr);
  margin: 4rem auto 0;
  border-block: 1px solid var(--line);
}

.metrics article {
  min-height: 146px;
  border-right: 1px solid var(--line);
  padding: 2rem 1.5rem;
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 950;
  letter-spacing: -0.05em;
}

.metrics span {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 7.5rem 0;
  scroll-margin-top: 78px;
}

.section-dark {
  position: relative;
}

.section-dark::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  border-block: 1px solid rgba(148, 177, 201, 0.1);
  background: var(--brand-900);
  content: "";
}

.section-heading-public {
  display: grid;
  align-items: end;
  gap: 2.5rem;
  grid-template-columns: 1fr minmax(19rem, 0.56fr);
  margin-bottom: 3.4rem;
}

.section-heading-public h2,
.sponsor-section h2,
.apply-section h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 5.4vw, 5.25rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.section-heading-public > p,
.sponsor-intro,
.apply-section > div > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.domain-card {
  position: relative;
  display: flex;
  min-height: 450px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-right: 0;
  padding: 2rem;
  transition: transform 200ms ease, border-color 200ms ease;
}

.domain-card:last-child {
  border-right: 1px solid var(--line);
}

.domain-card::before {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
  right: -92px;
  top: -92px;
}

.domain-card::after {
  position: absolute;
  width: 155px;
  height: 155px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
  right: -42px;
  top: -42px;
}

.domain-card:hover {
  z-index: 2;
  border-color: currentColor;
  transform: translateY(-8px);
}

.domain-air {
  background: linear-gradient(155deg, rgba(84, 185, 239, 0.16), rgba(7, 18, 31, 0.76) 58%);
  color: var(--air);
}

.domain-land {
  background: linear-gradient(155deg, rgba(137, 169, 117, 0.15), rgba(7, 18, 31, 0.76) 58%);
  color: var(--land);
}

.domain-sea {
  background: linear-gradient(155deg, rgba(38, 120, 173, 0.2), rgba(7, 18, 31, 0.76) 58%);
  color: #55a7d9;
}

.domain-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.domain-card-top i {
  font-size: 2.25rem;
}

.domain-number {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.domain-label,
.card-kicker,
.event-type {
  color: currentColor;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.domain-card h3 {
  margin: 0.7rem 0;
  color: var(--white);
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  letter-spacing: -0.055em;
}

.domain-card p {
  margin: 0;
  color: #a9b9c7;
  line-height: 1.7;
}

.team-showcase,
.news-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.public-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(10, 24, 39, 0.78);
  padding: 2rem;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
}

.team-public-card {
  min-height: 410px;
}

.team-public-card:hover,
.news-card:hover {
  border-color: var(--line-strong);
  background: rgba(14, 33, 52, 0.9);
  transform: translateY(-6px);
}

.team-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-index,
.news-date {
  color: var(--brand-300);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #86b879;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-status i {
  font-size: 0.35rem;
}

.card-icon,
.news-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-top: 3.5rem;
  border: 1px solid rgba(115, 189, 232, 0.28);
  background: rgba(23, 105, 170, 0.09);
  color: var(--brand-300);
  font-size: 1.3rem;
}

.team-public-logo {
  width: 72px;
  height: 72px;
  margin-top: 2.65rem;
  border-radius: 999px;
  background: white;
  object-fit: contain;
}

.card-kicker {
  margin: 2rem 0 0.4rem !important;
  color: var(--brand-300) !important;
}

.public-card h3 {
  margin: 0.5rem 0 0.8rem;
  color: var(--white);
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.public-card p {
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  position: absolute;
  inset: auto 2rem 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #cbd8e3;
  font-size: 0.72rem;
  font-weight: 750;
}

.text-link-muted {
  color: #738596;
}

.section-projects {
  max-width: none;
  padding-inline: var(--gutter);
  background:
    linear-gradient(rgba(115, 189, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 189, 232, 0.025) 1px, transparent 1px),
    #070f19;
  background-size: 72px 72px;
}

.project-feature {
  display: grid;
  min-height: 500px;
  border: 1px solid var(--line);
  grid-template-columns: 1.15fr 0.85fr;
  background: rgba(5, 12, 20, 0.78);
}

.project-image-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  place-content: center;
  border-right: 1px solid var(--line);
  background: radial-gradient(circle at center, rgba(36, 127, 195, 0.22), transparent 58%);
  color: #527b99;
  text-align: center;
}

.project-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(115, 189, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 189, 232, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.project-image-placeholder i {
  position: relative;
  font-size: clamp(6rem, 12vw, 11rem);
}

.project-image-placeholder > span:last-child {
  position: relative;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}

.project-copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 4.6rem);
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand-300);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-label i {
  font-size: 0.34rem;
}

.project-copy h3 {
  margin: 1.2rem 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.project-copy > p {
  color: var(--muted);
  line-height: 1.75;
}

.spec-list {
  display: grid;
  margin: 2.3rem 0 0;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 0.85rem 0;
}

.spec-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: #d6e2eb;
  font-size: 0.8rem;
  font-weight: 700;
}

.news-card {
  min-height: 360px;
}

.news-icon {
  margin-top: 2.7rem;
}

.news-card h3 {
  margin-top: 1.4rem;
}

.events-section {
  border-top: 1px solid var(--line);
}

.event-list {
  border-top: 1px solid var(--line);
}

.event-card {
  display: grid;
  min-height: 150px;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 120px 1fr auto;
  padding: 1.5rem;
  transition: background 180ms ease, padding 180ms ease;
}

.event-card:hover {
  background: rgba(23, 105, 170, 0.09);
  padding-inline: 2rem;
}

.event-card time {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.event-card time strong {
  color: var(--brand-300);
  font-size: 2.8rem;
  line-height: 1;
}

.event-card time span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.event-card h3 {
  margin: 0.35rem 0;
  color: var(--white);
  font-size: 1.35rem;
}

.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.event-card > i {
  color: var(--brand-300);
}

.sponsor-section {
  padding: 7.5rem var(--gutter);
  scroll-margin-top: 78px;
  background: #f5f8fa;
  color: #07121f;
  text-align: center;
}

.sponsor-section .eyebrow {
  color: var(--brand-600);
}

.sponsor-section h2 {
  color: #07121f;
}

.sponsor-intro {
  max-width: 680px;
  margin: 1.5rem auto 0;
  color: #5a6b79;
}

.sponsor-placeholders {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3.2rem;
  background: #dbe4e9;
}

.sponsor-placeholders span {
  display: grid;
  min-height: 138px;
  place-items: center;
  background: #f5f8fa;
  color: #82919d;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.sponsor-public-item {
  position: relative;
  display: grid;
  min-height: 138px;
  place-items: center;
  gap: 0.65rem;
  background: #f5f8fa;
  color: #36566e;
  padding: 1.2rem;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.sponsor-public-item:hover {
  z-index: 1;
  background: white;
  transform: translateY(-3px);
}

.sponsor-public-item img {
  width: min(150px, 85%);
  height: 70px;
  object-fit: contain;
}

.sponsor-public-item strong {
  font-size: 1rem;
}

.sponsor-public-item span {
  min-height: auto;
  background: transparent;
  padding: 0;
}

.apply-section {
  position: relative;
  display: grid;
  max-width: var(--max-width);
  align-items: center;
  gap: 3rem;
  grid-template-columns: 160px 1fr auto;
  margin: 0 auto;
  padding: 7rem 0;
  scroll-margin-top: 78px;
}

.apply-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.apply-section > div > p:last-child {
  max-width: 650px;
  margin-top: 1.5rem;
}

.public-footer {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.5fr 0.65fr 0.65fr;
  border-top: 1px solid var(--line);
  padding: 4rem var(--gutter) 2rem;
  background: #040a11;
}

.footer-brand-column > p {
  margin: 1.5rem 0 0;
  color: var(--brand-300);
  font-size: 1.05rem;
  font-weight: 800;
}

.public-footer > div > strong,
.public-footer > div > a {
  display: block;
  margin-bottom: 0.8rem;
}

.public-footer > div > strong {
  margin-bottom: 1.3rem;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-footer > div > a {
  color: var(--muted);
  font-size: 0.8rem;
}

.public-footer > div > a:hover {
  color: var(--brand-300);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  margin: 1rem 0 0;
  padding-top: 2rem;
  color: #65788a;
  font-size: 0.68rem;
}

@media (max-width: 1360px) {
  .hero-inner,
  .development-note,
  .metrics,
  .section,
  .apply-section {
    margin-right: 4vw;
    margin-left: 4vw;
  }

  .section-projects {
    margin-inline: 0;
  }

  .hero-domain-rail {
    right: 4vw;
    left: 4vw;
  }
}

@media (max-width: 1100px) {
  .public-navigation {
    gap: 0.8rem;
  }

  .public-navigation a {
    font-size: 0.7rem;
  }

  .hero-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .hero-corner-note {
    display: none;
  }

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

  .domain-card {
    border-right: 1px solid var(--line);
  }

  .domain-card:last-child {
    grid-column: 1 / -1;
    min-height: 350px;
  }

  .team-showcase,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-public-card:last-child,
  .news-card:last-child {
    grid-column: 1 / -1;
  }

  .apply-section {
    grid-template-columns: 130px 1fr;
  }

  .apply-section .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 840px) {
  .site-header {
    min-height: 70px;
    padding-inline: 5vw;
    background: rgba(5, 12, 20, 0.86);
    backdrop-filter: blur(15px);
  }

  .public-brand-logo {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    display: grid;
  }

  .public-navigation {
    position: absolute;
    inset: 70px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 12, 20, 0.98);
    padding: 0.8rem 5vw 1.4rem;
  }

  .public-navigation.is-open {
    display: flex;
  }

  .public-navigation a {
    border-bottom: 1px solid rgba(148, 177, 201, 0.1);
    padding: 0.9rem 0;
    font-size: 0.8rem;
  }

  .public-navigation a::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 0.7rem;
    border-bottom-color: rgba(115, 189, 232, 0.55) !important;
    padding: 0.75rem !important;
  }

  .hero {
    min-height: 880px;
  }

  .hero-media {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 12, 20, 0.96), rgba(5, 12, 20, 0.5)),
      linear-gradient(0deg, rgba(5, 12, 20, 0.99) 0%, rgba(5, 12, 20, 0.3) 64%, rgba(5, 12, 20, 0.44) 100%);
  }

  .hero-inner {
    margin-inline: 5vw;
    padding: 8rem 0 18rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 13vw, 6rem);
  }

  .hero-domain-rail {
    right: 5vw;
    left: 5vw;
    grid-template-columns: 1fr;
  }

  .hero-domain-rail a {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem;
  }

  .hero-domain-rail a:last-child {
    border-bottom: 0;
  }

  .development-note {
    margin-inline: 5vw;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
    margin-inline: 5vw;
  }

  .metrics article:nth-child(2) {
    border-right: 0;
  }

  .metrics article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    margin-inline: 5vw;
    padding-block: 6rem;
  }

  .section-projects {
    margin-inline: 0;
    padding-inline: 5vw;
  }

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

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

  .project-image-placeholder {
    min-height: 350px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sponsor-placeholders {
    grid-template-columns: 1fr 1fr;
  }

  .apply-section {
    margin-inline: 5vw;
  }

  .public-footer {
    grid-template-columns: 1fr 1fr;
    padding-inline: 5vw;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .public-brand-copy small {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .metrics,
  .domain-grid,
  .team-showcase,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .domain-card,
  .domain-card:last-child {
    min-height: 370px;
    grid-column: auto;
  }

  .team-public-card:last-child,
  .news-card:last-child {
    grid-column: auto;
  }

  .event-card {
    gap: 1rem;
    grid-template-columns: 72px 1fr;
    padding-inline: 0.5rem;
  }

  .event-card:hover {
    padding-inline: 0.5rem;
  }

  .event-card > i {
    display: none;
  }

  .event-card time {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .sponsor-placeholders {
    grid-template-columns: 1fr;
  }

  .apply-section {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .apply-logo {
    width: 110px;
    height: 110px;
  }

  .apply-section .button {
    grid-column: auto;
  }

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

  .footer-brand-column,
  .footer-bottom {
    grid-column: auto;
  }
}

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

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

  .hero-media {
    scale: 1;
  }
}
