:root {
  --bg: #f6efe4;
  --bg-strong: #f2e7d8;
  --panel: rgba(255, 251, 245, 0.88);
  --panel-strong: #fff8ef;
  --text: #211c1a;
  --muted: #665d57;
  --line: rgba(53, 39, 28, 0.12);
  --brand: #c65b2d;
  --brand-2: #0f766e;
  --brand-soft: rgba(198, 91, 45, 0.1);
  --ok: #0f766e;
  --shadow: 0 24px 60px rgba(86, 51, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(198, 91, 45, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 30%),
    linear-gradient(180deg, #f8f3ea 0%, var(--bg) 38%, var(--bg-strong) 100%);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(33, 28, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 28, 26, 0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.15), transparent 92%);
}

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

h1,
h2,
h3,
.brand__name {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 239, 228, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #e2a33d);
  color: #fff8ef;
  box-shadow: 0 14px 28px rgba(198, 91, 45, 0.18);
}

.brand--small .brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: var(--muted);
  font-weight: 700;
}

.nav a:hover {
  color: var(--text);
}

.nav__pill {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(198, 91, 45, 0.22);
  background: #fff9f2;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(198, 91, 45, 0.08);
}

.hero {
  padding: 78px 0 34px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 4px rgba(198, 91, 45, 0.1);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 0.98;
  max-width: 11ch;
}

.lead {
  margin: 20px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.hero__actions--center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), #dc7f3b);
  color: #fff8ef;
  box-shadow: 0 18px 34px rgba(198, 91, 45, 0.22);
}

.btn--secondary {
  border-color: var(--line);
  background: rgba(255, 248, 239, 0.82);
  color: var(--text);
  box-shadow: 0 16px 28px rgba(86, 51, 24, 0.08);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.82);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero__board {
  position: relative;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(198, 91, 45, 0.16);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(255, 245, 232, 0.9));
  box-shadow: var(--shadow);
}

.hero__board::after {
  content: "";
  position: absolute;
  inset: auto 20px -18px 20px;
  height: 28px;
  border-radius: 999px;
  background: rgba(198, 91, 45, 0.12);
  filter: blur(20px);
  z-index: -1;
}

.hero__board-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.hero__board-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(33, 28, 26, 0.12);
}

.hero__board-title {
  margin-left: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero__metrics {
  display: grid;
  gap: 14px;
}

.metric {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(53, 39, 28, 0.08);
}

.metric__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric__value {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.metric p,
.flow__item p,
.hero__note,
.outcome-card p,
.module-card p,
.step p,
.proof-card p,
.usecase p,
details p,
.footer__copy,
.sub {
  color: var(--muted);
  line-height: 1.68;
}

.flow {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.flow__item {
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(53, 39, 28, 0.08);
}

.flow__badge,
.step__number {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff8ef;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.hero__note {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.14);
}

.section {
  padding: 82px 0;
}

.section--tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 248, 239, 0.28));
  border-top: 1px solid rgba(53, 39, 28, 0.06);
  border-bottom: 1px solid rgba(53, 39, 28, 0.06);
}

.section__intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.section h2,
.closing h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.sub {
  margin: 16px 0 0;
  font-size: 1.02rem;
}

.outcome-grid,
.module-grid,
.step-grid,
.usecases {
  display: grid;
  gap: 18px;
}

.outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.outcome-card,
.module-card,
.step,
.proof-card,
.usecase,
.closing {
  padding: 24px;
  border-radius: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.outcome-card--featured {
  border-color: rgba(198, 91, 45, 0.2);
  background: linear-gradient(180deg, rgba(198, 91, 45, 0.08), rgba(255, 251, 245, 0.9));
}

.card-badge,
.module-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-badge {
  margin-bottom: 14px;
  background: var(--brand-soft);
  color: var(--brand);
}

.module-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.module-pill {
  background: rgba(15, 118, 110, 0.12);
  color: var(--brand-2);
}

.module-pill--premium {
  background: rgba(198, 91, 45, 0.12);
  color: var(--brand);
}

.card-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.card-list li {
  margin: 10px 0;
  color: var(--muted);
}

.step {
  display: grid;
  gap: 14px;
}

.step h3,
.outcome-card h3,
.module-card h3,
.proof-card h2,
.usecase strong {
  margin: 0;
}

.faq-shell {
  display: grid;
  gap: 24px;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.8);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(86, 51, 24, 0.08);
}

summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.closing {
  text-align: center;
  background: linear-gradient(180deg, rgba(198, 91, 45, 0.09), rgba(255, 251, 245, 0.92));
  border-color: rgba(198, 91, 45, 0.18);
}

.closing p {
  max-width: 760px;
  margin: 16px auto 0;
}

.footer {
  padding: 28px 0 36px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer__copy {
  margin: 10px 0 0;
  max-width: 420px;
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--muted);
  font-weight: 700;
}

.footer__links a:hover {
  color: var(--text);
}

@media (max-width: 1060px) {
  .hero__grid,
  .outcome-grid,
  .module-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    max-width: none;
    font-size: 2.55rem;
  }

  .topbar__inner,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .nav a:not(.nav__pill) {
    display: none;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .hero__board,
  .outcome-card,
  .module-card,
  .step,
  .proof-card,
  .usecase,
  .closing,
  details {
    padding: 20px;
    border-radius: 22px;
  }
}
