:root {
  color-scheme: light;
  --ink: #33231a;
  --muted: #72594b;
  --paper: #fff9ee;
  --wash: #f8e6c4;
  --pot: #d9481f;
  --herb: #63733d;
  --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;
}

.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;
}

@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;
  }
}
