:root {
  color-scheme: light;
  --blue-950: #102a43;
  --blue-900: #17446b;
  --blue-800: #22618f;
  --blue-700: #2f80b7;
  --blue-100: #e8f5fb;
  --paper: #f8fcff;
  --ink: #1f2a33;
  --muted: #5b6872;
  --line: rgba(34, 97, 143, 0.17);
  --shadow: 0 26px 80px rgba(16, 42, 67, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(100deg, rgba(16, 42, 67, 0.88) 0%, rgba(34, 97, 143, 0.76) 42%, rgba(232, 245, 251, 0.38) 100%),
    url("assets/images/loading-background.jpg") center / cover no-repeat fixed,
    var(--blue-900);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.24), transparent 26rem);
}

.site-shell {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 40px;
}

.notice-panel {
  width: min(920px, 100%);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(248, 252, 255, 0.97);
  box-shadow: var(--shadow);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(42px, 6vw, 70px);
  color: var(--blue-900);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark img {
  width: 52px;
  height: 52px;
  padding: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  object-fit: contain;
}

.status-label,
.info-kicker {
  margin: 0;
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 12px 0 20px;
  color: var(--blue-950);
  font-size: clamp(2.75rem, 7vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 0;
  color: #453737;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.64;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: clamp(34px, 5vw, 54px) 0;
}

.info-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.info-card h2 {
  margin: 12px 0 14px;
  color: var(--blue-950);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.cta-row {
  margin-top: 18px;
}

.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(34, 97, 143, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.app-button:hover,
.app-button:focus-visible {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(34, 97, 143, 0.32);
  filter: brightness(1.04);
}

.contact-card {
  border-color: rgba(47, 128, 183, 0.32);
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-100) 100%);
}

.important-card {
  border-color: rgba(24, 83, 122, 0.34);
  background: linear-gradient(180deg, #ffffff 0%, #eef8fc 100%);
}

a {
  color: var(--blue-800);
  font-weight: 800;
  text-decoration-color: rgba(47, 128, 183, 0.36);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

a:hover,
a:focus-visible {
  color: var(--blue-950);
  text-decoration-color: currentColor;
}

.closing-note {
  max-width: 760px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #4f3f3f;
  font-size: 1.05rem;
  line-height: 1.7;
}

.privacy-notice {
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.privacy-notice h2 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.privacy-notice p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.privacy-notice p + p {
  margin-top: 8px;
}

@media (max-width: 760px) {
  body {
    background-attachment: scroll;
  }

  .site-shell {
    align-items: stretch;
    padding: 18px;
  }

  .notice-panel {
    padding: 26px 20px;
  }

  .brand-mark {
    margin-bottom: 38px;
    font-size: 0.78rem;
  }

  .brand-mark img {
    width: 46px;
    height: 46px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
    line-height: 0.98;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
    padding: 22px;
  }

  .privacy-notice {
    padding: 20px;
  }
}
