:root {
  --bg: #f5f8ff;
  --bg-soft: #eef4ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-alt: rgba(245, 248, 255, 0.9);
  --text: #0f172a;
  --text-soft: #536075;
  --border: rgba(148, 163, 184, 0.24);
  --primary: #4f46e5;
  --primary-2: #06b6d4;
  --accent: #8b5cf6;
  --success: #10b981;
  --danger: #ef4444;
  --shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.06);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1220px, calc(100vw - 40px));
  --grid-line: rgba(79, 70, 229, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(6, 182, 212, 0.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(139, 92, 246, 0.14), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f5f8ff 46%, #eef4ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -2;
}

body::before {
  top: -110px;
  left: -140px;
  background: rgba(6, 182, 212, 0.18);
}

body::after {
  right: -120px;
  bottom: 8%;
  background: rgba(99, 102, 241, 0.16);
}

main {
  position: relative;
}

main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, transparent 0, transparent 23px, var(--grid-line) 24px),
    linear-gradient(to bottom, transparent 0, transparent 23px, var(--grid-line) 24px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: -1;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.12), rgba(6, 182, 212, 0.12));
  backdrop-filter: blur(16px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  min-height: 54px;
  padding: 10px 0;
}

.topbar-inner p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.topbar-pill {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(79, 70, 229, 0.18);
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(251, 253, 255, 0.7);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand strong {
  font-weight: 800;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  box-shadow: var(--shadow-md);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 22px 50px rgba(79, 70, 229, 0.24);
}

.button-primary:hover {
  box-shadow: 0 26px 60px rgba(79, 70, 229, 0.28);
}

.button-secondary {
  border-color: rgba(79, 70, 229, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.button-lg {
  min-height: 58px;
  padding: 0 26px;
  font-size: 16px;
}

.hero-section {
  padding: 58px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(79, 70, 229, 0.12);
  color: var(--primary);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.08);
}

.hero-copy h1,
.section-head h2,
.cta-copy h2 {
  margin: 18px 0 0;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  max-width: 13ch;
}

.text-gradient {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 55%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description,
.section-head p,
.cta-copy p {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.72;
  color: var(--text-soft);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.proof-chip {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.hero-microcopy {
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 52ch;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-glow-a {
  width: 220px;
  height: 220px;
  left: 6%;
  top: 8%;
  background: rgba(6, 182, 212, 0.22);
}

.hero-glow-b {
  width: 260px;
  height: 260px;
  right: 6%;
  bottom: 10%;
  background: rgba(139, 92, 246, 0.18);
}

.dashboard-card {
  position: relative;
  width: min(100%, 560px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.82));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(26px);
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 45%),
    linear-gradient(180deg, rgba(79, 70, 229, 0.04), transparent 30%);
  pointer-events: none;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.window-dots {
  display: inline-flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.4);
}

.window-dots span:first-child { background: rgba(239, 68, 68, 0.64); }
.window-dots span:nth-child(2) { background: rgba(245, 158, 11, 0.68); }
.window-dots span:nth-child(3) { background: rgba(16, 185, 129, 0.7); }

.dashboard-tabs {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-tab {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
}

.dashboard-tab.is-active {
  color: var(--text);
  border-color: rgba(79, 70, 229, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.08);
}

.dashboard-screen {
  position: relative;
  min-height: 410px;
  padding: 24px;
}

.dashboard-pane {
  display: none;
  animation: fadeUp 0.38s ease;
}

.dashboard-pane.is-active {
  display: block;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: #047857;
  font-size: 13px;
  font-weight: 700;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.16);
}

.code-window,
.flow-stack,
.response-grid,
.bonus-panel,
.lead-form,
.feature-card,
.usecase-card,
.workflow-step,
.workflow-note,
.faq-item,
.floating-card {
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.84));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.code-window {
  border-radius: 20px;
  padding: 20px;
}

.code-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 14px;
  color: #1e293b;
}

.code-line:last-child {
  border-bottom: 0;
}

.code-line .key {
  color: #475569;
}

.code-line .value {
  color: var(--primary);
}

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

.mini-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.mini-card strong,
.feature-card h3,
.usecase-card h3,
.workflow-step h3,
.cta-point strong,
.faq-question,
.bonus-node,
.floating-card strong,
.response-card strong {
  letter-spacing: -0.03em;
}

.mini-card strong,
.feature-card h3,
.usecase-card h3,
.workflow-step h3,
.response-card strong,
.cta-point strong {
  font-size: 18px;
}

.mini-card span,
.feature-card p,
.usecase-card p,
.workflow-step p,
.workflow-note,
.cta-point span,
.faq-answer p,
.floating-card,
.response-card span,
.form-note,
.footer-inner p {
  color: var(--text-soft);
  line-height: 1.7;
}

.flow-stack {
  border-radius: 22px;
  padding: 26px;
}

.flow-node {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.14);
  font-weight: 700;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  font-size: 22px;
  color: var(--primary);
  font-weight: 800;
}

.highlight-node {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.14), rgba(6, 182, 212, 0.12));
  border-color: rgba(79, 70, 229, 0.18);
}

.response-grid {
  border-radius: 22px;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.response-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.response-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(260px, 48vw);
  padding: 18px 20px;
  border-radius: 20px;
}

.floating-card-top {
  right: -14px;
  top: 76px;
}

.floating-card-bottom {
  left: -22px;
  bottom: 58px;
}

.floating-label {
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.ticker-section,
.pain-section,
.solution-section,
.workflow-section,
.bonus-section,
.usecases-section,
.faq-section,
.cta-section {
  padding: 54px 0 34px;
}

.section-head {
  max-width: 840px;
}

.section-head.center {
  text-align: center;
  margin: 0 auto;
}

.section-head h2,
.cta-copy h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
}

.ticker-shell {
  overflow: hidden;
  margin-top: 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.52);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 34s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.pain-grid,
.feature-grid,
.usecases-grid,
.faq-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

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

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 26px;
}

.feature-card::before,
.usecase-card::before,
.workflow-step::before,
.faq-item::before,
.lead-form::before,
.floating-card::before,
.bonus-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 42%);
  pointer-events: none;
}

.feature-card h3,
.usecase-card h3,
.workflow-step h3,
.cta-point strong {
  margin: 18px 0 0;
}

.feature-card p,
.usecase-card p,
.workflow-step p,
.faq-answer p {
  margin: 14px 0 0;
  font-size: 15px;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(6, 182, 212, 0.12));
  border: 1px solid rgba(79, 70, 229, 0.12);
  color: var(--primary);
  font-weight: 800;
}

.card-topline {
  width: 64px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.feature-card-xl {
  grid-column: span 6;
}

.feature-grid > .feature-card:not(.feature-card-xl) {
  grid-column: span 3;
}

.alt-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.9));
}

.workflow-canvas {
  margin-top: 30px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(244, 248, 255, 0.68));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-lg);
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.workflow-step {
  position: relative;
  border-radius: 24px;
  padding: 24px;
}

.workflow-step-highlight {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(6, 182, 212, 0.12));
  border-color: rgba(79, 70, 229, 0.18);
}

.workflow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: rgba(79, 70, 229, 0.54);
  font-weight: 800;
}

.workflow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  font-weight: 800;
}

.workflow-note {
  margin-top: 18px;
  border-radius: 20px;
  padding: 18px 22px;
  font-size: 15px;
}

.bonus-shell {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 26px;
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(79, 70, 229, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 248, 255, 0.82));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-lg);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.14), rgba(6, 182, 212, 0.14));
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.bonus-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-panel {
  position: relative;
  width: min(100%, 460px);
  border-radius: 28px;
  padding: 26px;
}

.bonus-panel::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px dashed rgba(79, 70, 229, 0.16);
  pointer-events: none;
}

.bonus-node {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.16);
  font-size: 15px;
  font-weight: 700;
}

.bonus-node + .bonus-node {
  margin-top: 14px;
}

.bonus-node-source { border-left: 4px solid var(--primary); }
.bonus-node-processing { border-left: 4px solid var(--primary-2); }
.bonus-node-memory { border-left: 4px solid var(--accent); }
.bonus-node-ia { border-left: 4px solid var(--success); }

.bonus-responses {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.bonus-responses span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(79, 70, 229, 0.12);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

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

.usecase-card {
  position: relative;
  border-radius: 24px;
  padding: 24px;
  min-height: 220px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 249, 255, 0.82));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-md);
}

.faq-list {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

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

.faq-icon {
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
  color: var(--primary);
  transition: transform 0.24s ease;
}

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

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px 24px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 248, 255, 0.82));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-lg);
}

.cta-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.cta-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: var(--shadow-md);
}

.lead-form {
  position: relative;
  border-radius: 28px;
  padding: 24px;
}

.form-row + .form-row {
  margin-top: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 16px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(79, 70, 229, 0.34);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.08);
  transform: translateY(-1px);
}

.lead-form .button {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  margin: 16px 0 0;
  font-size: 13px;
}

.site-footer {
  padding: 34px 0 44px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-group.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: 0.26s; }
.reveal-group.is-visible > *:nth-child(6) { transition-delay: 0.32s; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track,
  .reveal,
  .reveal-group > *,
  .dashboard-pane,
  .button,
  .faq-icon {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  .site-nav,
  .header-inner > .button {
    display: none;
  }

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

  .site-header.is-open .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: var(--shadow-lg);
  }

  .site-header.is-open .site-nav a::after {
    display: none;
  }

  .hero-grid,
  .bonus-shell,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .hero-visual {
    min-height: 580px;
  }

  .floating-card-top {
    right: 12px;
    top: 48px;
  }

  .floating-card-bottom {
    left: 12px;
    bottom: 30px;
  }

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

  .feature-card-xl,
  .feature-grid > .feature-card:not(.feature-card-xl) {
    grid-column: span 6;
  }

  .workflow-track {
    grid-template-columns: 1fr;
  }

  .workflow-arrow {
    transform: rotate(90deg);
    min-height: 40px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 1220px);
  }

  .topbar-inner {
    flex-direction: column;
  }

  .hero-section {
    padding-top: 38px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-description,
  .section-head p,
  .cta-copy p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .dashboard-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-screen {
    padding: 18px;
    min-height: 460px;
  }

  .mini-grid,
  .response-grid,
  .bonus-responses,
  .pain-grid,
  .usecases-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card-xl,
  .feature-grid > .feature-card:not(.feature-card-xl) {
    grid-column: auto;
  }

  .floating-card {
    position: relative;
    width: 100%;
    inset: auto;
    margin-top: 14px;
  }

  .hero-visual {
    display: block;
    min-height: auto;
  }

  .workflow-canvas,
  .bonus-shell,
  .cta-grid {
    padding: 20px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 18px;
  }

  .faq-answer > p {
    padding: 0 18px 18px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}
.brand-logo {
  display: block;
  height: 38px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  height: 34px;
  max-width: 210px;
}

.pricing-head {
  margin-bottom: 28px;
}

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

.pricing-card {
  position: relative;
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 255, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.12), transparent 35%),
    radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.12), transparent 40%);
  pointer-events: none;
}

.pricing-card-featured {
  border-color: rgba(79, 70, 229, 0.24);
  box-shadow: 0 30px 80px rgba(79, 70, 229, 0.16);
  transform: translateY(-6px);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(79, 70, 229, 0.14);
  margin-bottom: 18px;
}

.plan-badge-light {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-soft);
  border-color: rgba(148, 163, 184, 0.18);
}

.pricing-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.plan-price {
  margin-top: 18px;
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
}

.plan-price .currency {
  font-size: 22px;
  vertical-align: top;
  margin-right: 4px;
  color: var(--text-soft);
}

.plan-installments {
  margin: 12px 0 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-soft);
}

.plan-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
}

.plan-checks li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 600;
}

.plan-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.plan-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 30px;
    max-width: 180px;
  }

  .footer-brand .brand-logo {
    height: 28px;
    max-width: 170px;
  }

  .pricing-card {
    padding: 24px;
    border-radius: 24px;
  }

  .plan-price {
    font-size: 44px;
  }
}
/* ==============================
   AJUSTE FORTE DA LOGO
   ============================== */

.site-header .header-inner {
  min-height: 112px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.site-header .brand,
.site-footer .footer-brand {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  line-height: 0 !important;
  flex: 0 0 auto !important;
  overflow: visible !important;
}

.site-header .brand-logo {
  display: block !important;
  height: 78px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}

.site-footer .footer-brand {
  margin-bottom: 0 !important;
}

.site-footer .footer-brand .brand-logo {
  display: block !important;
  height: 54px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}

@media (max-width: 1120px) {
  .site-header .header-inner {
    min-height: 96px !important;
  }

  .site-header .brand-logo {
    height: 64px !important;
  }
}

@media (max-width: 760px) {
  .site-header .header-inner {
    min-height: 84px !important;
  }

  .site-header .brand-logo {
    height: 52px !important;
  }

  .site-footer .footer-brand .brand-logo {
    height: 40px !important;
  }
}