/* ============================================================
   BAAKALAI MARKETING SITE
   Marketing-bold direction: full-bleed alternating dark/light,
   animated mark, dotted-grid texture, large editorial type.
   ============================================================ */

@import url('colors_and_type.css');

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ─── Layout primitives ─────────────────────────────────── */
.section { padding: 120px 40px; position: relative; }
.section.tight { padding: 80px 40px; }
.container { max-width: 1280px; margin: 0 auto; }
.container-sm { max-width: 880px; margin: 0 auto; }

.section.dark {
  background: var(--ink);
  color: var(--paper);
}
.section.dark .body { color: rgba(250, 250, 249, 0.72); }
.section.dark .eyebrow { color: var(--lavender); }
.section.dark .border-soft { border-color: rgba(250, 250, 249, 0.12); }

.section.paper-2 { background: var(--paper-2); }

/* ─── Dotted grid background ───────────────────────────── */
.dotgrid {
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
}
.section.dark .dotgrid {
  background-image: radial-gradient(circle, rgba(169, 152, 255, 0.18) 1px, transparent 1px);
}

/* ─── Type ───────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.h-display {
  font-weight: 500;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.038em;
  text-wrap: balance;
}
.h-section {
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.032em;
  text-wrap: balance;
}
.h-feature {
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.024em;
}
.body {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--grey-700);
  text-wrap: pretty;
}
.body.large {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.012em;
}

.accent { color: var(--primary); font-style: normal; }
.section.dark .accent { color: var(--lavender); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: all 200ms cubic-bezier(0.2, 0.6, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--grey-900); transform: translateY(-1px); }
.section.dark .btn-primary {
  background: var(--paper);
  color: var(--ink);
}
.section.dark .btn-primary:hover { background: #fff; }

.btn-accent {
  background: var(--primary);
  color: var(--paper);
}
.btn-accent:hover { background: var(--primary-deep); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--paper-2); }
.section.dark .btn-ghost {
  border-color: rgba(250, 250, 249, 0.2);
  color: var(--paper);
}
.section.dark .btn-ghost:hover { background: rgba(250, 250, 249, 0.06); }

.btn-arrow {
  transition: transform 200ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.btn:hover .btn-arrow { transform: translateX(2px); }

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  transition: border-color 200ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.card:hover { border-color: var(--border-strong); }
.section.dark .card {
  background: rgba(250, 250, 249, 0.03);
  border-color: rgba(250, 250, 249, 0.1);
}
.section.dark .card:hover { border-color: rgba(250, 250, 249, 0.2); }

.card.highlight {
  background: var(--primary-soft);
  border-color: var(--primary);
}
.section.dark .card.highlight {
  background: rgba(110, 87, 250, 0.18);
  border-color: var(--lavender);
}

/* ─── Pills / tags ──────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--grey-700);
}
.section.dark .pill {
  background: rgba(250, 250, 249, 0.06);
  border-color: rgba(250, 250, 249, 0.12);
  color: var(--lavender);
}
.pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 8px 8px 18px;
  background: rgba(250, 250, 249, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 4px 12px -2px rgba(10, 10, 10, 0.06);
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.022em;
}
.nav .links {
  display: flex;
  gap: 2px;
  padding: 0 4px;
}
.nav .links a {
  padding: 8px 14px;
  font-size: 13.5px;
  color: var(--grey-700);
  border-radius: 999px;
  transition: all 200ms;
}
.nav .links a:hover { color: var(--ink); background: var(--paper-2); }

.lang-toggle {
  display: inline-flex;
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 4px;
}
.lang-toggle button {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--grey-500);
  transition: all 200ms;
}
.lang-toggle button.active {
  background: var(--ink);
  color: var(--paper);
}

/* ─── Animated Synapse mark (hero) ──────────────────────── */
.synapse-anim {
  width: 100%;
  height: 100%;
  display: block;
}
.synapse-anim .hub { transform-origin: 50px 50px; animation: hubPulse 3s ease-in-out infinite; }
.synapse-anim .sat-1 { animation: satPulse 3s ease-in-out infinite 0.2s; transform-origin: 22px 26px; }
.synapse-anim .sat-2 { animation: satPulse 3s ease-in-out infinite 0.5s; transform-origin: 82px 30px; }
.synapse-anim .sat-3 { animation: satPulse 3s ease-in-out infinite 0.8s; transform-origin: 30px 80px; }
.synapse-anim .signal { stroke-dasharray: 4 6; animation: signalDash 4s linear infinite; }

@keyframes hubPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
  50% { transform: scale(1.06); filter: drop-shadow(0 0 12px rgba(110, 87, 250, 0.55)); }
}
@keyframes satPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
@keyframes signalDash {
  to { stroke-dashoffset: -40; }
}
@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.synapse-anim.compact .ring {
  fill: none;
  stroke: rgba(110, 87, 250, 0.18);
  stroke-width: 0.6;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 140px 40px 100px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--paper);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 90%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 em.accent {
  position: relative;
}
.hero h1 em.accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--primary-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero-stage {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin-left: auto;
}
.hero-stage .ring-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--border);
}
.hero-stage .orbit {
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(110, 87, 250, 0.22);
  border-radius: 50%;
  animation: orbit 60s linear infinite;
}
.hero-stage .orbit::before {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  background: var(--lavender);
  border-radius: 50%;
  top: -4px; left: 50%;
  transform: translateX(-50%);
}
.hero-stage .orbit-2 {
  position: absolute;
  inset: 28%;
  border: 1px solid rgba(110, 87, 250, 0.12);
  border-radius: 50%;
  animation: orbit 90s linear infinite reverse;
}
.hero-stage .mark-wrap {
  position: absolute;
  inset: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Marquee logos ─────────────────────────────────────── */
.integrations-strip {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}
.integrations-strip .row {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.integrations-strip .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-500);
}
.integrations-strip .name {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.018em;
  color: var(--grey-700);
  opacity: 0.7;
  transition: opacity 200ms;
}
.integrations-strip .name:hover { opacity: 1; color: var(--ink); }

/* ─── Step diagram (how it works) ─────────────────────── */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.flow::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 152, 255, 0.4), rgba(169, 152, 255, 0.4), transparent);
}
.flow-step {
  text-align: center;
  padding: 0 16px;
}
.flow-step .num {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(250, 250, 249, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--lavender);
  position: relative;
  z-index: 1;
}
.section.dark .flow-step .num {
  background: var(--ink-2);
  box-shadow: 0 0 0 6px var(--ink);
}
.flow-step h4 {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.018em;
  margin-bottom: 8px;
}
.flow-step p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(250, 250, 249, 0.6);
}

/* ─── Feature blocks ────────────────────────────────────── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.feature-block.reverse { grid-template-columns: 1.1fr 1fr; }
.feature-block.reverse .feature-text { order: 2; }
.feature-block .feature-text { max-width: 520px; }
.feature-block .feature-text h2 { margin-bottom: 24px; }
.feature-block .feature-text .body.large { margin-bottom: 32px; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--grey-700);
  letter-spacing: -0.005em;
}
.section.dark .feature-list li { color: rgba(250, 250, 249, 0.78); }
.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--primary);
}
.section.dark .feature-list li::before { background: var(--lavender); }

/* ─── Mockup chrome ─────────────────────────────────────── */
.mockup {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(10, 10, 10, 0.18), 0 60px 120px -60px rgba(110, 87, 250, 0.15);
}
.mockup .chrome {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper-2);
}
.mockup .chrome .dots {
  display: flex;
  gap: 6px;
}
.mockup .chrome .dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}
.mockup .chrome .url {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey-500);
}
.mockup .body-pad { padding: 24px; }

/* ─── Agents grid ───────────────────────────────────────── */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.agent-card {
  background: rgba(250, 250, 249, 0.03);
  border: 1px solid rgba(250, 250, 249, 0.1);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 200ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.agent-card:hover {
  border-color: var(--lavender);
  background: rgba(110, 87, 250, 0.08);
}
.agent-card .agent-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(110, 87, 250, 0.15);
  color: var(--lavender);
}
.agent-card h4 {
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--paper);
}
.agent-card p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(250, 250, 249, 0.6);
}
.agent-card .agent-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(169, 152, 255, 0.6);
}

/* ─── Pricing ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 64px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(110, 87, 250, 0.4);
}
.price-card.featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--lavender) 50%, var(--primary) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-card .tier {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-500);
  margin-bottom: 8px;
}
.price-card.featured .tier { color: var(--lavender); }
.price-card .name {
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.028em;
  margin-bottom: 16px;
}
.price-card .amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.price-card .amount .num {
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
}
.price-card .amount .suffix {
  font-size: 15px;
  color: var(--grey-500);
}
.price-card.featured .amount .suffix { color: rgba(250, 250, 249, 0.55); }
.price-card .blurb {
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey-700);
  margin: 16px 0 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.price-card.featured .blurb {
  color: rgba(250, 250, 249, 0.7);
  border-bottom-color: rgba(250, 250, 249, 0.12);
}
.price-card .feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.price-card .feats li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  color: var(--grey-700);
}
.price-card.featured .feats li { color: rgba(250, 250, 249, 0.85); }
.price-card .feats li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary);
}
.price-card.featured .feats li svg { color: var(--lavender); }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-top: 56px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms;
}
.faq-item[open] summary .icon {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--primary); }
.faq-item .answer {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-700);
  max-width: 720px;
  letter-spacing: -0.005em;
}

/* ─── Blog teaser ───────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 200ms cubic-bezier(0.2, 0.6, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.blog-card .meta {
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-500);
  margin-bottom: 28px;
}
.blog-card .meta .tag { color: var(--primary); }
.blog-card h4 {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.022em;
  margin-bottom: 12px;
  text-wrap: balance;
}
.blog-card p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--grey-700);
  flex: 1;
}
.blog-card .read {
  margin-top: 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  gap: 6px;
  align-items: center;
}

/* ─── Booking section ───────────────────────────────────── */
.booking {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.booking-iframe {
  width: 100%;
  height: 720px;
  border: 1px solid rgba(250, 250, 249, 0.12);
  border-radius: 18px;
  background: var(--paper);
  overflow: hidden;
}
.booking-iframe iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─── Footer ────────────────────────────────────────────── */
footer {
  padding: 80px 40px 40px;
  background: var(--ink);
  color: rgba(250, 250, 249, 0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 250, 249, 0.1);
}
.footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lavender);
  margin-bottom: 20px;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 14.5px; transition: color 200ms; }
.footer-grid a:hover { color: var(--paper); }
.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 249, 0.5);
}

/* ─── Reveal on scroll ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.2, 0.6, 0.2, 1), transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .section { padding: 80px 24px; }
  .hero { padding: 120px 24px 80px; }
  .hero-grid, .feature-block, .feature-block.reverse, .booking { grid-template-columns: 1fr; gap: 48px; }
  .feature-block.reverse .feature-text { order: 0; }
  .pricing-grid, .agents-grid, .blog-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr 1fr; gap: 40px; }
  .flow::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav .links { display: none; }
  .hero-stage { max-width: 320px; margin: 0 auto; }
}
