:root {
  color-scheme: light;
  --ink: #33231a;
  --muted: #72594b;
  --paper: #fff9ee;
  --wash: #f8e6c4;
  --pot: #d9481f;
  --herb: #64733c;
  --olive: #6d7341;
  --line: rgba(105, 73, 45, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #fffaf1 0, var(--paper) 42%, #f6ddad 100%);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.hero {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding: clamp(56px, 9vh, 112px) 0 40px;
}

.identity {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.app-icon {
  width: min(100%, 320px);
  aspect-ratio: 1;
  border-radius: 24%;
  display: block;
  box-shadow: 0 24px 60px rgba(96, 52, 28, 0.22);
}

.eyebrow {
  margin: 0;
  color: var(--herb);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  width: min(100%, 320px);
}

.copy {
  max-width: 620px;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.88;
  font-weight: 760;
}

.leaf-e {
  position: relative;
  display: inline-block;
}

.leaf-accent {
  position: absolute;
  width: 0.38em;
  height: auto;
  left: 0.32em;
  top: -0.12em;
  pointer-events: none;
  transform: rotate(-7deg);
  transform-origin: 18% 80%;
}

.lead {
  margin: 26px 0 0;
  color: var(--pot);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.05;
  font-weight: 720;
}

.body {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  max-width: 34rem;
}

.strip {
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.64);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.strip p {
  margin: 0;
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 22px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
  text-align: center;
  border-left: 1px solid var(--line);
}

.strip p:first-child {
  border-left: 0;
}

.follow-page {
  background: var(--paper);
}

.follow-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 20px;
}

.follow-panel {
  width: min(100%, 520px);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
}

.follow-icon {
  width: 132px;
  aspect-ratio: 1;
  border-radius: 24%;
  display: block;
  box-shadow: 0 18px 44px rgba(96, 52, 28, 0.18);
}

.follow-panel h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 0.96;
}

.button {
  width: min(100%, 320px);
  min-height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--paper);
  background: var(--pot);
  font-weight: 760;
  text-decoration: none;
}

.button.secondary {
  color: var(--ink);
  background: rgba(105, 73, 45, 0.1);
}

@media (max-width: 740px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 40px;
  }

  .app-icon {
    width: 168px;
  }

  .eyebrow {
    width: 168px;
  }

  .strip {
    grid-template-columns: 1fr;
  }

  .strip p {
    min-height: 76px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .strip p:first-child {
    border-top: 0;
  }
}
