:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --ink-soft: #6e6e73;
  --accent: #de7f22;
  --accent-soft: #f6eadb;
  --accent-deep: #a75d17;
  --radius: 30px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.brand,
.topnav {
  letter-spacing: -0.01em;
}

.brand {
  font-weight: 700;
}

.topnav {
  display: flex;
  gap: 20px;
  color: var(--ink-soft);
}

main {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.hero {
  text-align: center;
  padding: 80px 20px 88px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 500;
}

.hero h1,
.statement h2,
.band h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  max-width: 10ch;
  margin-inline: auto;
}

.lede {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 24px;
  line-height: 1.35;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.statement {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.statement.large {
  min-height: 520px;
}

.statement.soft {
  background: linear-gradient(180deg, #fffaf3, #f7eee2);
}

.statement h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 12ch;
  margin-bottom: auto;
}

.statement p:last-child,
.band-copy p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.45;
}

.band {
  margin-top: 16px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 24px;
}

.band h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  max-width: 11ch;
}

@media (max-width: 900px) {
  .statement-grid,
  .band {
    grid-template-columns: 1fr;
  }

  .statement,
  .statement.large {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 52px;
  }

  .lede {
    font-size: 20px;
  }

  .statement,
  .band {
    padding: 28px;
  }
}
