:root {
  --bg: #f4f5f2;
  --ink: #141816;
  --muted: #5c635c;
  --line: rgba(20, 24, 22, 0.1);
  --soft: rgba(20, 24, 22, 0.045);
  --accent: #2f5d4a;
  --glow-a: rgba(180, 196, 170, 0.45);
  --glow-b: rgba(210, 220, 230, 0.55);
  --font-sans: "Schibsted Grotesk", "Helvetica Neue", sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(48% 42% at 12% 8%, var(--glow-a), transparent 70%),
    radial-gradient(42% 38% at 88% 18%, var(--glow-b), transparent 72%),
    radial-gradient(55% 50% at 50% 100%, rgba(47, 93, 74, 0.08), transparent 70%),
    linear-gradient(180deg, #f7f8f5 0%, var(--bg) 45%, #eef1ec 100%);
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem clamp(1.25rem, 4vw, 3rem);
}

.mark {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

main {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 9.5rem);
  display: grid;
  place-items: center;
  padding: 2rem clamp(1.25rem, 5vw, 4rem) 4rem;
}

.hero {
  width: min(720px, 100%);
  text-align: left;
}

.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 9vw, 5.6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.headline-line {
  display: block;
  font-style: italic;
  color: #24332c;
}

.lede {
  margin: 1.6rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  line-height: 1.65;
}

.foot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: end;
  justify-content: space-between;
  margin: 0 clamp(1.25rem, 4vw, 3rem) 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.legal-name {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

[data-scramble] {
  display: inline-block;
}

[data-scramble].is-scrambling {
  color: #3d4a42;
}

@media (max-width: 640px) {
  main {
    min-height: calc(100svh - 12rem);
    place-items: start center;
    padding-top: 18vh;
  }

  .foot {
    align-items: start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
