:root {
  color-scheme: light;
  --page-bg: #f4efe6;
  --panel-bg: rgba(255, 255, 255, 0.82);
  --panel-border: rgba(32, 35, 31, 0.12);
  --text-strong: #1f271b;
  --text-muted: #4b5a49;
  --accent: #0f6a5b;
  --accent-strong: #0a4f44;
  --shadow: 0 24px 60px rgba(31, 39, 27, 0.12);
  --max-width: 1120px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-strong);
  background:
    radial-gradient(circle at top left, rgba(201, 165, 92, 0.22), transparent 38%),
    radial-gradient(circle at top right, rgba(15, 106, 91, 0.18), transparent 36%),
    linear-gradient(180deg, #fbf7ef 0%, var(--page-bg) 100%);
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.hero,
.story-card,
.launch-note {
  backdrop-filter: blur(14px);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.hero {
  border-radius: 32px;
  padding: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lede {
  max-width: 760px;
  margin-top: 20px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.primary-action {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #1b876f 100%);
}

.secondary-action {
  color: var(--accent-strong);
  background: rgba(15, 106, 91, 0.1);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.story-card {
  border-radius: 24px;
  padding: 26px 24px;
}

.story-card h2,
.launch-note h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.story-card p,
.launch-note p {
  line-height: 1.7;
  color: var(--text-muted);
}

.launch-note {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  margin-top: 22px;
  border-radius: 28px;
  padding: 28px;
}

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

  .hero {
    padding: 34px 24px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 24px;
    padding-bottom: 40px;
  }

  h1 {
    font-size: 2.5rem;
  }
}
