:root {
  --blue: #2383e2;
  --blue-hover: #1673cf;
  --blue-active: #0f63b6;
  --blue-soft: #e7f2ff;
  --text: #18181b;
  --muted: #71717a;
  --subtle: #60646c;
  --line: #e4e4e7;
  --panel: #ffffff;
  --shadow: 0 1px 3px rgba(0, 0, 0, .10), 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-hover: 0 18px 42px rgba(24, 24, 27, .11), 0 7px 18px rgba(24, 24, 27, .07);
  --radius: 12px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.16, 1, .3, 1);
  --ease-press: cubic-bezier(.2, 0, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

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

a,
button,
summary,
.image-card,
.benefit-grid article,
.code-window,
.setup article {
  -webkit-tap-highlight-color: transparent;
}

a,
button,
summary {
  transition:
    color .32s var(--ease-soft),
    background-color .34s var(--ease-soft),
    border-color .34s var(--ease-soft),
    box-shadow .38s var(--ease-soft),
    transform .34s var(--ease-soft),
    opacity .28s var(--ease-soft);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(35, 131, 226, .28);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 56px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(228, 228, 231, .65);
  backdrop-filter: blur(14px);
}

.nav-shell {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  color: var(--muted);
  font-weight: 500;
}

.brand:hover {
  color: #3f3f46;
}

.brand:active {
  color: var(--blue-active);
  transform: translateY(1px);
}

.brand img {
  width: 125px;
  height: 24px;
  object-fit: contain;
}

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

.nav-links a:not(.button) {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  color: var(--muted);
  font-weight: 500;
  border-radius: 6px;
}

.nav-links a:not(.button):hover,
.footer a:hover {
  color: var(--blue);
}

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

.nav-links a:not(.button):hover {
  background: #f8fbff;
  transform: translateY(-1px);
}

.nav-links a:not(.button):active,
.footer a:active {
  color: var(--blue-active);
  transform: translateY(1px);
}

.menu-button {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-button:hover {
  border-color: rgba(35, 131, 226, .35);
  background: #f8fbff;
  box-shadow: 0 8px 18px rgba(35, 131, 226, .10);
  transform: translateY(-1px);
}

.menu-button:active {
  transform: translateY(1px) scale(.98);
}

.menu-button span {
  width: 16px;
  height: 2px;
  background: var(--muted);
  border-radius: 10px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: var(--blue);
  color: #fafafa;
  font-weight: 500;
  padding: 0 40px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow, background-color, border-color;
  transition:
    color .32s var(--ease-soft),
    background-color .38s var(--ease-soft),
    border-color .38s var(--ease-soft),
    box-shadow .42s var(--ease-soft),
    transform .38s var(--ease-soft);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s var(--ease-soft);
}

.button:hover {
  border-color: var(--blue-hover);
  background: var(--blue-hover);
  box-shadow: 0 12px 28px rgba(35, 131, 226, .20), 0 3px 8px rgba(35, 131, 226, .12);
  transform: translateY(-2px) scale(1.012);
}

.button:hover::before {
  opacity: 1;
}

.button:active {
  border-color: var(--blue-active);
  background: var(--blue-active);
  box-shadow: 0 5px 14px rgba(35, 131, 226, .16);
  transform: translateY(0) scale(.985);
  transition-duration: .12s;
  transition-timing-function: var(--ease-press);
}

.button-small {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 14px;
}

.button-secondary {
  background: #fff;
  border-color: var(--line);
  color: #09090b;
}

.button-secondary:hover {
  border-color: rgba(35, 131, 226, .42);
  background: #f8fbff;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(24, 24, 27, .08), 0 2px 8px rgba(35, 131, 226, .08);
}

.button-secondary:active {
  background: #eef6ff;
  color: var(--blue-active);
}

.section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  padding-top: 64px;
  text-align: center;
}

.hero-inner {
  max-width: 992px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.34;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-copy {
  max-width: 992px;
  margin: 20px auto 0;
  color: var(--subtle);
  font-size: 20px;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: min(792px, 100%);
  margin: 80px auto 0;
}

.metrics article {
  display: grid;
  gap: 8px;
  justify-items: center;
  transition: transform .42s var(--ease-soft), opacity .32s var(--ease-soft);
}

.metrics article:hover {
  transform: translateY(-2px);
}

.metrics strong {
  color: #09090b;
  font-size: 36px;
  line-height: 40px;
  font-weight: 800;
}

.metrics .accent {
  color: var(--blue);
}

.metrics span {
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 80px;
}

.image-card,
.benefit-grid article,
.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card {
  overflow: hidden;
  min-height: 456px;
  display: flex;
  flex-direction: column;
  transition:
    transform .46s var(--ease-soft),
    box-shadow .48s var(--ease-soft),
    border-color .42s var(--ease-soft),
    background-color .42s var(--ease-soft);
  will-change: transform, box-shadow;
}

.image-card:hover {
  border-color: rgba(35, 131, 226, .26);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px) scale(1.006);
}

.image-card:active {
  transform: translateY(-2px) scale(1.001);
  transition-duration: .16s;
  transition-timing-function: var(--ease-press);
}

.card-media {
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fbfbfc;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform .62s var(--ease-soft),
    filter .48s var(--ease-soft);
  will-change: transform;
}

.image-card:hover .card-media img {
  transform: scale(1.045);
  filter: saturate(1.04);
}

.image-card:nth-child(3) .card-media img {
  width: 74%;
  height: auto;
  object-fit: contain;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
}

.card-body h2,
.benefit-grid h3,
.setup h3 {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.card-body p,
.benefit-grid p,
.setup p,
.faq p,
.section-heading p,
.centered > p {
  margin: 0;
  color: var(--muted);
}

.centered {
  text-align: center;
  padding-top: 80px;
}

.centered h2,
.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.section-intro h2 {
  font-size: 28px;
  line-height: 36px;
}

.centered > p,
.section-heading p {
  max-width: 1200px;
  margin: 8px auto 0;
}

.section-intro > p,
.section-heading.section-intro p {
  max-width: 1040px;
  line-height: 20px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  text-align: left;
}

.benefit-grid article {
  min-height: 154px;
  padding: 24px;
  transition:
    transform .46s var(--ease-soft),
    box-shadow .48s var(--ease-soft),
    border-color .42s var(--ease-soft),
    background-color .42s var(--ease-soft);
  will-change: transform, box-shadow;
}

.benefit-grid article:hover {
  border-color: rgba(35, 131, 226, .25);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px) scale(1.004);
}

.benefit-grid article:active {
  transform: translateY(-2px) scale(1);
  transition-duration: .16s;
  transition-timing-function: var(--ease-press);
}

.icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 700;
  transition:
    transform .46s var(--ease-soft),
    background-color .42s var(--ease-soft);
}

.icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.benefit-grid article:hover .icon {
  background: #d9ecff;
  transform: scale(1.06);
}

.benefit-grid p {
  margin-top: 8px;
}

.product-core {
  padding-top: 80px;
}

.section-heading {
  text-align: center;
}

.usecase-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 80px;
  margin-top: 32px;
}

.usecase-list {
  display: grid;
  gap: 8px;
  position: relative;
}

.usecase-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 64px;
  border-radius: 99px;
  background: var(--blue);
  transform: translateY(var(--indicator-y, 0));
  transition:
    transform .42s var(--ease),
    height .42s var(--ease);
  z-index: 1;
}

.usecase-list button {
  width: 100%;
  min-height: 64px;
  padding: 0 0 0 16px;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, .6);
  text-align: left;
  font: inherit;
  cursor: pointer;
  position: relative;
  border-radius: 0 8px 8px 0;
  transition:
    color .28s var(--ease);
}

.usecase-list button:hover {
  color: var(--blue);
}

.usecase-list button:active {
  color: var(--blue-active);
}

.usecase-list strong {
  display: block;
  color: inherit;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.usecase-list button > span {
  display: grid;
  grid-template-rows: 0fr;
  max-width: 552px;
  margin-top: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
  opacity: 0;
  transition:
    grid-template-rows .42s var(--ease),
    margin-top .42s var(--ease),
    opacity .24s ease;
}

.usecase-list button > span > span {
  overflow: hidden;
}

.usecase-list button.active {
  color: var(--blue);
}

.usecase-list button.active > span {
  grid-template-rows: 1fr;
  margin-top: 4px;
  opacity: 1;
}

.conversation-visual {
  min-height: 328px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #77e0f1, #02a8ee 70%);
  transition: transform .48s var(--ease-soft), box-shadow .5s var(--ease-soft);
  will-change: transform, box-shadow;
}

.conversation-visual:hover {
  box-shadow: 0 20px 44px rgba(2, 168, 238, .18);
  transform: translateY(-5px) scale(1.004);
}

.conversation-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition:
    transform .68s var(--ease-soft),
    opacity .24s var(--ease-soft);
  will-change: transform, opacity;
}

.conversation-visual:hover img {
  transform: scale(1.025);
}

.conversation-visual img.is-switching {
  opacity: 0;
  transform: scale(1.015);
}

.compatible {
  padding-top: 80px;
}

.code-window {
  overflow: hidden;
  margin-top: 32px;
  border-radius: 8px;
  background: #090909;
  color: #f4f4f5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  transition: transform .5s var(--ease-soft), box-shadow .52s var(--ease-soft);
  will-change: transform, box-shadow;
}

.code-window:hover {
  box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
  transform: translateY(-5px) scale(1.002);
}

.window-bar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid #242424;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-bar span:nth-child(1) { background: #ff5f57; }
.window-bar span:nth-child(2) { background: #ffbd2e; }
.window-bar span:nth-child(3) { background: #28c840; }

.window-bar b {
  margin-left: 16px;
  color: #d4d4d8;
  font-size: 12px;
}

.code-panels {
  min-height: 680px;
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
}

.code-panels aside,
.code-panels section {
  padding: 20px;
  border-right: 1px solid #242424;
}

.code-panels aside {
  background: #14151c;
  color: #a1a1aa;
}

.code-panels aside p {
  margin: 0 0 14px;
  padding: 7px 10px;
  border-radius: 6px;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}

.code-panels aside p:not(.selected):hover {
  background: #20212a;
  color: #f4f4f5;
}

.code-panels aside .selected {
  background: #2b2c34;
  color: #fff;
}

.code-panels h3 {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 20px;
}

.code-panels p {
  color: #d4d4d8;
}

.prompt {
  margin-top: 220px;
  padding: 16px;
  border: 1px solid #2f2f34;
  border-radius: 12px;
  color: #a1a1aa;
}

.prompt span {
  display: block;
  margin-top: 20px;
  color: #f4f4f5;
}

.diff {
  background: #101010;
}

pre {
  overflow: auto;
  margin: 0;
  padding: 16px;
  border-radius: 8px;
  background: #171717;
  color: #9ae6b4;
  font-size: 14px;
  line-height: 1.65;
}

.setup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  padding: 80px 0;
}

.setup article {
  position: relative;
  min-height: 160px;
  transition: transform .46s var(--ease-soft);
  will-change: transform;
}

.setup article:hover {
  transform: translateY(-5px);
}

.setup span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #eaf3ff;
  color: var(--blue);
  font-weight: 700;
}

.setup p {
  margin-top: 12px;
  max-width: 240px;
}

.mini-icons,
.credit-lines,
.key-box {
  margin-top: 24px;
}

.mini-icons {
  display: flex;
  gap: 10px;
}

.mini-icons i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  transition:
    transform .34s var(--ease-soft),
    border-color .34s var(--ease-soft),
    background-color .34s var(--ease-soft),
    box-shadow .34s var(--ease-soft);
}

.mini-icons i:hover {
  border-color: rgba(35, 131, 226, .35);
  background: #f8fbff;
  box-shadow: 0 6px 14px rgba(35, 131, 226, .10);
  transform: translateY(-3px);
}

.credit-lines {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  max-width: 220px;
}

.credit-lines b {
  height: 8px;
  border-radius: 4px;
  background: #edf2ff;
}

.credit-lines strong {
  grid-row: 1 / 4;
  grid-column: 2;
  align-self: center;
}

.key-box {
  max-width: 250px;
  padding: 14px 16px;
  border-radius: 6px;
  background: #f7f9ff;
  color: var(--muted);
  font-size: 12px;
}

.key-box em {
  color: #09090b;
  font-style: normal;
}

.faq {
  padding: 16px 0 80px;
}

.faq-list {
  max-width: 820px;
  display: grid;
  gap: 12px;
  margin: 32px auto 0;
}

.faq details,
.pricing-faq .faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  overflow: hidden;
  transition:
    border-color .4s var(--ease-soft),
    box-shadow .46s var(--ease-soft),
    transform .44s var(--ease-soft);
}

.faq details:hover,
.pricing-faq .faq-item:hover {
  border-color: rgba(35, 131, 226, .25);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.faq summary,
.pricing-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  color: #27272a;
  font-weight: 600;
  cursor: pointer;
}

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

.faq summary::after,
.pricing-faq summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f4f8ff;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
  transition: transform .28s var(--ease), background-color .28s var(--ease);
}

.faq details[open] summary::after,
.pricing-faq .faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--blue-soft);
}

.faq summary:hover,
.pricing-faq summary:hover {
  color: var(--blue);
}

.faq summary:active,
.pricing-faq summary:active {
  color: var(--blue-active);
}

.faq-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height .34s var(--ease),
    opacity .24s ease;
}

.faq details[open] .faq-content,
.pricing-faq .faq-item[open] .faq-content {
  opacity: 1;
}

.faq p {
  margin-top: 12px;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 88px;
  border-top: 1px solid var(--line);
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer h3 {
  margin: 0 0 16px;
  color: #3f3f46;
  font-size: 14px;
}

.footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.pricing-page {
  min-height: 1200px;
}

.pricing-hero {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 80px 0 0;
  text-align: center;
}

.pricing-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
}

.pricing-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 28px;
}

.pricing-hero-button {
  min-height: 40px;
  margin-top: 8px;
  padding: 0 32px;
}

.pricing-table-section {
  width: min(960px, calc(100% - 64px));
  padding-top: 64px;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 28px;
  font-size: 14px;
  line-height: 20px;
  vertical-align: middle;
}

.pricing-table thead th {
  background: #fbfbfc;
  color: #3f3f46;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.pricing-table thead th:last-child {
  background: rgba(35, 131, 226, .07);
  color: var(--blue);
  text-align: center;
}

.pricing-table th[scope="row"] {
  width: 56%;
  color: #09090b;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  text-align: left;
}

.pricing-table td {
  width: 44%;
  background: rgba(35, 131, 226, .045);
  color: #09090b;
  text-align: center;
  font-weight: 500;
}

.pricing-table tr {
  transition: background-color .28s var(--ease-soft);
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table tbody tr:hover {
  background: #fbfdff;
}

.pricing-table tbody tr:hover th {
  color: var(--blue);
}

.pricing-table tbody tr:hover td {
  background: rgba(35, 131, 226, .08);
}

.check {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}

.muted-check {
  background: #f4f4f5;
  color: #a1a1aa;
}

.pricing-action-row th,
.pricing-action-row td {
  padding-top: 22px;
  padding-bottom: 22px;
  border-bottom: 0;
}

.table-button {
  min-height: 44px;
  padding: 0 32px;
}

.pricing-faq {
  max-width: 768px;
  padding: 64px 0 96px;
}

.pricing-faq h2 {
  margin: 0 0 48px;
  color: var(--text);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
}

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

.pricing-faq-group h3 {
  margin: 0 0 14px;
  color: #27272a;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.pricing-faq-group .faq-item {
  margin-top: 12px;
}

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

@media (max-width: 980px) {
  .section {
    width: min(100% - 32px, 720px);
  }

  .feature-grid,
  .benefit-grid,
  .setup,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .usecase-layout,
  .code-panels {
    grid-template-columns: 1fr;
  }

  .code-panels {
    min-height: 0;
  }

  .code-panels aside {
    display: none;
  }

  .prompt {
    margin-top: 80px;
  }

  .pricing-table-section {
    width: calc(100% - 32px);
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .metrics,
  .feature-grid,
  .benefit-grid,
  .setup,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

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

  .feature-grid,
  .centered,
  .product-core,
  .compatible {
    padding-top: 56px;
  }

  .section-intro h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .section-intro br {
    display: none;
  }

  .image-card {
    min-height: 0;
  }

  .usecase-layout {
    gap: 24px;
  }

  .conversation-visual {
    min-height: 220px;
  }

  .code-panels section {
    border-right: 0;
  }

  pre {
    font-size: 12px;
  }

  .setup {
    gap: 36px;
    padding: 56px 0;
  }

  .footer {
    gap: 28px;
    padding-bottom: 56px;
  }

  .pricing-hero {
    padding-top: 56px;
  }

  .pricing-hero h1 {
    font-size: 40px;
    line-height: 44px;
  }

  .pricing-hero p {
    max-width: 320px;
    font-size: 16px;
    line-height: 24px;
  }

  .pricing-table-section {
    padding-top: 48px;
  }

  .pricing-table {
    min-width: 620px;
  }

  .pricing-table th[scope="row"] {
    width: 56%;
    font-size: 14px;
    line-height: 20px;
  }

  .pricing-table td {
    width: 44%;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 16px 20px;
  }

  .pricing-faq {
    padding-top: 56px;
  }

  .pricing-faq h2 {
    margin-bottom: 36px;
    font-size: 26px;
    line-height: 34px;
  }
}
