:root {
  --navy: #102033;
  --navy-light: #172b43;
  --orange: #f7941d;
  --orange-dark: #df7b08;
  --blue: #5484c4;
  --ink: #17202a;
  --muted: #66717d;
  --cream: #f6f4ed;
  --paper: #ffffff;
  --line: #dfe3e6;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.transition-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(440px, .92fr);
}

.brand-panel {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(38px, 5vw, 76px);
  color: #fff;
  background: linear-gradient(145deg, #0d1b2b 0%, var(--navy) 48%, var(--navy-light) 100%);
}

.brand-panel::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom right, transparent 8%, #000 85%);
}

.brand-logo { width: clamp(170px, 19vw, 250px); height: 72px; object-fit: contain; object-position: left center; }

.brand-copy { position: relative; z-index: 2; width: min(690px, 94%); margin-block: clamp(72px, 12vh, 150px) 56px; }
.eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 24px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 44px; height: 3px; background: var(--orange); }
.eyebrow.dark { margin-bottom: 20px; color: var(--navy); }
.brand-copy h1 { max-width: 760px; margin: 0; font-size: clamp(42px, 5.3vw, 80px); font-weight: 700; letter-spacing: -.045em; line-height: 1.03; }
.brand-copy h1 em { display: block; color: var(--orange); font-weight: 400; font-style: normal; }
.brand-copy > p:last-child { max-width: 610px; margin: 34px 0 0; color: rgba(255,255,255,.7); font-size: clamp(16px, 1.4vw, 20px); font-weight: 300; line-height: 1.75; }

.capabilities { position: relative; z-index: 2; display: flex; gap: 14px 30px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.17); }
.capabilities span { color: rgba(255,255,255,.82); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.capabilities span:not(:last-child)::after { content: ""; display: inline-block; width: 4px; height: 4px; margin-left: 30px; vertical-align: middle; border-radius: 50%; background: var(--orange); }

.brand-watermark { position: absolute; z-index: -1; right: -13%; bottom: -11%; width: min(610px, 62vw); opacity: .09; }
.orbit { position: absolute; z-index: -1; right: -24%; bottom: -7%; width: 82%; aspect-ratio: 1.65; border: 1px solid rgba(84,132,196,.26); border-radius: 50%; transform: rotate(-20deg); }
.orbit-two { right: -12%; bottom: 2%; width: 66%; border-color: rgba(84,132,196,.18); }

.redirect-panel { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5.2vw, 84px); background: var(--cream); }
.redirect-card { width: min(560px, 100%); margin: auto; }
.status-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 34px; color: var(--orange-dark); background: #fff0de; border-radius: 50%; }
.status-icon svg { width: 27px; height: 27px; }
.redirect-card h2 { margin: 0; color: var(--navy); font-size: clamp(34px, 4vw, 58px); font-weight: 700; letter-spacing: -.04em; line-height: 1.08; }
.intro { margin: 25px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.countdown { display: flex; align-items: center; gap: 18px; margin: 36px 0 24px; padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 16px 45px rgba(16,32,51,.07); }
.countdown-number { display: grid; place-items: center; flex: 0 0 62px; width: 62px; height: 62px; color: #fff; background: var(--navy); border-radius: 50%; font-size: 22px; font-weight: 700; }
.countdown > div:last-child { display: grid; }
.countdown b { color: var(--navy); font-size: 14px; }
.countdown span { color: var(--muted); font-size: 12px; }

.continue-button { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 18px 22px; color: var(--navy); background: var(--orange); border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 700; letter-spacing: .02em; transition: background .2s ease, transform .2s ease; }
.continue-button:hover, .continue-button:focus-visible { background: #ffa72d; transform: translateY(-2px); outline: 3px solid rgba(84,132,196,.28); outline-offset: 3px; }
.continue-button span { font-size: 22px; font-weight: 400; }
.destination { margin: 14px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.destination strong { color: var(--navy); font-weight: 600; }
.contact-row { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.contact-row a { color: var(--blue); font-weight: 600; text-decoration: none; }
.contact-row a:hover, .contact-row a:focus-visible { color: var(--navy); text-decoration: underline; }

footer { width: min(560px, 100%); display: flex; justify-content: space-between; gap: 20px; margin: 54px auto 0; color: #7b848c; font-size: 10px; }
footer nav { display: flex; gap: 18px; }
footer a { text-decoration: none; }
footer a:hover, footer a:focus-visible { color: var(--navy); text-decoration: underline; }

@media (max-width: 920px) {
  .transition-shell { grid-template-columns: 1fr; }
  .brand-panel { min-height: auto; padding: 34px clamp(24px, 6vw, 56px) 48px; }
  .brand-logo { width: 170px; height: 54px; }
  .brand-copy { margin-block: 64px 48px; }
  .brand-copy h1 { font-size: clamp(40px, 9vw, 66px); }
  .brand-watermark { width: 74vw; }
  .redirect-panel { min-height: auto; padding: 70px clamp(24px, 7vw, 70px) 34px; }
}

@media (max-width: 560px) {
  .brand-copy { width: 100%; }
  .brand-copy h1 { font-size: clamp(38px, 11vw, 54px); }
  .capabilities { gap: 12px 20px; }
  .capabilities span:not(:last-child)::after { margin-left: 20px; }
  .redirect-panel { padding-top: 56px; }
  .redirect-card h2 { font-size: 38px; }
  .contact-row, footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
