:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #626262;
  --paper: #fffdf8;
  --panel: #ffffff;
  --lime: #d7ff5f;
  --coral: #ff6b5f;
  --cyan: #79d9ff;
  --violet: #8e63ff;
  --line: rgba(23, 23, 23, 0.14);
  --shadow: 0 24px 80px rgba(23, 23, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 107, 95, 0.14) 0 12%, transparent 12% 18%),
    linear-gradient(90deg, rgba(255, 202, 77, 0.16) 0 24%, transparent 24% 30%),
    linear-gradient(90deg, rgba(215, 255, 95, 0.16) 0 36%, transparent 36% 42%),
    linear-gradient(90deg, rgba(121, 217, 255, 0.18) 0 48%, transparent 48% 54%),
    linear-gradient(90deg, rgba(142, 99, 255, 0.16) 0 60%, transparent 60% 66%),
    var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 30px;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 18px;
}

.kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #2f2f2f;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.subtitle {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #373737;
}

.portrait {
  width: min(720px, 100%);
  margin: 0 auto;
}

.portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 8px solid var(--panel);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.story,
.manifesto {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 50px rgba(23, 23, 23, 0.08);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.story p,
.manifesto p,
footer p {
  color: var(--muted);
}

.callout {
  padding: 22px;
  border: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 255, 95, 0.5), rgba(121, 217, 255, 0.36)),
    #ffffff;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pill-grid article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.pill-grid article:nth-child(1) {
  border-top: 5px solid var(--coral);
}

.pill-grid article:nth-child(2) {
  border-top: 5px solid var(--cyan);
}

.pill-grid article:nth-child(3) {
  border-top: 5px solid var(--violet);
}

footer {
  padding: 26px 0 0;
  font-size: 0.88rem;
  text-align: center;
}

footer p {
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 780px) {
  .page-shell {
    width: min(100% - 22px, 620px);
    padding-top: 18px;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 12px;
  }

  .story,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .story,
  .manifesto {
    padding: 22px;
  }
}
