:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--page-bg);
  color: #fff;
}
* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; }
body { min-height: 100svh; overflow-x: hidden; background: var(--page-bg); }
button, a { font: inherit; }
.gateway {
  min-height: 100svh;
  display: flex;
  background-color: var(--page-bg);
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: clamp(1rem, 4vw, 4rem);
}
.panel {
  width: min(100%, 25rem);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 4vw, 2.25rem);
  background: var(--panel-bg);
  color: var(--panel-text);
  box-shadow: var(--panel-shadow);
  text-align: var(--panel-align);
}
.brand-mark {
  display: block;
  width: 4.25rem;
  height: 4.25rem;
  object-fit: contain;
  margin: 0 auto 1rem;
}
.eyebrow {
  margin: 0 0 .65rem;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.panel h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4.8vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.panel-copy {
  margin: 1rem 0 1.35rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.primary-cta {
  display: inline-flex;
  width: 100%;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border: 0;
  border-radius: 999px;
  padding: .85rem 1.35rem;
  background: var(--button-bg);
  color: #fff;
  font-weight: 850;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: var(--button-shadow);
  transition: transform .18s ease, filter .18s ease;
}
.primary-cta:hover { transform: translateY(-2px); filter: brightness(1.06); }
.primary-cta:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.primary-cta svg { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; }
.notice {
  margin: 1rem 0 0;
  color: var(--notice);
  font-size: .73rem;
  line-height: 1.45;
}
.editorial[hidden] { display: none !important; }
.warm-right {
  --page-bg: #0b111e;
  --accent: #ff5a28;
  --panel-bg: rgba(255,255,255,.97);
  --panel-text: #172033;
  --panel-border: rgba(255,255,255,.85);
  --muted: #566074;
  --notice: #788196;
  --button-bg: linear-gradient(135deg, #ff3b22, #f28125);
  --button-shadow: 0 14px 35px rgba(240,72,0,.3);
  --panel-shadow: 0 28px 80px rgba(4,8,18,.42);
  --panel-align: center;
  --radius: 1.65rem;
  justify-content: flex-end;
  align-items: center;
  padding-right: clamp(1rem, 8vw, 8rem);
  background-position: left top;
}
.navy-bottom {
  --page-bg: #0b111e;
  --accent: #22d3ee;
  --panel-bg: #0b1d32;
  --panel-text: #fff;
  --panel-border: rgba(34,211,238,.44);
  --muted: #c3d4e8;
  --notice: #93a9c2;
  --button-bg: linear-gradient(135deg, #008fad, #18c4c6);
  --button-shadow: 0 14px 38px rgba(0,151,184,.3);
  --panel-shadow: 0 28px 75px rgba(0,0,0,.46);
  --panel-align: left;
  --radius: .8rem;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: clamp(1rem, 3vw, 2rem);
  background-position: left top;
}
.navy-bottom .brand-mark { margin-left: 0; }
.neon-left {
  --page-bg: #160018;
  --accent: #ff537b;
  --panel-bg: #0d0711;
  --panel-text: #fff;
  --panel-border: rgba(255,83,123,.6);
  --muted: #ebcadc;
  --notice: #c39aad;
  --button-bg: linear-gradient(110deg, #8d24dc, #ef168d 58%, #ff6a4c);
  --button-shadow: 0 14px 42px rgba(239,22,141,.33);
  --panel-shadow: 0 0 0 1px rgba(0,0,0,.45), 0 28px 85px rgba(0,0,0,.62);
  --panel-align: left;
  --radius: 0;
  justify-content: flex-start;
  align-items: center;
  padding-left: clamp(1rem, 7vw, 7rem);
}
.neon-left .brand-mark { margin-left: 0; }
@media (max-width: 760px) {
  .gateway {
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    background-size: auto 100%;
    background-position: center top;
  }
  .panel { width: min(100%, 28rem); padding: 1.25rem; border-radius: 1.2rem; }
  .panel h2 { font-size: clamp(1.65rem, 8vw, 2.2rem); }
  .panel-copy { margin: .75rem 0 1rem; font-size: .94rem; }
  .brand-mark { width: 3.3rem; height: 3.3rem; margin-bottom: .65rem; }
  .navy-bottom .brand-mark, .neon-left .brand-mark { margin-left: auto; }
  .navy-bottom, .neon-left { --panel-align: center; }
}
@media (max-height: 650px) and (orientation: landscape) {
  .gateway { align-items: center; padding-block: .75rem; }
  .panel { padding: 1rem 1.25rem; }
  .brand-mark { width: 2.8rem; height: 2.8rem; margin-bottom: .5rem; }
  .panel h2 { font-size: 1.7rem; }
  .panel-copy { margin: .55rem 0 .8rem; line-height: 1.45; }
  .notice { margin-top: .6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .primary-cta { transition: none; }
}
