@charset "UTF-8";

:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-hover: #161616;
  --text: #EDEDED;
  --muted: #888888;
  --accent: #D97757;
  --accent-h: #E69173;
  --border: #222222;
  --border-acc: rgba(217, 119, 87, 0.3);
  --bg-acc: rgba(217, 119, 87, 0.05);
  
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Instrument Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(255,255,255,0.048) 1px, transparent 1px);
  background-size: 26px 26px;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ════════ TYPOGRAPHY & UTILS ════════ */
.mono-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.accent { color: var(--accent); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ════════ BUTTONS ════════ */
.btn-slate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.btn-slate:hover {
  background: #ffffff;
  transform: translateY(-1px);
}
.btn-slate kbd {
  background: rgba(0,0,0,0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
}
.btn-slate--lg {
  background: var(--accent);
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
}
.btn-slate--lg:hover {
  background: var(--accent-h);
}

/* PIPS */
.pip {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 6px;
}
.pip--active { background: #6CC280; }
.pip--pulse {
  background: #f59e0b;
  animation: pip-pulse 1.2s ease-in-out infinite;
}
@keyframes pip-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

/* ════════ NAV ════════ */
.nav-slate {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-slate__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ════════ HERO SLATE ════════ */
.hero-slate {
  padding: 160px 24px 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-slate__container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.badge-slate {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-slate__h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-slate__sub {
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 64px;
}

/* TERMINAL SIMULATOR */
.hero-slate__terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}
.term-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  background: #0d0d0d;
}
.term-dots { display: flex; gap: 6px; }
.term-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #333;
}
.term-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.term-body {
  padding: 24px;
  height: 360px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(217,119,87,0.35) transparent;
}
.term-body::-webkit-scrollbar {
  width: 4px;
}
.term-body::-webkit-scrollbar-track {
  background: transparent;
}
.term-body::-webkit-scrollbar-thumb {
  background: rgba(217,119,87,0.35);
  border-radius: 4px;
}
.term-body::-webkit-scrollbar-thumb:hover {
  background: rgba(217,119,87,0.6);
}

/* CHAT UI IN TERMINAL */
.c-chat { display: flex; flex-direction: column; gap: 24px; }
.c-msg { display: flex; gap: 16px; }
.c-avatar {
  width: 28px; height: 28px;
  border-radius: 4px;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px;
}
.c-avatar--claude { background: var(--accent); color: #fff; }
.c-text { flex: 1; font-size: 14px; }
.c-status { color: #6CC280; font-family: var(--mono); font-size: 12px; display: block; margin-bottom: 8px; }
.c-code-block {
  margin-top: 16px;
  background: #050505;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px;
}
.c-code-block pre {
  font-family: var(--mono);
  font-size: 13px;
  color: #a3a3a3;
  overflow-x: auto;
}

/* ════════ HERO CATEGORIES ════════ */
.hero-cats {
  padding: 20px 24px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero-cats__label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.hero-cats__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hero-cat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, background 0.2s;
}
.hero-cat-pill:hover {
  border-color: var(--accent);
  background: rgba(99,102,241,0.06);
}
.hero-cat-pill__n {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.hero-cat-pill__name {
  font-size: 13px;
  color: var(--text);
}

/* ════════ TICKER SLATE ════════ */
.ticker-slate {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  background: #050505;
  white-space: nowrap;
}
.ticker-slate__track {
  display: inline-block;
  animation: scroll 30s linear infinite;
}
.ticker-slate__item {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  margin-right: 32px;
}
.ticker-slate__item .separator { color: var(--border); margin-left: 32px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ════════ SPLIT NARRATIVE ════════ */
.split-narrative {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.split-pane { flex: 1; padding: 120px 5%; }
.split-pane--left {
  border-right: 1px solid var(--border);
  background: #0d0d0d;
}
.split-sticky {
  position: sticky;
  top: 120px;
}
.split-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 24px 0;
}
.split-p { color: var(--muted); font-size: 18px; max-width: 400px; }

.split-cards { display: flex; flex-direction: column; gap: 64px; }
.s-card { border-left: 1px solid var(--border); padding-left: 32px; }
.s-card__icon {
  width: 40px; height: 40px;
  margin-bottom: 24px;
  color: var(--accent);
}
.s-card h3 { font-size: 24px; margin-bottom: 12px; font-weight: 500; }
.s-card p { color: var(--muted); }

/* ════════ LEDGER REGISTRY ════════ */
.ledger {
  padding: 120px 5%;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ledger::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(217,119,87,0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.ledger > * { position: relative; z-index: 1; }
.ledger-header {
  margin-bottom: 64px;
  text-align: center;
}
.ledger-header > p { margin-left: auto; margin-right: auto; }
.ledger-h2 {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.ledger-table { border-top: 1px solid var(--border); }
.ledger-row {
  display: grid;
  grid-template-columns: 80px 2fr 1fr 120px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.2s;
}
.ledger-row:hover:not(.ledger-row--header) { background: var(--surface); }
.ledger-row--header {
  padding: 16px 0;
  border-bottom: 1px solid var(--muted);
}
.l-col { font-size: 14px; }
.ledger-row--header .l-col {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
}

/* ════════ FEATURES GRID ════════ */
.features-grid { padding: 120px 0; border-bottom: 1px solid var(--border); }
.section-title { font-family: var(--font-display); font-size: 40px; margin-bottom: 64px; text-align: center;}
.f-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.f-card {
  background: var(--bg);
  padding: 40px 32px;
}
.f-card__n { margin-bottom: 24px; color: var(--accent); }
.f-card__title { font-size: 20px; margin-bottom: 12px; }
.f-card__desc { color: var(--muted); font-size: 14px; }

/* ════════ REVIEWS SLATE ════════ */
.reviews-slate { padding: 120px 0; border-bottom: 1px solid var(--border); background: #080808; }
.reviews-header { margin-bottom: 64px; }
.reviews-carousel {
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.r-slide {
  min-width: 100%;
  box-sizing: border-box;
}
.reviews-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.rc-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.rc-arrow:hover {
  border-color: var(--border-acc);
  background: rgba(99,102,241,0.1);
}
.rc-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: none;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.rc-dot--active {
  background: var(--accent);
  transform: scale(1.4);
}
.r-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
}
.r-card__header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.r-avatar {
  width: 40px; height: 40px;
  background: var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
}
.r-name { font-weight: 500; margin-bottom: 4px; }
.r-role { color: var(--muted); }
.r-pain { color: var(--muted); font-size: 14px; margin-bottom: 24px; font-style: italic; }
.r-fix {
  font-family: var(--mono);
  font-size: 12px;
  color: #6CC280;
  display: flex; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--border);
}

/* ════════ FAQ SLATE ════════ */
.faq-slate { padding: 120px 0; border-bottom: 1px solid var(--border); }
.faq-slate__inner { max-width: 800px; margin: 0 auto; }
.faq-header { margin-bottom: 64px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 24px 0; color: var(--text); font-size: 18px; font-weight: 500;
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  font-family: var(--font);
}
.faq-q span { color: var(--muted); }
.faq-icon { width: 20px; height: 20px; margin-left: auto; transition: transform 0.3s; color: var(--muted); }
.faq-a {
  height: 0; overflow: hidden; transition: height 0.3s var(--ease);
}
.faq-a p { padding-bottom: 32px; padding-left: 36px; color: var(--muted); display: flex; gap: 16px; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--accent); }

/* ════════ PRICING ════════ */
.pricing { padding: 120px 5%; background: #050505; }
.pricing-container { max-width: 1000px; margin: 0 auto; }
.pricing-box {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
}
.p-box__left { flex: 1; padding: 64px; border-right: 1px solid var(--border); }
.p-box__right { flex: 1; padding: 64px; background: var(--bg); }
.p-box__title { font-family: var(--font-display); font-size: 32px; margin: 16px 0; }
.p-box__desc { color: var(--muted); margin-bottom: 40px; }
.p-box__price { font-size: 64px; font-weight: 700; line-height: 1; margin-bottom: 40px; font-family: var(--font-display); letter-spacing: -0.04em;}
.p-box__cents { font-size: 24px; color: var(--muted); }
.p-box__freq { font-size: 14px; color: var(--muted); display: block; margin-top: 8px; font-family: var(--font); letter-spacing: 0;}
.p-box__guarantee { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 24px; text-align: center;}

.p-list-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.p-list-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.bonus-tag { background: var(--bg-acc); color: var(--accent); font-family: var(--mono); font-size: 10px; padding: 2px 6px; border-radius: 4px; margin-right: 8px; border: 1px solid var(--border-acc);}

/* ════════ GUARANTEE SLATE ════════ */
.guarantee-slate { background: #0A0A0A; padding: 120px 0; border-top: 1px solid var(--border); }
.g-icon { color: var(--accent); width: 48px; height: 48px; margin: 0 auto 24px; }
.g-title { font-family: var(--font-display); font-size: 32px; margin-bottom: 16px; }
.g-desc { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 16px; line-height: 1.7; }
.text-center { text-align: center; }

/* ════════ FOOTER ════════ */
.footer-slate { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-slate__inner { display: flex; justify-content: space-between; align-items: center; }
.f-brand { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.f-links a { color: var(--muted); font-size: 14px; text-decoration: none; margin-left: 24px; }
.f-links a:hover { color: var(--text); }

/* ════════ HERO AMBIENT GLOW ════════ */
.hero-slate { position: relative; }
.hero-slate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 600px at 50% -50px, rgba(217,119,87,0.11) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-slate > * { position: relative; z-index: 1; }

/* ════════ GLASS PANEL ════════ */
.glass-panel {
  background: rgba(17,17,17,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ════════ TECH STACK TICKER ════════ */
.tech-ticker {
  padding: 0;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.tech-ticker__track {
  display: inline-flex;
  align-items: stretch;
  animation: scroll 22s linear infinite;
}
.tech-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-right: 1px solid var(--border);
  transition: color 0.2s;
}
.tech-ticker__item:hover { color: var(--text); }
.tech-ticker__item svg { width: 15px; height: 15px; opacity: 0.5; }

/* ════════ CHAT DEMO SECTION ════════ */
.chat-demo {
  padding: 120px 5%;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: #080808;
}
.chat-demo::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 700px;
  background: radial-gradient(ellipse, rgba(217,119,87,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.chat-demo__header { text-align: center; margin-bottom: 80px; position: relative; }
.chat-demo__header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  margin: 16px 0;
}
.chat-demo__header p { color: var(--muted); font-size: 18px; max-width: 520px; margin: 0 auto; }

.chat-demo__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
  position: relative;
}
.chat-demo__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  padding-top: 56px;
}
.vs-badge {
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 10px; color: var(--muted);
}

/* Mac window */
.mac-window {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.mac-window--good {
  border-color: rgba(217,119,87,0.35);
  box-shadow: 0 0 60px rgba(217,119,87,0.07), 0 24px 60px rgba(0,0,0,0.5);
}
.mac-window--bad { box-shadow: 0 24px 60px rgba(0,0,0,0.5); }

.mac-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: #0d0d0d;
  border-bottom: 1px solid var(--border);
}
.mac-dots { display: flex; gap: 6px; }
.mac-dot { width: 10px; height: 10px; border-radius: 50%; }
.mac-dot--r { background: #FF5F57; }
.mac-dot--y { background: #FFBD2E; }
.mac-dot--g { background: #28C840; }
.mac-label { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.mac-badge {
  margin-left: auto;
  padding: 3px 8px; border-radius: 4px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
}
.mac-badge--bad { background: rgba(255,95,87,0.1); color: #FF5F57; border: 1px solid rgba(255,95,87,0.2); }
.mac-badge--good { background: rgba(217,119,87,0.12); color: var(--accent); border: 1px solid var(--border-acc); }

.mac-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }

.mc-msg { display: flex; gap: 10px; }
.mc-avatar {
  width: 22px; height: 22px; border-radius: 3px;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 9px; color: var(--muted);
  flex-shrink: 0;
}
.mc-avatar--claude { background: var(--accent); color: #fff; }
.mc-text { font-size: 13px; line-height: 1.55; color: var(--text); padding-top: 2px; }
.mc-text--muted { color: #444; }

.mc-inject {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px;
  background: rgba(217,119,87,0.06);
  border: 1px solid var(--border-acc);
  border-radius: var(--r-sm);
  font-family: var(--mono); font-size: 11px; color: var(--accent);
}
.mc-inject svg { width: 12px; height: 12px; flex-shrink: 0; }

.mc-output {
  background: #050505;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.mc-output-line {
  font-family: var(--mono); font-size: 11.5px;
  padding: 7px 14px;
  border-bottom: 1px solid #111;
  display: flex; align-items: center; gap: 8px;
  color: var(--muted);
}
.mc-output-line:last-child { border-bottom: none; }
.mc-ok { color: #6CC280; }
.mc-acc { color: var(--accent); }
.mc-dim { color: #333; }

/* ════════ DEMO TABS ════════ */
.demo-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  position: relative;
}
.demo-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  font-size: 12px;
  font-family: var(--mono);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.demo-tab:hover {
  border-color: rgba(217,119,87,0.45);
  color: var(--fg);
}
.demo-tab.active {
  background: rgba(217,119,87,0.1);
  border-color: var(--accent);
  color: var(--accent);
}
.demo-tab svg { flex-shrink: 0; opacity: 0.7; }
.demo-tab.active svg { opacity: 1; }

/* mac-body fade transition */
.mac-body { transition: opacity 0.15s ease; }

/* ════════ COPY OUTPUT BLOCKS ════════ */
.mc-copy-output {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.copy-block {
  border-radius: 5px;
  border: 1px solid #161616;
  overflow: hidden;
  background: #060606;
}
.copy-block-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #3a3a3a;
  padding: 5px 10px;
  background: #080808;
  border-bottom: 1px solid #111;
}
.copy-block-content {
  padding: 9px 12px;
  font-size: 12px;
  line-height: 1.65;
  color: #b0b0b0;
}
.copy-block--cta .copy-block-label { color: rgba(217,119,87,0.5); }
.copy-block--cta .copy-block-content {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* Stat bar */
.mc-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(108,194,128,0.05);
  border: 1px solid rgba(108,194,128,0.18);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-family: var(--mono);
  flex-wrap: wrap;
}
.mc-stat__label { color: #444; }
.mc-stat__value { color: #6CC280; font-weight: 700; }
.mc-stat__compare { color: #333; }

@media (max-width: 767px) {
  .demo-tabs { gap: 8px; }
  .demo-tab { font-size: 11px; padding: 8px 14px; }
}

/* ════════ DEMO ANIMATION ════════ */
.mc-typing { display:flex; gap:4px; align-items:center; padding:6px 2px; }
.mc-typing span { width:6px; height:6px; border-radius:50%; background:#555; animation:typing-dot 1.2s infinite ease-in-out; }
.mc-typing span:nth-child(2) { animation-delay:.2s; }
.mc-typing span:nth-child(3) { animation-delay:.4s; }
@keyframes typing-dot { 0%,60%,100%{opacity:.2;transform:scale(.8)} 30%{opacity:1;transform:scale(1)} }

.cb-enter { opacity:0 !important; transform:translateY(8px) !important; }
.copy-block { transition:opacity .35s ease, transform .35s ease; }
.mc-stat { transition:opacity .35s ease, transform .35s ease; }
.chat-demo .mac-body {
  height:420px; overflow-y:auto; scroll-behavior:smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(217,119,87,0.5) transparent;
}
.chat-demo .mac-body::-webkit-scrollbar { width:4px; }
.chat-demo .mac-body::-webkit-scrollbar-track { background:transparent; }
.chat-demo .mac-body::-webkit-scrollbar-thumb { background:rgba(217,119,87,0.5); border-radius:4px; }
.chat-demo .mac-body::-webkit-scrollbar-thumb:hover { background:rgba(217,119,87,0.85); }

/* ════════ BONUS SECTION ════════ */
.bonus-section {
  padding: 120px 5%;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.bonus-section__header { text-align: center; margin-bottom: 80px; }
.bonus-section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  margin: 16px 0;
}
.bonus-section__header p { color: var(--muted); font-size: 18px; max-width: 520px; margin: 0 auto; }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto 40px;
}
.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.bonus-card:hover {
  border-color: var(--border-acc);
  transform: translateY(-2px);
}
.bonus-card::after {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 140px; height: 140px;
  background: radial-gradient(ellipse, rgba(217,119,87,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-card__tag {
  display: inline-block;
  font-family: var(--mono); font-size: 10px;
  color: var(--accent);
  background: var(--bg-acc);
  border: 1px solid var(--border-acc);
  border-radius: var(--r-sm);
  padding: 3px 8px;
  margin-bottom: 20px;
}
.bonus-card__title { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.bonus-card__desc { color: var(--muted); font-size: 14px; margin-bottom: 24px; line-height: 1.65; }
.bonus-card__price {
  display: flex; align-items: baseline; gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.bonus-card__price .val {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text); text-decoration: line-through; opacity: 0.35;
}
.bonus-card__price .lbl { font-family: var(--mono); font-size: 11px; color: var(--muted); }

.bonus-total {
  max-width: 920px; margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--border-acc);
  border-radius: var(--r-lg);
  background: rgba(217,119,87,0.04);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.bonus-total__left {}
.bonus-total__tag { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.bonus-total__text { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.bonus-total__sub { color: var(--muted); font-size: 14px; margin-top: 6px; }
.bonus-total__right { text-align: right; flex-shrink: 0; }
.bonus-total__strike { font-family: var(--font-display); font-size: 28px; color: var(--muted); text-decoration: line-through; opacity: 0.45; }
.bonus-total__price {
  font-family: var(--font-display); font-size: 52px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--accent);
}
.bonus-total__note { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 6px; }

/* ════════ ANIMATIONS ════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.8s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }
.chat-step { opacity: 0; transform: translateY(10px); }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1100px) {
  .chat-demo__grid { grid-template-columns: 1fr; }
  .chat-demo__vs { padding: 20px 0; }
  .bonus-total { flex-direction: column; text-align: center; }
  .bonus-total__right { text-align: center; }
}
@media (max-width: 992px) {
  .split-narrative { flex-direction: column; }
  .split-pane--left { border-right: none; border-bottom: 1px solid var(--border); padding: 60px 5%; }
  .split-pane { padding: 60px 5%; }
  .split-sticky { position: static; }

  .f-grid { grid-template-columns: 1fr; }
  .pricing-box { flex-direction: column; }
  .p-box__left { border-right: none; border-bottom: 1px solid var(--border); padding: 40px; }
  .p-box__right { padding: 40px; }

  /* Guarantee seal — maior no mobile */
  .guarantee-seal { width: 200px; height: 200px; margin: 36px auto 12px; }
  .guarantee-ring { width: 200px; height: 200px; }
  .guarantee-seal__center { width: 122px; height: 122px; }
  .guarantee-days { font-size: 38px; }
  .guarantee-shield-icon { width: 28px; height: 28px; }

  .ledger-row { grid-template-columns: 60px 2fr 1fr; }
  .l-status { display: none; }
}
@media (max-width: 768px) {
  .bonus-grid { grid-template-columns: 1fr; }

  .hero-slate__h1 { font-size: 40px; }
  .hero-slate__sub { font-size: 16px; margin-bottom: 36px; }
  .ledger-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
  .ledger-row--header { display: none; }

  /* ── Seções com overflow horizontal ── */
  .chat-demo, .how-it-works, .ledger, .inside-package { overflow: hidden; }
  .chat-demo { padding: 60px 5% 80px; }
  .chat-demo__header { margin-bottom: 36px; }
  .chat-demo__header p { font-size: 15px; }
  .chat-demo__grid { grid-template-columns: 1fr; gap: 16px; }
  .chat-demo__vs { display: none; }
  .mac-window { max-width: 100%; overflow: hidden; }
  .chat-demo .mac-body { height:320px; }
  .mac-body { overflow-x: hidden; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { padding: 36px 20px; }
  .how-header h2, .ledger-h2 { font-size: clamp(26px, 7vw, 36px); }
  .inside-grid { grid-template-columns: 1fr; }
  .l-id { display: none; }
  .term-body { padding: 16px; overflow-x: hidden; }
  .c-code-block pre, .c-code-block code { white-space: pre-wrap; word-break: break-all; }
  .p-box__price { font-size: 48px; }
}

/* ═══════════════════════════════════════════
   CONVERSÃO v5 — TODAS AS MELHORIAS
   ═══════════════════════════════════════════ */

/* ════════ URGENCY BAR ════════ */
:root { --urgency-h: 40px; }

.urgency-bar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--urgency-h);
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  z-index: 200;
  padding: 0 24px;
}
.urgency-bar__countdown {
  background: rgba(0,0,0,0.22);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* Adjust nav for urgency bar */
.nav-slate { top: var(--urgency-h); }

/* ════════ SCROLL PROGRESS ════════ */
#scroll-progress {
  position: fixed;
  top: calc(var(--urgency-h) + 60px);
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 99;
  transition: width 0.08s linear;
  box-shadow: 0 0 10px rgba(217,119,87,0.7);
}

/* ════════ HERO ADJUSTMENTS ════════ */
.hero-slate { padding-top: calc(160px + var(--urgency-h)); }
.hero-slate__sub { margin: 0 auto 28px; }

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}
.hero-orb--1 {
  width: 480px; height: 320px;
  background: rgba(217,119,87,0.09);
  top: 15%; left: -8%;
  animation: float-orb 9s ease-in-out infinite;
}
.hero-orb--2 {
  width: 360px; height: 280px;
  background: rgba(217,119,87,0.06);
  top: 35%; right: -5%;
  animation: float-orb 11s ease-in-out infinite reverse;
}
@keyframes float-orb {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(3deg); }
}

/* ════════ HERO CTA BUTTON ════════ */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}
.btn-cta-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 18px 44px;
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--r-md);
  border: none;
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(217,119,87,0.5), 0 4px 20px rgba(217,119,87,0.3);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
  margin-bottom: 18px;
}
.btn-cta-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 65px rgba(217,119,87,0.65), 0 10px 32px rgba(217,119,87,0.45);
}
.btn-cta-glow svg { flex-shrink: 0; }

/* ════════ HERO SOCIAL PROOF ════════ */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.dot-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6CC280;
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero-trust-items { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.hero-trust-sep { color: var(--border); }

/* ════════ HOW IT WORKS ════════ */
.how-it-works {
  padding: 120px 5%;
  border-bottom: 1px solid var(--border);
  background: #060606;
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(217,119,87,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.how-header { text-align: center; margin-bottom: 80px; position: relative; }
.how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  margin: 16px 0;
}
.how-header p { color: var(--muted); font-size: 18px; max-width: 480px; margin: 0 auto; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto 64px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.how-step {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 36px;
  gap: 0;
}
.how-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-acc);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(217,119,87,0.12);
}
.how-step h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; margin-bottom: 12px; }
.how-step p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.how-step__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; color: #6CC280;
  margin-top: 20px;
}
.how-cta { text-align: center; }

/* ════════ CATEGORY GRID ════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: border-color 0.2s var(--ease), background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.cat-card:hover {
  border-color: var(--border-acc);
  background: var(--surface-hover);
  transform: translateY(-2px);
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(ellipse, rgba(217,119,87,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cat-card__tag { font-family: var(--mono); font-size: 10px; color: var(--accent); margin-bottom: 10px; letter-spacing: 0.12em; }
.cat-card__name { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 14px; }
.cat-card__count {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.cat-card__count strong { color: var(--text); font-size: 14px; }

/* Ledger header padding fix */
.ledger-header { margin-bottom: 48px; }

/* ════════ FEATURE CARD HOVER GLOW ════════ */
.f-card {
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease);
}
.f-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.f-card:hover::before { transform: scaleX(1); }
.f-card:hover { background: var(--surface); }
.f-card__title { font-size: 19px; }

/* ════════ INSIDE PACKAGE ════════ */
.inside-package {
  padding: 120px 5%;
  border-bottom: 1px solid var(--border);
  background-color: #080808;
  background-image: radial-gradient(circle, rgba(255,255,255,0.038) 1px, transparent 1px);
  background-size: 26px 26px;
  position: relative;
  overflow: hidden;
}
.inside-package::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(217,119,87,0.055) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.inside-package > * { position: relative; z-index: 1; }
.inside-package__inner { max-width: 860px; margin: 0 auto; }
.inside-header { text-align: center; margin-bottom: 56px; }
.inside-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em;
  margin: 16px 0;
}
.inside-header p { color: var(--muted); font-size: 17px; }
.inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 48px;
}
.inside-item {
  background: var(--bg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  transition: background 0.2s;
}
.inside-item:hover { background: var(--surface); }
.inside-item__check {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(108,194,128,0.1);
  border: 1px solid rgba(108,194,128,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #6CC280; font-size: 11px; font-weight: 700;
}

/* ════════ SECTION CTA (mid-page) ════════ */
.section-cta {
  padding: 80px 5%;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 300px at 50% 50%, rgba(217,119,87,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.section-cta > * { position: relative; z-index: 1; }
.section-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-cta p { color: var(--muted); margin-bottom: 28px; font-size: 16px; }
.section-cta__trust {
  margin-top: 16px;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}

/* ════════ REVIEWS IMPROVEMENTS ════════ */
.r-stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.r-card {
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.r-card:hover { border-color: var(--border-acc); transform: translateY(-3px); }
.r-pain {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  opacity: 0.85;
}
.r-card__header { margin-bottom: 16px; }

/* ════════ FAQ IMPROVEMENTS ════════ */
.faq-cta {
  text-align: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.faq-cta p { color: var(--muted); margin-bottom: 24px; font-size: 15px; }

/* ════════ PRICING IMPROVEMENTS ════════ */
.pricing-box {
  border-color: var(--border-acc) !important;
  box-shadow: 0 0 80px rgba(217,119,87,0.09), 0 24px 80px rgba(0,0,0,0.7) !important;
}
.p-box__badge {
  display: inline-block;
  background: rgba(108,194,128,0.1);
  border: 1px solid rgba(108,194,128,0.3);
  color: #6CC280;
  font-family: var(--mono); font-size: 11px;
  padding: 4px 10px; border-radius: 4px;
  margin-bottom: 14px; letter-spacing: 0.06em;
}
.p-box__original {
  font-family: var(--font-display); font-size: 18px;
  color: var(--muted); text-decoration: line-through; opacity: 0.5;
  margin-bottom: 4px;
}
.p-countdown {
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  flex-wrap: wrap;
}
.p-countdown__time {
  background: var(--bg);
  border: 1px solid var(--border-acc);
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 20px; font-weight: 700;
  color: var(--accent); font-family: var(--font-display);
  letter-spacing: -0.02em;
  box-shadow: 0 0 12px rgba(217,119,87,0.15);
}

/* ═══════════════════════════════════════
   SKILL BROWSER
═══════════════════════════════════════ */
.skill-browser {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 48px auto 40px;
  max-width: 960px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 32px 80px rgba(0,0,0,0.7);
}

.sb-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  background: #181818;
  border-bottom: 1px solid var(--border);
}

.sb-dots { display: flex; gap: 6px; flex-shrink: 0; }
.sb-dot { width: 12px; height: 12px; border-radius: 50%; }
.sb-dot--red    { background: #FF5F57; }
.sb-dot--yellow { background: #FFBD2E; }
.sb-dot--green  { background: #28CA41; }

.sb-search {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 5px 10px;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  font-family: var(--mono);
  max-width: 240px;
  flex: 1;
}

.sb-wintitle {
  margin-left: auto;
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(255,255,255,0.2);
}

.sb-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  height: 700px;
}

.sb-sidebar-wrap {
  position: relative;
  border-right: 1px solid var(--border);
  overflow: hidden;
}
.sb-scroll-hint {
  display: none;
}
.sb-sidebar {
  height: 100%;
  border-right: none;
  background: #111;
  overflow: hidden;
  padding: 10px 0;
}

.sb-sidebar__label {
  font-size: 9px;
  font-family: var(--mono);
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  padding: 0 14px 8px;
}

.sb-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 14px;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  font-family: var(--sans);
  text-align: left;
  gap: 6px;
  transition: background 0.15s, color 0.15s;
  line-height: 1.3;
}

.sb-cat-item:hover {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.75);
}

.sb-cat-item.active {
  background: rgba(217,119,87,0.1);
  color: var(--accent);
  border-left-color: var(--accent);
}

.sb-cat-item__name { flex: 1; }
.sb-cat-item__count {
  font-size: 10px;
  font-family: var(--mono);
  opacity: 0.4;
  flex-shrink: 0;
}

.sb-detail {
  padding: 0;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
}

.sb-skill-panel { display: none; flex-direction: column; height: 100%; }
.sb-skill-panel.active { display: flex; animation: panel-in 0.22s ease both; }
@keyframes panel-in {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

.sb-detail__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.sb-tag {
  font-size: 10px;
  font-family: var(--mono);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.sb-tag--id {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}

.sb-tag--level {
  background: rgba(217,119,87,0.1);
  color: var(--accent);
  border: 1px solid rgba(217,119,87,0.2);
}

.sb-detail__title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
  line-height: 1.3;
}

.sb-detail__cat {
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(255,255,255,0.25);
  margin: 0 0 10px;
}

.sb-detail__obj {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 14px;
  line-height: 1.6;
}

.sb-detail__when-label,
.sb-detail__prompt-label {
  font-size: 9px;
  font-family: var(--mono);
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.sb-detail__when {
  margin: 0 0 14px;
  padding-left: 16px;
}

.sb-detail__when li {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
  line-height: 1.5;
}

.sb-detail__prompt {
  background: #080808;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(255,255,255,0.55);
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0 0 14px;
  line-height: 1.6;
}

.sb-detail__examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sb-example {
  border-radius: 6px;
  padding: 10px 12px;
}

.sb-example--input  {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.sb-example--output {
  background: rgba(217,119,87,0.05);
  border: 1px solid rgba(217,119,87,0.12);
}

.sb-example__label {
  display: block;
  font-size: 9px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.sb-example--input  .sb-example__label { color: rgba(255,255,255,0.22); }
.sb-example--output .sb-example__label { color: rgba(217,119,87,0.7); }

.sb-example__text {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.sb-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 12px 24px;
  background: #111;
  border-top: 1px solid var(--border);
}

.sb-stat {
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.4;
}

.sb-stat__n {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

/* Footer legal notice */
.footer-legal {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 5% 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,0.25);
}

/* Chat status done variant */
.c-status--done {
  color: rgba(108,194,128,0.8);
}

@media (max-width: 768px) {
  .sb-body {
    grid-template-columns: 1fr;
    height: auto;
  }
  .sb-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 4px;
    scrollbar-width: none;
  }
  .sb-sidebar::-webkit-scrollbar { display: none; }
  .sb-sidebar__label { display: none; }
  .sb-cat-item {
    flex-direction: column;
    align-items: center;
    min-width: max-content;
    padding: 7px 12px;
    border-left: none;
    border-bottom: 2px solid transparent;
    gap: 2px;
    font-size: 11px;
  }
  .sb-cat-item.active {
    border-left-color: transparent;
    border-bottom-color: var(--accent);
  }
  .sb-cat-item__count { font-size: 9px; }
  .sb-detail { padding: 16px; }
  .sb-detail__examples { grid-template-columns: 1fr; }
  .sb-footer { gap: 20px; flex-wrap: wrap; }
  .sb-wintitle { display: none; }
}

/* ════════ BONUS FREE BADGE ════════ */
.bonus-free-badge {
  display: inline-block;
  background: rgba(108,194,128,0.12);
  color: #6CC280;
  border: 1px solid rgba(108,194,128,0.3);
  border-radius: 3px;
  padding: 1px 6px; font-size: 9px;
  margin-left: 8px; vertical-align: middle;
  font-weight: 700;
}

/* ════════ STICKY MOBILE CTA ════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  padding: 8px 12px 10px;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-acc);
  z-index: 150;
}
.sticky-cta a {
  display: block; width: 100%;
  background: var(--accent); color: #fff;
  text-align: center; padding: 12px 8px;
  border-radius: var(--r-md);
  font-weight: 700; font-size: 14px;
  text-decoration: none; font-family: var(--font-display);
  box-shadow: 0 0 28px rgba(217,119,87,0.45);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ════════ ADDITIONAL RESPONSIVE ════════ */
@media (max-width: 768px) {
  :root { --urgency-h: 36px; }
  .urgency-bar { font-size: 10px; gap: 6px; }
  .sticky-cta { display: block; }
  body { padding-bottom: 58px; }
  .how-steps { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .inside-grid { grid-template-columns: 1fr; }
  .btn-cta-glow { padding: 16px 28px; font-size: 15px; }
  .hero-trust-items { flex-direction: column; gap: 4px; }
  .hero-trust-sep { display: none; }
  .faq-cta { padding: 32px 0; }
}
@media (max-width: 480px) {
  .urgency-bar { justify-content: center; }
  .how-step { padding: 36px 24px; }
  .p-box__price { font-size: 52px; }
}

/* ════════ HERO SKILL DEMO INTERATIVO ════════ */
.hsd-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hsd-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-right: 4px;
  flex-shrink: 0;
}
.hsd-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-family: var(--mono);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.hsd-pill:hover {
  border-color: var(--border-acc);
  color: var(--accent);
}
.hsd-pill.active {
  background: var(--bg-acc);
  border-color: var(--border-acc);
  color: var(--accent);
}
.hsd-typing-cursor::after {
  content: '▋';
  animation: cursor-blink 0.7s step-end infinite;
  color: var(--accent);
  margin-left: 1px;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.c-status--loading {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}
.hsd-dots span {
  display: inline-block;
  animation: dot-bounce 1.2s infinite ease-in-out both;
  opacity: 0.5;
}
.hsd-dots span:nth-child(2) { animation-delay: 0.2s; }
.hsd-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.3; }
  40% { transform: translateY(-5px); opacity: 1; }
}
.hsd-response {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  margin-top: 8px;
}
.hsd-response strong { color: var(--accent); font-weight: 600; }
.hsd-response .c-code-block { margin-top: 12px; }

/* Injection animation lines */
.hsd-inject-line {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
  line-height: 1.7;
}
.hsd-inject-line em {
  font-style: normal;
  color: rgba(255,255,255,0.55);
}
.hsd-inject-prompt {
  color: var(--accent);
  margin-right: 5px;
}
.hsd-inject-ok {
  color: #6CC280 !important;
}

/* ════════ SKILL BROWSER — TABS & ENHANCEMENTS ════════ */

/* Sidebar group labels */
.sb-group-label {
  font-size: 9px;
  font-family: var(--mono);
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 14px 5px;
  pointer-events: none;
}

/* Search input inside .sb-search */
.sb-search input {
  background: none;
  border: none;
  outline: none;
  color: rgba(255,255,255,0.65);
  font-family: var(--mono);
  font-size: 12px;
  width: 100%;
  padding: 0;
}
.sb-search input::placeholder { color: rgba(255,255,255,0.22); }

/* Tab bar */
.sb-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}
.sb-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.35);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
  text-transform: uppercase;
}
.sb-tab:hover { color: rgba(255,255,255,0.65); }
.sb-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Tab content panels */
.sb-tab-content {
  display: none;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding: 20px 24px;
  flex: 1;
}
.sb-tab-content.active {
  display: flex;
  animation: tab-in 0.18s ease both;
}
@keyframes tab-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* I/O tab header */
.sb-io-header {
  font-size: 10px;
  font-family: var(--mono);
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* Full-width I/O example */
.sb-example--lg { grid-column: 1 / -1; }

/* Preview prompt full height */
.sb-detail__prompt--full {
  flex: 1;
  margin: 0;
  overflow-y: auto;
}

/* No-results message for search */
.sb-no-results {
  display: none;
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(255,255,255,0.2);
  padding: 20px 14px;
  text-align: center;
}
.sb-no-results.visible { display: block; }

/* ════════ GUARANTEE SEAL ════════ */
.guarantee-seal {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px auto 4px;
}
.guarantee-ring {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  animation: gs-spin 22s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.guarantee-ring__text {
  font-family: var(--mono);
  font-size: 10px;
  fill: var(--accent);
  letter-spacing: 0.07em;
}
@keyframes gs-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.guarantee-seal__center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 136px;
  background: rgba(217,119,87,0.07);
  border: 1.5px solid rgba(217,119,87,0.28);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(217,119,87,0.13);
  gap: 2px;
}
.guarantee-shield-icon {
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 2px;
}
.guarantee-days {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: var(--font-display);
}
.guarantee-days-label {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--accent);
  letter-spacing: 0.16em;
  margin-top: 2px;
}

/* ════════ SKILL BROWSER — MOBILE ════════ */
@media (max-width: 768px) {
  .sb-win {
    border-radius: 10px;
    overflow: hidden;
  }
  .sb-topbar {
    padding: 10px 12px;
    gap: 8px;
  }
  .sb-search { max-width: none; }
  .sb-wintitle { display: none; }

  .sb-body {
    grid-template-columns: 1fr;
    height: auto;
  }

  /* Sidebar vira scroll horizontal de pills */
  .sb-sidebar {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 10px;
    gap: 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    scrollbar-width: none;
  }
  .sb-sidebar::-webkit-scrollbar { display: none; }
  /* Sem mask-image no mobile — seta já indica scroll */
  .sb-sidebar {
    -webkit-mask-image: none;
    mask-image: none;
  }

  /* Wrapper no mobile — grid item contido */
  .sb-sidebar-wrap {
    display: block;
    position: relative;
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-width: 0;
    overflow-x: hidden;
  }
  .sb-sidebar {
    height: auto;
    width: 100%;
  }

  /* Indicador de scroll */
  .sb-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 32px;
    background: linear-gradient(to right, transparent, #111 60%);
    color: rgba(255,255,255,0.5);
    pointer-events: none;
    transition: opacity 0.3s;
    animation: hint-pulse 1.8s ease-in-out infinite;
  }
  .sb-scroll-hint.hidden { opacity: 0; }

  @keyframes hint-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  .sb-group-label { display: none; }

  .sb-cat-item {
    flex-shrink: 0;
    white-space: nowrap;
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 6px 14px;
    border-radius: 0;
    font-size: 12px;
  }
  .sb-cat-item.active {
    background: rgba(217,119,87,0.08);
    border-left-color: transparent;
    border-bottom-color: var(--accent);
  }
  .sb-cat-item__count { display: none; }
  .sb-no-results { display: none !important; }

  /* Detail panel — respeita largura do container no mobile */
  .sb-body > .sb-detail { max-height: none; overflow: hidden; min-width: 0; width: 100%; }

  .sb-tabs { padding: 0 12px; }
  .sb-tab { padding: 9px 10px; font-size: 10px; }

  .sb-tab-content { padding: 16px; gap: 10px; }

  .sb-detail__title { font-size: 15px; word-break: break-word; }
  .sb-detail__obj { font-size: 12px; word-break: break-word; }

  /* Painéis — largura 100% do container */
  .sb-skill-panel.active {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
  .sb-tab-content {
    overflow-x: hidden;
  }
  .sb-detail__title,
  .sb-detail__obj,
  .sb-detail__cat,
  .sb-detail__when li,
  .sb-detail p {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .sb-detail__prompt {
    white-space: pre-wrap;
    word-break: break-all;
    overflow-x: hidden;
  }

  /* ── Badge hero ── */
  .badge-slate {
    font-size: 10px;
    padding: 5px 10px;
    flex-wrap: wrap;
    gap: 3px;
    justify-content: center;
    line-height: 1.6;
  }

  /* ── Hero trust items ── */
  .hero-trust-items {
    flex-wrap: wrap;
    gap: 4px 0;
    justify-content: center;
  }

  /* ── Hero categories ── */
  .hero-cats { padding: 16px 16px 20px; }
  .hero-cats__grid { gap: 8px; }
  .hero-cat-pill { padding: 6px 12px; }
  .hero-cat-pill__n { font-size: 12px; }
  .hero-cat-pill__name { font-size: 12px; }

  /* ── Reviews carousel ── */
  .r-slide { padding: 24px 20px; }
  .reviews-carousel__nav { margin-top: 24px; }
}

/* ════════ TESTIMONIALS COLUMNS ════════ */
.tc-cols {
  display: flex;
  gap: 24px;
  max-height: 740px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.tc-col { flex: 1; overflow: hidden; }
.tc-col--md { display: none; }
.tc-col--lg { display: none; }
@media (min-width: 768px) { .tc-col--md { display: block; } }
@media (min-width: 1024px) { .tc-col--lg { display: block; } }

@keyframes tcScrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.tc-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: tcScrollUp 18s linear infinite;
}
.tc-track--s2 { animation-duration: 22s; }
.tc-track--s3 { animation-duration: 20s; }
.tc-col:hover .tc-track { animation-play-state: paused; }

.tc-card {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.tc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px 18px rgba(0, 0, 0, 0.82);
  border-radius: var(--r-md);
  pointer-events: none;
}
.tc-card__img { width: 100%; display: block; }

/* ════════ CATEGORIES EXPAND ════════ */
.cat-grid--extra {
  display: none;
}
.cat-grid--extra.cat-grid--visible {
  display: grid;
}
.cat-expand-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.cat-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.cat-expand-btn:hover {
  border-color: var(--border-acc);
  background: var(--bg-acc);
}