:root {
  color-scheme: dark;
  --ink: #0b0d0c;
  --surface: #111512;
  --text: #f2f0e9;
  --muted: #a8ada8;
  --green: #63806a;
  --red: #b84a42;
  --line: rgba(242, 240, 233, .16);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  background: radial-gradient(circle at 80% 18%, rgba(99, 128, 106, .16), transparent 34rem), linear-gradient(145deg, var(--surface), var(--ink) 58%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

main {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  min-height: 100svh;
  padding: 42px 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand-logo {
  width: 38px;
  height: auto;
  display: block;
  filter: invert(1);
}

.hero {
  align-self: center;
  max-width: 920px;
  padding: 72px 0;
  position: relative;
  isolation: isolate;
}

.hero-mark {
  width: min(43vw, 460px);
  height: auto;
  position: absolute;
  z-index: -1;
  right: -13vw;
  top: 50%;
  transform: translateY(-50%);
  opacity: .075;
  filter: invert(1);
  pointer-events: none;
  user-select: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 42px; height: 1px; background: currentColor; }

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.6rem, 10vw, 8.5rem);
  line-height: .83;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 0, 0, 0.52);
}

.intro {
  max-width: 560px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

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

@media (max-width: 620px) {
  main {
    width: calc(100% - 36px);
    padding: max(24px, env(safe-area-inset-top)) 0 max(22px, env(safe-area-inset-bottom));
  }

  .brand { gap: 10px; font-size: .68rem; letter-spacing: .13em; }
  .brand-logo { width: 32px; }

  .hero {
    align-self: center;
    max-width: 100%;
    padding: 48px 0 56px;
  }

  .hero-mark {
    width: min(82vw, 390px);
    right: -34vw;
    top: 48%;
    opacity: .065;
  }

  .eyebrow {
    gap: 9px;
    margin-bottom: 20px;
    font-size: .63rem;
    letter-spacing: .16em;
  }

  .eyebrow::before { width: 28px; }

  h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 14.5vw, 4.2rem);
    line-height: .94;
    letter-spacing: -.065em;
  }

  h1 span {
    margin-top: .12em;
    color: #c2584a;
    white-space: nowrap;
    -webkit-text-stroke: 0;
    text-shadow: none;
  }

  .intro {
    max-width: 32rem;
    margin-top: 28px;
    font-size: .96rem;
    line-height: 1.6;
  }

  footer {
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
    padding-top: 16px;
    font-size: .61rem;
    letter-spacing: .1em;
  }

  footer span:last-child { text-align: right; }
}

@media (max-width: 360px) {
  main { width: calc(100% - 28px); }
  h1 { font-size: clamp(2.65rem, 14.5vw, 3.3rem); }
  .intro { font-size: .9rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .brand, .eyebrow, h1, .intro, footer {
    opacity: 0;
    transform: translateY(14px);
    animation: reveal .7s cubic-bezier(.2, .7, .2, 1) forwards;
  }
  .eyebrow { animation-delay: .12s; }
  h1 { animation-delay: .2s; }
  .intro { animation-delay: .32s; }
  footer { animation-delay: .44s; }
  @keyframes reveal { to { opacity: 1; transform: translateY(0); } }
}
