:root {
  --green: #2f5233;
  --green-deep: #234027;
  --canvas: #f6f6f1;
  --canvas-hi: #f8f8f3;
  --canvas-lo: #f1f1ea;
  --ink: #33332d;
  --muted: #74746a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, system-ui, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  background:
    linear-gradient(180deg, var(--canvas-hi) 0%, var(--canvas) 50%, var(--canvas-lo) 100%);
}

.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 620px;
  width: 100%;
}

.hero__logo {
  width: 280px;
  max-width: 78%;
  height: auto;
  margin-bottom: 0.5rem;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.1rem;
}

.hero__headline {
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.hero__sub {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 2.25rem;
}

/* Coming-soon tag */
.hero__tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  padding: 0.6rem 1.3rem;
  border: 1.5px solid var(--green);
  border-radius: 999px;
}

.footer {
  padding-top: 2rem;
  font-size: 0.78rem;
  color: var(--muted);
}
