/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --blue: #0070f3;
  --blue-light: #3291ff;
  --blue-dim: rgba(0, 112, 243, 0.12);
  --green: #00c851;
  --purple: #7928ca;
  --purple-light: #b794f4;
  --amber: #f5a623;
  --amber-light: #fbbf24;
  --orange: #f97316;
  --red: #e00;

  /* ── Full dark — Vercel style ── */
  --navy: #0a0a0a;
  --navy-mid: #111111;
  --navy-dark: #000000;
  --navy-card: #161616;

  --white: #ffffff;
  --gray-page: #0f0f0f;
  --gray-border: #1a1a1a;
  --gray-bg: #141414;

  --text-dark: #ededed;
  --text-muted: #888888;
  --text-hint: #555555;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 40px;

  --font-sans: "Geist", system-ui, sans-serif;
  --font-mono: "Geist Mono", "Fira Code", "Consolas", monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: #0a0a0a;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img,
svg {
  display: block;
}

/* ── Container ─────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 760px;
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s var(--ease),
    box-shadow 0.18s ease;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.btn-primary:hover {
  background: #e6e6e6;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}
.btn-primary.btn-lg {
  font-size: 15px;
  padding: 13px 26px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  color: #888;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.18s ease;
}
.btn-ghost:hover {
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid #333;
  color: #ededed;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease,
    transform 0.18s var(--ease);
}
.btn-outline:hover {
  border-color: #555;
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline.btn-lg {
  font-size: 15px;
  padding: 13px 24px;
}

/* ── Fade-up animations ─────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards;
}
.delay-0 {
  animation-delay: 0.05s;
}
.delay-1 {
  animation-delay: 0.15s;
}
.delay-2 {
  animation-delay: 0.28s;
}
.delay-3 {
  animation-delay: 0.42s;
}
.delay-4 {
  animation-delay: 0.58s;
}

/* ── Nav ────────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1a1a1a;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 60px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    color 0.15s ease,
    background 0.15s ease;
}
.nav__links a:hover {
  color: #fff;
  background: #1a1a1a;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: #555;
  border-radius: 2px;
  display: block;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid #1a1a1a;
  background: #0a0a0a;
}
.nav__mobile a {
  font-size: 15px;
  font-weight: 400;
  color: #888;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
}
.nav__mobile a:last-child {
  border: none;
  margin-top: 8px;
}
.nav__mobile.open {
  display: flex;
}

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
  padding-top: 120px;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  /*background-image: radial-gradient(
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px
  );*/
  background-size: 28px 28px;
  pointer-events: none;
}
/* Glow sutil atrás do hero — efeito Vercel */
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  /*background: radial-gradient(
    ellipse at center,
    rgba(0, 112, 243, 0.08) 0%,
    transparent 70%
  );*/
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 200, 81, 0.1);
  color: #00c851;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 200, 81, 0.25);
  margin-bottom: 20px;
}
.hero__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.hero__accent {
  /* Gradiente no texto — efeito vibrante no dark */
  background: linear-gradient(90deg, #0070f3 0%, #7928ca 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 18px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__audience-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 112, 243, 0.08);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 112, 243, 0.2);
  transition: opacity 0.2s;
}
.hero__audience-badge:hover {
  opacity: 0.7;
}

.marketer-strip {
  background: #111;
  border-top: 1px solid #1a1a1a;
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.marketer-strip__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.marketer-strip__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  flex-wrap: wrap;
}
.marketer-strip__icon {
  font-size: 15px;
}
.marketer-strip__label {
  font-size: 13px;
  color: #888;
  font-weight: 400;
}
.marketer-strip__check {
  font-size: 12px;
  color: #444;
}
.marketer-strip__check::before {
  content: "✓ ";
  color: #00c851;
}
.marketer-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 200, 81, 0.1);
  border: 1px solid rgba(0, 200, 81, 0.3);
  color: #00c851;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.18s ease;
}
.marketer-strip__cta:hover {
  background: rgba(0, 200, 81, 0.18);
}

@media (max-width: 768px) {
  .marketer-strip__check {
    display: none;
  }
}


/* ── Sections ───────────────────────────────────────────────────────────────── */
.section {
  padding: 80px 0;
}
.section--navy {
  background: #0a0a0a;
}
.section--white {
  background: #0f0f0f;
}
.section--gray {
  background: #0a0a0a;
}

.section-heading {
  margin-bottom: 40px;
}
.section-heading--center {
  text-align: center;
}
.section-heading__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 10px;
}
.section-heading__title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.section-heading__title--white {
  color: #fff;
}
.section-heading__title--dark {
  color: #fff;
}
.section-heading__sub {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}
.section-heading__sub--dim {
  color: #666;
}

/* ── Mac dots ───────────────────────────────────────────────────────────────── */
.mac-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mac-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.mac-dot--red {
  background: #ff5f57;
}
.mac-dot--yellow {
  background: #febc2e;
}
.mac-dot--green {
  background: #28c840;
}

/* ── Code Editor ────────────────────────────────────────────────────────────── */
.code-wrap {
  margin: 0 auto;
}
.lang-tabs {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 auto 14px;
  align-items: stretch;
}

.lang-tab {
  display: inline-flex;
   flex: 0 0 100px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  gap: 6px;
  width: 80px;
  min-height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid #1f1f1f;
  background: #111;
  color: #555;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  position: relative;
  isolation: isolate;
}

.lang-tab img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0.7);
}

.lang-tab:hover,
.lang-tab.active {
  border-color: #333;
  background: #1a1a1a;
  color: #ededed;
}

.lang-tab.active img {
  filter: brightness(1);
}

@property --lt-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes lt-spin {
  from { --lt-angle: 0deg; }
  to   { --lt-angle: 360deg; }
}

.lang-tab::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-sm) + 1px);
  background: conic-gradient(
    from var(--lt-angle, 0deg),
    transparent 0deg,
    transparent 60deg,
    #3291ff 80deg,
    #7928ca 90deg,
    #3291ff 100deg,
    transparent 120deg,
    transparent 360deg
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  box-sizing: border-box;
}

.lang-tab:hover::before,
.lang-tab.active::before {
  opacity: 1;
  animation: lt-spin 2s linear infinite;
}

.code-editor {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #1f1f1f;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  margin-bottom: 14px;
}
.code-editor__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #111;
  border-bottom: 1px solid #1f1f1f;
}
.code-editor__tab {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #888;
  padding: 4px 12px;
  background: #1a1a1a;
  border-top: 2px solid var(--blue);
  border-right: 1px solid #1f1f1f;
  margin-left: 4px;
}
.code-editor__copy {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: #444;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 5px;
  transition:
    color 0.15s,
    background 0.15s;
}
.code-editor__copy:hover {
  color: #fff;
  background: #1f1f1f;
}
.code-editor__pre {
  background: #0a0a0a;
  padding: 20px 24px;
  margin: 0;
  max-height: 380px;
  overflow-y: auto;
}
.code-editor__pre::-webkit-scrollbar {
  width: 4px;
}
.code-editor__pre::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}
.code-editor__pre code {
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: #cdd6f4;
  white-space: pre;
  display: block;
}

/* ── Integration grid ───────────────────────────────────────────────────────── */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.int-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: var(--radius-md);
  transition:
    border-color 0.18s ease,
    transform 0.18s var(--ease);
}
.int-card:hover {
  border-color: #333;
  transform: translateY(-2px);
}
.int-card__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.int-card__icon--blue {
  background: rgba(0, 112, 243, 0.12);
  color: var(--blue-light);
}
.int-card__icon--purple {
  background: rgba(121, 40, 202, 0.12);
  color: var(--purple-light);
}
.int-card__icon--green {
  background: rgba(0, 200, 81, 0.1);
  color: #00c851;
}
.int-card__icon--amber {
  background: rgba(245, 166, 35, 0.1);
  color: var(--amber-light);
}
.int-card__body {
  flex: 1;
  min-width: 0;
}
.int-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
}
.int-card__title {
  font-size: 13px;
  font-weight: 500;
  color: #ededed;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.int-card__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.int-card__badge--blue {
  background: rgba(0, 112, 243, 0.12);
  color: var(--blue-light);
}
.int-card__badge--purple {
  background: rgba(121, 40, 202, 0.12);
  color: var(--purple-light);
}
.int-card__badge--green {
  background: rgba(0, 200, 81, 0.1);
  color: #00c851;
}
.int-card__badge--amber {
  background: rgba(245, 166, 35, 0.1);
  color: var(--amber-light);
}
.int-card__desc {
  font-size: 11.5px;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

/* ── Two-col layout ─────────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col__desc {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  margin: 16px 0 28px;
  font-weight: 400;
}
.two-col__desc--dim {
  color: #666;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #888;
}
.feature-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%230070f3' fill-opacity='.15'/%3E%3Cpath d='M5.5 10.5l3 3 6-6' stroke='%230070f3' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/cover;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Marketer demo ───────────────────────────────────────────────────────────── */
.marketer-demo {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}
.marketer-demo__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #0f0f0f;
  border-bottom: 1px solid #1f1f1f;
}
.marketer-demo__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: #444;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.marketer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #1f1f1f;
}
.marketer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  gap: 3px;
  border-right: 1px solid #1f1f1f;
}
.marketer-stat:last-child {
  border-right: none;
}
.marketer-stat__val {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}
.marketer-stat__label {
  font-size: 11px;
  color: #444;
  font-weight: 400;
}
.marketer-stat--blue .marketer-stat__val {
  color: var(--blue-light);
}
.marketer-stat--green .marketer-stat__val {
  color: var(--green);
}
.marketer-stat--purple .marketer-stat__val {
  color: var(--purple-light);
}
.marketer-stat--orange .marketer-stat__val {
  color: var(--orange);
}

.marketer-rate {
  padding: 12px 14px;
  border-bottom: 1px solid #1f1f1f;
}
.marketer-rate__labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #555;
}
.marketer-rate__pct {
  color: var(--blue-light);
}
.marketer-rate__track {
  height: 4px;
  background: #1f1f1f;
  border-radius: 4px;
  overflow: hidden;
}
.marketer-rate__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 100%);
  border-radius: 4px;
  transition: width 0.6s var(--ease);
}

.marketer-activity {
  display: flex;
  flex-direction: column;
  height: 155px;
  overflow: hidden;
  padding: 6px 0;
}
.activity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  height: 35px;
  min-height: 35px;
  flex-shrink: 0;
  overflow: hidden;
}
.activity-item--new {
  animation: streamIn 0.4s var(--ease) forwards;
  background: rgba(0, 112, 243, 0.04);
}
.activity-item__icon {
  font-size: 13px;
  flex-shrink: 0;
}
.activity-item__text {
  font-size: 12px;
  color: #888;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.activity-item__time {
  font-size: 11px;
  color: #333;
  flex-shrink: 0;
}

/* ── Deliver monitor ────────────────────────────────────────────────────────── */
.deliver-monitor {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.deliver-monitor:hover {
  border-color: #2a2a2a;
}
.deliver-monitor__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: #0f0f0f;
  border-bottom: 1px solid #1f1f1f;
}
.deliver-monitor__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: #333;
  flex: 1;
}

.deliver-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #1f1f1f;
}
.deliver-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 6px;
  gap: 3px;
  border-right: 1px solid #1f1f1f;
}
.deliver-metric:last-child {
  border-right: none;
}
.deliver-metric__val {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  color: #ededed;
}
.deliver-metric__label {
  font-size: 10px;
  color: #333;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.deliver-events {
  display: flex;
  flex-direction: column;
  height: 180px;
  overflow: hidden;
  padding: 6px 0;
}
.deliver-event {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  height: 32px;
  min-height: 32px;
  flex-shrink: 0;
  overflow: hidden;
}
.deliver-event--new {
  animation: streamIn 0.4s var(--ease) forwards;
  background: rgba(255, 255, 255, 0.02);
}
.deliver-event__icon {
  font-size: 13px;
  flex-shrink: 0;
}
.deliver-event__body {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.deliver-event__label {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  color: #ededed;
}
.deliver-event__detail {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.deliver-event__time {
  font-size: 10px;
  color: #2a2a2a;
  flex-shrink: 0;
}

.deliver-uptime {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-top: 1px solid #1f1f1f;
}
.deliver-uptime__label {
  font-size: 10px;
  color: #333;
  white-space: nowrap;
  flex-shrink: 0;
}
.deliver-uptime__bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  flex: 1;
}
.uptime-bar {
  width: 6px;
  border-radius: 2px;
  flex-shrink: 0;
}
.deliver-uptime__val {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.deliver-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.deliver-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s var(--ease);
}
.deliver-item:hover {
  transform: translateX(3px);
}
.deliver-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
}
.deliver-item__title {
  font-size: 15px;
  font-weight: 600;
  color: #ededed;
  margin: 0 0 4px;
}
.deliver-item__desc {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* ── Stats row ───────────────────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #1a1a1a;
}
.stat-item {
  text-align: center;
  padding: 0 16px;
}
.stat-item__val {
  display: block;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  /* Gradiente vibrante nos números */
  background: linear-gradient(135deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__label {
  font-size: 14px;
  color: #555;
}

/* ── Pricing ─────────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-card {
  background: #0f0f0f;
  border: none;
  border-radius: 0;
  padding: 28px;
  position: relative;
  transition: background 0.18s ease;
}
.pricing-card:hover {
  background: #141414;
}
.pricing-card--featured {
  background: #111;
  border: none;
  outline: 1px solid var(--blue);
  outline-offset: -1px;
  z-index: 1;
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pricing-card__name {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pricing-card__price {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.pricing-card__price span {
  font-size: 18px;
  font-weight: 400;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  color: #888;
}
.pricing-card__period {
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
}
.pricing-card__emails {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 24px;
}
.pricing-card__cta {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  transition:
    opacity 0.15s,
    transform 0.15s;
  border: 1px solid #2a2a2a;
  color: #ededed;
}
.pricing-card--featured .pricing-card__cta {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.pricing-card:not(.pricing-card--featured) .pricing-card__cta:hover {
  background: #1a1a1a;
}
.pricing-card__cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card__feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #666;
}
.pricing-card__feat::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l3.5 3.5 6.5-7' stroke='%230070f3' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/cover;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item {
  border: none;
  border-radius: 0;
}
.faq-item__q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: #ededed;
  background: #0f0f0f;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-item__q:hover {
  background: #141414;
}
.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item__icon svg {
  display: block;
  stroke: #555;
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__a {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  background: #0f0f0f;
}
.faq-item.open .faq-item__a {
  display: block;
}
.faq__footer {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin-top: 36px;
  color: #555;
}
.faq__footer a {
  color: var(--blue-light);
  font-weight: 600;
}
.faq__footer a:hover {
  text-decoration: underline;
}

/* ── Reviews ─────────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.reviews-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color 0.2s ease;
}
.review-card:hover {
  border-color: #333;
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.review-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: #666;
  margin-bottom: 16px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__name {
  font-size: 13px;
  font-weight: 600;
  color: #ededed;
}
.review-card__role {
  font-size: 11px;
  color: #444;
}

/* Sobrescreve o contexto claro para dark */
.section--white,
.section--gray {
  --card-bg: #111;
  --card-border: #1f1f1f;
  --card-shadow: none;
  --card-shadow-hover: none;
  --card-text: #666;
  --card-name: #ededed;
  --card-role: #444;
  --cmp-wrap-bg: #111;
  --cmp-wrap-border: #1f1f1f;
  --cmp-th-bg: #0f0f0f;
  --cmp-row-border: #1f1f1f;
  --cmp-row-hover: #141414;
  --cmp-row-highlight: rgba(0, 112, 243, 0.05);
  --cmp-label-color: #555;
  --cmp-label-highlight: #ededed;
  --cmp-th-name: #ededed;
  --cmp-th-scx-name: var(--blue-light);
  --cmp-cell-scx-color: #ededed;
  --cmp-cell-scx-accent: var(--blue-light);
  --cmp-cell-text: #444;
  --cmp-disclaimer: #333;
}

/* ── Comparison table ────────────────────────────────────────────────────── */
.cmp-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cmp-wrap-border, #1f1f1f);
  background: var(--cmp-wrap-bg, #111);
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-family: var(--font-sans);
}
.cmp-th {
  padding: 14px 18px;
  text-align: center;
  background: var(--cmp-th-bg, #0f0f0f);
  border-bottom: 1px solid var(--cmp-row-border, #1f1f1f);
}
.cmp-th--feature {
  text-align: left;
  width: 32%;
}
.cmp-th--scx {
  background: rgba(0, 112, 243, 0.06);
  border-left: 1px solid rgba(0, 112, 243, 0.2);
  border-right: 1px solid rgba(0, 112, 243, 0.2);
}
.cmp-th__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--cmp-th-name, #ededed);
  display: block;
  letter-spacing: -0.01em;
}
.cmp-th--scx .cmp-th__name {
  color: var(--cmp-th-scx-name, var(--blue-light));
}
.cmp-th__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.cmp-row {
  border-bottom: 1px solid var(--cmp-row-border, #1f1f1f);
  transition: background 0.15s ease;
}
.cmp-row:last-child {
  border-bottom: none;
}
.cmp-row:hover {
  background: var(--cmp-row-hover, #141414);
}
.cmp-row--highlight {
  background: var(--cmp-row-highlight, rgba(255, 255, 255, 0.02));
}
.cmp-row--highlight .cmp-label {
  font-weight: 600;
  color: var(--cmp-label-highlight, #ededed);
}
.cmp-label {
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 400;
  color: var(--cmp-label-color, #555);
  font-family: var(--font-sans);
}
.cmp-cell {
  padding: 13px 18px;
  text-align: center;
  font-size: 12.5px;
  font-family: var(--font-sans);
  vertical-align: middle;
}
.cmp-cell--scx {
  background: rgba(0, 112, 243, 0.04);
  border-left: 1px solid rgba(0, 112, 243, 0.12);
  border-right: 1px solid rgba(0, 112, 243, 0.12);
  color: var(--cmp-cell-scx-color, #ededed);
  font-weight: 600;
  font-size: 13px;
}
.cmp-cell--yes svg,
.cmp-cell--no svg {
  display: inline-block;
  vertical-align: middle;
}
.cmp-cell--text {
  color: var(--cmp-cell-text, #444);
  font-size: 12px;
}
.cmp-cell--scx.cmp-cell--text {
  color: var(--cmp-cell-scx-accent, var(--blue-light));
  font-size: 13px;
}
.cmp-disclaimer {
  font-size: 11px;
  color: var(--cmp-disclaimer, #333);
  text-align: right;
  margin-top: 10px;
  font-family: var(--font-sans);
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
}
.footer__inner {
  display: flex;
  gap: 64px;
  padding: 48px 0 40px;
}
.footer__brand {
  flex: 1;
}
.footer__tagline {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}
.footer__links {
  display: flex;
  gap: 48px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
}
.footer__col a {
  font-size: 14px;
  color: #555;
  transition: color 0.15s;
}
.footer__col a:hover {
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid #1a1a1a;
  text-align: center;
  padding: 16px 24px;
  font-size: 13px;
  color: #333;
}

/* ── Keyframes ───────────────────────────────────────────────────────────────── */
@keyframes streamIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes logRowIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSwap {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__right {
    display: none;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    background: none;
    border: 1px solid #1a1a1a;
  }
  .pricing-card {
    border-bottom: 1px solid #1a1a1a;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 36px;
  }
  .section-heading__title {
    font-size: 30px;
  }
  .section {
    padding: 56px 0;
  }
  .nav__links,
  .nav__actions .btn-ghost {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .log-panel__cols {
    grid-template-columns: 1fr;
  }
  .log-col-divider {
    display: none;
  }
  .marketer-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .deliver-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .footer__inner {
    flex-direction: column;
    gap: 32px;
    padding: 32px 0 24px;
  }
  .footer__links {
    gap: 32px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .cmp-label {
    padding: 11px 12px;
    font-size: 12px;
  }
  .cmp-cell {
    padding: 11px 8px;
    font-size: 11px;
  }
  .cmp-th {
    padding: 11px 8px;
  }
  .cmp-th__name {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }
  .hero__buttons {
    flex-direction: column;
  }
  .integration-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
}
