@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap");

:root {
  --navy: #0e4a66;
  --navy-deep: #0a3d56;
  --blue: #1a86c8;
  --text: #12303f;
  --muted: #51616b;
  --surface: #eef5fa;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: Manrope, system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(165deg, #eaf4fb 0%, #ffffff 45%, #f4f8fb 100%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.holding {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 32px;
}

.holding__card {
  width: min(520px, 100%);
  text-align: center;
  background: var(--white);
  border: 1px solid #e6edf1;
  border-radius: 16px;
  padding: 40px 32px 36px;
  box-shadow: 0 18px 48px rgba(14, 74, 102, 0.08);
}

.holding__logo {
  display: block;
  margin: 0 auto 28px;
  max-width: 220px;
  height: auto;
}

.holding__badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.holding h1 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.25;
}

.holding__lead {
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.holding__status {
  margin: 0;
  padding: 16px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #dbeefa;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.holding-footer {
  padding: 20px 24px 28px;
  text-align: center;
}

.holding-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.holding-footer__credit img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.holding-footer__credit strong {
  color: var(--navy);
  font-weight: 600;
}
