:root {
  color-scheme: dark;
  --ink: #f4efe6;
  --muted: #aab2c0;
  --line: rgba(244, 239, 230, 0.16);
  --navy: #101827;
  --navy-deep: #0a101b;
  --signal: #8ea7b8;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 14%, rgba(71, 96, 116, 0.28), transparent 32rem),
    linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 78%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
}

.page {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100% - 48px, 1440px);
  min-height: 100svh;
  margin-inline: auto;
  padding: 40px 0 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero {
  align-self: center;
  max-width: 980px;
  padding: clamp(88px, 14vh, 180px) 0;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--signal);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.intro {
  max-width: 610px;
  margin: clamp(34px, 5vw, 64px) 0 0 clamp(0px, 8vw, 140px);
  color: var(--muted);
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  font-weight: 350;
  line-height: 1.55;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 38px 0 0 clamp(0px, 8vw, 140px);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #83a899;
  box-shadow: 0 0 0 5px rgba(131, 168, 153, 0.12);
  animation: breathe 2.8s ease-in-out infinite;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@keyframes breathe {
  50% {
    opacity: 0.45;
  }
}

@media (max-width: 680px) {
  .page {
    width: min(100% - 36px, 1440px);
    padding-top: 24px;
  }

  .brand__name {
    font-size: 0.74rem;
  }

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

  h1 {
    font-size: clamp(3.8rem, 19vw, 6.8rem);
    line-height: 0.9;
  }

  .intro,
  .status {
    margin-left: 0;
  }

  .footer {
    gap: 24px;
  }

  .footer span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status__dot {
    animation: none;
  }
}
