/* ─────────────────────────────────────────────────────────
   Skadi Lab — landing styles
   Dark + violet, Bebas Neue display, Inter body
   ───────────────────────────────────────────────────────── */

:root {
  --bg: #0D0D0D;
  --surface: #1A1A2E;
  --card: #16213E;
  --card-2: #1F2A4D;
  --primary: #7B2FF7;
  --primary-light: #9D4EDD;
  --accent: #C77DFF;
  --text: #FFFFFF;
  --text-muted: #B0B0B0;
  --text-dim: #6E6E80;
  --success: #00E676;
  --error: #FF5252;
  --warning: #FFD600;
  --admin: #42A5F5;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;

  --container: 1200px;
  --container-narrow: 820px;
  --nav-h: 68px;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-card: 0 6px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 8px 40px rgba(123, 47, 247, 0.35);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { border: 0; background: 0; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }
strong { font-weight: 700; color: var(--text); }

::selection { background: rgba(123, 47, 247, 0.45); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); }

.muted { color: var(--text-muted); }

/* ─────────── Wordmark ─────────── */
.wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 6px;
  color: #fff;
  text-shadow: 0 0 28px rgba(123, 47, 247, 0.55);
  display: inline-block;
}
.wordmark-dot { color: var(--accent); }
.wordmark-footer { font-size: 26px; }

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 11px 22px;
  border-radius: 999px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-xl { padding: 16px 36px; font-size: 16px; font-weight: 700; }
.btn-full { width: 100%; }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 8px 28px rgba(123, 47, 247, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(123, 47, 247, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost-light {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  backdrop-filter: blur(12px);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-arrow { transition: transform 0.22s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─────────── Nav ─────────── */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1080px;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(13, 13, 13, 0.65);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 18, 0.92);
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  height: 100%;
  padding: 0 8px 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo { flex-shrink: 0; line-height: 1; }
.nav-logo .wordmark { font-size: 19px; letter-spacing: 5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-login {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-login:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 18px 22px 22px;
  background: rgba(10, 10, 18, 0.97);
  backdrop-filter: blur(24px);
  border-radius: 0 0 28px 28px;
  border-top: 1px solid var(--border);
}
.mobile-menu.active { display: flex; }
.mobile-link {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--border);
}
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 90px) 0 100px;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 620px;
  height: 620px;
  top: -200px;
  right: -160px;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.55) 0%, transparent 65%);
  animation: glow-drift-a 14s ease-in-out infinite;
}
.hero-glow-2 {
  width: 520px;
  height: 520px;
  bottom: -260px;
  left: -120px;
  background: radial-gradient(circle, rgba(199, 125, 255, 0.32) 0%, transparent 70%);
  animation: glow-drift-b 16s ease-in-out infinite;
}
@keyframes glow-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.08); }
}
@keyframes glow-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 35%, transparent 100%);
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  background: rgba(123, 47, 247, 0.12);
  border: 1px solid rgba(123, 47, 247, 0.3);
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 26px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 22px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 60%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-sub strong { color: #fff; }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-bullets {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-bullets svg { color: var(--success); flex-shrink: 0; }

.hero-visual {
  position: relative;
}
.hero-mockup {
  position: relative;
  z-index: 2;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 60px rgba(123, 47, 247, 0.18);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-mockup:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(0deg); }
.hero-mockup svg { display: block; width: 100%; height: auto; }
.hero-mockup-glow {
  position: absolute;
  inset: -40px;
  z-index: 1;
  background: radial-gradient(circle at 60% 50%, rgba(123, 47, 247, 0.35) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

/* ─────────── Reveal animation ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────── Section base ─────────── */
.section {
  padding: 110px 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}
.muted-strike {
  position: relative;
  color: var(--text-dim);
}
.muted-strike::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  top: 52%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(-3deg);
}

/* ─────────── Features ─────────── */
.features { background: linear-gradient(180deg, var(--bg) 0%, #0A0A14 100%); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  position: relative;
  padding: 28px 26px;
  background: linear-gradient(160deg, rgba(26, 26, 46, 0.7) 0%, rgba(15, 15, 30, 0.7) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(123, 47, 247, 0.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 125, 255, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(123, 47, 247, 0.15);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.3), rgba(199, 125, 255, 0.15));
  border: 1px solid rgba(199, 125, 255, 0.22);
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────── Plataforma ─────────── */
.plataforma { background: #0A0A14; }

.plataforma-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.plataforma-card {
  position: relative;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.85) 0%, rgba(13, 13, 22, 0.85) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.plataforma-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 125, 255, 0.35);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}
.plataforma-mockup {
  padding: 22px 22px 0;
  background: linear-gradient(180deg, rgba(123, 47, 247, 0.07) 0%, transparent 100%);
}
.plataforma-mockup svg {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.plataforma-body { padding: 24px 26px 28px; }
.plataforma-tag {
  display: inline-block;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(199, 125, 255, 0.12);
  border: 1px solid rgba(199, 125, 255, 0.3);
  border-radius: 999px;
  margin-bottom: 14px;
}
.plataforma-tag-blue {
  color: var(--admin);
  background: rgba(66, 165, 245, 0.12);
  border-color: rgba(66, 165, 245, 0.3);
}
.plataforma-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 10px;
}
.plataforma-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────── Stats ─────────── */
.stats {
  background: linear-gradient(180deg, #0A0A14 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.18) 0%, transparent 70%);
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.stats-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.stats-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 18px;
}
.stats-title-accent {
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-lead {
  font-size: 17px;
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.stat-card {
  padding: 38px 30px;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.85) 0%, rgba(13, 13, 22, 0.85) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-card-accent {
  background: linear-gradient(180deg, rgba(123, 47, 247, 0.22) 0%, rgba(15, 15, 30, 0.85) 100%);
  border-color: rgba(199, 125, 255, 0.35);
  box-shadow: 0 0 60px rgba(123, 47, 247, 0.2);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 88px;
  line-height: 0.9;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(180deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-num-unit {
  font-size: 56px;
  margin-left: 2px;
}
.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.stat-detail {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─────────── Tools ─────────── */
.tools { background: var(--bg); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tool-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 22px;
  background: rgba(26, 26, 46, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.tool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 125, 255, 0.3);
  background: rgba(26, 26, 46, 0.85);
}
.tool-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 47, 247, 0.18);
  color: var(--accent);
  border: 1px solid rgba(123, 47, 247, 0.25);
}
.tool-icon svg { width: 18px; height: 18px; }
.tool-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
.tool-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─────────── Pricing ─────────── */
.pricing { background: linear-gradient(180deg, var(--bg) 0%, #0A0A14 100%); }
.pricing-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(13, 13, 22, 0.95) 100%);
  border: 1px solid rgba(199, 125, 255, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 80px rgba(123, 47, 247, 0.18);
  overflow: hidden;
  isolation: isolate;
}
.pricing-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.4) 0%, transparent 70%);
  filter: blur(60px);
  top: -120px;
  right: -100px;
  z-index: 0;
  pointer-events: none;
}
.pricing-inner {
  position: relative;
  z-index: 1;
  padding: 44px 44px 40px;
}
.pricing-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.pricing-tag {
  align-self: flex-start;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(199, 125, 255, 0.14);
  border: 1px solid rgba(199, 125, 255, 0.3);
  border-radius: 999px;
}
.pricing-price-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 6px;
}
.pricing-price-sub {
  display: block;
  font-size: 15px;
  color: var(--text-muted);
}

.pricing-fee {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: rgba(123, 47, 247, 0.1);
  border: 1px solid rgba(123, 47, 247, 0.25);
  border-radius: 18px;
  margin-bottom: 28px;
}
.pricing-fee-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 86px;
  line-height: 0.9;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
.pricing-fee-pct { font-size: 56px; }
.pricing-fee-label {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}
.pricing-fee-label .muted { color: var(--text-muted); font-size: 13.5px; }

.pricing-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin-bottom: 30px;
}
.pricing-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.pricing-checks svg { color: var(--success); flex-shrink: 0; }

.pricing-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.pricing-note a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s ease;
}
.pricing-note a:hover { color: #fff; }

/* ─────────── FAQ ─────────── */
.faq { background: #0A0A14; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-item[open] {
  border-color: rgba(199, 125, 255, 0.3);
  background: rgba(26, 26, 46, 0.9);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-body {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-body a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(199, 125, 255, 0.4);
}
.faq-body a:hover { color: #fff; border-color: #fff; }

/* ─────────── Final CTA ─────────── */
.cta-final { padding: 80px 0 110px; background: var(--bg); }
.cta-band {
  position: relative;
  padding: 72px 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #1A1A2E 0%, #2A1A4D 100%);
  border: 1px solid rgba(199, 125, 255, 0.25);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.45) 0%, transparent 70%);
  filter: blur(80px);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 16px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.cta-fine {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ─────────── Footer ─────────── */
.footer {
  background: #06060C;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}
.footer-fine { color: var(--text-dim); }

/* ─────────── Responsive ─────────── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-content { max-width: 600px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-bullets { justify-content: center; }
  .hero-mockup { transform: none; }
  .hero-mockup:hover { transform: none; }
  .features-grid,
  .plataforma-grid,
  .stats-grid,
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav { width: calc(100% - 20px); top: 10px; }
  .nav-inner { padding: 0 8px 0 18px; }
  .nav-links,
  .nav-actions .nav-login { display: none; }
  .nav-actions .btn { display: inline-flex; }
  .hamburger { display: flex; }
  .nav-actions { gap: 6px; margin-left: auto; }

  .section { padding: 80px 0; }
  .section-head { margin-bottom: 44px; }

  .hero { padding: calc(var(--nav-h) + 70px) 0 80px; }
  .hero-title { font-size: 36px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

  .features-grid,
  .plataforma-grid,
  .stats-grid,
  .tools-grid,
  .pricing-checks {
    grid-template-columns: 1fr;
  }

  .stat-num { font-size: 72px; }
  .pricing-inner { padding: 32px 26px 30px; }
  .pricing-fee { flex-direction: column; align-items: flex-start; gap: 6px; padding: 20px; }
  .pricing-fee-num { font-size: 64px; }
  .pricing-fee-pct { font-size: 42px; }

  .cta-band { padding: 50px 24px; border-radius: 22px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .nav-logo .wordmark { font-size: 17px; letter-spacing: 4px; }
  .hero-eyebrow { font-size: 11.5px; padding: 6px 12px 6px 10px; }
  .stats-title { font-size: 36px; }
  .footer-cols { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
