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

:root {
  color-scheme: dark;
  --ink: #f1ede4;
  --muted: #95928a;
  --gold: #c9a85e;
  --surface: #090b0d;
  --line: rgba(255, 255, 255, 0.11);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--surface);
  background-size: 64px 64px;
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 40%, transparent 0, rgba(0, 0, 0, 0.5) 75%);
  content: "";
  pointer-events: none;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: min(54rem, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.14;
  pointer-events: none;
}

.ambient-one {
  top: -38rem;
  left: -14rem;
  background: #c9a85e;
}

.ambient-two {
  right: -36rem;
  bottom: -36rem;
  background: #866e3a;
}

.shell {
  display: grid;
  min-height: 100svh;
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
  grid-template-rows: auto 1fr auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: var(--line);
}

.site-header {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  margin-right: 13px;
}

.status {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(201, 168, 94, 0.7);
}

.hero {
  align-self: center;
  max-width: 1000px;
  padding: 64px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 30px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  margin: 0 13px;
  background: rgba(201, 168, 94, 0.65);
}

h1 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(3rem, 7.7vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.intro {
  max-width: 540px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.site-footer {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: #716f69;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 640px) {
  body {
    overflow: auto;
    background-size: 42px 42px;
  }

  .shell {
    width: min(100% - 40px, 1440px);
  }

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

  .brand span {
    max-width: 120px;
    line-height: 1.3;
  }

  .status {
    font-size: 0.62rem;
  }

  .hero {
    padding: 72px 0;
  }

  .eyebrow {
    font-size: 0.61rem;
    letter-spacing: 0.13em;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
    line-height: 1;
  }

  .intro {
    margin-top: 32px;
    line-height: 1.65;
  }

  .site-footer {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero > * {
    animation: rise 800ms both;
  }

  .hero h1 {
    animation-delay: 90ms;
  }

  .hero .intro {
    animation-delay: 180ms;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(16px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
