:root {
  --blue-deep: #1c4f93;
  --blue: #2156a0;
  --teal: #2aa3c2;
  --pink: #ec4c9c;
  --green: #34c08f;
  --text: #1f3a5f;
  --text-soft: #5a7191;
  --bg-top: #f4f8fc;
  --bg-bottom: #e7eef7;
  --card: #ffffff;
  --line: #e1e9f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: var(--text);
  background: linear-gradient(165deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  position: relative;
  overflow-x: hidden;
}

/* Decorative gradient orbs echoing the logo palette */
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

body::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, var(--teal), transparent 70%);
}

body::after {
  width: 480px;
  height: 480px;
  bottom: -160px;
  left: -140px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 320px;
  max-width: 82%;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 10px 28px rgba(28, 79, 147, 0.18));
}

.accent-bar {
  width: 88px;
  height: 5px;
  border-radius: 99px;
  margin: 18px 0 30px;
  background: linear-gradient(
    90deg,
    var(--blue-deep),
    var(--teal) 55%,
    var(--green) 80%,
    var(--pink)
  );
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(42, 163, 194, 0.1);
  border: 1px solid rgba(42, 163, 194, 0.25);
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 192, 143, 0.6);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 192, 143, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(52, 192, 143, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 192, 143, 0);
  }
}

h1 {
  font-size: clamp(1.9rem, 6vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue-deep);
  margin-bottom: 16px;
}

.lead {
  font-size: clamp(1rem, 2.6vw, 1.12rem);
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 440px;
  margin-bottom: 40px;
}

.lead strong {
  color: var(--text);
  font-weight: 600;
}

.contact-card {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(28, 79, 147, 0.1);
  padding: 32px 30px 28px;
  text-align: left;
}

.contact-card h2 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.info-grid {
  display: grid;
  gap: 16px;
}

.info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: baseline;
}

.info-row .label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
}

.info-row .value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.info-row .value a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(33, 86, 160, 0.3);
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.info-row .value a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 22px 0;
}

footer {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
}

@media (max-width: 480px) {
  .info-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .contact-card {
    padding: 26px 22px 24px;
  }
}
