/* Rewards Agent — hi-fi dark Linear-style */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #080f0f;
  --bg-card: #0d1a1a;
  --bg-elev: #0f1f1f;
  --border: #1a2e2e;
  --border-strong: #234040;
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-glow: rgba(16, 185, 129, 0.18);
  --text: #e2f0ea;
  --text-muted: #6b9e8a;
  --text-bright: #f0faf5;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== Background grain (subtle, full-page) ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(16, 185, 129, 0.04), transparent 60%);
  z-index: 0;
}

/* ===== Container ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(8, 15, 15, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; color: var(--text-bright); letter-spacing: -0.01em; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: transparent;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link { font-size: 14px; color: var(--text-muted); transition: color 0.2s; font-weight: 500; }
.nav-link:hover { color: var(--text-bright); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 8px 24px -8px var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--primary-dark), 0 12px 32px -8px var(--primary-glow);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-card); border-color: var(--text-muted); color: var(--text-bright); }
.btn-lg { padding: 14px 22px; font-size: 15px; border-radius: 10px; }
.btn-xl { padding: 18px 28px; font-size: 16px; border-radius: 12px; }
.btn-wa { background: #25D366; border-color: #25D366; color: white; }
.btn-wa:hover { background: #1fb958; border-color: #1fb958; }

/* ===== Chip ===== */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 999px;
  font-size: 12.5px; color: var(--text-muted);
  font-weight: 500;
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 8px var(--primary); }

/* ===== Section ===== */
section { position: relative; z-index: 1; }
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
#dor { padding-top: 0; }

.eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero { padding: 100px 0 60px; text-align: center; position: relative; overflow: hidden; isolation: isolate; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('./gradient-hero.png') center center / cover no-repeat;
  opacity: 0.10;
  z-index: -1;
  pointer-events: none;
  mask-image: linear-gradient(180deg, black 0%, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 65%, transparent 100%);
}
.hero-headline {
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--text-bright);
  margin: 28px 0 0;
  max-width: 1000px; margin-inline: auto;
}
.hero-headline .accent {
  background: linear-gradient(180deg, #34d399, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 28px auto 0;
  max-width: 580px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
}
.hero-ctas { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-microcopy { margin-top: 18px; font-size: 13px; color: var(--text-muted); }

/* Hero stat strip */
.hero-stats {
  margin-top: 72px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--bg-card), var(--bg));
  overflow: hidden;
  max-width: 760px; margin-inline: auto;
}
.hero-stat { padding: 28px 24px; text-align: center; border-right: 1px solid var(--border); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 40px; font-weight: 800; color: var(--text-bright);
  letter-spacing: -0.03em; line-height: 1;
}
.hero-stat-label { margin-top: 8px; font-size: 12.5px; color: var(--text-muted); font-weight: 500; }

/* ===== Section title common ===== */
.section-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  max-width: 720px;
}
.section-title .accent { color: var(--primary); }
.section-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 580px;
}
.section-head { margin-bottom: 56px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-head.left { text-align: left; align-items: flex-start; }
.section-head.left .section-sub { margin-inline: 0; }

/* ===== Card grid ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.grid-3 > * { height: 100%; display: flex; }
.grid-3 .card { height: 100%; width: 100%; display: flex; flex-direction: column; }

.card {
  background-color: #0d1a1a;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,0.06) 0%, transparent 60%),
    linear-gradient(rgba(16,185,129,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.025) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Top gradient border highlight */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(16,185,129,0.15) 0%, rgba(16,185,129,0) 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: background 0.25s ease;
  z-index: 1;
}
.card:hover {
  transform: scale(1.02);
  border-color: var(--border-strong);
}
.card:hover::before {
  background: linear-gradient(180deg, rgba(16,185,129,0.4) 0%, rgba(16,185,129,0) 70%);
}
.card > * { position: relative; z-index: 2; }

/* Diamond icon shape */
.card-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transform: rotate(45deg);
  box-shadow: 0 0 24px rgba(16,185,129,0.2), inset 0 0 16px rgba(16,185,129,0.1);
}
.card-icon > * {
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 8px rgba(16,185,129,0.6));
}
.card-title {
  font-size: 17px; font-weight: 700; color: var(--text-bright);
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.card-body { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; margin: 0; }
.card-num {
  position: absolute; top: 24px; right: 24px;
  font-size: 12px; font-weight: 600; color: var(--primary);
  font-variant-numeric: tabular-nums;
  opacity: 0.7;
  z-index: 3;
}

/* ===== Solução / feature highlight ===== */
.solucao {
  background: linear-gradient(180deg, transparent, var(--bg-card) 30%, var(--bg-card) 70%, transparent);
  text-align: center;
}
.solucao-mock {
  margin: 56px auto 0;
  max-width: 920px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-elev);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(16, 185, 129, 0.15);
}

/* App window mock */
.appwin-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.appwin-dot { width: 10px; height: 10px; border-radius: 50%; }
.appwin-dot.r { background: #ff5f57; }
.appwin-dot.y { background: #febc2e; }
.appwin-dot.g { background: #28c840; }
.appwin-title { margin-left: 12px; font-size: 12px; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.appwin-body { padding: 28px 32px; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 13px; line-height: 1.85; }
.appwin-line { color: var(--text); }
.appwin-line.muted { color: var(--text-muted); }
.appwin-line.success { color: var(--primary); }
.appwin-divider { color: var(--border-strong); margin: 8px 0 4px; letter-spacing: -2px; }

/* ===== Prova / Numbers + testimonials ===== */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background-color: #0d1a1a;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,0.06) 0%, transparent 60%),
    linear-gradient(rgba(16,185,129,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.025) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(16,185,129,0.15) 0%, rgba(16,185,129,0) 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.stat-card > * { position: relative; z-index: 2; }
.stat-num {
  font-size: 48px; font-weight: 800; color: #10b981;
  letter-spacing: -0.03em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label { margin-top: 10px; font-size: 13px; color: #6b9e8a; font-weight: 500; }

.tstm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.tstm {
  height: 100%;
  background-color: #0d1a1a;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,0.06) 0%, transparent 60%),
    linear-gradient(rgba(16,185,129,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.025) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.tstm::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(16,185,129,0.15) 0%, rgba(16,185,129,0) 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.tstm > * { position: relative; z-index: 2; }
.tstm-quote {
  font-size: 15px; line-height: 1.55; color: var(--text); margin: 0;
  position: relative;
  padding-top: 24px;
}
.tstm-quote::before {
  content: "\201C";
  position: absolute;
  top: 0; left: 0;
  font-size: 48px;
  line-height: 0;
  color: #10b981;
  font-family: Georgia, serif;
  margin-top: 18px;
}
.tstm-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tstm-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(16,185,129,0.15);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #10b981;
}
.tstm-name { font-size: 13.5px; font-weight: 600; color: #fff; }
.tstm-loc { font-size: 12px; color: #6b9e8a; }

/* ===== Teste Grátis / Pricing block ===== */
.pricing-card {
  max-width: 720px; margin: 0 auto;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,0.12), transparent 60%),
    var(--bg-card);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-price {
  display: inline-flex; align-items: baseline; gap: 6px;
  margin: 28px 0 8px;
}
.pricing-price .num {
  font-size: 56px; font-weight: 800; color: var(--text-bright);
  letter-spacing: -0.03em;
}
.pricing-price .currency { font-size: 22px; font-weight: 600; color: var(--text-muted); }
.pricing-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.pricing-features {
  margin: 32px auto 0;
  display: flex; flex-direction: column; gap: 12px;
  max-width: 360px; text-align: left;
}
.pricing-feat { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text); }
.pricing-feat svg { color: var(--primary); flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; border: none; color: var(--text-bright);
  padding: 22px 0;
  font-size: 16px; font-weight: 600;
  text-align: left;
  letter-spacing: -0.005em;
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 15px; color: var(--text-muted); line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; padding-right: 36px; }

#faq { background-color: #080f0f; position: relative; z-index: 1; }

/* ===== CTA Final ===== */
.cta-final {
  text-align: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #080f0f;
}
.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('./gradient-hero.png') center center / cover no-repeat;
  opacity: 0.07;
  z-index: -2;
  pointer-events: none;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, #080f0f, transparent);
  z-index: -1;
  pointer-events: none;
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800; line-height: 1;
  letter-spacing: -0.035em;
  color: var(--text-bright);
  max-width: 800px; margin: 0 auto;
}
.cta-final-headline .accent { color: var(--primary); }
.cta-final-microcopy {
  margin-top: 22px;
  font-size: 13.5px; color: var(--text-muted);
  display: flex; gap: 8px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.cta-final-microcopy .sep { color: var(--border-strong); }

/* ===== Footer ===== */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); }

/* ===== Plans (Pack 2) ===== */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.plans-intro {
  display: flex; flex-direction: column; justify-content: center;
  padding-right: 16px;
}
.plans-intro h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  margin: 0;
}
.plans-intro h2 .accent { color: var(--primary); }
.plans-intro p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 320px;
}

.plan-card {
  background-color: #0d1a1a;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,0.06) 0%, transparent 60%),
    linear-gradient(rgba(16,185,129,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.025) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(16,185,129,0.15) 0%, rgba(16,185,129,0) 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: background 0.25s ease;
  z-index: 1;
}
.plan-card > * { position: relative; z-index: 2; }
.plan-card:hover {
  transform: scale(1.02);
}
.plan-card:hover::before {
  background: linear-gradient(180deg, rgba(16,185,129,0.4) 0%, rgba(16,185,129,0) 70%);
}

.plan-card.highlight {
  background-color: #0f2020;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 16px 48px -16px rgba(16,185,129,0.25);
}
.plan-card.highlight::before {
  background: linear-gradient(180deg, rgba(16,185,129,0.5) 0%, rgba(16,185,129,0) 70%);
}
.plan-card.highlight:hover {
  box-shadow: 0 0 0 1px var(--primary), 0 24px 64px -12px rgba(16,185,129,0.4);
}

.plan-badge {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text-muted);
}
.plan-badge.solid {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.plan-title {
  font-size: 22px; font-weight: 700; color: var(--text-bright);
  letter-spacing: -0.015em; margin: 0;
}
.plan-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 4px;
}
.plan-price .currency { font-size: 18px; font-weight: 600; color: var(--text-muted); }
.plan-price .amount {
  font-size: 56px; font-weight: 800; color: var(--text-bright);
  letter-spacing: -0.03em; line-height: 1;
}
.plan-meta { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.plan-bullets {
  display: flex; flex-direction: column; gap: 12px;
  margin: 8px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
}
.plan-bullets .b {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text); line-height: 1.45;
}
.plan-bullets .b svg { color: var(--primary); flex-shrink: 0; margin-top: 1px; }

.plan-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
.btn-outline-primary {
  background: transparent; color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary); color: white;
}

@media (max-width: 1000px) {
  .plans-grid { grid-template-columns: 1fr; gap: 20px; }
  .plans-intro { padding-right: 0; margin-bottom: 8px; }
  .plans-intro p { max-width: none; }
  .plan-card:hover { transform: none; }
}

/* ===== App window screenshot mock ===== */
.appshot {
  max-width: 900px;
  margin: 56px auto 0;
  background: #0d1a1a;
  border: 1px solid #1a2e2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(16, 185, 129, 0.08), 0 12px 40px rgba(0,0,0,0.5);
  perspective: 1200px;
  transform: perspective(1200px) rotateX(2deg);
  transition: transform 0.4s ease;
}
.appshot:hover { transform: perspective(1200px) rotateX(0deg); }
.appshot-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #0a1414;
  border-bottom: 1px solid #1a2e2e;
}
.appshot-bar .d { width: 11px; height: 11px; border-radius: 50%; }
.appshot-bar .d.r { background: #ff5f57; }
.appshot-bar .d.y { background: #febc2e; }
.appshot-bar .d.g { background: #28c840; }
.appshot-bar-title {
  margin-left: 12px; font-size: 11.5px; color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}
.appshot img { display: block; width: 100%; height: auto; }

/* ===== IA Section ===== */
.ia-section {
  background: linear-gradient(180deg, transparent, var(--bg-card) 30%, var(--bg-card) 70%, transparent);
}
.ia-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: center;
}
.ia-shot {
  background: #0d1a1a;
  border: 1px solid #1a2e2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(16, 185, 129, 0.08), 0 12px 40px rgba(0,0,0,0.5);
  transform: perspective(1200px) rotateY(-3deg);
  transition: transform 0.4s ease;
}
.ia-shot:hover { transform: perspective(1200px) rotateY(0deg); }
.ia-shot img { display: block; width: 100%; height: auto; }
.ia-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.ia-feat { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text); }
.ia-feat svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 860px) {
  .ia-grid { grid-template-columns: 1fr; gap: 36px; }
  .appshot { transform: none; }
  .ia-shot { transform: none; }
}

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tstm-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-links .btn { display: inline-flex; }
  .section { padding: 80px 0; }
  .pricing-card { padding: 40px 24px; }
  .container { padding: 0 20px; }
}
