:root {
  color-scheme: light;
  --paper: #f5f8f0;
  --ink: #17211b;
  --muted: #58635c;
  --moss: #2f6f4e;
  --teal: #1f8584;
  --clay: #bd6d3b;
  --line: rgba(23, 33, 27, 0.14);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 750;
}

.brand img {
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(13, 25, 17, 0.25));
}

.status {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(560px, 84svh, 760px);
  overflow: hidden;
  isolation: isolate;
  padding: 112px clamp(20px, 6vw, 84px) clamp(56px, 8vw, 92px);
  background: #20392b;
}

.hero-visual,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-visual {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 24, 17, 0.84), rgba(12, 24, 17, 0.42) 56%, rgba(12, 24, 17, 0.14)),
    linear-gradient(0deg, rgba(12, 24, 17, 0.56), transparent 48%);
}

.hero-content {
  width: min(720px, 100%);
  color: var(--white);
}

.eyebrow,
.note-label {
  margin: 0 0 12px;
  color: #c9ead7;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4.4rem, 12vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.launch-note {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 7vw, 96px);
  align-items: start;
  padding: clamp(44px, 7vw, 86px) clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.launch-note h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.launch-note p:not(.note-label) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 22px clamp(20px, 6vw, 84px) 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    padding: 16px 18px;
  }

  .status {
    padding: 7px 10px;
  }

  .hero {
    min-height: 78svh;
    padding: 100px 20px 52px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 24, 17, 0.88), rgba(12, 24, 17, 0.44)),
      linear-gradient(0deg, rgba(12, 24, 17, 0.68), transparent 46%);
  }

  .launch-note {
    grid-template-columns: 1fr;
    padding: 38px 20px 52px;
  }
}

