: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: start;
}

.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-video-block {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.hero-video-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-video-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.08);
}

.hero-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.88));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-lg);
}

.hero-video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(79, 70, 229, 0.10), transparent 38%),
    radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.10), transparent 42%);
  pointer-events: none;
}

.hero-video-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  background: #050816;
  border-radius: 20px;
  overflow: hidden;
}

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

.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.center p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.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: none;
}

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

.reveal-group.is-visible > * {
  opacity: 1;
  transform: none;
}

.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-video-block {
  margin-top: 22px;
}

.hero-video-frame {
  padding: 8px;
  border-radius: 22px;
}

.hero-video-frame iframe {
  min-height: 220px;
}


  .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-purchase {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.plan-purchase-copy {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--text);
}

.plan-purchase .button {
  margin-inline: auto;
}

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

@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: 68px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}

.site-header {
  height: 90px;
  overflow: visible;
}

.site-header .brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  transform: scale(1.35);
  transform-origin: left center;
}
.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: 62px !important;
  }

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

.footer-brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-partner-logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

@media (max-width: 760px) {
  .footer-brand-group {
    gap: 12px;
  }

  .footer-partner-logo {
    height: 46px;
  }
}
/* PLAYER DE VÍDEO / FULLSCREEN / RESPONSIVIDADE */

.hero-video-block,
.hero-video-frame {
  position: relative;
  z-index: 3;
}

.hero-video-frame {
  overflow: visible !important;
  transform: none !important;
  perspective: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.hero-video-frame::before,
.hero-video-frame::after {
  pointer-events: none;
}

.hero-video-frame iframe {
  display: block;
  width: 100%;
  border: 0;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  transform: none !important;
}

@media (max-width: 760px) {
  .hero-video-frame iframe {
    min-height: 220px;
  }
}
/* Centralização do plano único e do bloco de compra */
.pricing-grid {
  grid-template-columns: minmax(0, 700px);
  justify-content: center;
}

.plan-purchase {
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.plan-purchase-copy {
  width: 100%;
  text-align: center;
}

.plan-purchase .button {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}


/* Ajustes finais da seção de planos */
.pricing-head p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.plan-purchase .button.button-primary {
  border: 0;
  box-shadow: 0 22px 50px rgba(79, 70, 229, 0.24);
}

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

/* =========================================================
   LANDING HOOKCLOUD FLOW 2.0 — PAINEL, CHATWOOT E PARTNER
   ========================================================= */

.site-nav {
  gap: 18px;
  font-size: 14px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 42px;
}

.hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(42px, 4.8vw, 68px);
}

.hero-microcopy {
  max-width: 64ch;
}

.hero-visual {
  position: sticky;
  top: 126px;
  align-self: start;
  padding-top: 34px;
}

.dashboard-screen {
  min-height: 476px;
}

.hero-number-list,
.hero-credential-list {
  display: grid;
  gap: 12px;
}

.hero-number-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.17);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.hero-number-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-size: 11px;
  font-weight: 800;
}

.hero-number-row div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hero-number-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
}

.hero-number-row div span {
  color: var(--text-soft);
  font-size: 12px;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.hero-status.is-online {
  color: #047857;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.16);
}

.hero-integration-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.88));
  border: 1px solid rgba(79, 70, 229, 0.17);
  box-shadow: var(--shadow-md);
}

.hero-integration-card > span {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-integration-card > strong {
  font-size: 18px;
}

.hero-route-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  padding: 18px 12px;
  border-radius: 16px;
  background: rgba(79, 70, 229, 0.06);
  border: 1px dashed rgba(79, 70, 229, 0.2);
  color: var(--text);
  font-size: 12px;
  font-weight: 750;
}

.hero-route-line b {
  color: var(--primary);
}

.hero-route-ok {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #047857;
  font-size: 13px;
  font-weight: 800;
}

.hero-route-ok::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--success);
  font-size: 12px;
}

.hero-credential-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.17);
}

.hero-credential-list span {
  grid-column: 1;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-credential-list strong {
  grid-column: 1;
  font-size: 14px;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
}

.hero-credential-list button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(79, 70, 229, 0.14);
  color: var(--primary);
  background: rgba(79, 70, 229, 0.06);
  font-size: 11px;
  font-weight: 800;
  pointer-events: none;
}

.hero-operation-note {
  display: grid;
  gap: 6px;
  margin-top: 15px;
  padding: 17px;
  border-radius: 17px;
  border: 1px solid rgba(16, 185, 129, 0.18);
  background: rgba(16, 185, 129, 0.06);
}

.hero-operation-note strong {
  color: #047857;
  font-size: 14px;
}

.hero-operation-note span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.product-showcase-section,
.chatwoot-section,
.academy-section,
.zero-section {
  padding: 72px 0 46px;
}

.product-showcase-section {
  position: relative;
}

.product-showcase-section::before,
.chatwoot-section::before,
.academy-section::before,
.zero-section::before {
  content: '';
  position: absolute;
  inset: 24px 0;
  z-index: -1;
  pointer-events: none;
}

.product-showcase-section::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(237, 244, 255, 0.42));
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.panel-shot {
  position: relative;
  margin: 0;
  padding: 10px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(226, 236, 252, 0.82));
  border: 1px solid rgba(79, 70, 229, 0.14);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.13);
  overflow: hidden;
}

.panel-shot::before {
  content: '';
  position: absolute;
  inset: -90px auto auto -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.14);
  filter: blur(55px);
  pointer-events: none;
}

.panel-shot picture,
.panel-shot img {
  position: relative;
  width: 100%;
}

.panel-shot img {
  border-radius: 22px;
  background: #07101f;
}

.panel-shot figcaption {
  position: relative;
  padding: 12px 10px 4px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.panel-shot-main {
  margin-top: 34px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
}

.showcase-grid-detail {
  margin-top: 72px;
}

.showcase-grid-chatwoot {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.showcase-grid-academy {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.showcase-copy h2,
.showcase-copy h3 {
  margin: 18px 0 0;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.showcase-copy h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.showcase-copy h3 {
  font-size: clamp(30px, 3.5vw, 46px);
}

.showcase-copy > p {
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.section-kicker {
  display: inline-flex;
  color: var(--primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 8px;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.14), rgba(6, 182, 212, 0.14));
  border: 1px solid rgba(79, 70, 229, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.benefit-list-featured {
  margin-bottom: 28px;
}

.product-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.product-stat-strip article {
  display: grid;
  gap: 7px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.product-stat-strip strong {
  color: var(--primary);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.product-stat-strip span {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 650;
}

.chatwoot-section,
.academy-section {
  position: relative;
}

.chatwoot-section::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(6, 182, 212, 0.12), transparent 30%),
    radial-gradient(circle at 90% 75%, rgba(79, 70, 229, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.28);
}

.academy-section::before {
  background:
    radial-gradient(circle at 8% 74%, rgba(139, 92, 246, 0.1), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(6, 182, 212, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.3);
}

.zero-section {
  position: relative;
}

.zero-section::before {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(6, 182, 212, 0.08));
  border-top: 1px solid rgba(79, 70, 229, 0.09);
  border-bottom: 1px solid rgba(79, 70, 229, 0.09);
}

.zero-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.zero-grid article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.86));
  border: 1px solid rgba(79, 70, 229, 0.14);
  box-shadow: var(--shadow-md);
}

.zero-grid span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.zero-grid strong {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.commercial-disclaimer {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}

.usecase-card-partner {
  border-color: rgba(79, 70, 229, 0.22);
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.13), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 244, 255, 0.9));
}

.usecase-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(79, 70, 229, 0.09);
  border: 1px solid rgba(79, 70, 229, 0.14);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

/* O projeto anterior centralizava um único card. A nova oferta volta a usar dois cards. */
.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  justify-content: stretch;
  max-width: 1160px;
  margin-inline: auto;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card .plan-checks {
  flex: 1;
}

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

.pricing-card-coming {
  border-color: rgba(79, 70, 229, 0.2);
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.13), transparent 33%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 247, 255, 0.9));
}

.plan-badge-partner {
  color: #5b21b6;
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.16);
}

.plan-price-text {
  font-size: clamp(38px, 5vw, 54px);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.button-disabled,
.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none !important;
  box-shadow: none;
}

.button-disabled:hover,
.button:disabled:hover {
  transform: none;
}

.footer-links a {
  position: relative;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
}

@media (max-width: 1120px) {
  .hero-grid,
  .showcase-grid,
  .showcase-grid-chatwoot,
  .showcase-grid-academy {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    position: relative;
    top: auto;
    padding-top: 10px;
  }

  .showcase-grid-chatwoot .panel-shot {
    order: 2;
  }

  .showcase-grid-chatwoot .showcase-copy {
    order: 1;
  }

  .product-stat-strip,
  .zero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (max-width: 760px) {
  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .dashboard-screen {
    min-height: 520px;
  }

  .hero-number-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .hero-status {
    grid-column: 2;
    width: fit-content;
  }

  .hero-route-line {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .hero-route-line b {
    transform: rotate(90deg);
  }

  .product-showcase-section,
  .chatwoot-section,
  .academy-section,
  .zero-section {
    padding: 54px 0 34px;
  }

  .showcase-grid-detail {
    margin-top: 46px;
  }

  .showcase-grid {
    gap: 28px;
  }

  .panel-shot {
    padding: 6px;
    border-radius: 22px;
  }

  .panel-shot img {
    border-radius: 17px;
  }

  .panel-shot figcaption {
    font-size: 12px;
  }

  .showcase-copy > p {
    font-size: 16px;
  }

  .product-stat-strip,
  .zero-grid {
    grid-template-columns: 1fr;
  }

  .zero-grid article {
    min-height: 130px;
  }

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

  .plan-purchase .button {
    width: 100%;
  }

  .footer-links {
    gap: 14px;
  }
}

@media (max-width: 460px) {
  .dashboard-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 6px;
  }

  .dashboard-tab {
    padding: 0 8px;
    font-size: 11px;
  }

  .hero-credential-list > div {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-credential-list button {
    grid-column: 1;
    grid-row: auto;
    width: fit-content;
  }
}

/* M4.40.0 — dois planos Flow e comparação de capacidade no staging. */
.staging-preview-banner {
  position: relative;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #312e81;
  background: #ede9fe;
  border-bottom: 1px solid #c4b5fd;
  font-size: 13px;
  text-align: center;
}
.staging-preview-banner strong { color: #6d28d9; }
.plan-checkout-link[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .72;
  filter: saturate(.55);
}
@media (max-width: 720px) {
  .staging-preview-banner { flex-direction: column; gap: 2px; }
}
.pricing-card-pro {
  border-color: rgba(124, 58, 237, 0.28);
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.16), transparent 36%),
    radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 242, 255, 0.94));
}

.plan-calculator {
  max-width: 1160px;
  margin: 32px auto 0;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 64px rgba(38, 50, 93, 0.1);
}

.plan-calculator h3 {
  margin: 7px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.035em;
}

.plan-calculator-copy p {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.65;
}

.plan-calculator-copy label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.plan-calculator-copy input {
  width: min(100%, 220px);
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(79, 70, 229, 0.28);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  outline: none;
}

.plan-calculator-copy input:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.14);
}

.plan-calculator-result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.plan-calculator-result > div {
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  background: rgba(79, 70, 229, 0.06);
  border: 1px solid rgba(79, 70, 229, 0.12);
}

.plan-calculator-result span,
.plan-calculator-result small {
  color: var(--text-soft);
}

.plan-calculator-result strong {
  margin: 5px 0;
  color: var(--text);
  font-size: clamp(20px, 2.4vw, 28px);
}

.plan-calculator-result p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(14, 165, 233, 0.09);
  color: #075985;
  font-weight: 750;
}

.plan-calculator-result p.is-pro {
  background: rgba(124, 58, 237, 0.1);
  color: #5b21b6;
}

.plan-examples {
  max-width: 1160px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.plan-examples > div {
  min-height: 90px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.2);
  text-align: center;
}

.plan-examples strong {
  color: var(--primary);
  font-size: 22px;
}

.plan-examples span {
  color: var(--text);
  font-weight: 750;
}

.plan-examples small {
  color: #5b21b6;
  font-weight: 700;
}

.plan-examples .recommended {
  border-color: rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.08);
}

.plan-terms-note {
  max-width: 1050px;
  margin: 18px auto 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 840px) {
  .plan-calculator {
    grid-template-columns: 1fr;
  }

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

  .plan-examples .recommended {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .plan-calculator {
    padding: 22px;
    border-radius: 22px;
  }

  .plan-calculator-result {
    grid-template-columns: 1fr;
  }

  .plan-calculator-result p {
    grid-column: 1;
  }

  .plan-examples {
    grid-template-columns: 1fr;
  }

  .plan-examples .recommended {
    grid-column: auto;
  }
}

/* Os cartões flutuantes são decorativos e não podem bloquear as abas do painel. */
.floating-card {
  pointer-events: none;
}

/* Ajustes da versão baseada no painel real */
.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.showcase-actions .button {
  min-width: 190px;
}

/* Os logos agora usam os mesmos arquivos do painel do assinante, sem hospedagem externa. */
.site-header .brand-logo {
  height: 48px !important;
  transform: none !important;
}

.site-footer .footer-brand .brand-logo {
  height: 42px !important;
  transform: none !important;
}

.footer-partner-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  .showcase-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .showcase-actions .button {
    width: 100%;
  }

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

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

/* Evita que conteúdos de largura intrínseca forcem rolagem horizontal no hero mobile. */
.hero-grid,
.hero-grid > *,
.hero-copy,
.hero-visual {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-grid > *,
  .hero-copy,
  .hero-visual {
    width: 100%;
  }

  .hero-copy .eyebrow {
    max-width: 100%;
    white-space: normal;
  }
}

/* Compensa o cabeçalho fixo ao navegar pelos links internos. */
section[id] {
  scroll-margin-top: 104px;
}

@media (max-width: 760px) {
  section[id] {
    scroll-margin-top: 88px;
  }
}


/* =========================================================
   LIMITE DE ATÉ 1.000 NÚMEROS E USO RESPONSÁVEL
   ========================================================= */

.product-stat-note {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.product-stat-note a,
.faq-answer a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.number-limits-section {
  position: relative;
  padding: 78px 0 48px;
}

.number-limits-section::before {
  content: '';
  position: absolute;
  inset: 22px 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(6, 182, 212, 0.12), transparent 28%),
    radial-gradient(circle at 90% 82%, rgba(79, 70, 229, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(238, 244, 255, 0.62));
  border-top: 1px solid rgba(79, 70, 229, 0.08);
  border-bottom: 1px solid rgba(79, 70, 229, 0.08);
}

.number-limit-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.number-limit-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-md);
}

.number-limit-card::before {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  top: -92px;
  right: -72px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.09);
  filter: blur(10px);
  pointer-events: none;
}

.number-limit-card-hookcloud {
  color: #ffffff;
  background: linear-gradient(145deg, #312e81 0%, #4f46e5 52%, #0891b2 100%);
  border-color: transparent;
  box-shadow: 0 28px 70px rgba(79, 70, 229, 0.24);
}

.number-limit-card-hookcloud::before {
  background: rgba(255, 255, 255, 0.16);
}

.limit-source {
  position: relative;
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.number-limit-card-hookcloud .limit-source {
  color: rgba(255, 255, 255, 0.8);
}

.number-limit-value {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 14px;
}

.number-limit-value span {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
}

.number-limit-value strong {
  color: var(--text);
  font-size: clamp(52px, 6vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.number-limit-card-hookcloud .number-limit-value span,
.number-limit-card-hookcloud .number-limit-value strong {
  color: #ffffff;
}

.number-limit-card p {
  position: relative;
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.number-limit-card-hookcloud p {
  color: rgba(255, 255, 255, 0.82);
}

.limit-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.limit-detail-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-md);
}

.limit-detail-card h3 {
  margin: 16px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.limit-detail-card > p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.limit-detail-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.limit-detail-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

.limit-detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--success);
  font-size: 15px;
  font-weight: 900;
}

.limit-example-card {
  background:
    radial-gradient(circle at 100% 0, rgba(6, 182, 212, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.86);
}

.limit-example-math {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
  margin-top: 24px;
}

.limit-example-math div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 16px 12px;
  border-radius: 18px;
  background: rgba(79, 70, 229, 0.06);
  border: 1px solid rgba(79, 70, 229, 0.1);
  text-align: center;
}

.limit-example-math strong {
  color: var(--primary);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.limit-example-math span {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
}

.limit-example-math b {
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 22px;
}

.compliance-shell {
  margin-top: 20px;
  padding: 34px;
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 15%, rgba(6, 182, 212, 0.22), transparent 28%),
    radial-gradient(circle at 88% 86%, rgba(139, 92, 246, 0.22), transparent 30%),
    linear-gradient(145deg, #0f172a 0%, #172554 58%, #312e81 100%);
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.24);
}

.compliance-shell .section-kicker {
  color: #67e8f9;
}

.compliance-head {
  max-width: 900px;
}

.compliance-head h3 {
  max-width: 22ch;
  margin: 16px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.compliance-head p {
  max-width: 80ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.75;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.compliance-grid article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 150px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.compliance-grid strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
}

.compliance-grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.enforcement-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 18px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(239, 68, 68, 0.11);
  border: 1px solid rgba(248, 113, 113, 0.26);
}

.enforcement-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: #ffffff;
  background: rgba(239, 68, 68, 0.9);
  font-size: 20px;
  font-weight: 900;
}

.enforcement-note strong {
  display: block;
  color: #fecaca;
  font-size: 16px;
  line-height: 1.45;
}

.enforcement-note p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.limit-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.limit-policy-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.limit-policy-links a:hover,
.limit-policy-links a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.limit-disclaimer {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 1000px) {
  .number-limit-map,
  .limit-detail-grid {
    grid-template-columns: 1fr;
  }

  .number-limit-card {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .number-limits-section {
    padding: 54px 0 34px;
  }

  .number-limit-card,
  .limit-detail-card,
  .compliance-shell {
    padding: 24px;
    border-radius: 24px;
  }

  .limit-example-math {
    grid-template-columns: 1fr;
  }

  .limit-example-math b {
    min-height: 22px;
  }

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

  .compliance-grid article {
    min-height: auto;
  }

  .enforcement-note {
    grid-template-columns: 1fr;
  }

  .limit-policy-links {
    display: grid;
  }

  .limit-policy-links a {
    justify-content: center;
    text-align: center;
  }
}


/* =========================================================
   Usernames + BSUID — atualização agosto/2026
   ========================================================= */
.proof-chip-new {
  border-color: rgba(16, 185, 129, .3);
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(6,182,212,.10));
}

.identity-section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(16,185,129,.14), transparent 30%),
    radial-gradient(circle at 88% 30%, rgba(79,70,229,.18), transparent 34%),
    linear-gradient(145deg, #081329 0%, #101b3d 50%, #0b2340 100%);
  color: #f8fafc;
}
.identity-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148,163,184,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 92%);
  pointer-events: none;
}
.identity-section .container { position: relative; z-index: 1; }
.eyebrow-hot {
  color: #a7f3d0;
  border-color: rgba(52,211,153,.32);
  background: rgba(16,185,129,.12);
}
.identity-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr);
  align-items: center;
  gap: 64px;
}
.identity-copy h2 {
  max-width: 780px;
  margin: 18px 0 22px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -.052em;
}
.identity-copy p { color: #cbd5e1; font-size: 17px; line-height: 1.78; }
.identity-copy .identity-lead { color: #eef2ff; font-size: 20px; }
.identity-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.identity-section .button-secondary { color: #f8fafc; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
.identity-console {
  padding: 22px;
  border: 1px solid rgba(148,163,184,.24);
  border-radius: 28px;
  background: rgba(7,15,34,.76);
  box-shadow: 0 32px 90px rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
}
.identity-console-head { display:flex; justify-content:space-between; gap:18px; align-items:center; padding: 2px 4px 18px; color:#94a3b8; font-size:13px; text-transform:uppercase; letter-spacing:.08em; }
.identity-console-head b { color:#6ee7b7; font-size:11px; padding:7px 10px; border-radius:999px; background:rgba(16,185,129,.12); border:1px solid rgba(16,185,129,.25); }
.identity-console-card {
  display:grid; grid-template-columns:48px 1fr auto; align-items:center; gap:14px;
  padding:18px; margin-bottom:12px; border-radius:18px;
  border:1px solid rgba(148,163,184,.16); background:rgba(255,255,255,.055);
}
.identity-icon { width:48px; height:48px; display:grid; place-items:center; border-radius:15px; font-size:22px; font-weight:800; background:linear-gradient(135deg,#4f46e5,#06b6d4); box-shadow:0 14px 32px rgba(79,70,229,.28); }
.identity-icon-bsuid { font-size:14px; background:linear-gradient(135deg,#059669,#06b6d4); }
.identity-console-card div:nth-child(2) { min-width:0; }
.identity-console-card span, .identity-console-card small { display:block; color:#94a3b8; }
.identity-console-card span { font-size:12px; text-transform:uppercase; letter-spacing:.06em; }
.identity-console-card strong { display:block; margin:5px 0; font-size:18px; color:#fff; overflow:hidden; text-overflow:ellipsis; }
.identity-console-card small { font-size:12px; line-height:1.45; }
.identity-status { font-style:normal; font-size:11px; font-weight:800; padding:8px 10px; border-radius:999px; white-space:nowrap; }
.identity-status.is-approved { color:#a7f3d0; background:rgba(16,185,129,.13); border:1px solid rgba(16,185,129,.28); }
.identity-status.is-ready { color:#bfdbfe; background:rgba(59,130,246,.13); border:1px solid rgba(59,130,246,.28); }
.identity-console-note { padding:16px 4px 2px; color:#cbd5e1; font-size:13px; line-height:1.65; }
.identity-console-note strong { color:#fff; }
.identity-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; margin-top:56px; }
.identity-benefit { padding:26px; border-radius:22px; background:rgba(255,255,255,.07); border:1px solid rgba(148,163,184,.18); }
.identity-benefit h3 { margin:18px 0 10px; font-size:19px; }
.identity-benefit p { margin:0; color:#b9c5d6; line-height:1.65; }
.identity-benefit code { color:#a7f3d0; background:rgba(16,185,129,.1); padding:2px 5px; border-radius:6px; }
.identity-number { display:inline-grid; place-items:center; min-width:40px; height:32px; padding:0 10px; border-radius:999px; color:#dbeafe; font-size:12px; font-weight:800; background:rgba(79,70,229,.24); border:1px solid rgba(129,140,248,.28); }
.identity-comparison { margin-top:22px; padding:30px; display:grid; grid-template-columns:1fr auto 1fr; gap:30px; align-items:center; border-radius:24px; background:rgba(255,255,255,.055); border:1px solid rgba(148,163,184,.18); }
.identity-comparison h3 { margin:10px 0 8px; font-size:23px; }
.identity-comparison p { margin:0; color:#b9c5d6; line-height:1.65; }
.identity-section .section-kicker { color:#67e8f9; }
.identity-divider { width:46px; height:46px; display:grid; place-items:center; border-radius:50%; color:#fff; font-size:22px; font-weight:800; background:linear-gradient(135deg,#4f46e5,#06b6d4); }
.identity-disclaimer { margin-top:22px; padding:20px 24px; border-radius:18px; color:#cbd5e1; line-height:1.65; background:rgba(15,23,42,.7); border:1px solid rgba(148,163,184,.17); }
.identity-disclaimer strong { color:#fff; }
.identity-source-links { display:flex; flex-wrap:wrap; gap:10px 18px; margin-top:12px; }
.identity-source-links a { color:#67e8f9; font-size:13px; font-weight:700; text-decoration:underline; text-underline-offset:4px; }
.feature-card-identity { border-color:rgba(16,185,129,.22); background:linear-gradient(145deg,rgba(236,253,245,.8),rgba(239,246,255,.86)); }
.usecase-card-identity { border-color:rgba(16,185,129,.25); background:linear-gradient(145deg,rgba(236,253,245,.82),rgba(239,246,255,.86)); }
.usecase-tag-live { color:#047857; background:rgba(16,185,129,.12); border-color:rgba(16,185,129,.22); }

@media (max-width: 1120px) {
  .identity-hero { grid-template-columns:1fr; gap:38px; }
  .identity-console { max-width:760px; width:100%; }
  .identity-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .identity-section { padding:82px 0; }
  .identity-copy h2 { font-size:clamp(36px,11vw,52px); }
  .identity-copy .identity-lead { font-size:18px; }
  .identity-actions, .identity-actions .button { width:100%; }
  .identity-console { padding:15px; border-radius:22px; }
  .identity-console-card { grid-template-columns:42px 1fr; padding:15px; }
  .identity-icon { width:42px; height:42px; }
  .identity-status { grid-column:2; justify-self:start; }
  .identity-grid { grid-template-columns:1fr; }
  .identity-comparison { grid-template-columns:1fr; gap:18px; }
  .identity-divider { transform:rotate(90deg); }
}

/* =========================================================
   Provas sociais — carrossel acessível M4.36
   ========================================================= */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.social-proof-section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  color: #f8fafc;
  background:
    radial-gradient(circle at 12% 18%, rgba(6, 182, 212, .2), transparent 31%),
    radial-gradient(circle at 88% 72%, rgba(139, 92, 246, .2), transparent 34%),
    linear-gradient(145deg, #071225 0%, #0f1b38 52%, #0b2541 100%);
}

.social-proof-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), transparent 96%);
}

.social-proof-section .container {
  position: relative;
  z-index: 1;
}

.social-proof-section .section-head p {
  color: #b8c4d8;
}

.testimonial-carousel {
  --testimonial-accent: #67e8f9;
  position: relative;
  width: min(960px, 100%);
  margin: 48px auto 0;
  padding: 24px 82px 70px;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 32px;
  outline: none;
  background: rgba(4, 10, 24, .72);
  box-shadow: 0 36px 110px rgba(0, 0, 0, .38);
  backdrop-filter: blur(18px);
}

.testimonial-carousel:focus-visible {
  box-shadow: 0 0 0 4px rgba(103, 232, 249, .22), 0 36px 110px rgba(0, 0, 0, .38);
}

.testimonial-viewport {
  height: clamp(560px, 66vw, 700px);
  overflow: hidden;
  border-radius: 23px;
}

.testimonial-track {
  display: flex;
  height: 100%;
  transition: transform 900ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
  padding: 2px;
}

.testimonial-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .17);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(15, 23, 42, .94), rgba(2, 6, 23, .96));
}

.testimonial-image-shell {
  display: grid;
  min-height: 0;
  padding: 22px;
  place-items: center;
}

.testimonial-image-shell img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  color: #94a3b8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-top: 1px solid rgba(148, 163, 184, .13);
  background: rgba(15, 23, 42, .86);
}

.testimonial-card figcaption strong {
  color: var(--testimonial-accent);
  font-size: 11px;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #f8fafc;
  cursor: pointer;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 50%;
  background: rgba(15, 23, 42, .86);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .3);
  transform: translateY(-50%);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.testimonial-arrow span {
  font-size: 23px;
  line-height: 1;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  border-color: rgba(103, 232, 249, .68);
  background: rgba(8, 145, 178, .36);
  transform: translateY(-50%) scale(1.06);
}

.testimonial-arrow-prev { left: 20px; }
.testimonial-arrow-next { right: 20px; }

.testimonial-dots {
  position: absolute;
  right: 82px;
  bottom: 25px;
  left: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, .42);
  transition: width .28s ease, background .28s ease;
}

.testimonial-dot.is-active {
  width: 32px;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
}

.testimonial-dot:focus-visible {
  outline: 3px solid rgba(103, 232, 249, .42);
  outline-offset: 3px;
}

.testimonial-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 760px) {
  .social-proof-section {
    padding: 82px 0;
  }

  .testimonial-carousel {
    margin-top: 34px;
    padding: 12px 12px 70px;
    border-radius: 24px;
  }

  .testimonial-viewport {
    height: min(630px, 72vh);
    min-height: 510px;
    border-radius: 18px;
  }

  .testimonial-card {
    border-radius: 17px;
  }

  .testimonial-image-shell {
    padding: 12px;
  }

  .testimonial-image-shell img {
    border-radius: 12px;
  }

  .testimonial-card figcaption {
    padding: 13px 15px;
  }

  .testimonial-arrow {
    top: auto;
    bottom: 14px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .testimonial-arrow:hover,
  .testimonial-arrow:focus-visible {
    transform: scale(1.05);
  }

  .testimonial-arrow-prev { left: 14px; }
  .testimonial-arrow-next { right: 14px; }

  .testimonial-dots {
    right: 64px;
    bottom: 30px;
    left: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track,
  .testimonial-arrow,
  .testimonial-dot {
    transition: none;
  }
}
