:root {
  --bg: #f7f3eb;
  --bg-strong: #ece1ca;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-strong: #fffaf1;
  --ink: #2c2b2d;
  --ink-soft: #655d54;
  --line: rgba(44, 43, 45, 0.12);
  --line-strong: rgba(44, 43, 45, 0.22);
  --accent: #c7a23e;
  --accent-deep: #a88321;
  --forest: #2a322e;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(49, 40, 22, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

  body {
    margin: 0;
    font-family: "Lato", sans-serif;
    color: var(--ink);
    background:
    radial-gradient(circle at top left, rgba(199, 162, 62, 0.18), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(44, 43, 45, 0.06), transparent 20%),
    linear-gradient(180deg, #fcf9f2 0%, #f5efe4 50%, #eee4d6 100%);
}

a {
  color: inherit;
}

.site-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 8px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 250, 243, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(40, 29, 15, 0.04);
}

.site-header__link {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 400;
  transition: color 0.18s ease;
}

.site-header__link:hover {
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  height: 36px;
  width: auto;
}

.site-nav,
.site-header__actions,
.hero__actions,
.closing-cta__actions,
.pricing-card ul {
  display: flex;
}

.site-nav,
.site-header__actions {
  align-items: center;
  gap: 18px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.68);
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.btn--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(30, 29, 27, 0.18);
}

.btn--primary:hover {
  background: #111111;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.68);
}

.btn--block {
  width: 100%;
}

.closing-cta,
.site-footer {
  display: grid;
}

.hero {
  padding: 100px 0 52px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.video-card__content h2,
.closing-cta h2 {
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero h1 {
  margin: 0 auto;
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.hero__lede,
.section-heading p,
.feature-card p,
.steps p,
.faq-list p,
.chat-demo__intro p {
  color: var(--ink-soft);
}

.hero__lede {
  margin: 38px auto 0;
  max-width: 780px;
  font-size: 1.34rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 44px 0 24px;
}

.hero__explainer {
  margin-top: 6px;
  text-align: center;
}

.hero__explainer-label {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.hero__explainer-modes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.hero__explainer-mode {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__explainer-mode svg {
  width: 28px;
  height: 28px;
  color: var(--accent-deep);
}

.hero__explainer-mode span {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero__explainer-divider {
  width: 1px;
  height: 32px;
  background: var(--line-strong);
}

.proof-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 36px 24px;
  text-align: center;
}

.proof-banner span {
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.proof-banner span + span {
  position: relative;
  padding-left: 32px;
}

.proof-banner span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: var(--line-strong);
}

.showcase {
  padding: 64px 48px 72px;
  background: #2d2d2d;
  color: var(--white);
  border-radius: 32px;
}

.showcase__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 48px;
  align-items: center;
}

.showcase__eyebrow {
  color: rgba(199, 162, 62, 0.9);
}

.showcase__copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.showcase__copy p {
  margin: 18px 0 0;
  color: rgba(255, 248, 238, 0.72);
  font-size: 1.04rem;
  line-height: 1.78;
}

.showcase__visual-stack {
  position: relative;
}

.showcase__card {
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.showcase__card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
}

.showcase__card p {
  margin: 0;
  color: rgba(255, 248, 238, 0.6);
  font-size: 0.9rem;
  line-height: 1.65;
}

.showcase__window {
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35), 0 6px 20px rgba(0, 0, 0, 0.15);
}

.showcase__secondary {
  position: absolute;
  bottom: -24px;
  right: -20px;
  width: 46%;
  z-index: 3;
}

.showcase__secondary .chat-demo__choice-window {
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 6px 18px rgba(0, 0, 0, 0.15);
}

.showcase__secondary .chat-demo__choice-panel {
  padding: 12px 12px 14px;
}

.showcase__secondary .chat-demo__choice-panel h3 {
  font-size: 0.95rem;
}

.showcase__secondary .chat-demo__choice-panel > p {
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.showcase__secondary .chat-demo__choice-grid {
  gap: 6px;
}

.showcase__secondary .chat-demo__choice-card {
  min-height: 80px;
  padding: 10px 6px;
}

.showcase__secondary .chat-demo__choice-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  border-radius: 8px;
}

.showcase__secondary .chat-demo__choice-icon svg {
  width: 18px;
  height: 18px;
}

.showcase__secondary .chat-demo__choice-card strong {
  font-size: 0.78rem;
}

.showcase__secondary .chat-demo__choice-card span {
  font-size: 0.68rem;
  margin-top: 2px;
}

.showcase__secondary .chat-demo__masthead {
  padding: 12px 12px 8px;
}


.video-trigger {
  position: relative;
  cursor: pointer;
}

.video-trigger__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0);
  transition: background 0.22s ease;
  z-index: 2;
}

.video-trigger:hover .video-trigger__overlay {
  background: rgba(0, 0, 0, 0.35);
}

.video-trigger__expand {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.video-trigger:hover .video-trigger__expand {
  opacity: 1;
  transform: scale(1);
}

.video-trigger__expand svg {
  width: 22px;
  height: 22px;
}

.video-trigger iframe {
  pointer-events: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.video-modal__content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  transform: scale(0.92);
  transition: transform 0.28s ease;
}

.video-modal.is-open .video-modal__content {
  transform: scale(1);
}

.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.video-modal__player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-modal__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
}

.video-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-card__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.chat-demo-section {
  padding: 12px 0 18px;
}

.chat-demo {
  display: grid;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(26, 71, 89, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(48, 136, 159, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(244, 250, 251, 0.92), rgba(231, 242, 245, 0.9));
  box-shadow: 0 18px 44px rgba(20, 53, 68, 0.08);
}

.chat-demo__row {
  display: grid;
  gap: 24px;
  align-items: start;
}

.chat-demo__row--top {
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
}

.chat-demo__row--bottom {
  grid-template-columns: minmax(0, 0.94fr) minmax(260px, 0.78fr);
}

.chat-demo__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.chat-demo__intro p {
  margin: 18px 0 0;
  color: #56707a;
  font-size: 1.03rem;
  line-height: 1.75;
}

.chat-demo__intro p + p {
  margin-top: 18px;
}

.chat-demo__window {
  overflow: hidden;
  border: 1px solid rgba(63, 96, 109, 0.18);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(18, 52, 67, 0.12);
}

.chat-demo__choice-window {
  overflow: hidden;
  border: 1px solid rgba(63, 96, 109, 0.18);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(18, 52, 67, 0.08);
}

.chat-demo__masthead {
  padding: 22px 24px 14px;
  background: #ffffff;
}

.chat-demo__masthead-image {
  display: block;
  width: min(640px, 100%);
  margin: 0 auto;
  height: auto;
}

.chat-demo__choice-panel {
  padding: 20px 20px 22px;
  background: #ffffff;
}

.chat-demo__choice-panel h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #29272a;
}

.chat-demo__choice-panel p {
  margin: 8px 0 18px;
  color: #8b8174;
  font-size: 0.98rem;
}

.chat-demo__choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.chat-demo__choice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 150px;
  padding: 20px 16px;
  border: 1px solid #ddd4c8;
  border-radius: 6px;
  background: #fffdf9;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  animation: choiceCardPulse 8s ease-in-out infinite both;
}

.chat-demo__choice-card--active {
  box-shadow: 0 0 0 1px rgba(94, 134, 152, 0.18), 0 10px 24px rgba(15, 47, 60, 0.07);
}

.chat-demo__choice-card.chat-bubble--delay-1 {
  animation-delay: 0s;
}

.chat-demo__choice-card.chat-bubble--delay-2 {
  animation-delay: 0.6s;
}

.chat-demo__choice-card.chat-bubble--delay-3 {
  animation-delay: 1.2s;
}

.chat-demo__choice-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  color: #5e8698;
  border-radius: 18px;
  background: rgba(94, 134, 152, 0.08);
}

.chat-demo__choice-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.chat-demo__choice-card strong,
.chat-demo__choice-card span {
  display: block;
}

.chat-demo__choice-card strong {
  color: #333134;
  font-size: 1.02rem;
  font-weight: 900;
}

.chat-demo__choice-card span {
  margin-top: 10px;
  color: #8a8176;
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-demo__progress {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 18px 14px;
  border-top: 2px solid #5a8795;
  background: #ffffff;
}

.chat-demo__progress-label,
.chat-demo__progress-count {
  color: #9f988d;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-demo__progress-track {
  height: 10px;
  overflow: hidden;
  border: 1px solid #e1dbd0;
  border-radius: 999px;
  background: #ffffff;
}

.chat-demo__progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ccb160, #5d8798);
  transform-origin: left center;
  transform: scaleX(0.08);
  animation: progressMove 12s ease-in-out infinite;
}

.chat-demo__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 430px;
  padding: 14px 22px 20px;
  background: #ffffff;
}

.chat-bubble {
  max-width: 78%;
  padding: 14px 16px;
  border-radius: 3px;
  font-size: 0.94rem;
  line-height: 1.62;
  opacity: 0;
  transform: translateY(12px);
  animation-duration: 12s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.chat-bubble strong {
  font-weight: 900;
}

.chat-bubble--reporter {
  align-self: flex-start;
  background: #5e8698;
  color: #fbfcfd;
  box-shadow: 0 2px 5px rgba(58, 91, 102, 0.22);
}

.chat-bubble--source {
  align-self: flex-end;
  background: #ffffff;
  color: #4d4a45;
  border: 1px solid #e0d8cd;
  box-shadow: 0 2px 5px rgba(45, 38, 31, 0.08);
}

.chat-demo__composer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  opacity: 1;
  transform: translateY(0);
}

.chat-demo__composer-line {
  height: 3px;
  background: linear-gradient(180deg, #e0d7ca, #f8f4ed);
}

.chat-demo__composer-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
}

.chat-demo__input {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #8fb1bf;
  border-radius: 3px;
  background: #fffefc;
}

.chat-demo__input-text {
  color: #8a8378;
  font-size: 0.95rem;
}

.chat-demo__send {
  border: 0;
  border-radius: 3px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 86px;
  padding: 0 18px;
  background: #c7a23d;
  color: #3c3428;
}

.chat-demo__choice-copy {
  padding: 12px 8px 0 6px;
}

.chat-demo__choice-copy h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.chat-demo__choice-copy p {
  margin: 16px 0 0;
  color: #56707a;
  font-size: 1rem;
  line-height: 1.72;
}

.chat-bubble--delay-1 { animation-name: chatSequence1; }
.chat-bubble--delay-2 { animation-name: chatSequence2; }
.chat-bubble--delay-3 { animation-name: chatSequence3; }
.chat-bubble--delay-4 { animation-name: chatSequence4; }
.chat-bubble--delay-5 { animation-name: chatSequence5; }
.chat-bubble--delay-6 { animation-delay: 0s; }
.chat-bubble--delay-7 { animation-delay: 9.8s; }
.chat-bubble--delay-8 { animation-delay: 12s; }

@keyframes choiceCardPulse {
  0%, 8% {
    transform: translateY(0);
    box-shadow: 0 0 0 1px rgba(94, 134, 152, 0.08), 0 3px 10px rgba(15, 47, 60, 0.04);
    border-color: #ddd4c8;
  }
  18%, 68% {
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px rgba(94, 134, 152, 0.2), 0 12px 28px rgba(15, 47, 60, 0.09);
    border-color: rgba(94, 134, 152, 0.24);
  }
  82%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 0 1px rgba(94, 134, 152, 0.08), 0 3px 10px rgba(15, 47, 60, 0.04);
    border-color: #ddd4c8;
  }
}

@keyframes chatSequence1 {
  0%, 6% {
    opacity: 0;
    transform: translateY(12px);
  }
  12%, 72% {
    opacity: 1;
    transform: translateY(0);
  }
  84% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes chatSequence2 {
  0%, 16% {
    opacity: 0;
    transform: translateY(12px);
  }
  24%, 72% {
    opacity: 1;
    transform: translateY(0);
  }
  84% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes chatSequence3 {
  0%, 28% {
    opacity: 0;
    transform: translateY(12px);
  }
  36%, 72% {
    opacity: 1;
    transform: translateY(0);
  }
  84% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes chatSequence4 {
  0%, 40% {
    opacity: 0;
    transform: translateY(12px);
  }
  48%, 72% {
    opacity: 1;
    transform: translateY(0);
  }
  84% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes chatSequence5 {
  0%, 52% {
    opacity: 0;
    transform: translateY(12px);
  }
  60%, 72% {
    opacity: 1;
    transform: translateY(0);
  }
  84% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes progressMove {
  0%, 4% {
    transform: scaleX(0.08);
  }
  18% {
    transform: scaleX(0.24);
  }
  36% {
    transform: scaleX(0.42);
  }
  54% {
    transform: scaleX(0.6);
  }
  70% {
    transform: scaleX(0.78);
  }
  82% {
    transform: scaleX(0.9);
  }
  88% {
    transform: scaleX(0.9);
  }
  100% {
    transform: scaleX(0.08);
  }
}
.demo-walkthrough {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: center;
}

.demo-walkthrough__copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.demo-walkthrough__copy p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
}

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

.videos-grid__item h3 {
  margin: 16px 0 6px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.videos-grid__item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

.section.comparison {
  padding: 56px 52px;
  margin: 28px 0;
  border-radius: 28px;
  background: linear-gradient(180deg, #faf7f0, #f2ebe0);
  border: 1px solid rgba(44, 43, 45, 0.06);
}

.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.comparison__problem {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 12px;
}

.comparison__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.comparison__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(180, 60, 40, 0.1);
  color: #b43c28;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.comparison__item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 900;
}

.comparison__item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.comparison__solution {
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #25352c, #151d18);
  color: var(--white);
}

.comparison__check {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(199, 162, 62, 0.2);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 900;
}

.comparison__solution h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 900;
}

.comparison__solution p {
  margin: 0 0 22px;
  color: rgba(255, 245, 230, 0.72);
  font-size: 0.96rem;
  line-height: 1.72;
}

.comparison__solution .btn {
  width: 100%;
}

.feature-card h3,
.steps h3,
.pricing-card__tier {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section {
  padding: 86px 0;
}

.section--contrast {
  margin: 28px 0;
  padding: 42px;
  border: 1px solid rgba(29, 26, 22, 0.08);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.8), rgba(245, 235, 220, 0.88));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading--wide {
  max-width: none;
}

.section-heading h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  text-wrap: balance;
}

.section-heading p {
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.feature-card,
.pricing-card,
.faq-list details,
.closing-cta {
  border-radius: var(--radius-md);
}

.feature-card {
  padding: 34px 32px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(58, 40, 18, 0.04);
}

.feature-card--dark {
  color: var(--white);
  background: linear-gradient(180deg, #25352c, #151d18);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-card--dark p,
.feature-card--dark .feature-card__label {
  color: rgba(255, 245, 230, 0.76);
}

.feature-card__label,
.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card__label {
  display: table;
  margin: 0;
  background: rgba(199, 162, 62, 0.14);
  color: var(--accent-deep);
}

.feature-card h3 {
  margin: 18px 0 18px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.feature-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.steps article {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(30, 29, 27, 0.09);
}

.steps span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.steps h3 {
  margin: 0 0 10px;
}

.steps p {
  margin: 0;
  line-height: 1.7;
}

.pricing-section {
  padding-top: 8px;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(54, 36, 15, 0.06);
}

.pricing-card--featured {
  position: relative;
  border: 1px solid rgba(105, 64, 28, 0.35);
  background: linear-gradient(180deg, #fff9ef, #f4e6d6);
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(101, 62, 22, 0.12);
}

.pricing-card__badge {
  align-self: flex-start;
  margin-bottom: 14px;
  background: rgba(35, 50, 41, 0.1);
  color: var(--forest);
}

.pricing-card__tier {
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.pricing-card__price span,
.pricing-card__seat,
.pricing-card__limit {
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
}

.pricing-card__seat {
  margin: 8px 0 8px;
}

.pricing-card__limit {
  margin: 0 0 22px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.pricing-card__limit--note {
  margin-top: -12px;
  color: var(--ink-soft);
}

.pricing-card ul {
  flex: 1;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-card__positioning {
  margin: -4px 0 12px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-style: italic;
}

.founder-line {
  text-align: center;
  padding: 40px 0 8px;
}

.founder-line p {
  margin: 0 auto;
  max-width: 780px;
  color: var(--ink);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.trust-strip--pre-pricing {
  margin-top: 18px;
  margin-bottom: 0;
}

.pricing-card__next-step {
  margin: 10px 0 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.pricing-help {
  text-align: center;
  margin-top: 28px;
}

.pricing-help p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.pricing-help a {
  color: var(--accent-deep);
  font-weight: 700;
}

.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-strip span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.faq-section {
  padding-top: 40px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(199, 162, 62, 0.12);
  color: var(--accent-deep);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.28s ease, background-color 0.28s ease;
}

details[open] > summary::after {
  content: "\2212";
  transform: rotate(180deg);
  background: rgba(199, 162, 62, 0.22);
}

.faq-list p {
  margin: 14px 0 0;
  line-height: 1.75;
}

.legal-page {
  max-width: 760px;
  padding: 72px 0 60px;
}

.legal-page h1 {
  margin: 0 0 8px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.legal-page__updated {
  margin: 0 0 36px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.legal-page h2 {
  margin: 36px 0 12px;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-page p {
  margin: 0 0 14px;
}

.legal-page ul {
  padding-left: 24px;
  margin: 0 0 14px;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--accent-deep);
}

.closing-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  margin: 14px 0 60px;
  background: linear-gradient(180deg, #1f1d1b, #2e261e);
  color: var(--white);
  box-shadow: var(--shadow);
}

.closing-cta .eyebrow {
  color: rgba(255, 235, 206, 0.76);
}

.closing-cta__actions {
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.closing-cta .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.closing-cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 28px 4px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.site-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__brand img {
  display: block;
  height: 32px;
  width: auto;
}

.site-footer__contact,
.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__contact strong,
.site-footer__legal strong {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.site-footer__contact a,
.site-footer__legal a {
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer__contact a:hover,
.site-footer__legal a:hover {
  color: var(--accent-deep);
}

.site-footer__bottom {
  padding-top: 16px;
  font-size: 0.88rem;
}

@media (max-width: 1080px) {
  .site-header__inner,
  .pricing-grid,
  .steps,
  .site-footer__main,
  .closing-cta,
  .showcase__inner,
  .demo-walkthrough,
  .videos-grid,
  .comparison__grid {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    border-radius: 28px;
  }

  .hero h1 {
    white-space: normal;
  }

  .pricing-card--featured {
    transform: none;
  }

}

@media (max-width: 760px) {
  .site-shell {
    padding: 16px;
  }

  .site-header__inner,
  .site-header__actions,
  .feature-grid,
  .hero__actions,
  .closing-cta__actions {
    gap: 12px;
  }

  .site-header__inner {
    flex-wrap: wrap;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 10;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: block;
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .site-header__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .site-header__actions .btn {
    flex: 1 1 180px;
  }

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

  .section {
    padding: 64px 0;
  }

  .chat-demo-section {
    padding-top: 0;
  }

  .chat-demo__body {
    min-height: 420px;
    padding: 18px;
  }

  .chat-demo__choice-grid {
    grid-template-columns: 1fr;
  }

  .chat-demo__progress {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section--contrast,
  .closing-cta {
    padding: 26px;
  }

  .hero {
    padding: 52px 0 64px;
  }

  .showcase {
    padding: 40px 20px 56px;
    border-radius: 24px;
  }

  .comparison {
    padding: 36px 22px;
  }

  .showcase__secondary {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 16px;
  }

  .hero__explainer-modes {
    flex-direction: column;
    gap: 16px;
  }

  .hero__explainer-divider {
    width: 40px;
    height: 1px;
  }

  .proof-banner {
    flex-direction: column;
    gap: 12px;
  }

  .proof-banner span + span {
    padding-left: 0;
  }

  .proof-banner span + span::before {
    display: none;
  }

  .chat-bubble {
    max-width: 88%;
  }

}

@media (max-width: 520px) {
  .hero {
    gap: 28px;
  }

  .btn,
  .site-header__actions .btn {
    width: 100%;
  }


  .chat-demo {
    border-radius: 24px;
  }

  .chat-demo__composer-row {
    grid-template-columns: 1fr;
  }

  .chat-demo__send {
    width: 100%;
    min-height: 48px;
  }

  .brand img,
  .site-footer__brand img {
    height: 28px;
  }
}
