:root {
  --bg: #0b1220;
  --bg-alt: #121826;
  --bg-soft: #1a1f2e;
  --surface: #1e2433;
  --surface-elevated: #252b3d;
  --surface-highlight: #2d3548;
  --text: #f1f5f9;
  --muted: #a8b4c4;
  --muted-warm: #c8d0dc;
  --mint: #00ffb8;
  --mint-dark: #00e6a8;
  --mint-soft: rgba(0, 255, 184, 0.12);
  --mint-glow: rgba(0, 255, 184, 0.35);
  --border: rgba(148, 163, 184, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --font: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1rem 2rem;
  background: rgba(11, 18, 32, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.topbar .logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(260px, 46vw);
  object-fit: contain;
}

.logo-footer img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.topbar-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.2rem 1rem;
  min-width: 0;
  margin-left: auto;
  margin-right: 0.75rem;
}

.topbar-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.topbar-links a:hover { color: var(--text); }

/* Contact lives in topbar-actions on desktop; duplicate only for mobile menu */
.topbar-links-contact {
  display: none;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.topbar-actions .btn {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

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

.btn-primary {
  background: var(--mint);
  color: #0b1220;
  box-shadow: 0 8px 28px var(--mint-glow);
}

.btn-primary:hover {
  background: var(--mint-dark);
  box-shadow: 0 10px 32px var(--mint-glow);
}

.topbar .btn-ghost {
  border: 1.5px solid rgba(0, 255, 184, 0.4);
  background: var(--surface);
  color: var(--mint);
  box-shadow: none;
}

.topbar .btn-ghost:hover {
  background: var(--mint-soft);
  border-color: var(--mint);
  color: var(--mint);
}

.btn-ghost {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(0, 255, 184, 0.35);
  background: var(--surface-elevated);
}

.btn-play {
  font-size: 0.75rem;
  line-height: 1;
}

.btn-lg { padding: 0.9rem 1.5rem; font-size: 1rem; }

.btn-xl {
  padding: 1.05rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero .btn-primary.btn-xl {
  box-shadow: 0 10px 36px var(--mint-glow), 0 0 0 1px rgba(0, 255, 184, 0.2);
}

.btn-block { width: 100%; }

.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.btn-buy {
  border: 1.5px solid rgba(0, 255, 184, 0.55);
  background: rgba(0, 255, 184, 0.08);
  color: var(--mint);
  box-shadow: none;
}

.btn-buy:hover {
  background: rgba(0, 255, 184, 0.16);
  border-color: var(--mint);
  box-shadow: 0 8px 24px rgba(0, 255, 184, 0.12);
}

.price-featured .btn-buy {
  background: rgba(11, 18, 32, 0.45);
}

.hero {
  padding: 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 55%, var(--bg-alt) 100%);
}

.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--mint);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 255, 184, 0.22);
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.035em;
}

.hero-lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--muted-warm);
  max-width: 620px;
  margin: 0 auto 0.5rem;
  line-height: 1.75;
}

.hero-lead-sub {
  margin-bottom: 2rem;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero-price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--surface-elevated);
  border: 1.5px solid rgba(0, 255, 184, 0.35);
  box-shadow: 0 0 24px rgba(0, 255, 184, 0.08);
}

.hero-price-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-price-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--mint);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-price-period {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
}

.hero-trust {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 0 2.5rem;
}

.hero-trust::before {
  content: "✓ ";
  color: var(--mint);
}

.hero-demo { margin-top: 0.5rem; }

.demo-window {
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  text-align: left;
}

.demo-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: var(--surface-elevated);
  border-bottom: 1px solid var(--border);
}

.demo-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #475569;
}

.demo-chat { padding: 1.25rem; display: grid; gap: 0.85rem; }

.demo-chat-animated {
  min-height: 220px;
}

.demo-panel .demo-chat-animated {
  min-height: 320px;
}

.msg-enter {
  animation: msg-fade-in 0.35s ease;
}

@keyframes msg-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-typing::after {
  content: "▍";
  display: inline-block;
  margin-left: 2px;
  color: var(--mint);
  animation: cursor-blink 0.9s step-end infinite;
}

@keyframes cursor-blink {
  50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .msg-enter { animation: none; }
  .msg-typing::after { content: none; }
}

.msg {
  max-width: 88%;
  padding: 0.85rem 1.05rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.msg-user {
  justify-self: end;
  background: var(--surface-elevated);
  color: var(--text);
  border-bottom-right-radius: 4px;
}

.msg-bot {
  justify-self: start;
  background: var(--mint-soft);
  border: 1px solid rgba(0, 255, 184, 0.28);
  border-bottom-left-radius: 4px;
  color: #ecfdf5;
}

/* Partner marquee */
.partner-marquee {
  margin-top: 0;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(0, 255, 184, 0.1);
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.partner-marquee-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.5rem;
  padding: 0 1rem;
}

.partner-marquee-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.partner-marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: partner-marquee-scroll 48s linear infinite;
}

.partner-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes partner-marquee-scroll {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.partner-marquee-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2.75rem;
  flex-shrink: 0;
  padding-right: 2.75rem;
}

.partner-chip {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  flex-shrink: 0;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.partner-chip:hover {
  opacity: 1;
}

.partner-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.partner-chip figcaption {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1;
}

.partner-chip .lbl-en {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.partner-chip .lbl-cn {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mint);
}

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.kb-panel,
.demo-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  background: var(--surface-elevated);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
}

.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
}

.panel-dot-live {
  background: var(--mint);
  box-shadow: 0 0 0 4px var(--mint-soft);
}

.kb-list {
  list-style: none;
  margin: 0;
  padding: 1rem 1.1rem;
}

.kb-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.kb-list li:last-child { border-bottom: none; }

.kb-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mint);
  background: var(--mint-soft);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.35rem;
}

.kb-list p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.kb-foot {
  margin: 0;
  padding: 0.75rem 1.1rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px dashed var(--border);
}

.demo-panel .demo-chat-tall {
  padding: 1.15rem 1.15rem 1.35rem;
  max-height: 520px;
  overflow-y: auto;
}

.demo-chat-live .msg {
  max-width: 92%;
  padding: 1rem 1.15rem;
  font-size: 1rem;
  line-height: 1.6;
}

.demo-chat-live { gap: 1rem; }

.section {
  padding: 6rem 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.section-alt {
  max-width: none;
  background: var(--bg-alt);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-top: 1px solid var(--border);
}

.section-alt > * {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: var(--font);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.testimonial {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}

.testimonial p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted-warm);
}

.testimonial footer {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mint);
}

.as-seen {
  text-align: center;
  margin: 2rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.section-head p {
  color: var(--muted-warm);
  margin: 0;
  line-height: 1.75;
  font-size: 1.05rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(0, 255, 184, 0.2);
  transform: translateY(-2px);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--mint-soft);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 184, 0.18);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.compare-col {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.compare-us {
  border-color: rgba(0, 255, 184, 0.4);
  box-shadow: var(--shadow);
  background: var(--surface-elevated);
}

.compare-col h3 {
  margin-top: 0;
  font-weight: 700;
}

.compare-col ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.75;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
}

.fit-col {
  border-radius: var(--radius);
  padding: 1.5rem 1.65rem;
  border: 1px solid var(--border);
}

.fit-yes {
  background: rgba(0, 255, 184, 0.06);
  border-color: rgba(0, 255, 184, 0.28);
}

.fit-no {
  background: var(--surface);
  border-color: var(--border);
}

.fit-col h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.fit-yes h3 { color: var(--mint); }
.fit-no h3 { color: #fbbf24; }

.fit-col ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.fit-col li + li { margin-top: 0.35rem; }

.fit-foot {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.fit-bridge {
  max-width: 720px;
  margin: 1.75rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.fit-bridge strong { color: var(--text); }

.who-its-for .section-head p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.fit-demo-note {
  max-width: 640px;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--mint);
  line-height: 1.6;
}

.vs-table-wrap {
  overflow-x: auto;
  max-width: 960px;
  margin: 0 auto 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.vs-table th,
.vs-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}

.vs-table thead th {
  background: var(--surface);
  font-weight: 700;
  font-size: 0.95rem;
}

.vs-table tbody th[scope="row"] {
  color: var(--text);
  font-weight: 600;
  width: 28%;
  background: var(--bg-alt);
}

.vs-table td {
  color: var(--muted);
  width: 36%;
}

.vs-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.15rem;
}

.vs-highlight-col {
  background: rgba(0, 255, 184, 0.06);
  color: var(--text) !important;
  border-left: 2px solid rgba(0, 255, 184, 0.35);
}

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

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.highlight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.highlight-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.highlight-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.vs-foot {
  max-width: 680px;
  margin: 1.75rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}

.price-featured {
  background: linear-gradient(165deg, rgba(0, 255, 184, 0.08) 0%, var(--surface-highlight) 45%, var(--surface-elevated) 100%);
  border-color: var(--mint);
  box-shadow: 0 0 0 1px rgba(0, 255, 184, 0.2), 0 20px 50px rgba(0, 255, 184, 0.08), var(--shadow);
  transform: scale(1.04);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mint);
  color: #0b1220;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 {
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.price-options {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid rgba(0, 255, 184, 0.15);
}

.price-featured .price-options {
  background: rgba(11, 18, 32, 0.5);
  border-color: rgba(0, 255, 184, 0.25);
}

.price-row { text-align: center; }

.price-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.price-or {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0.65rem 0;
}

.price-row-annual { padding-top: 0.15rem; }

.price {
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-year {
  font-size: 2.25rem;
  color: var(--mint);
}

.price span:first-child { font-size: 1.5rem; vertical-align: super; }

.price-year span:first-child { font-size: 1.25rem; }

.price-period { font-size: 1rem; font-weight: 500; color: var(--muted); }

.price-equiv {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-equiv strong { color: var(--text); }

.save {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 700;
}

.price-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.75;
}

.pricing-cta-note {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.pricing-foot {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2rem;
  line-height: 1.65;
}

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
}

.faq-item dt {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.faq-item dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cta-final {
  text-align: center;
  padding-bottom: 6rem;
}

.cta-final h2 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.cta-final p {
  color: var(--muted-warm);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.footer-inner p { color: var(--muted); margin: 0.5rem 0; }

.footer-stat {
  font-size: 0.95rem;
  color: var(--muted-warm);
}

.footer-stat strong { color: var(--mint); }

.footer-pay {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.75rem 0;
}

.footer-stripe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.75rem 0;
}

.footer-stripe img {
  opacity: 0.85;
}

.footer nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 1rem 0;
}

.footer nav a { color: var(--muted); font-weight: 500; }

.copy { font-size: 0.85rem; }

@media (prefers-reduced-motion: reduce) {
  .partner-marquee-track { animation-duration: 80s; }
}

/* Collapse text links before they wrap; keep Contact + Start free trial visible */
@media (max-width: 1100px) {
  .topbar {
    position: sticky;
    padding: 0.85rem 1.15rem;
    gap: 0.5rem;
  }

  .topbar .logo img {
    height: 38px;
    max-width: min(150px, 36vw);
  }

  .topbar-links {
    display: none;
    margin: 0;
  }

  .topbar-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 36, 51, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.85rem 1.25rem 1.15rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    z-index: 120;
  }

  .topbar-links.open a {
    padding: 0.65rem 0.35rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  }

  .topbar-links.open .topbar-links-contact {
    display: block;
    color: var(--mint);
    font-weight: 600;
  }

  /* Half-width: like LineFlow — keep primary CTA only; Contact lives in ☰ */
  .topbar-actions .topbar-contact {
    display: none;
  }

  .topbar-actions .topbar-cta {
    display: inline-flex;
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    flex-shrink: 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-cta .btn-xl,
  .hero-cta .btn,
  .hero-price-pill {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-inner { padding-top: 3rem; }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
    letter-spacing: -0.025em;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-xl,
  .hero-cta .btn,
  .hero-price-pill {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .hero-cta .btn-xl {
    max-width: 340px;
  }

  .hero-price-pill { padding: 0.85rem 1.25rem; }

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

  .price-featured { transform: none; }

  .section { padding: 4.5rem 1.25rem; }

  .topbar-actions .topbar-cta {
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 520px) {
  .topbar-actions .topbar-cta {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
  }
}
