:root {
  color-scheme: dark;
  --navy-950: #04101f;
  --blue-400: #46b9ff;
  --blue-300: #7fd0ff;
  --white: #ffffff;
  --text: #eaf6ff;
  --muted: #bdd2e3;
  --line: rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--navy-950);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.holding-page {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(1.25rem, 4vw, 3.75rem);
  isolation: isolate;
}

.holding-page__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/backgrounds/ravenel-bridge-hero.webp");
  background-position: center;
  background-size: cover;
}

.holding-page::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 15, 29, 0.91) 0%, rgba(4, 20, 38, 0.78) 52%, rgba(3, 15, 29, 0.57) 100%),
    linear-gradient(180deg, rgba(4, 13, 25, 0.18), rgba(4, 13, 25, 0.76));
  content: "";
}

.holding-card {
  width: min(100%, 62rem);
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(145deg, rgba(5, 23, 43, 0.87), rgba(5, 19, 36, 0.72));
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue-300);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: min(100%, 36rem);
  height: auto;
  margin: 0 0 clamp(1.75rem, 5vw, 3.5rem);
  filter: drop-shadow(0 0.9rem 1.7rem rgba(0, 0, 0, 0.35));
}

.message {
  max-width: 48rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status span {
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 1rem rgba(70, 185, 255, 0.8);
}

h1 {
  max-width: 16ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.1rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.intro {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(1.75rem, 4vw, 2.6rem);
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button--primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--blue-300), var(--blue-400));
  box-shadow: 0 0.9rem 2.2rem rgba(38, 157, 228, 0.28);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.14);
}

.contact-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-note a {
  color: var(--white);
  font-weight: 750;
  text-underline-offset: 0.2em;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: clamp(2rem, 5vw, 3.25rem);
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: #d6e8f5;
  font-size: 0.88rem;
  font-weight: 650;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.trust-row span::before {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--blue-400);
  content: "";
}

@media (max-width: 640px) {
  .holding-page {
    align-items: end;
    padding: 0.85rem;
  }

  .holding-page__backdrop {
    background-position: 58% center;
  }

  .holding-card {
    padding: 1.35rem;
    border-radius: 1.5rem;
  }

  .brand-logo {
    margin-bottom: 1.8rem;
  }

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

  .trust-row {
    display: grid;
    gap: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
