:root {
  color-scheme: dark;
  --blue: #153c76;
  --blue-bright: #2d62a6;
  --ink: #112e5d;
  --paper: rgba(255, 249, 242, 0.9);
  --muted: #5e6d7f;
  --line: rgba(21, 60, 118, 0.18);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--blue);
  color: var(--ink);
  font-family: Arial, sans-serif;
}

.landing-page {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 3.5vw, 3.25rem) clamp(1.25rem, 5vw, 5.5rem);
}

.motion-background,
.video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.motion-background { object-fit: cover; background: #e15e25; }

.video-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 39, 77, .3), transparent 38%, rgba(8, 25, 53, .22)),
    linear-gradient(0deg, rgba(10, 27, 55, .38), transparent 28%);
  pointer-events: none;
}

.coming-soon-card {
  width: min(100%, 31rem);
  margin: auto 5vw auto auto;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 1.75rem;
  box-shadow: 0 1.5rem 4rem rgba(9, 27, 55, .22);
  text-align: center;
  backdrop-filter: blur(12px);
}

.logo { display: block; width: clamp(9rem, 45%, 13.75rem); height: auto; margin: 0 auto 1.8rem; border-radius: 1.5rem; }
h1 { margin: 0; font: 500 clamp(2.55rem, 4.3vw, 3.7rem)/.98 Arial, sans-serif; letter-spacing: -.075em; }
h1 em { color: var(--blue-bright); font-style: normal; }
.contact-block { margin: 2rem 0 1.65rem; padding: 1.25rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-label { display: block; margin-bottom: .5rem; color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-block a { color: var(--blue); font: 600 clamp(1.05rem, 2vw, 1.25rem)/1.2 Arial, sans-serif; text-decoration: none; }
.contact-block a:hover, .contact-block a:focus-visible, .card-footer a:hover, .card-footer a:focus-visible { color: var(--blue-bright); text-decoration: underline; text-underline-offset: .2em; }
.card-footer { display: flex; justify-content: center; align-items: center; color: var(--muted); font-size: .72rem; letter-spacing: .02em; }
.card-footer a { color: var(--blue); font-weight: 700; text-decoration: none; }

@media (max-width: 700px) {
  .landing-page { padding: 1.25rem; }
  .coming-soon-card { margin: auto 0; padding: 1.35rem; border-radius: 1.35rem; }
  .logo { width: min(42vw, 10rem); margin: 0 auto 1.25rem; border-radius: 1.15rem; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  .contact-block { margin: 1.5rem 0 1.25rem; }
}

@media (min-width: 701px) and (max-height: 780px) {
  .coming-soon-card { padding: 1.35rem 2rem; }
  .logo { width: 9.5rem; margin: 0 auto 1rem; }
  .contact-block { margin: 1.25rem 0 1rem; padding: .9rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  .motion-background { display: none; }
  .landing-page { background: linear-gradient(135deg, #e26b2e, #f4a23e 55%, #e85e2a); }
}

a:focus-visible { outline: 3px solid #ffd24e; outline-offset: 4px; }
