:root {
  --bg: #07090f;
  --bg-2: #0b0f18;
  --surface: rgba(255, 255, 255, .055);
  --surface-strong: rgba(255, 255, 255, .085);
  --text: #f0f2f8;
  --soft: #d4daea;
  --muted: #aeb7cc;
  --muted-2: #7f899f;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .2);
  --orange: #ff7a1a;
  --orange-2: #ffb36b;
  --violet: #846dff;
  --cyan: #7de3ff;
  --green: #52d98a;
  --red: #ff6b6b;
  --shadow: 0 24px 72px rgba(0, 0, 0, .38);
  --radius: 28px;
  --max: 1160px;
  --nav-h: 72px;
  --transition: .22s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 16% -6%, rgba(255, 122, 26, .2) 0%, transparent 30%),
    radial-gradient(circle at 88% 4%, rgba(132, 109, 255, .18) 0%, transparent 26%),
    radial-gradient(circle at 68% 48%, rgba(125, 227, 255, .05) 0%, transparent 30%),
    var(--bg);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

h1,
h2 {
  color: var(--text);
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.025em;
}

h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
}

h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
}

h3 {
  line-height: 1.22;
  letter-spacing: -.02em;
}

:focus-visible {
  outline: 2px solid var(--orange-2);
  outline-offset: 4px;
}

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 10px 14px;
  color: #170e06;
  background: var(--orange-2);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

#progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 250;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 15, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
}

.nav {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand img {
  width: auto;
  height: 27px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navlinks a {
  display: block;
  padding: 9px 12px;
  color: var(--muted);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: color var(--transition), background var(--transition);
}

.navlinks a:hover,
.navlinks a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, .07);
}

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

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 20px;
  color: var(--text);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  transform: translateY(-2px);
}

.btn.primary {
  color: #170e06;
  background: linear-gradient(135deg, var(--orange), #ff9e42);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(255, 122, 26, .28);
}

.btn.primary:hover {
  box-shadow: 0 12px 36px rgba(255, 122, 26, .4);
}

.btn.large {
  min-height: 52px;
  padding-inline: 26px;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange-2);
  font-weight: 700;
}

.text-link:hover {
  color: #ffd0a4;
}

.hamburger,
.menu-close {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
}

.hamburger svg,
.menu-close svg {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  flex-direction: column;
  gap: 9px;
  padding: 92px 28px 36px;
  background: rgba(7, 9, 15, .98);
  backdrop-filter: blur(24px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu > a:not(.btn) {
  padding: 15px 17px;
  color: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
}

.mobile-menu .btn {
  min-height: 54px;
  margin-top: 12px;
}

.mobile-menu .menu-close {
  position: absolute;
  top: 15px;
  right: 16px;
  display: flex;
}

section {
  position: relative;
  padding: 92px 0;
}

.page-hero,
.hero {
  padding: 86px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 62px;
  align-items: center;
}

.page-hero-inner {
  max-width: 820px;
}

.page-hero .hero-desc {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 14px;
  margin-bottom: 26px;
  color: var(--soft);
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line);
  border-radius: 999px;
  letter-spacing: .05em;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(82, 217, 138, .1);
  animation: eyebrow-light 3.6s ease-in-out infinite;
}

@keyframes eyebrow-light {
  0%, 100% {
    opacity: .28;
    box-shadow: 0 0 0 2px rgba(82, 217, 138, .04);
  }
  45%, 60% {
    opacity: 1;
    box-shadow:
      0 0 0 6px rgba(82, 217, 138, .12),
      0 0 14px rgba(82, 217, 138, .75);
  }
}

.section-kicker {
  margin-bottom: 14px;
}

.section-kicker::before {
  width: 18px;
  height: 2px;
  content: "";
  background: var(--orange-2);
  border-radius: 99px;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #ffb36b 10%, #ff7a1a 50%, #a6eeff 90%);
  background-clip: text;
}

.hero-desc {
  max-width: 600px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.hero-note {
  margin-top: 28px;
  color: var(--muted-2);
  font-size: 13px;
}

.product-stage {
  position: relative;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(7px);
}

.orb.one {
  top: 8px;
  right: 15px;
  width: 160px;
  height: 160px;
  background: rgba(255, 122, 26, .16);
}

.orb.two {
  bottom: 40px;
  left: -15px;
  width: 120px;
  height: 120px;
  background: rgba(132, 109, 255, .17);
}

.chatbot-demo {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  backdrop-filter: blur(18px);
}

.chatbot-top {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: rgba(0, 0, 0, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.dots {
  display: flex;
  gap: 7px;
}

.dots i {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.chatbot-title {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.chatbot-body {
  padding: 20px;
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.msg {
  max-width: 90%;
  padding: 13px 16px;
  color: #e4eaf6;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.msg.ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
}

.msg.user {
  align-self: flex-end;
  min-height: 50px;
  background: linear-gradient(135deg, rgba(255, 122, 26, .22), rgba(132, 109, 255, .14));
  border: 1px solid rgba(255, 255, 255, .1);
}

.answer-card {
  max-width: 100%;
  padding: 16px;
}

.answer-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.answer-label,
.confidence {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.answer-label {
  color: var(--orange-2);
}

.confidence {
  color: var(--green);
}

.answer-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
}

.answer-card p {
  font-size: 13px;
}

.answer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.mini-pill,
.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  color: var(--soft);
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.chat-input {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  color: var(--muted-2);
  background: rgba(0, 0, 0, .2);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  font-size: 13px;
}

.send-btn {
  width: 34px;
  height: 34px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  color: #170e06;
  background: linear-gradient(135deg, var(--orange), #ff9e42);
  border: 0;
  border-radius: 50%;
  font-weight: 900;
}

.chat-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 11px;
}

.caret {
  display: inline-block;
  width: 2px;
  height: 15px;
  margin-left: 3px;
  vertical-align: middle;
  background: #ffd6b0;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.credibility-strip {
  padding: 24px 0;
  border-block: 1px solid rgba(255, 255, 255, .08);
}

.credibility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.credibility-inner > p {
  max-width: 580px;
  color: var(--soft);
  font-weight: 600;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: end;
  margin-bottom: 46px;
}

.section-head > p {
  font-size: 16px;
}

.section-intro {
  max-width: 740px;
  margin: 18px 0 42px;
  font-size: 17px;
}

.content-gap {
  margin-top: 18px;
}

.section-link {
  margin-top: 24px;
}

.top-gap {
  margin-top: 28px;
}

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

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

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

.card,
.content-panel,
.price-card,
.legal-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card {
  padding: 27px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 30px rgba(255, 122, 26, .08);
  transform: translateY(-3px);
}

.card-number,
.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 19px;
  color: var(--orange-2);
  background: rgba(255, 122, 26, .1);
  border: 1px solid rgba(255, 122, 26, .2);
  border-radius: 14px;
  font-weight: 700;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.card p {
  font-size: 14px;
}

.question {
  margin-top: 17px;
  padding: 13px 14px;
  color: var(--soft);
  background: rgba(0, 0, 0, .2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 34px;
}

.workflow-step {
  min-height: 205px;
  padding: 22px;
  background: rgba(0, 0, 0, .19);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
}

.step-no {
  margin-bottom: 17px;
  color: var(--orange-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.workflow-step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.workflow-step p {
  font-size: 13px;
}

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

.content-panel {
  padding: 34px;
}

.content-panel h2,
.content-panel h3 {
  margin-bottom: 13px;
}

.content-panel h3 {
  font-size: 24px;
}

.check-list,
.plain-list,
.integration-list {
  display: grid;
  gap: 11px;
  margin-top: 22px;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 25px;
  color: var(--soft);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  content: "✓";
  color: var(--green);
  background: rgba(82, 217, 138, .1);
  border: 1px solid rgba(82, 217, 138, .22);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.plain-list li::before {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--orange-2);
  border-radius: 50%;
}

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

.integration-list li {
  padding: 13px 15px;
  color: var(--soft);
  background: rgba(0, 0, 0, .19);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
}

.band {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 122, 26, .14), transparent 28%),
    rgba(255, 255, 255, .035);
  border-block: 1px solid rgba(255, 255, 255, .08);
}

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

.comparison .content-panel:first-child {
  opacity: .82;
}

.comparison-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.anchor-offset {
  scroll-margin-top: calc(var(--nav-h) + 18px);
}

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

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.faq-q {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--text);
  text-align: left;
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 700;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  color: var(--orange-2);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  transition: transform var(--transition);
}

.faq-chevron::before {
  content: "+";
  font-size: 18px;
}

.faq-item.open .faq-chevron {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-item.open .faq-a {
  max-height: 360px;
  padding: 0 22px 21px;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(255, 122, 26, .13), rgba(255, 255, 255, .04));
  border-color: rgba(255, 122, 26, .35);
}

.price-name {
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price-card h2 {
  margin: 12px 0;
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.price-card .check-list {
  margin-bottom: 28px;
}

.price-card .btn {
  margin-top: auto;
}

.resource-card {
  display: flex;
  flex-direction: column;
}

.resource-card .text-link {
  margin-top: auto;
  padding-top: 20px;
}

.resource-detail {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.resource-detail:first-child {
  border-top: 0;
}

.resource-detail h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

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

.glossary-item {
  padding: 22px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.glossary-item dt {
  margin-bottom: 7px;
  color: var(--soft);
  font-weight: 700;
}

.glossary-item dd {
  color: var(--muted);
  line-height: 1.65;
}

.legal-wrap {
  display: grid;
  gap: 14px;
}

.legal-section {
  padding: 28px;
}

.legal-section h2 {
  margin-bottom: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.legal-note {
  padding: 18px 20px;
  color: var(--soft);
  background: rgba(255, 122, 26, .08);
  border: 1px solid rgba(255, 122, 26, .2);
  border-radius: 16px;
  line-height: 1.65;
}

.cta-section {
  padding-top: 72px;
}

.cta {
  padding: 64px 48px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 122, 26, .2), transparent 30%),
    radial-gradient(circle at 85% 4%, rgba(132, 109, 255, .16), transparent 28%),
    rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.cta p {
  max-width: 650px;
  margin: 16px auto 0;
  font-size: 16px;
}

.cta-actions {
  justify-content: center;
}

.site-footer {
  padding: 54px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
}

.footer-brand p {
  max-width: 260px;
  margin-top: 16px;
  font-size: 13px;
}

.footer-column h2 {
  margin-bottom: 15px;
  color: var(--soft);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-column a {
  color: var(--muted-2);
  font-size: 13px;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  color: var(--muted-2);
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 14px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .navlinks,
  .nav-actions .btn:not(.primary) {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .credibility-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .tag-list {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 32px);
  }

  section {
    padding: 68px 0;
  }

  .hero,
  .page-hero {
    padding: 58px 0;
  }

  .nav-actions .primary {
    display: none;
  }

  .split,
  .comparison,
  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .workflow,
  .price-grid,
  .glossary-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .chatbot-body {
    padding: 14px;
  }

  .chat-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .integration-list {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 42px 22px;
    border-radius: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
