:root {
  /* Deep, neutral base (less "cyber" / less banding). */
  --bg-0: #07090f;
  --bg-1: #0b1222;
  --bg-2: #081225;

  /* Softer surfaces (premium: less contrasty borders). */
  --panel: rgba(255, 255, 255, 0.045);
  --panel-2: rgba(255, 255, 255, 0.022);
  --border: rgba(255, 255, 255, 0.10);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.38);

  --text-strong: #f8faff;
  --text: #d7e0ee;
  --muted: #9fb0c8;

  /* One brand accent (kept on the "premium" side: deeper, less neon). */
  --accent: #1db954;
  --accent-2: #169e46;
  --accent-3: #8dffbf;
  --accent-rgb: 29, 185, 84;
  --accent-2-rgb: 22, 158, 70;

  --font-body: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: "Sora", "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --maxw: 1120px;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  position: relative;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Neutral base + subtle highlights (less "template/AI glow"). */
  background:
    radial-gradient(900px 560px at 14% -18%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(980px 640px at 92% 6%, rgba(var(--accent-rgb), 0.10), transparent 58%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 62%, var(--bg-2));
  overflow-x: hidden;
}

body::before {
  /* Removed texture: clean premium background (less "generated"). */
  content: none;
}

body::after {
  /* Vignette: keeps focus in the content area, more "cinema" than "glow". */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 900px at 50% -10%, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.62) 100%);
  opacity: 0.12;
}

body > * {
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.32);
  outline-offset: 2px;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Avoid anchors being hidden under the sticky topbar. */
section[id], #demo { scroll-margin-top: 96px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 16, 0.84);
  backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand__badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand__stack { line-height: 1.1; }

.brand__stack strong {
  display: block;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 13px;
  color: var(--text-strong);
}

.brand__stack span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: none;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.nav a {
  opacity: 0.9;
  transition: opacity 160ms ease;
}

.nav a:hover { opacity: 1; }

.topbar__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

/* Borderless menu buttons (Baixar/Loguin) in the topbar. */
.topbar__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 11px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.01em;
  cursor: pointer;
  user-select: none;
  transition: transform 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.topbar__menu-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
}

.topbar__menu-btn:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.35);
  outline-offset: 2px;
}

.download-menu {
  /* Topbar dropdown menus shouldn't inherit the generic <details> card styling. */
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
}

.access-menu {
  /* Topbar dropdown menus shouldn't inherit the generic <details> card styling. */
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
}

.access-menu > summary {
  list-style: none;
}

.access-menu > summary::-webkit-details-marker {
  display: none;
}

.access-menu > summary::after {
  content: "\25BE";
  display: inline-block;
  margin-left: 2px;
  font-size: 12px;
  opacity: 0.8;
  transform: translateY(-1px);
}

.access-menu[open] > summary::after {
  transform: translateY(-1px) rotate(180deg);
}

.access-menu[open] > summary {
  background: rgba(255, 255, 255, 0.06);
  border: 0;
}

.download-menu > summary {
  list-style: none;
}

.download-menu > summary::-webkit-details-marker {
  display: none;
}

.download-menu > summary::after {
  content: "\25BE";
  display: inline-block;
  margin-left: 2px;
  font-size: 12px;
  opacity: 0.8;
  transform: translateY(-1px);
}

.download-menu[open] > summary::after {
  transform: translateY(-1px) rotate(180deg);
}

.download-menu[open] > summary {
  background: rgba(255, 255, 255, 0.06);
  border: 0;
}

.download-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(280px, 92vw);
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 9, 16, 0.94);
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: var(--shadow);
}

.download-menu__panel a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.90);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.download-menu__panel a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.download-menu__title {
  font-weight: 900;
  letter-spacing: 0.01em;
}

.download-menu__meta {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

/* Access menu (Loguin): align badges and keep items looking "premium" even when text wraps. */
.access-menu__panel {
  display: grid;
  gap: 6px;
  background: rgba(7, 9, 16, 0.98);
  border-color: rgba(255, 255, 255, 0.12);
  overflow: hidden; /* avoid background bleeding through rounded corners */
}

.access-menu__panel a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: stretch;
  min-height: 46px;
}

.access-menu__panel .download-menu__title {
  line-height: 1.15;
  min-width: 0;
}

.access-menu__panel .download-menu__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(214, 222, 234, 0.92);
  justify-self: end;
}

.access-menu__panel a[data-lead-open="google"] .download-menu__meta {
  border-color: rgba(var(--accent-rgb), 0.32);
  background: rgba(var(--accent-rgb), 0.14);
  color: rgba(var(--accent-rgb), 0.98);
}

.access-menu__panel a[data-lead-open="email"] .download-menu__meta {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(214, 222, 234, 0.90);
}

.access-menu__panel a[data-app-link="/auth/login"] .download-menu__meta {
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(158, 176, 200, 0.92);
}

.access-menu__panel a:last-child {
  margin-top: 10px;
  position: relative;
}

.access-menu__panel a:last-child::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: -8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  opacity: 0.75;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 6px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 13px;
  opacity: 0.9;
  transition: opacity 160ms ease;
  white-space: nowrap;
}

.topbar__link:hover { opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.btn--sm {
  padding: 7px 10px;
  border-radius: 11px;
  font-size: 12px;
  gap: 7px;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.015);
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.20);
}

.btn--primary {
  border-color: rgba(var(--accent-rgb), 0.50);
  background: rgba(var(--accent-rgb), 1);
  color: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 12px 26px rgba(var(--accent-rgb), 0.16),
    0 18px 48px rgba(0, 0, 0, 0.40);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn--primary:hover {
  background: rgba(var(--accent-2-rgb), 1);
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(var(--accent-rgb), 0.35);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.22);
}

.hero {
  position: relative;
  padding: 68px 0 34px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(214, 222, 234, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.10);
}

h1 {
  margin: 18px 0 14px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.008em;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.05;
  max-width: 20ch;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__lead {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 18px);
  color: rgba(214, 222, 234, 0.82);
  line-height: 1.6;
  max-width: 58ch;
  font-weight: 500;
}

.hero__lead strong,
.hero__lead b {
  color: #ffffff;
  font-weight: 700;
}

.hero h1 {
  position: relative;
  display: inline-block;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 64%,
      rgba(var(--accent-rgb), 0.10) 64%,
      rgba(var(--accent-rgb), 0.10) 88%,
      rgba(0, 0, 0, 0) 88%
    );
  padding: 0.02em 0.08em 0.06em;
  border-radius: 0.18em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12em;
  width: 62%;
  height: 0.12em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.65), rgba(var(--accent-rgb), 0.12) 70%, transparent);
  opacity: 0.55;
  pointer-events: none;
}

.hero h1:hover::after {
  width: 70%;
  transition: width 220ms ease;
}

.hero__bullets {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  max-width: 62ch;
  color: rgba(214, 222, 234, 0.92);
  font-size: 14px;
}

.hero__bullets li {
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
}

.hero__bullets li {
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb), 0.02) 60%, transparent);
  border-radius: 12px;
  padding: 6px 10px 6px 22px;
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.10);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero__actions--right { justify-content: flex-end; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: rgba(214, 222, 234, 0.68);
  font-size: 13px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.26);
}

.pill svg { opacity: 0.75; }

.audience {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.results {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.case {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  padding: 18px;
}

.case h3 {
  margin: 0;
  color: var(--text-strong);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.case__lead {
  margin: 8px 0 0;
  color: rgba(214, 222, 234, 0.90);
  line-height: 1.7;
  font-size: 14px;
}

.case__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(214, 222, 234, 0.92);
  font-size: 14px;
}

.case__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.5;
}

.case__list li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  background: rgba(var(--accent-rgb), 0.10);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  margin-top: 1px;
  display: grid;
  place-items: center;
  color: rgba(124, 247, 176, 0.98);
  font-weight: 900;
  font-size: 12px;
}

.case__fineprint {
  margin: 12px 0 0;
  color: rgba(158, 176, 200, 0.88);
  font-size: 12px;
  line-height: 1.5;
}

.quotes {
  display: grid;
  gap: 12px;
}

.quote {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.20);
  padding: 16px;
}

.quote p {
  margin: 0;
  color: rgba(243, 246, 255, 0.90);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.mock {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.mock::before {
  /* Avoid neon/glow effects that can look template-y. */
  content: none;
}

.mock__inner {
  position: relative;
  padding: 18px;
}

.mock__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
}

.mock__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.mock__dots span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}

.mock__title {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}

.mock__media {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
}

.mock__media img {
  display: block;
  width: 100%;
  height: auto;
}

.tag {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  background: rgba(var(--accent-rgb), 0.10);
  color: rgba(124, 247, 176, 0.96);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tag--sky {
  border-color: rgba(148, 163, 184, 0.38);
  background: rgba(148, 163, 184, 0.10);
  color: rgba(226, 232, 240, 0.96);
}

.tag--amber {
  border-color: rgba(245, 158, 11, 0.55);
  background: rgba(245, 158, 11, 0.10);
  color: rgba(255, 233, 182, 0.96);
}

.mock__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.stat {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  min-height: 92px;
}

.stat--good {
  border-color: rgba(var(--accent-rgb), 0.30);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.10), rgba(255, 255, 255, 0.03));
}

.stat--good strong { color: rgba(124, 247, 176, 0.98); }

.stat--sky {
  border-color: rgba(148, 163, 184, 0.26);
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.10), rgba(255, 255, 255, 0.03));
}

.stat--sky strong { color: rgba(226, 232, 240, 0.96); }

.stat--amber {
  border-color: rgba(245, 158, 11, 0.30);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.10), rgba(255, 255, 255, 0.03));
}

.stat--amber strong { color: rgba(255, 233, 182, 0.98); }

.stat small {
  display: block;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
}

.stat strong {
  display: block;
  font-size: 24px;
  margin-top: 10px;
  color: var(--text-strong);
}

.stat em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-size: 12px;
  color: rgba(214, 222, 234, 0.86);
  margin-top: 6px;
}

.list {
  margin-top: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.list__item:first-child { border-top: 0; }

.section {
  padding: 64px 0;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.capstrip {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.10);
}

.capstrip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: rgba(214, 222, 234, 0.82);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.capstrip__inner span {
  padding: 6px 0;
}

.capstrip__inner span + span {
  margin-left: 14px;
}

.capstrip__inner span + span::before {
  content: "•";
  margin-right: 14px;
  opacity: 0.35;
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.section__head h2 {
  position: relative;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
}

.section__head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.16em;
  width: 58%;
  height: 0.16em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.60), rgba(var(--accent-rgb), 0.12) 70%, transparent);
  opacity: 0.62;
  pointer-events: none;
}

.section__head h2:hover::after {
  width: 70%;
  transition: width 220ms ease;
}

.kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(176, 192, 214, 0.84);
}

.kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.06);
  color: rgba(230, 255, 240, 0.86);
  box-shadow: 0 8px 18px rgba(var(--accent-rgb), 0.12);
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.12);
}

h2 {
  margin: 0;
  color: #fdfdff;
  font-family: var(--font-display);
  letter-spacing: 0.006em;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  text-wrap: balance;
}

.section__desc {
  margin: 0;
  color: rgba(214, 222, 234, 0.90);
  line-height: 1.65;
  max-width: 70ch;
}

.legal {
  padding: 46px 0 60px;
}

.legal__head h1 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-display);
  letter-spacing: 0.015em;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.06;
  text-transform: uppercase;
}

.legal__head h1::after {
  content: none;
}

.legal__meta {
  margin: 10px 0 0;
  color: rgba(158, 176, 200, 0.88);
  font-size: 13px;
}

.legal__content {
  margin-top: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.40);
  padding: 18px;
}

.legal__content h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.01em;
}

.legal__content p {
  margin: 10px 0 0;
  color: rgba(214, 222, 234, 0.90);
  line-height: 1.7;
  font-size: 14px;
}

.legal__content ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(214, 222, 234, 0.90);
  line-height: 1.7;
  font-size: 14px;
}

.legal__content a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 3px;
}

.legal__content a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.60);
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}

.steps {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.step {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: var(--panel);
  padding: 16px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.30);
}

.step__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step__num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--accent-rgb), 0.36);
  background: rgba(var(--accent-rgb), 0.14);
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), 0.10);
}

.step h3 {
  margin: 0;
  font-size: 17px;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.022em;
  text-transform: uppercase;
}

.step p {
  margin: 8px 0 0;
  color: rgba(214, 222, 234, 0.88);
  line-height: 1.65;
  font-size: 14px;
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: var(--panel);
  padding: 16px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.32);
}

.card h3 {
  margin: 0;
  font-size: 17px;
  color: var(--text-strong);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.022em;
  text-transform: uppercase;
}

.card p {
  margin: 8px 0 0;
  color: rgba(214, 222, 234, 0.88);
  line-height: 1.7;
  font-size: 14px;
}

.showcase {
  margin-top: 18px;
}

.showcase__tabs {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.showcase__tab {
  border: 0;
  cursor: pointer;
  background: transparent;
  color: rgba(214, 222, 234, 0.88);
  font-weight: 900;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 999px;
  letter-spacing: -0.01em;
}

.showcase__tab.is-active {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.98), rgba(var(--accent-2-rgb), 0.96));
  color: rgba(255, 255, 255, 0.96);
}

.showcase__panel {
  margin-top: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.16);
  padding: 12px;
  box-shadow: 0 26px 66px rgba(0, 0, 0, 0.40);
}

.showcase__panel picture {
  display: block;
}

.showcase__panel img {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.showcase__caption {
  margin: 10px 0 0;
  color: rgba(158, 176, 200, 0.90);
  font-size: 13px;
  line-height: 1.45;
}

.module {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  padding: 14px 14px;
}

.module__title {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.module__list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(214, 222, 234, 0.90);
  font-size: 14px;
}

.module__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}

.check {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: rgba(var(--accent-rgb), 0.96);
}

.price {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price--featured {
  border-color: rgba(var(--accent-rgb), 0.34);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.10), var(--panel));
}

.price__badge {
  position: absolute;
  top: 14px;
  right: 14px;
}

.price__head h3 {
  margin: 0;
  font-size: 19px;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.022em;
  text-transform: uppercase;
}

.price__head p {
  margin: 8px 0 0;
  color: rgba(214, 222, 234, 0.88);
  line-height: 1.6;
  font-size: 14px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.billing-toggle__btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.billing-toggle__btn:hover {
  transform: translateY(-1px);
}

.billing-toggle__btn.is-active {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.98), rgba(var(--accent-2-rgb), 0.96));
  color: rgba(255, 255, 255, 0.96);
}

.billing-toggle__badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  font-size: 11px;
}

.billing-toggle__badge--muted {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(214, 222, 234, 0.86);
}

.billing-note {
  margin: 10px 0 0;
  color: rgba(158, 176, 200, 0.88);
  font-size: 13px;
  line-height: 1.5;
}

.pricing-perks {
  margin: 8px 0 0;
  color: rgba(214, 222, 234, 0.86);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.95;
}

.amount {
  margin: 14px 0 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--text-strong);
}

.amount strong {
  font-size: 36px;
  letter-spacing: -0.03em;
}

.amount span {
  color: rgba(214, 222, 234, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.amount-sub {
  margin: 8px 0 0;
  color: rgba(158, 176, 200, 0.88);
  font-size: 13px;
  line-height: 1.45;
  min-height: 18px;
}

.amount-sub.is-promo {
  color: rgba(var(--accent-rgb), 0.92);
  font-weight: 800;
}

.price__list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: rgba(214, 222, 234, 0.92);
}

.price__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.35;
}

.price__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border-color: var(--border);
}

.download-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.download-card__title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.download-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.38);
  background: rgba(var(--accent-rgb), 0.12);
  color: rgba(190, 255, 220, 0.98);
  box-shadow: 0 18px 44px rgba(var(--accent-rgb), 0.08);
  flex: 0 0 auto;
}

.download-card__icon--sky {
  border-color: rgba(148, 163, 184, 0.38);
  background: rgba(148, 163, 184, 0.10);
  color: rgba(226, 232, 240, 0.96);
  box-shadow: 0 18px 44px rgba(148, 163, 184, 0.08);
}

.download-card h3 {
  margin: 0;
  font-size: 19px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.022em;
  text-transform: uppercase;
}

.download-card__subtitle {
  margin: 6px 0 0;
  color: rgba(214, 222, 234, 0.86);
  line-height: 1.55;
  font-size: 13px;
}

.download-card__list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(214, 222, 234, 0.90);
  font-size: 13px;
}

.download-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.35;
}

.download-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 6px;
}

.download-card__note {
  margin: 6px 0 0;
  color: rgba(158, 176, 200, 0.88);
  font-size: 12px;
  line-height: 1.4;
}

.download-footnote {
  margin: 14px 0 0;
  color: rgba(158, 176, 200, 0.90);
  font-size: 13px;
  line-height: 1.55;
}

.download-footnote strong {
  color: rgba(214, 222, 234, 0.94);
}

.lead-strip {
  margin-top: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  padding: 16px;
  display: grid;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

.lead-strip--hero {
  margin-top: 16px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.042);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.36),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.lead-strip--hero:focus-within {
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.46),
    0 0 0 4px rgba(var(--accent-rgb), 0.14);
}

.lead-strip__copy h3 {
  margin: 0;
  font-size: 19px;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.022em;
  text-transform: uppercase;
}

.step h3,
.card h3,
.price__head h3,
.download-card h3,
.lead-strip__copy h3 {
  position: relative;
  display: inline-block;
}

.step h3::after,
.card h3::after,
.price__head h3::after,
.download-card h3::after,
.lead-strip__copy h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 62%;
  height: 0.16em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.7), rgba(var(--accent-rgb), 0.16) 70%, transparent);
  opacity: 0.95;
  pointer-events: none;
}

.lead-strip__copy p {
  margin: 6px 0 0;
  color: rgba(214, 222, 234, 0.88);
  line-height: 1.55;
  font-size: 14px;
}

.lead-strip__meta {
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(214, 222, 234, 0.9);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lead-strip__pill {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  background: rgba(var(--accent-rgb), 0.14);
  color: rgba(190, 255, 220, 0.98);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.lead-strip__meta-text {
  color: rgba(214, 222, 234, 0.9);
}

.lead-strip__bullets {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: rgba(214, 222, 234, 0.9);
  font-size: 13px;
}

.lead-strip__bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.35;
}

.lead-strip__bullets .check {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.lead-form {
  display: grid;
  gap: 8px;
}

.lead-inline {
  display: grid;
  gap: 8px;
}

.lead-inline__row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}

.lead-inline__micro {
  margin: 0;
  font-size: 12px;
  color: rgba(158, 176, 200, 0.92);
  line-height: 1.45;
}

.lead-inline__google {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(var(--accent-rgb), 0.95);
  font-weight: 900;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.95;
  transition: opacity 160ms ease;
}

.lead-inline__google:hover { opacity: 1; }

.lead-form__oauth {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.lead-form__oauth-label {
  font-size: 12px;
  color: rgba(214, 222, 234, 0.88);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lead-form__oauth-or {
  font-size: 11px;
  color: rgba(158, 176, 200, 0.92);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-strip--hero .lead-form {
  /* Remove the "double panel" feeling; the strip is already the panel. */
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
}

.lead-form__row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}

.lead-form input[type="email"],
.lead-inline input[type="email"],
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form select {
  flex: 1 1 220px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.30);
  color: rgba(255, 255, 255, 0.92);
  padding: 0 14px;
  outline: none;
}

.lead-form select {
  padding-right: 36px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(214, 222, 234, 0.88) 50%),
    linear-gradient(135deg, rgba(214, 222, 234, 0.88) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.lead-form input[type="email"]::placeholder,
.lead-inline input[type="email"]::placeholder,
.lead-form input[type="text"]::placeholder,
.lead-form input[type="tel"]::placeholder {
  color: rgba(158, 176, 200, 0.9);
}

.lead-form input[type="email"]:focus,
.lead-inline input[type="email"]:focus,
.lead-form input[type="text"]:focus,
.lead-form input[type="tel"]:focus,
.lead-form select:focus {
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.16);
}

.lead-form__row--meta input,
.lead-form__row--meta select {
  flex: 1 1 160px;
}

.lead-form__toggle {
  align-self: flex-start;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: rgba(var(--accent-rgb), 0.95);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  cursor: pointer;
  opacity: 0.95;
  transition: opacity 160ms ease;
}

.lead-form__toggle:hover { opacity: 1; }

.lead-form__optional {
  display: grid;
  gap: 8px;
}

.lead-form__micro {
  margin: 0;
  font-size: 12px;
  color: rgba(158, 176, 200, 0.92);
}

.lead-form__backline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.26);
  color: rgba(214, 222, 234, 0.9);
  font-size: 12px;
}

.lead-form__backlabel {
  opacity: 0.72;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lead-form__backvalue {
  font-weight: 900;
  letter-spacing: 0.01em;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-form__back {
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 6px 10px;
  border-radius: 12px;
  color: rgba(var(--accent-rgb), 0.95);
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, opacity 160ms ease;
  opacity: 0.95;
}

.lead-form__back:hover { opacity: 1; }

.lead-form__back:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.18);
}

.lead-form__details {
  margin-top: 2px;
  border: 0;
  background: transparent;
  padding: 0;
}

.lead-form__detailsLabel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(214, 222, 234, 0.86);
  margin-bottom: 8px;
}

.lead-form .btn,
.lead-inline .btn {
  height: 46px;
  padding: 0 16px;
}

.lead-form__hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.lead-form__note {
  margin: 0;
  font-size: 12px;
  color: rgba(158, 176, 200, 0.9);
}

.lead-form__note a {
  color: rgba(var(--accent-rgb), 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-form__status {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(214, 222, 234, 0.88);
  display: none;
}

.lead-form__status:not(:empty) {
  display: block;
}

.lead-form__status[data-variant="ok"] {
  color: rgba(var(--accent-rgb), 0.95);
}

.lead-form__status[data-variant="error"] {
  color: rgba(255, 115, 124, 0.95);
}

.lead-form__next {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lead-form.is-success .lead-form__row,
.lead-form.is-success .lead-form__toggle,
.lead-form.is-success .lead-form__optional,
.lead-form.is-success .lead-form__note {
  display: none;
}

.lead-form.is-success .lead-form__next {
  margin-top: 6px;
}

.lead-form__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 10px;
  border-radius: 12px;
  color: rgba(214, 222, 234, 0.92);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.95;
  transition: opacity 160ms ease;
}

.lead-form__link:hover { opacity: 1; }

.pricing-help {
  margin: 16px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.pricing-help a {
  color: rgba(var(--accent-rgb), 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.plan-compare {
  margin-top: 14px;
}

.plan-compare summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.90);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.plan-compare summary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
}

.plan-compare summary::-webkit-details-marker { display: none; }

.plan-compare summary::after {
  content: ">";
  opacity: 0.70;
  transform: translateY(-1px);
}

.plan-compare[open] summary::after {
  content: "v";
}

.plan-compare__wrap {
  margin-top: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.plan-compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.040), rgba(255, 255, 255, 0.016));
}

.plan-compare__table th,
.plan-compare__table td {
  padding: 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.plan-compare__table th {
  border-top: 0;
  color: rgba(243, 246, 255, 0.86);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
  text-align: left;
}

.plan-compare__table td {
  color: rgba(214, 222, 234, 0.9);
}

.plan-compare__table td:not(:first-child),
.plan-compare__table th:not(:first-child) {
  text-align: center;
  white-space: nowrap;
}

.plan-compare__yes {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  background: rgba(var(--accent-rgb), 0.12);
  color: rgba(124, 247, 176, 0.98);
  font-weight: 900;
}

.plan-compare__no {
  color: rgba(158, 176, 200, 0.75);
  font-weight: 800;
}

.plan-compare__note {
  margin: 10px 0 0;
  color: rgba(158, 176, 200, 0.86);
  font-size: 12px;
}

.lead-form.is-loading {
  opacity: 0.95;
}

.faq {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

details {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 14px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.90);
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

details p {
  margin: 10px 0 0;
  color: rgba(214, 222, 234, 0.88);
  line-height: 1.7;
  font-size: 14px;
}

.cta {
  padding: 44px 0 60px;
}

.cta__shell {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-2-rgb), 0.10));
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.cta__shell::before {
  content: "";
  position: absolute;
  inset: -220px;
  background: radial-gradient(closest-side at 50% 50%, rgba(var(--accent-rgb), 0.24), transparent 60%);
  filter: blur(10px);
  opacity: 0.85;
  pointer-events: none;
}

.cta__shell > * { position: relative; }

.footer {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.70);
  font-size: 13px;
}

.footer__grid {
  display: grid;
  gap: 12px;
}

.footer__brand strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.footer__brand span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.70);
  font-weight: 700;
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.footer__fineprint {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.footer__fineprint span {
  display: block;
  line-height: 1.6;
}

.footer__fineprint a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer__fineprint a:hover {
  color: rgba(255, 255, 255, 0.92);
}

/* Lead modal (cadastro de 7 dias) */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.lead-modal.is-open { display: flex; }

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(8px) saturate(120%);
}

.lead-modal__panel {
  position: relative;
  width: min(760px, 94vw);
  max-height: 92vh;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 9, 16, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lead-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.lead-modal__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.lead-modal__logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.lead-modal__logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.lead-modal__meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.lead-modal__meta strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.lead-modal__meta span {
  color: rgba(158, 176, 200, 0.90);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lead-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.lead-modal__close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.lead-modal__body {
  padding: 14px;
  overflow: auto;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.checkout-modal.is-open { display: flex; }

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.checkout-modal__panel {
  position: relative;
  width: min(980px, 100%);
  height: min(88vh, 820px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 7, 11, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.checkout-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.10), rgba(var(--accent-2-rgb), 0.06));
}

.checkout-modal__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.checkout-modal__logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.checkout-modal__logo img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.checkout-modal__meta {
  min-width: 0;
}

.checkout-modal__meta strong {
  display: block;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--text-strong);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-modal__meta span {
  display: block;
  font-size: 13px;
  color: rgba(214, 222, 234, 0.88);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-modal__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.checkout-modal__open {
  height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.checkout-modal__open:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.checkout-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-strong);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.checkout-modal__close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.checkout-modal__stage {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

#checkoutFrame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b1220;
}

.checkout-modal__loading,
.checkout-modal__error {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 2;
}

.checkout-modal.is-loading .checkout-modal__loading {
  display: flex;
}

.checkout-modal.has-error .checkout-modal__error {
  display: flex;
}

.checkout-modal.is-loading #checkoutFrame {
  opacity: 0.28;
  filter: blur(1px);
}

.checkout-modal.has-error #checkoutFrame {
  opacity: 0.18;
  filter: blur(2px);
}

.checkout-modal__loadingCard,
.checkout-modal__errorCard {
  width: min(520px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 7, 11, 0.94);
  box-shadow: var(--shadow);
  padding: 16px;
}

.checkout-modal__loadingCard {
  display: grid;
  gap: 12px;
}

.checkout-modal__spin {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(var(--accent-rgb), 0.92);
  animation: checkoutSpin 900ms linear infinite;
}

.checkout-modal__loadingCopy strong,
.checkout-modal__errorCard strong {
  display: block;
  color: var(--text-strong);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.checkout-modal__loadingCopy span,
.checkout-modal__errorCard span {
  display: block;
  margin-top: 4px;
  color: rgba(214, 222, 234, 0.88);
  font-size: 13px;
  line-height: 1.35;
}

.checkout-modal__skeleton {
  display: grid;
  gap: 10px;
}

.checkout-modal__skeleton span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.06)
  );
  background-size: 220% 100%;
  animation: checkoutShimmer 1.15s ease-in-out infinite;
}

.checkout-modal__skeleton span:nth-child(1) { width: 86%; }
.checkout-modal__skeleton span:nth-child(2) { width: 68%; }
.checkout-modal__skeleton span:nth-child(3) { width: 76%; }

.checkout-modal__errorActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.checkout-modal__retry {
  height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.checkout-modal__retry:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

@keyframes checkoutSpin {
  to { transform: rotate(360deg); }
}

@keyframes checkoutShimmer {
  0% { background-position: 140% 0; }
  100% { background-position: -60% 0; }
}

.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Only hide reveals after JS has successfully initialized scroll reveals. */
.js.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
}

.js.reveal-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (min-width: 860px) {
  .nav { display: flex; }
  .hero { padding: 72px 0 34px; }
  .hero__grid { grid-template-columns: 1.08fr 0.92fr; }

  .steps { grid-template-columns: repeat(3, 1fr); }
  .cards--2 { grid-template-columns: repeat(2, 1fr); }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }

  .lead-strip { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .lead-strip--hero { grid-template-columns: 1.05fr 0.95fr; align-items: center; }

  .cta__shell { padding: 28px; grid-template-columns: 1.2fr 0.8fr; align-items: center; }
  .results { grid-template-columns: 1fr; align-items: start; }
  .quotes { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1fr auto; align-items: start; }
  .footer__links { justify-content: flex-end; }
  .footer__fineprint { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .topbar__inner { flex-wrap: wrap; }
  .brand { min-width: 0; flex: 1 1 100%; }
  .brand__stack span { display: none; }
  .topbar__actions { gap: 8px; width: 100%; justify-content: flex-start; flex-wrap: wrap; }
  .topbar__actions .btn--primary { flex: 1 1 100%; }
  .topbar__actions .download-menu { flex: 1 1 calc(50% - 4px); }
  .topbar__actions .access-menu { flex: 1 1 calc(50% - 4px); }
  .topbar__login { flex: 1 1 calc(50% - 4px); text-align: center; }
  .download-menu > summary { width: 100%; }
  .access-menu > summary { width: 100%; }
  .btn { padding: 9px 12px; border-radius: 12px; font-size: 12px; }
  /* Keep "Baixar" e "Loguin" enxutos no mobile (mesmo com a regra geral do .btn). */
  .btn--sm { padding: 7px 10px; border-radius: 11px; font-size: 12px; gap: 7px; }
  .billing-toggle { width: 100%; justify-content: space-between; }
  .billing-toggle__btn { flex: 1; justify-content: center; padding: 10px 10px; }
  .billing-toggle__tag { display: none; }
  .checkout-modal { padding: 10px; }
  .checkout-modal__panel { height: 92vh; }
  .checkout-modal__actions { gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
  .checkout-modal__open { height: 38px; padding: 0 10px; border-radius: 12px; font-size: 12px; }
  .checkout-modal__close { width: 38px; height: 38px; border-radius: 12px; }

  .lead-strip { padding: 16px; }
  .lead-form__row { gap: 8px; }
  .lead-form input[type="email"],
  .lead-form input[type="text"],
  .lead-form input[type="tel"],
  .lead-form select { flex-basis: 100%; }
  .lead-form .btn { width: 100%; }

  .capstrip__inner { letter-spacing: 0.14em; }

  .plan-compare__table { min-width: 680px; }
  .plan-compare__table th,
  .plan-compare__table td { padding: 10px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html, body { scroll-behavior: auto; }
  .btn { transition: none; }
  .js.reveal-ready .reveal { transition: none; }
}
