:root {
  --midnight-navy: #0F172A;
  --electric-blue: #2563EB;
  --magenta: #FF1493;
  --emerald: #10B981;
  --off-white: #F8FAFC;
  --slate: #334155;
  --muted-slate: #64748B;
  --soft-line: #E2E8F0;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(255, 20, 147, 0.10), transparent 30rem),
    var(--off-white);
}

.page-shell {
  width: min(100%, 1120px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 0 72px;
}

.brand-logo {
  width: min(260px, 72vw);
  height: auto;
  display: block;
  margin-bottom: 34px;
  animation: fadeUp 0.8s ease-out both;
}

h1 {
  margin: 0;
  color: var(--midnight-navy);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
  animation: fadeUp 0.8s ease-out 0.14s both;
}

.slogan {
  margin: 22px 0 0;
  max-width: 680px;
  color: var(--slate);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.55;
  font-weight: 400;
  animation: fadeUp 0.8s ease-out 0.26s both;
}

.site-footer {
  border-top: 1px solid var(--soft-line);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  color: var(--muted-slate);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.contact-link {
  color: var(--muted-slate);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--electric-blue);
  transform: translateY(-1px);
}

.mail-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.mail-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 40px 20px 28px;
  }

  .hero {
    padding: 44px 0 64px;
  }

  .brand-logo {
    width: min(230px, 78vw);
    margin-bottom: 28px;
  }

  .site-footer {
    justify-content: center;
    text-align: center;
  }
}
