:root {
  color-scheme: light;
  --ink: #18130f;
  --muted: #6d6257;
  --line: #e5d8c8;
  --cream: #f8f1e7;
  --paper: #fffaf2;
  --dark: #17110c;
  --dark-soft: #261b14;
  --green: #1d6b5d;
  --green-soft: #dff2ec;
  --red: #b42318;
  --gold: #d7a84b;
  --shadow: 0 28px 80px rgba(41, 27, 16, 0.16);
  font-family: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(215, 168, 75, 0.12), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(29, 107, 93, 0.08), transparent 30rem),
    linear-gradient(135deg, #fffdf8 0%, #f7efe4 48%, #efe2d1 100%);
  color: var(--ink);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(229, 216, 200, 0.7);
  background: rgba(255, 253, 248, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.28rem;
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red), #dd6b45);
  color: #fff8ee;
  box-shadow: 0 16px 30px rgba(180, 35, 24, 0.24);
}

.brand-mark img {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 18px;
  height: 18px;
  object-fit: contain;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(229, 216, 200, 0.9);
  box-shadow: 0 8px 20px rgba(41, 27, 16, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
}

.button.primary {
  color: #fffaf2;
  background: var(--ink);
  box-shadow: 0 18px 42px rgba(24, 19, 15, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--line);
}

.cta-card .button.secondary {
  color: #fff7e9;
  background: rgba(255, 250, 242, 0.1);
  border-color: rgba(255, 250, 242, 0.22);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding: clamp(56px, 9vw, 120px) clamp(18px, 5vw, 80px) 72px;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  margin-top: 18px;
  max-width: 780px;
  font-size: clamp(3.2rem, 8vw, 7.7rem);
  line-height: 0.86;
  letter-spacing: -0.09em;
}

.hero h1 span {
  display: block;
  color: var(--green);
}

.hero-copy {
  margin-top: 26px;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.8vw, 1.25rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions-center {
  justify-content: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #2c584f;
  background: rgba(223, 242, 236, 0.82);
  font-weight: 800;
  font-size: 0.88rem;
}

.product-card {
  position: relative;
  min-height: 590px;
  border-radius: 42px;
  padding: 18px;
  background:
    radial-gradient(circle at 8% 0%, rgba(240, 188, 119, 0.22), transparent 18rem),
    linear-gradient(145deg, #17110c, #2a1d15 58%, #0f0d0a);
  box-shadow: 0 38px 120px rgba(41, 27, 16, 0.26);
  color: #fff6e8;
  isolation: isolate;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 34px;
  border: 1px solid rgba(255, 250, 242, 0.14);
  pointer-events: none;
}

.mock-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 18px 24px;
}

.mock-dots {
  display: flex;
  gap: 7px;
}

.mock-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #f1d39b;
  opacity: 0.72;
}

.dashboard-preview {
  display: grid;
  gap: 18px;
  padding: 8px;
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: 8px 8px 0;
}

.preview-topline h2 {
  max-width: 320px;
  margin-top: 8px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.preview-badge {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  color: #17241f;
  background: #e9d2a5;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-stat-grid div {
  min-height: 116px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.12);
}

.preview-stat-grid span {
  display: block;
  color: rgba(255, 250, 242, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-stat-grid strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.8;
  letter-spacing: -0.1em;
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
}

.preview-table {
  overflow: hidden;
  border-radius: 28px;
  background: #fffaf2;
  color: var(--ink);
  border: 1px solid rgba(255, 250, 242, 0.18);
}

.preview-row {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr 0.8fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-top: 1px solid rgba(24, 19, 15, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.preview-head {
  min-height: 46px;
  border-top: 0;
  color: var(--muted);
  background: rgba(24, 19, 15, 0.04);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill {
  justify-self: start;
  padding: 8px 10px;
  border-radius: 999px;
  color: #174437;
  background: #dff2ec;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-low {
  color: #7e211a;
  background: #f8d8d2;
}

.status-pay {
  color: #6b4a09;
  background: #f5e4b7;
}

.preview-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 250, 242, 0.14);
}

.preview-actions strong,
.preview-actions span {
  display: block;
}

.preview-actions strong {
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.preview-actions span {
  margin-top: 4px;
  color: rgba(255, 250, 242, 0.66);
  line-height: 1.5;
}

.preview-actions button {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: #fffaf2;
  font-weight: 950;
}

.ticker {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.58);
  color: var(--muted);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span {
  animation: slide 26s linear infinite;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.section {
  padding: clamp(64px, 10vw, 120px) clamp(18px, 5vw, 80px);
}

.section.dark {
  margin: 0 clamp(12px, 3vw, 42px);
  border-radius: 46px;
  color: #fff7eb;
  background:
    radial-gradient(circle at 12% 18%, rgba(29, 107, 93, 0.38), transparent 26rem),
    linear-gradient(140deg, #17110c 0%, #24170f 55%, #3c2517 100%);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.section-intro {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.dark .section-intro,
.dark .eyebrow {
  color: #f5d9aa;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 240px;
  border-radius: 30px;
  padding: 26px;
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid rgba(229, 216, 200, 0.9);
}

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.feature-card strong {
  font-size: 2.6rem;
  letter-spacing: -0.08em;
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(29, 107, 93, 0.1);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin-top: 32px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.feature-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.reveal-target {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-target {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.usecase-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.usecase-card {
  min-height: 330px;
  padding: 26px;
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(255, 250, 242, 0.92), rgba(245, 232, 211, 0.72)),
    radial-gradient(circle at 12% 0%, rgba(240, 188, 119, 0.14), transparent 17rem);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(41, 27, 16, 0.07);
}

.usecase-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background: var(--ink);
  color: #fffaf2;
  font-weight: 950;
}

.usecase-card h3 {
  margin-top: 34px;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.usecase-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.fit-section {
  padding-top: clamp(44px, 7vw, 88px);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fit-card {
  min-height: 330px;
  padding: 32px;
  border-radius: 34px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(41, 27, 16, 0.08);
}

.fit-card.is-positive {
  background:
    radial-gradient(circle at 12% 4%, rgba(29, 107, 93, 0.18), transparent 22rem),
    rgba(255, 250, 242, 0.88);
}

.fit-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: -0.07em;
}

.fit-card ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.62;
  font-weight: 750;
}

.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.68)),
    radial-gradient(circle at 20% 0%, rgba(29, 107, 93, 0.18), transparent 16rem);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(41, 27, 16, 0.08);
}

.process-step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fffaf2;
  background: var(--green);
  font-weight: 950;
}

.process-step h3 {
  margin-top: 34px;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}

.process-step p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.flow-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.flow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.flow-rail::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, rgba(198, 55, 43, 0.12), rgba(198, 55, 43, 0.72), rgba(29, 107, 93, 0.5));
}

.flow-node {
  position: relative;
  min-height: 310px;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 250, 242, 0.92), rgba(245, 232, 211, 0.72)),
    radial-gradient(circle at 16% 0%, rgba(198, 55, 43, 0.12), transparent 15rem);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(41, 27, 16, 0.07);
}

.flow-node span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  color: #fffaf2;
  background: var(--ink);
  font-weight: 950;
}

.flow-node h3 {
  margin-top: 54px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: -0.06em;
}

.flow-node p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.62;
}

.problem-item {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.09);
  border: 1px solid rgba(255, 250, 242, 0.13);
}

.problem-item span {
  color: #f0bc77;
  font-weight: 950;
}

.compare-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.compare-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(41, 27, 16, 0.07);
}

.compare-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px auto;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  opacity: 0.28;
}

.compare-card.is-before {
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.92), rgba(238, 225, 203, 0.72));
}

.compare-card.is-before::after {
  background: #9b7d5d;
}

.compare-card.is-after {
  background:
    radial-gradient(circle at 12% 6%, rgba(198, 55, 43, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(35, 25, 18, 0.98), rgba(92, 30, 25, 0.92));
  color: #fff7e9;
}

.compare-card.is-after::after {
  background: #f0bc77;
}

.compare-kicker {
  color: var(--apple);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compare-card.is-after .compare-kicker {
  color: #f0bc77;
}

.compare-card h3 {
  max-width: 520px;
  margin-top: 18px;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.compare-card p:not(.compare-kicker) {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.compare-card.is-after p:not(.compare-kicker) {
  color: #decfbf;
}

.roles-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.role-card {
  min-height: 330px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 0%, rgba(29, 107, 93, 0.16), transparent 16rem),
    rgba(255, 250, 242, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(41, 27, 16, 0.07);
}

.role-card span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(198, 55, 43, 0.12);
  color: var(--apple);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-card h3 {
  margin-top: 28px;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.role-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.product-split {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.screenshot-frame {
  min-height: 560px;
  border-radius: 36px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(29, 107, 93, 0.16), transparent 42%),
    #fffaf2;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  min-height: 528px;
  object-fit: cover;
  border-radius: 26px;
  object-position: 50% 0;
  box-shadow: 0 18px 58px rgba(40, 23, 12, 0.18);
}

.stack {
  display: grid;
  gap: 16px;
}

.stack-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid var(--line);
}

.stack-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.stack-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.signal-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.signal-card {
  min-height: 280px;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(255, 250, 242, 0.92), rgba(245, 232, 211, 0.72)),
    radial-gradient(circle at 12% 0%, rgba(198, 55, 43, 0.12), transparent 18rem);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(41, 27, 16, 0.07);
}

.signal-card strong {
  display: block;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.signal-card span {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(198, 55, 43, 0.12);
  color: var(--apple);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.document-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.document-card {
  min-height: 270px;
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 0%, rgba(240, 188, 119, 0.16), transparent 17rem),
    rgba(255, 250, 242, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(41, 27, 16, 0.07);
}

.document-card span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(29, 107, 93, 0.12);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.document-card h3 {
  margin-top: 28px;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.document-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  padding: 28px;
  border-radius: 30px;
  background: #fffaf2;
  border: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.1em;
}

.metric span {
  color: var(--muted);
  font-weight: 800;
}

.demo-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.demo-checklist {
  display: grid;
  gap: 14px;
}

.demo-step {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(41, 27, 16, 0.07);
}

.demo-step span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 22px;
  color: #fffaf2;
  background: var(--ink);
  font-weight: 950;
}

.demo-step h3 {
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  letter-spacing: -0.06em;
}

.demo-step p {
  max-width: 820px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.demo-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.decision-section {
  padding-top: clamp(32px, 6vw, 74px);
}

.decision-card {
  padding: clamp(34px, 7vw, 72px);
  border-radius: 44px;
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 188, 119, 0.22), transparent 22rem),
    linear-gradient(145deg, rgba(35, 25, 18, 0.98), rgba(92, 30, 25, 0.92));
  color: #fff7e9;
  box-shadow: var(--shadow);
}

.decision-card h2 {
  max-width: 980px;
  margin-top: 12px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.09em;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 5vw, 54px);
}

.decision-grid article {
  min-height: 260px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.14);
}

.decision-grid span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #fff7e9;
  color: var(--ink);
  font-weight: 950;
}

.decision-grid h3 {
  margin-top: 28px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.decision-grid p {
  margin-top: 12px;
  color: #decfbf;
  line-height: 1.65;
}

.rollout-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.rollout-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rollout-step {
  min-height: 330px;
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 250, 242, 0.92), rgba(245, 232, 211, 0.72)),
    radial-gradient(circle at 18% 0%, rgba(29, 107, 93, 0.14), transparent 17rem);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(41, 27, 16, 0.07);
}

.rollout-step span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background: var(--apple);
  color: #fffaf2;
  font-weight: 950;
}

.rollout-step h3 {
  margin-top: 34px;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.rollout-step p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 250, 242, 0.92), rgba(245, 232, 211, 0.72)),
    radial-gradient(circle at 16% 0%, rgba(198, 55, 43, 0.12), transparent 18rem);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(41, 27, 16, 0.07);
}

.faq-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.faq-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.switch-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.switch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.switch-card {
  min-height: 310px;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(29, 107, 93, 0.16), transparent 18rem),
    linear-gradient(160deg, rgba(255, 250, 242, 0.94), rgba(245, 232, 211, 0.72));
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(41, 27, 16, 0.07);
}

.switch-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(29, 107, 93, 0.12);
  color: var(--green);
  font-weight: 950;
}

.switch-card h3 {
  margin-top: 30px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.switch-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.cta {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) clamp(18px, 5vw, 80px);
}

.cta-card {
  max-width: 1050px;
  margin: 0 auto;
  padding: clamp(44px, 8vw, 86px);
  border-radius: 48px;
  background: var(--ink);
  color: #fff7e9;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.09em;
}

.cta p {
  max-width: 620px;
  margin: 22px auto 0;
  color: #decfbf;
  line-height: 1.7;
}

.cta-proof {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 30px auto 0;
  color: #f2dbc0;
  font-size: 0.95rem;
  font-weight: 800;
}

.cta-proof span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.12);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 80px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer nav {
  display: inline-flex;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 960px) {
  .hero,
  .product-split {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 520px;
  }

  .section-head {
    display: block;
  }

  .section-intro {
    margin-top: 20px;
  }

  .feature-grid,
  .usecase-grid,
  .fit-grid,
  .faq-grid,
  .metrics,
  .problem-list,
  .compare-grid,
  .roles-grid,
  .switch-grid,
  .decision-grid,
  .rollout-grid,
  .signal-grid,
  .document-grid,
  .flow-rail,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .flow-rail::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(198, 55, 43, 0.12), rgba(198, 55, 43, 0.72), rgba(29, 107, 93, 0.5));
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .product-card,
  .screenshot-frame,
  .section.dark,
  .cta-card {
    border-radius: 30px;
  }

  .preview-stat-grid,
  .preview-row,
  .preview-actions {
    grid-template-columns: 1fr;
  }

  .preview-row {
    gap: 8px;
    padding: 14px 16px;
  }

  .demo-step {
    grid-template-columns: 1fr;
  }

  .footer {
    display: block;
  }
}
