:root {
  --bg: #f8f1e7;
  --ink: #19342d;
  --muted: #5a6e68;
  --panel: rgba(255, 250, 243, 0.82);
  --panel-strong: rgba(19, 51, 46, 0.94);
  --line: rgba(25, 52, 45, 0.12);
  --teal: #2f8b83;
  --amber: #d79048;
  --cream: #fffaf3;
  --shadow: 0 20px 60px rgba(25, 52, 45, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 144, 72, 0.22), transparent 32%),
    radial-gradient(circle at 90% 12%, rgba(47, 139, 131, 0.22), transparent 24%),
    linear-gradient(180deg, #fff8ef 0%, var(--bg) 100%);
}

body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
}

body::before {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -90px;
  background: rgba(215, 144, 72, 0.2);
}

body::after {
  width: 240px;
  height: 240px;
  bottom: -110px;
  left: -80px;
  background: rgba(47, 139, 131, 0.18);
}

.page-shell {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0 28px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ink), #295b51);
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
}

.eyebrow,
.signal-label,
.microcopy,
.domain-hint {
  margin: 0;
}

.eyebrow,
.signal-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--teal);
}

.microcopy,
.domain-hint {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.signal-panel,
.workflow-strip article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy,
.signal-panel {
  padding: 28px;
}

.hero-copy h1 {
  margin: 10px 0 16px;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.96;
  max-width: 11ch;
}

.lead {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-cta {
  background: linear-gradient(135deg, var(--ink), #295b51);
  color: white;
}

.secondary-cta {
  border: 1px solid rgba(25, 52, 45, 0.16);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(25, 52, 45, 0.12);
}

.domain-hint {
  margin-top: 16px;
}

.signal-panel {
  display: grid;
  gap: 14px;
  background:
    linear-gradient(160deg, rgba(19, 51, 46, 0.98), rgba(28, 64, 58, 0.92)),
    var(--panel-strong);
  color: var(--cream);
}

.signal-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.signal-card h2,
.signal-card p,
.workflow-strip h3,
.workflow-strip p {
  margin: 0;
}

.signal-card h2 {
  margin-top: 10px;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  line-height: 1;
}

.signal-card p {
  margin-top: 12px;
  color: rgba(255, 250, 243, 0.78);
  line-height: 1.55;
}

.signal-label {
  color: #91d9d1;
}

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

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

.workflow-strip article {
  padding: 22px;
}

.workflow-strip span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(47, 139, 131, 0.12);
  color: var(--teal);
  font-weight: 700;
}

.workflow-strip h3 {
  margin-top: 18px;
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
}

.workflow-strip p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 920px) {
  .hero-grid,
  .workflow-strip,
  .signal-row {
    grid-template-columns: 1fr;
  }

  .page-shell {
    width: min(100vw - 24px, 1160px);
    padding-top: 20px;
  }

  .hero-copy h1 {
    max-width: none;
  }
}
