:root {
  --bg: #f4efe5;
  --bg-soft: #efe1ca;
  --surface: rgba(255, 250, 241, 0.78);
  --surface-strong: #fffaf1;
  --ink: #1d1b1a;
  --muted: #5f5750;
  --accent: #f26a4b;
  --accent-deep: #d84c2b;
  --line: rgba(29, 27, 26, 0.1);
  --shadow: 0 24px 80px rgba(79, 49, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 106, 75, 0.24), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(221, 186, 125, 0.35), transparent 26%),
    linear-gradient(180deg, #f8f2e8 0%, #f4efe5 45%, #eadbc1 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(29, 27, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 27, 26, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 80%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar,
.hero,
.feature-band,
.story,
.launch-card {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand,
.eyebrow,
.feature-kicker,
.panel-title,
.pill-link,
.stat-label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.pill-link,
.button {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.7);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.pill-link:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-copy,
.hero-panel,
.feature-card,
.story,
.launch-card {
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 44px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.88), rgba(244, 221, 185, 0.74));
}

.eyebrow,
.feature-kicker,
.panel-title,
.stat-label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

h1,
h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.95;
  font-weight: 400;
}

h1 {
  font-size: clamp(4.5rem, 12vw, 8.8rem);
  max-width: 8ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.lede,
.feature-card p:last-child,
.story-panel p:last-child,
.launch-card p:last-of-type {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.lede {
  max-width: 36rem;
  margin: 22px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  color: #fff7f0;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.6);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(29, 27, 26, 0.94), rgba(58, 48, 42, 0.9));
  color: #fef6ee;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  flex: 1;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.stat-card.accent {
  background: linear-gradient(145deg, rgba(242, 106, 75, 0.95), rgba(249, 154, 110, 0.95));
  color: #2a120d;
}

.stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4rem);
  line-height: 1;
}

.stat-card .stat-label {
  margin: 18px 0 0;
  color: inherit;
  font-size: 0.76rem;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.feature-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.72);
}

.feature-card h2 {
  margin-bottom: 14px;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 20px;
  padding: 28px;
  margin-bottom: 24px;
  border-radius: 32px;
  background: rgba(247, 239, 226, 0.82);
}

.story-copy h2 {
  max-width: 10ch;
}

.story-panels {
  display: grid;
  gap: 16px;
}

.story-panel {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(29, 27, 26, 0.08);
}

.launch-card {
  overflow: hidden;
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(29, 27, 26, 0.96), rgba(65, 52, 43, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  color: #fff7f0;
}

.launch-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 106, 75, 0.58), transparent 65%);
}

.launch-card .eyebrow,
.launch-card p:last-of-type {
  color: rgba(255, 247, 240, 0.72);
}

.launch-card h2 {
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .hero,
  .feature-band,
  .story {
    grid-template-columns: 1fr;
  }

  .story-copy h2,
  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-panel,
  .feature-card,
  .story,
  .launch-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .pill-link {
    width: 100%;
  }
}
