:root {
  --bg: #F6F0ED;
  --accent: #7A9E7E;
  --accent-soft: #7A9E7E59;
  --white: #FFFFFF;
  --black: #000000;
  --muted: #666666;
  --placeholder: #E8EFED;
  --radius: 12px;
  --page-padding: 18px;
  --max-width: 960px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--black);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
}

h2 {
  font-weight: 600;
  font-size: 26px;
  line-height: 40px;
}

.sub1 {
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
}

.sub2 {
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
}

.body {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
}

.body-small {
  font-weight: 300;
  font-size: 13px;
  line-height: 22px;
}

.muted {
  color: var(--muted);
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--black);
  padding: 14px 18px;
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Wordmark */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  line-height: 1;
  letter-spacing: -0.01em;
}

.wordmark__dot {
  display: inline-block;
  background: var(--accent);
  border-radius: 9999px;
  margin-left: 4px;
}

.wordmark--header {
  font-size: 22px;
}

.wordmark--header .wordmark__dot {
  width: 6px;
  height: 6px;
  margin-left: 3px;
}

.wordmark--hero {
  font-size: 64px;
  line-height: 1;
}

.wordmark--hero .wordmark__dot {
  width: 14px;
  height: 14px;
  margin-left: 6px;
}

/* Main + page layout */
.main {
  flex: 1;
  width: 100%;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

/* Hero */
.hero {
  padding: 72px var(--page-padding) 64px;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__tagline {
  font-weight: 600;
  font-size: 26px;
  line-height: 40px;
  max-width: 640px;
}

.hero__subhead {
  color: var(--muted);
  max-width: 560px;
}

/* Features */
.features {
  padding: 24px var(--page-padding) 64px;
}

.features__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: var(--radius);
  padding: 18px;
}

.feature__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--accent);
}

.feature__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature__title {
  margin-bottom: 6px;
}

.feature__body {
  color: var(--muted);
}

/* Info pages */
.info-section {
  padding: 64px var(--page-padding);
  display: flex;
  justify-content: center;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card__body {
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 24px var(--page-padding) 32px;
  text-align: center;
  color: var(--muted);
}

/* Desktop */
@media (min-width: 720px) {
  .features__inner {
    grid-template-columns: repeat(2, minmax(0, 280px));
    justify-content: center;
  }

  .hero {
    padding: 112px var(--page-padding) 88px;
  }

  .wordmark--hero {
    font-size: 96px;
  }

  .wordmark--hero .wordmark__dot {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }

  h1 {
    font-size: 56px;
    line-height: 64px;
  }

  .hero__tagline {
    font-size: 32px;
    line-height: 48px;
  }

  .info-section {
    padding: 96px var(--page-padding);
  }
}
