@font-face {
  font-family: "Nunito Sans";
  src: url("/fonts/nunito-sans-regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/fonts/nunito-sans-semibold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/fonts/nunito-sans-bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/fonts/nunito-sans-extrabold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  color-scheme: light;
  --coral: #eb6440;
  --teal: #497174;
  --mist: #d6e4e5;
  --ice: #eff5f5;
  --white: #ffffff;
  --ink: #223b3d;
  --muted: #5e7b7d;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ice);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 12%, rgb(235 100 64 / 10%) 0, transparent 24rem),
    radial-gradient(circle at 4% 88%, rgb(73 113 116 / 11%) 0, transparent 26rem),
    var(--ice);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100% - 48px, 1180px);
  min-height: 100vh;
  margin: 0 auto;
}

.site-header {
  padding: 32px 0;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--teal);
  text-decoration: none;
}

.brand-mark {
  width: 92px;
  height: 32px;
}

.brand span {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.hero {
  align-self: center;
  width: min(100%, 760px);
  padding: 48px 0 72px;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgb(235 100 64 / 12%);
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.7;
}

.status-card {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
  padding: 16px 20px;
  border: 1px solid var(--mist);
  border-radius: 20px;
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 16px 48px rgb(34 59 61 / 7%);
  backdrop-filter: blur(12px);
}

.status-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--white);
  background: var(--teal);
  place-items: center;
}

.status-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.status-card strong,
.status-card small {
  display: block;
}

.status-card strong {
  font-size: 17px;
  line-height: 1.35;
}

.status-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 0 32px;
  border-top: 1px solid var(--mist);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    padding: 24px 0;
  }

  .brand-mark {
    width: 72px;
    height: 25px;
  }

  .brand span {
    font-size: 23px;
  }

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

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero > p {
    font-size: 18px;
  }

  .status-card {
    width: 100%;
  }

  footer {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero {
    animation: enter 600ms ease-out both;
  }

  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
  }
}
