:root {
  --bg: #050403;
  --bg-elevated: #0a0806;
  --bg-panel: rgba(12, 10, 6, 0.88);
  --bg-panel-strong: rgba(14, 11, 7, 0.95);
  --text-main: #f5f0e4;
  --text-soft: #c2b89e;
  --text-dim: #7a6f5c;
  --line: rgba(197, 168, 100, 0.16);
  --line-strong: rgba(212, 185, 120, 0.28);
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.18);
  --accent-glow: rgba(212, 175, 55, 0.42);
  --gold-bright: #f0d78c;
  --gold-mid: #c9a84c;
  --gold-dark: #8a6d2f;
  --gold-deep: #5c4a1f;
  --metal: #e8dcc4;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
  --hero-serif: "Didot", "Bodoni MT", "Playfair Display", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  --ui-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--ui-sans);
  background:
    radial-gradient(circle at 50% 22%, rgba(212, 175, 55, 0.08), transparent 22%),
    radial-gradient(circle at 18% 18%, rgba(138, 109, 47, 0.14), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(120, 100, 60, 0.08), transparent 26%),
    linear-gradient(180deg, #030201 0%, #070503 46%, #0a0806 100%);
  color: var(--text-main);
  overflow-x: hidden;
}

body.gate-locked {
  overflow: hidden;
}

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.noise-layer,
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise-layer {
  opacity: 0.06;
  background-image:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.04) 0 1px, transparent 1px),
    repeating-linear-gradient(90deg, rgba(212, 175, 55, 0.02) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 4px);
  background-size: 240px 240px, 100% 100%, 4px 4px;
  mix-blend-mode: screen;
}

.atmosphere {
  filter: blur(120px);
  opacity: 0.38;
}

.atmosphere-left {
  background: radial-gradient(circle at 18% 30%, rgba(180, 140, 40, 0.18), transparent 38%);
}

.atmosphere-right {
  background: radial-gradient(circle at 82% 24%, rgba(160, 130, 60, 0.1), transparent 30%);
}

.site-header,
main {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 18px;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.78), rgba(5, 4, 3, 0));
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  display: inline-flex;
  width: 92px;
  height: 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.brand-logo-image,
.gate-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.3) contrast(1.4) drop-shadow(0 0 22px rgba(212, 175, 55, 0.24));
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-name,
.access-brand {
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f0d78c, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-subline,
.access-subline {
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-soft);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-nav a {
  position: relative;
  padding-bottom: 6px;
  transition: color 320ms ease;
}

.header-nav a:hover {
  color: var(--gold-bright);
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 320ms ease;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  opacity: 1;
}

main {
  padding-bottom: 80px;
}

.section-frame {
  position: relative;
  margin-bottom: 28px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.02), rgba(212, 175, 55, 0.005)),
    linear-gradient(180deg, rgba(8, 6, 3, 0.96), rgba(10, 8, 5, 0.92));
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.06), var(--shadow);
}

.section-frame::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(212, 175, 55, 0.04);
  pointer-events: none;
}

.hero {
  padding-top: 72px;
  min-height: calc(100vh - 110px);
  display: grid;
  align-content: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% 12% 44%;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 60%);
  filter: blur(28px);
  pointer-events: none;
}

.eyebrow,
.section-kicker,
.panel-label,
.status-label,
.cta-kicker,
.dna-index,
.access-chip {
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-mid);
}

.eyebrow-line {
  width: 62px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.12), var(--accent));
}

.hero-meta,
.hero-copy,
.section-heading p,
.status-card p,
.data-panel p,
.dna-card p,
.kpi-card p,
.selection-card p,
.application-card p,
.cta-text,
.access-card-note {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero h1,
.section-heading h2,
.access-card h2 {
  margin: 0;
  font-family: var(--hero-serif);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 10.6ch;
  margin-top: 20px;
  font-size: clamp(3.25rem, 9vw, 6.9rem);
  line-height: 0.98;
  background: linear-gradient(180deg, #f5f0e4 20%, var(--gold-bright) 60%, var(--gold-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-meta,
.hero-copy {
  max-width: 700px;
}

.hero-meta {
  margin: 22px 0 0;
}

.hero-copy {
  margin: 20px 0 0;
  font-size: 1.04rem;
}

.hero-cta-frame,
.allocation-layout,
.application-layout {
  display: grid;
  gap: 22px;
}

.hero-cta-frame {
  grid-template-columns: 1.35fr auto;
  align-items: center;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(20, 16, 8, 0.92), rgba(12, 10, 5, 0.8));
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.08);
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-main);
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    background-color 320ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.52);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.12);
}

.button-primary {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.2), rgba(180, 140, 40, 0.08));
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(240, 215, 140, 0.18),
    0 0 0 1px rgba(212, 175, 55, 0.06),
    0 12px 34px rgba(0, 0, 0, 0.34);
  color: var(--gold-bright);
}

.button-primary:hover {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.28), rgba(180, 140, 40, 0.12));
  color: #fff;
}

.button-secondary {
  background: rgba(212, 175, 55, 0.03);
}

.button-block {
  width: 100%;
}

.hero-status-grid,
.dna-grid,
.kpi-grid,
.selection-grid {
  display: grid;
  gap: 18px;
}

.hero-status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.status-card,
.data-panel,
.dna-card,
.kpi-card,
.selection-card,
.application-card,
.mock-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.025), rgba(212, 175, 55, 0.008)),
    var(--bg-panel);
  transition: border-color 400ms ease, box-shadow 400ms ease;
}

.status-card:hover,
.data-panel:hover,
.dna-card:hover,
.kpi-card:hover,
.selection-card:hover {
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.06);
}

.status-card strong,
.data-panel strong,
.kpi-card strong,
.mock-panel strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 500;
  background: linear-gradient(180deg, #f5f0e4, var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  background: linear-gradient(180deg, #f5f0e4 10%, var(--gold-bright) 70%, var(--gold-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-kicker {
  color: var(--gold-mid);
}

.allocation-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
}

.allocation-board {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.03), rgba(212, 175, 55, 0.01)),
    rgba(10, 8, 5, 0.94);
}

.allocation-board-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--gold-mid);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.allocation-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  color: var(--gold-bright);
  font-size: 1rem;
  letter-spacing: 0.2em;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.04), rgba(212, 175, 55, 0.015)),
    rgba(12, 10, 5, 0.86);
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.08);
}

.slot-accent {
  border-color: rgba(212, 175, 55, 0.58);
  box-shadow: inset 0 1px 0 rgba(240, 215, 140, 0.12), 0 0 32px rgba(212, 175, 55, 0.18);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03)),
    rgba(12, 10, 5, 0.86);
}

.allocation-summary {
  display: grid;
  gap: 18px;
}

.dna-grid,
.selection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dna-grid .dna-card:last-child {
  grid-column: span 3;
}

.dna-index,
.panel-label,
.cta-kicker,
.status-label,
.access-chip {
  color: var(--gold-mid);
}

.dna-card h3 {
  margin: 18px 0 12px;
  font-size: 1.28rem;
  font-weight: 500;
  color: var(--gold-bright);
}

.kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kpi-card strong {
  font-family: var(--hero-serif);
}

.preview {
  overflow: hidden;
}

.interface-shell {
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.03), rgba(212, 175, 55, 0.01)),
    rgba(8, 6, 3, 0.94);
  box-shadow: var(--shadow);
}

.interface-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--text-dim);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.22);
}

.dot-accent {
  background: rgba(212, 175, 55, 0.82);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.interface-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  padding: 22px;
}

.mock-panel-primary,
.mock-panel-wide {
  min-height: 220px;
}

.mock-panel-wide {
  grid-column: span 2;
}

.graph-line {
  position: relative;
  margin-top: 28px;
  height: 92px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.16), transparent),
    linear-gradient(90deg, transparent 0%, rgba(240, 215, 140, 0.72) 22%, rgba(212, 175, 55, 0.88) 65%, rgba(255, 255, 255, 0.14) 100%);
  mask: radial-gradient(circle at 8% 70%, transparent 0 6px, #000 7px),
    linear-gradient(180deg, transparent 0 36%, #000 36% 64%, transparent 64%);
}

.graph-baseline {
  margin-top: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.32), transparent);
}

.mock-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.mock-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
}

.mock-list strong {
  margin: 0;
  font-size: 1rem;
  color: var(--gold-bright);
}

.allocation-strip {
  display: grid;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.allocation-strip span {
  display: block;
  height: 72px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), rgba(212, 175, 55, 0.01));
}

.allocation-strip .accent {
  border-color: rgba(212, 175, 55, 0.56);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.18);
}

.application-layout {
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.75fr));
}

.application-card-large {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.035), rgba(212, 175, 55, 0.01)),
    var(--bg-panel-strong);
}

.application-steps {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.application-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.application-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.application-steps strong {
  font-size: 1.3rem;
  font-weight: 500;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.application-steps span {
  color: var(--text-soft);
  font-size: 1rem;
}

/* ── Gold decorative elements ─────────────────────── */

.gold-ornament {
  display: block;
  width: 120px;
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

/* ── Access Gate (Invitation Overlay) ─────────────── */

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 800ms ease,
    visibility 800ms ease;
}

.access-gate.is-visible {
  opacity: 1;
  visibility: visible;
}

.access-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.access-gate-backdrop {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(22px);
  background:
    radial-gradient(circle at 50% 26%, rgba(212, 175, 55, 0.08), transparent 20%),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.02), transparent 65%),
    repeating-linear-gradient(90deg, rgba(212, 175, 55, 0.015) 0 1px, transparent 1px 80px),
    linear-gradient(180deg, rgba(3, 2, 1, 0.96), rgba(5, 4, 3, 0.94));
}

.access-card {
  position: relative;
  width: min(440px, 100%);
  padding: 34px 30px 40px;
  border-radius: 34px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.03), rgba(212, 175, 55, 0.005)),
    linear-gradient(180deg, rgba(10, 8, 5, 0.88), rgba(6, 5, 3, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(240, 215, 140, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(212, 175, 55, 0.06);
  text-align: center;
}

.access-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.06);
  pointer-events: none;
}

/* Gold corner ornaments */
.access-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 30px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 15%),
    linear-gradient(225deg, rgba(212, 175, 55, 0.15) 0%, transparent 15%),
    linear-gradient(315deg, rgba(212, 175, 55, 0.15) 0%, transparent 15%),
    linear-gradient(45deg, rgba(212, 175, 55, 0.15) 0%, transparent 15%);
}

.access-card-topline {
  position: relative;
  display: flex;
  justify-content: center;
  background: transparent;
  isolation: isolate;
}

.access-card-topline .gate-logo-image {
  filter: brightness(1.5) contrast(1.6) saturate(0.3) drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
}

.brand-mark-gate {
  width: 64px;
  height: 64px;
}

.gate-logo-image {
  width: min(340px, 90%);
  height: auto;
}

.access-card-body {
  margin-top: 32px;
}

.access-chip {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.02));
  color: var(--gold-mid);
  font-weight: 600;
}

.access-card h2 {
  margin-top: 22px;
  font-size: clamp(2.2rem, 9vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: 0.04em;
  word-break: break-word;
  background: linear-gradient(180deg, #f5f0e4 10%, var(--gold-bright) 50%, var(--gold-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.access-card-copy {
  margin-top: 16px;
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.access-card-note {
  max-width: 31ch;
  margin: 18px auto 0;
  font-size: 0.94rem;
}

.access-divider {
  display: block;
  width: 160px;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.22);
}

.access-card-footer {
  margin-top: 28px;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.access-card-footer .button {
  width: min(248px, 100%);
}

.access-subline {
  color: var(--gold-dark);
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 1080px) {
  .hero-status-grid,
  .kpi-grid,
  .selection-grid,
  .application-layout,
  .allocation-layout,
  .hero-cta-frame,
  .interface-grid {
    grid-template-columns: 1fr;
  }

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

  .dna-grid .dna-card:last-child {
    grid-column: span 2;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .mock-panel-wide {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    background: none;
  }

  .header-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
    font-size: 0.72rem;
  }

  .section-frame {
    padding: 24px;
    border-radius: 24px;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.9rem, 15vw, 4.8rem);
  }

  .hero-cta-frame {
    padding: 18px;
  }

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

  .hero-status-grid,
  .dna-grid,
  .selection-grid {
    grid-template-columns: 1fr;
  }

  .dna-grid .dna-card:last-child {
    grid-column: span 1;
  }

  .allocation-slots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .allocation-strip {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .application-steps li {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .access-card {
    padding: 24px 18px 28px;
    border-radius: 24px;
  }

  .access-card h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
    letter-spacing: 0.02em;
  }

  .gate-logo-image {
    width: min(260px, 85%);
  }
}
