:root {
  --bg: #090b10;
  --panel: #10141b;
  --panel-2: #151a23;
  --line: #252c38;
  --text: #f4f6fa;
  --muted: #949eae;
  --accent: #72f1b8;
  --accent-2: #7e9cff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, rgba(126,156,255,.12), transparent 31rem),
    radial-gradient(circle at 95% 18%, rgba(114,241,184,.07), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.nav {
  width: min(calc(100% - 40px), var(--max));
  height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 750; letter-spacing: -.02em; }
.brand-mark {
  width: 34px;
  height: 34px;
  padding: 6px;
  box-sizing: border-box;
  flex: 0 0 auto;
  color: var(--accent);
  fill: currentColor;
  border: 1px solid rgba(114,241,184,.5);
  border-radius: 10px;
  background: rgba(114,241,184,.08);
  overflow: visible;
}
.footer-brand .brand-mark { width: 30px; height: 30px; padding: 5px; }
.nav nav { display: flex; gap: 30px; color: var(--muted); font-size: 14px; }
.nav nav a:hover { color: var(--text); }
.button {
  display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 24px;
  color: #07110c; background: var(--accent); border: 1px solid var(--accent); border-radius: 8px;
  font-weight: 750; font-size: 14px; transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(114,241,184,.18); }
.button-small { min-height: 40px; padding: 0 17px; }
.section { width: min(calc(100% - 40px), var(--max)); margin: auto; padding: 110px 0; }
.eyebrow {
  margin-bottom: 20px; color: var(--accent); font: 700 12px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase; letter-spacing: .16em;
}
.live-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(114,241,184,.09); }
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 84px;
  padding-bottom: 96px;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; max-width: 980px; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 9px 18px;
  border: 1px solid rgba(114,241,184,.22);
  border-radius: 999px;
  background: rgba(114,241,184,.05);
  color: var(--accent);
  font: 700 10.5px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.hero h1 { font-size: clamp(40px, 4.6vw, 64px); }
.hero .lede { max-width: 660px; margin: 0 0 34px; color: #a9b3c1; font-size: 16.5px; line-height: 1.7; }
.hero h1, .section-heading h2, .about h2, .cta h2 {
  margin-bottom: 25px; font-size: clamp(48px, 5.7vw, 84px); line-height: .98; letter-spacing: -.06em; font-weight: 760;
}
h1 span, h2 span { color: var(--muted); }
.lede { max-width: 650px; color: #b9c1cd; font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin: 0 0 66px; }
.text-link { color: #c7ced8; font-weight: 650; font-size: 14px; }
.text-link span { color: var(--accent); margin-left: 7px; }
.metrics { display: flex; justify-content: center; margin-top: 56px; }
.metrics > div { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 0 48px; border-left: 1px solid var(--line); }
.metrics > div:first-child { border-left: 0; }
.metrics strong { font-size: 30px; letter-spacing: -.04em; }
.metrics span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }

.agent-console {
  width: min(100%, 860px);
  overflow: hidden; border: 1px solid var(--line); border-radius: 16px;
  text-align: left;
  background: linear-gradient(160deg, rgba(23,29,40,.94), rgba(12,15,21,.96));
  box-shadow: 0 36px 90px rgba(0,0,0,.45), 0 0 120px rgba(114,241,184,.05);
}
.console-head, .connected { padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.console-head div { display: flex; flex-direction: column; }
.console-head strong { font-size: 14px; }
.console-head span, .connected > span { color: var(--muted); font: 11px ui-monospace, monospace; }
.status { color: var(--accent) !important; font-weight: 700 !important; letter-spacing: .08em; }
.status i { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--accent); }
.console-flow { padding: 9px 22px; }
.flow-row { position: relative; padding: 15px 0 15px 22px; border-left: 1px solid #303746; }
.flow-row::before { content: ""; position: absolute; top: 21px; left: -4px; width: 7px; height: 7px; border-radius: 50%; background: #4c5669; }
.flow-row span { color: var(--muted); font: 11px ui-monospace, monospace; text-transform: uppercase; }
.flow-row p { margin: 4px 0 7px; color: #cfd5df; font-size: 13px; line-height: 1.45; }
.flow-row code, .agent-grid code { color: #a9b8ff; background: rgba(126,156,255,.09); border: 1px solid rgba(126,156,255,.14); border-radius: 5px; padding: 4px 7px; font-size: 10px; }
.flow-row.incoming::before { background: var(--accent-2); box-shadow: 0 0 0 4px rgba(126,156,255,.1); }
.flow-row.done::before { background: var(--accent); }
.code-pills { display: flex; gap: 6px; }
.connected { border-top: 1px solid var(--line); border-bottom: 0; }
.connected div { display: flex; }
.connected b { width: 26px; height: 26px; display: grid; place-items: center; margin-left: -5px; border: 2px solid var(--panel); border-radius: 50%; background: #29303e; color: #dce2eb; font-size: 10px; }

.section-heading { display: grid; grid-template-columns: 1fr .64fr; align-items: end; gap: 80px; margin-bottom: 50px; }
.section-heading h2, .about h2, .cta h2 { font-size: clamp(42px, 5vw, 68px); margin-bottom: 0; }
.section-heading > p { color: var(--muted); font-size: 17px; }
.featured-agent { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; padding: 42px; border: 1px solid rgba(114,241,184,.25); background: linear-gradient(135deg, rgba(114,241,184,.07), rgba(126,156,255,.035)); border-radius: 14px; }
.tag { color: var(--accent); font: 700 11px ui-monospace, monospace; text-transform: uppercase; letter-spacing: .1em; }
.featured-agent h3, .agent-grid h3, .price-card h3 { margin: 8px 0 0; font-size: 28px; letter-spacing: -.04em; }
.role { color: var(--muted); font-size: 13px; }
.featured-agent > div > p:not(.tag,.role) { max-width: 600px; color: #b0b9c6; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.chips span { padding: 5px 9px; color: #b9c5d5; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 5px; font-size: 10px; }
.activity { align-self: center; padding: 22px; border: 1px solid var(--line); border-radius: 10px; background: rgba(5,7,10,.45); }
.activity > span { color: var(--muted); font: 10px ui-monospace, monospace; text-transform: uppercase; }
.activity p { display: flex; align-items: center; margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--line); color: #c4cbd6; font-size: 12px; }
.activity p i { width: 6px; height: 6px; margin-right: 10px; border-radius: 50%; background: var(--accent); }
.activity small { margin-left: auto; color: #667084; }
.activity .typing { color: var(--accent); }
.agent-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 12px; }
.agent-grid article { grid-column: span 2; min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); }
.agent-grid article:nth-child(4), .agent-grid article:nth-child(5) { grid-column: span 3; }
.agent-grid article > p:not(.role) { color: var(--muted); font-size: 13px; }
.agent-icon { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 40px; color: var(--accent); border: 1px solid var(--line); border-radius: 9px; background: var(--panel-2); font: 700 13px ui-monospace, monospace; }
.agent-grid h3 { font-size: 19px; }

.pricing { border-top: 1px solid rgba(255,255,255,.06); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 14px; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
.price-card > p:not(.tag) { color: var(--muted); }
.price-card-featured {
  border-color: rgba(114,241,184,.55);
  background: linear-gradient(155deg, rgba(114,241,184,.09), var(--panel) 42%);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.popular {
  position: absolute;
  top: 0;
  right: 26px;
  padding: 6px 10px;
  color: #06100b !important;
  background: var(--accent);
  border-radius: 0 0 6px 6px;
  font: 800 9px ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.price { display: flex; align-items: baseline; margin: 35px 0; }
.price strong { font-size: 46px; letter-spacing: -.06em; }
.price span { color: var(--muted); margin-left: 8px; font-size: 11px; }
.price-custom { flex-direction: column; align-items: flex-start; gap: 3px; }
.price-custom strong { font-size: 42px; }
.price-custom span { margin-left: 0; }
.price-card ul, .about-card ul { list-style: none; padding: 0; margin: 0 0 35px; }
.price-card ul { flex: 1; }
.price-card li, .about-card li { padding: 9px 0; color: #bec6d2; font-size: 13px; }
.price-card li::before, .about-card li::before { content: "✓"; margin-right: 10px; color: var(--accent); }
.price-card .button { width: 100%; }
.button-secondary { color: var(--text); background: transparent; border-color: #3a4454; }
.button-secondary:hover { border-color: var(--accent); box-shadow: 0 12px 34px rgba(114,241,184,.08); }
.pricing-note { margin: 18px 0 0; color: #687386; font-size: 11px; text-align: center; }

/* Industry use cases — problem / build / result */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.usecase {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.usecase:hover {
  border-color: rgba(114,241,184,.28);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0,0,0,.26);
}

.usecase-sector {
  margin-bottom: 12px;
  color: var(--accent);
  font: 700 10px ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.usecase h3 {
  margin: 0 0 20px;
  font-size: 19px;
  letter-spacing: -.03em;
  line-height: 1.25;
}

.usecase p:not(.usecase-sector) {
  margin: 0 0 15px;
  color: #a8b1be;
  font-size: 12.5px;
  line-height: 1.62;
}
.usecase p:last-child { margin-bottom: 0; }

.usecase p > span {
  display: block;
  margin-bottom: 4px;
  color: #67717f;
  font: 700 9px ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.usecase-result {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #d3dae4 !important;
}
.usecase-result > span { color: var(--accent) !important; }

.usecase-more { margin: 13px 0 0 !important; font-size: 12.5px; }
.usecase-more a { color: var(--accent); font-weight: 650; }
.usecase-more a span { margin-left: 4px; }

.usecase-note {
  max-width: 760px;
  margin: 26px auto 0;
  color: #6d7787;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .usecase { transition: none; }
  .usecase:hover { transform: none; }
}
.about-card { display: grid; grid-template-columns: 1fr .92fr; gap: 66px; padding: 55px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(130deg, var(--panel), rgba(126,156,255,.07)); }
.about-lead { align-self: center; }
.about-intro { color: #b7c0cd; font-size: 17px; }
.about-lead ul { margin-bottom: 0; }

/* The name — dictionary panel inside the about card */
.about-name {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(5,7,10,.42);
}
/* Logo leads the panel: large, centred, no box around it. */
.about-name-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 14px 0 26px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.about-name-hero::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 190px;
  height: 190px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(114,241,184,.13), transparent 68%);
  pointer-events: none;
}
.about-name-hero .tag { position: relative; margin: 0; }
.name-mark {
  position: relative;
  width: clamp(110px, 15vw, 140px);
  height: auto;
  color: var(--accent);
  fill: currentColor;
  filter: drop-shadow(0 8px 26px rgba(114,241,184,.22));
}

.about-name h3 {
  margin: 0 0 5px;
  text-align: center;
  font-size: clamp(30px, 3vw, 40px);
  letter-spacing: -.05em;
  font-weight: 760;
}
.pronunciation { text-align: center; margin: 0 0 24px; color: var(--muted); font: 12px ui-monospace, SFMono-Regular, Menlo, monospace; }
.pronunciation em { color: #7a8698; }
.name-parts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.name-parts > div { padding: 15px 17px; background: var(--panel); }
.name-parts strong { color: var(--accent); font: 700 14px ui-monospace, SFMono-Regular, Menlo, monospace; }
.name-parts small { margin-left: 8px; color: #667084; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.name-parts p { margin: 6px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.about-name .definition {
  margin: 22px 0 14px;
  padding-left: 17px;
  border-left: 2px solid var(--accent);
  color: #e4e9f1;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -.02em;
}
.about-name .definition span { color: var(--muted); font-style: italic; }
.name-note { margin: 0; color: #a5aebc; font-size: 13px; line-height: 1.7; }
.name-note em { color: var(--accent); font-style: normal; font-weight: 650; }
.about-card > div:last-child > p { color: #b7c0cd; font-size: 17px; }
/* Team — the consultants who do the work */
.team-intro { margin-top: 46px; }
.team-intro h3 {
  margin: 9px 0 12px;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -.035em;
  font-weight: 730;
}
.team-intro > p:not(.tag) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.team article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.team article:hover {
  border-color: rgba(114,241,184,.28);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}

.team-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(114,241,184,.3);
  border-radius: 12px;
  background: rgba(114,241,184,.07);
  font: 800 12px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.team-body { min-width: 0; }
.team-body small {
  display: block;
  color: var(--accent);
  font: 700 9px ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.team-body h4 {
  margin: 6px 0 5px;
  font-size: 17px;
  letter-spacing: -.025em;
  font-weight: 700;
}
.team-focus {
  margin: 0 0 11px;
  color: #6b7584;
  font-size: 10.5px;
  letter-spacing: .02em;
}
.team-owns {
  margin: 0;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: #a4adbb;
  font-size: 12.5px;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .team article { transition: none; }
  .team article:hover { transform: none; }
}
/* Hero atmosphere: faint grid and glows behind the fold. */
.hero { position: relative; }
.hero::before {
  content: "";
  position: absolute;
  inset: -120px 0 -40px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1000px 560px at 50% -12%, rgba(114,241,184,.075), transparent 58%),
    radial-gradient(1200px 640px at 50% 64%, rgba(126,156,255,.045), transparent 62%);
}

/* Headline rises and sharpens as one block - safe at any wrap point. */
.hero h1 {
  animation: hero-rise .9s cubic-bezier(.22,.61,.36,1) .1s both;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(26px); filter: blur(10px); }
  to { opacity: 1; transform: none; filter: none; }
}

/* Terminal chrome on the agent console. */
.console-head { gap: 14px; }
.console-head .console-dots { display: flex; flex-direction: row; gap: 6px; }
.console-dots i { width: 9px; height: 9px; border-radius: 50%; }
.console-dots i:nth-child(1) { background: #b8574f; }
.console-dots i:nth-child(2) { background: #b9973a; }
.console-dots i:nth-child(3) { background: #3f9a5b; }
.console-head > div:not(.console-dots) { flex: 1; }
.console-head span b { font-weight: 500; color: inherit; }

.console-caret {
  display: inline-block;
  width: 7px;
  height: 12px;
  margin-left: 7px;
  vertical-align: -2px;
  background: var(--accent);
  animation: caret-blink 1.05s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }

/* Scenario switching: fixed height so the card never jumps. */
.console-flow { min-height: 316px; transition: opacity .35s ease, transform .35s ease; }
.console-flow.is-switching { opacity: 0; transform: translateY(8px); }

@media (prefers-reduced-motion: reduce) {
  .hero h1 { animation: none; }
  .console-caret { animation: none; }
  .console-flow { min-height: 0; }
}

.pricing-addons {
  max-width: 760px;
  margin: 30px auto 0;
  color: #79828f;
  font-size: 12.5px;
  line-height: 1.7;
  text-align: center;
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1) var(--d, 0ms),
              transform .7s cubic-bezier(.22,.61,.36,1) var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Console rows arrive in sequence so the flow reads as work in progress. */
[data-flow] {
  opacity: 0;
  transform: translateY(10px);
  animation: flow-in .55s cubic-bezier(.22,.61,.36,1) var(--fd, 0ms) forwards;
}
@keyframes flow-in { to { opacity: 1; transform: none; } }

.flow-row.done .code-pills code:last-child {
  animation: pill-pop .5s ease calc(var(--fd, 0ms) + 520ms) both;
}
@keyframes pill-pop {
  0% { transform: scale(.9); opacity: 0; }
  60% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.agent-console { transition: border-color .3s, box-shadow .3s; }
.agent-console:hover { border-color: rgba(114,241,184,.22); }

.metrics > div strong { transition: color .25s; }
.metrics > div:hover strong { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  [data-flow] { opacity: 1; transform: none; animation: none; }
  .flow-row.done .code-pills code:last-child { animation: none; }
}

.faq { border-top: 1px solid rgba(255,255,255,.06); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  color: #dfe4ec;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--accent);
  font: 400 24px/1 ui-monospace, monospace;
  transition: transform .2s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  max-width: 820px;
  margin: -5px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.cta { text-align: center; padding-top: 145px; padding-bottom: 145px; }
.cta h2 { font-size: clamp(52px, 7vw, 90px); }
.cta > p:not(.eyebrow) { max-width: 560px; margin: 25px auto 32px; color: var(--muted); font-size: 17px; }
footer {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
  padding: 38px 0 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.footer-brand { display: flex; flex-direction: column; gap: 7px; }
.footer-brand .brand { font-size: 14px; }
.footer-copyright { color: #626c7c; font-size: 10.5px; }
.footer-tagline { max-width: 430px; margin: 0 auto; text-align: center; line-height: 1.65; }
.footer-cta { margin: 0; text-align: right; }
.footer-cta a { color: #b6c0ce; border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.footer-cta a:hover { color: var(--accent); border-color: rgba(114,241,184,.5); }

@media (max-width: 900px) {
  .nav nav { display: none; }
  .hero { padding-top: 60px; padding-bottom: 70px; }
  .section-heading, .featured-agent, .about-card { grid-template-columns: 1fr; gap: 30px; }
  .agent-grid article, .agent-grid article:nth-child(4), .agent-grid article:nth-child(5) { grid-column: span 3; }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav { width: min(calc(100% - 28px), var(--max)); }
  .nav .button { display: none; }
  .section { width: min(calc(100% - 28px), var(--max)); padding: 80px 0; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 42px; }
  .hero-chip { margin-bottom: 24px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .metrics { margin-top: 42px; }
  .metrics > div { padding: 0 16px; }
  .metrics strong { font-size: 23px; }
  .agent-grid { display: block; }
  .agent-grid article { margin-top: 10px; }
  .featured-agent, .price-card, .about-card { padding: 25px; }
  .about-name { padding: 22px; }
  .name-mark { width: 96px; }
  .about-name-hero::before { width: 150px; height: 150px; }
  .about-name .definition { font-size: 15px; padding-left: 14px; }
  .usecase-grid { grid-template-columns: 1fr; }
  .usecase { padding: 24px 22px; }
  .team { grid-template-columns: 1fr; }
  .team article { padding: 22px 20px; }
  .faq-list summary { font-size: 14px; }
  footer { grid-template-columns: 1fr; gap: 22px; text-align: center; padding: 30px 0; }
  .footer-brand { align-items: center; gap: 9px; }
  .footer-tagline, .footer-cta { text-align: center; }
}
