:root {
  --cream: #f6efdf;
  --paper: rgba(252, 249, 241, 0.82);
  --paper-strong: #fffaf0;
  --ink: #203127;
  --muted: #5e6a62;
  --moss: #5f7d4a;
  --moss-deep: #334b39;
  --sage: #9fb891;
  --clay: #b66949;
  --sand: #dbc696;
  --shadow: 0 28px 70px rgba(41, 34, 23, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(219, 198, 150, 0.48), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(182, 105, 73, 0.22), transparent 30%),
    linear-gradient(180deg, #f4ecdc 0%, #efe5d2 48%, #f7f1e4 100%);
}

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

.launch-shell {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px 0 40px;
}

.launch-nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(32, 49, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brandmark strong,
.brandmark small {
  display: block;
}

.brandmark strong {
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.15rem;
}

.brandmark small {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brandmark-leaf {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.54), transparent 40%),
    linear-gradient(135deg, var(--moss), var(--moss-deep));
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brandmark-leaf::before {
  content: "";
  position: absolute;
  inset: 10px 12px 8px 12px;
  border-radius: 100% 0 100% 0;
  background: rgba(255, 250, 240, 0.88);
  transform: rotate(-24deg);
}

.launch-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.1rem, 5.8vw, 5.6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
  line-height: 1.6;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 26px;
}

.hero-copy,
.studio-card,
.launch-note,
.feature-card,
.story-panel,
.workflow-step,
.cta-card {
  border: 1px solid rgba(32, 49, 39, 0.08);
  border-radius: var(--radius-xl);
  background: var(--paper);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(182, 105, 73, 0.12), transparent 36%),
    radial-gradient(circle at 20% 30%, rgba(95, 125, 74, 0.14), transparent 28%),
    rgba(255, 249, 239, 0.76);
}

.hero-text {
  margin-top: 20px;
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.launch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 180ms ease;
}

.launch-button:hover,
.launch-links a:hover {
  transform: translateY(-1px);
}

.launch-button-primary {
  color: #fff9f1;
  background: linear-gradient(135deg, var(--moss), var(--moss-deep));
  box-shadow: 0 18px 34px rgba(51, 75, 57, 0.24);
}

.launch-button-secondary,
.launch-button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(32, 49, 39, 0.12);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.hero-metrics li {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(32, 49, 39, 0.08);
}

.hero-metrics strong,
.story-list strong {
  display: block;
  margin-bottom: 6px;
}

.hero-metrics span,
.story-list span,
.feature-card p,
.workflow-step p,
.launch-note p,
.story-panel p {
  color: var(--muted);
}

.hero-stage {
  display: grid;
  gap: 18px;
}

.studio-card {
  padding: 18px;
  overflow: hidden;
}

.studio-card-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.studio-card-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(95, 125, 74, 0.28);
}

.studio-card-content {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 14px;
}

.mini-sidebar,
.floating-sheet {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(32, 49, 39, 0.08);
}

.mini-sidebar {
  padding: 18px 14px;
}

.mini-sidebar p {
  font-size: 0.82rem;
  color: var(--clay);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mini-pill {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(95, 125, 74, 0.08);
  color: var(--muted);
  font-weight: 700;
}

.mini-pill + .mini-pill {
  margin-top: 10px;
}

.mini-pill.active {
  background: linear-gradient(135deg, rgba(95, 125, 74, 0.22), rgba(95, 125, 74, 0.08));
  color: var(--moss-deep);
}

.mini-canvas {
  position: relative;
  min-height: 440px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(159, 184, 145, 0.12), rgba(255, 250, 240, 0.84));
  border: 1px solid rgba(32, 49, 39, 0.08);
}

.mini-canvas svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.floating-sheet {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 220px;
  padding: 16px;
  box-shadow: 0 18px 34px rgba(41, 34, 23, 0.12);
}

.sheet-label {
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-sheet strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.floating-sheet span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.launch-note {
  padding: 24px;
  background: linear-gradient(180deg, rgba(219, 198, 150, 0.2), rgba(255, 250, 240, 0.75));
}

.feature-section,
.workflow-section {
  margin-top: 26px;
}

.section-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  max-width: 860px;
}

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

.feature-card,
.workflow-step {
  padding: 26px;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: rgba(95, 125, 74, 0.12);
  color: var(--moss-deep);
  font-weight: 800;
}

.feature-card h3,
.workflow-step h3 {
  margin-bottom: 12px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  margin-top: 26px;
}

.story-panel {
  padding: 30px;
}

.story-panel-dark {
  color: #fff8ee;
  background:
    radial-gradient(circle at top right, rgba(223, 200, 146, 0.2), transparent 36%),
    linear-gradient(135deg, #30473a, #1f3328);
}

.story-panel-dark p {
  color: rgba(255, 248, 238, 0.8);
  max-width: 58ch;
}

.story-panel-light {
  background:
    linear-gradient(180deg, rgba(182, 105, 73, 0.1), transparent 28%),
    rgba(255, 249, 239, 0.76);
}

.story-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(95, 125, 74, 0.18), rgba(95, 125, 74, 0.08));
  color: var(--moss-deep);
  font-size: 1.15rem;
}

.cta-section {
  margin-top: 26px;
}

.cta-card {
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(95, 125, 74, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.82), rgba(245, 235, 218, 0.88));
}

@media (max-width: 1100px) {
  .hero-section,
  .story-section,
  .feature-grid,
  .workflow-grid,
  .studio-card-content,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .launch-nav {
    border-radius: 28px;
  }

  .launch-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 760px) {
  .launch-shell {
    width: min(100% - 18px, 1280px);
    padding-top: 10px;
  }

  .launch-nav {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .launch-links,
  .hero-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-copy,
  .feature-card,
  .story-panel,
  .workflow-step,
  .cta-card,
  .launch-note {
    padding: 24px;
  }

  h1 {
    font-size: 2.7rem;
  }
}
