/* ===================================================================
   DETBOX V2 - Based on Struct Produto layout + purple accent
   Montserrat + JetBrains Mono | Dark minimal product showcase
   =================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #090b14;
  --surface: #0f1219;
  --card: #0d0f17;
  --border: rgba(255,255,255,0.06);
  --border-h: rgba(255,255,255,0.12);
  --t1: #f4f4f5;
  --t2: #a1a1aa;
  --t3: #71717a;
  --accent: #9333ea;
  --accent-dim: #7c3aed;
  --accent-soft: rgba(147,51,234,0.06);
  --accent-border: rgba(147,51,234,0.18);
  --accent-glow: rgba(147,51,234,0.08);
  --font: 'Montserrat', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --max: 1120px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font); font-weight: 400; font-size: 1rem;
  line-height: 1.65; color: var(--t2); background: var(--bg);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: white; }

.grain {
  position: fixed; inset: 0; z-index: 50; pointer-events: none; opacity: 0.02;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.container { max-width: var(--max); margin: 0 auto; padding-inline: 2rem; }
strong { color: var(--t1); font-weight: 600; }

/* --- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 600; font-size: 0.85rem;
  text-decoration: none; padding: 0.7rem 1.6rem; border-radius: 10px;
  border: none; cursor: pointer; transition: all 0.35s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-fill { background: var(--accent-dim); color: white; box-shadow: 0 2px 12px rgba(124,58,237,0.25); }
.btn-fill:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(124,58,237,0.3); }
.btn-outline { background: transparent; color: var(--t2); border: 1px solid rgba(255,255,255,0.1); }
.btn-outline:hover { border-color: var(--accent-border); color: var(--accent); background: var(--accent-soft); }
.btn-full { width: 100%; }
.btn-lg { padding: 0.85rem 2rem; font-size: 0.9rem; }

/* === HERO =========================================================== */
.hero {
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(9,11,20,0.55) 0%, rgba(9,11,20,0.3) 40%, rgba(9,11,20,0.7) 75%, var(--bg) 100%),
    radial-gradient(ellipse at center top, transparent 30%, var(--bg) 80%);
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  opacity: 0; transition: opacity 1s ease-in-out;
}
.hero-bg-img.active { opacity: 0.18; }

.hero .container { position: relative; z-index: 2; }

.hero-logo {
  display: inline-flex; align-items: center;
  margin-bottom: 2rem;
}
.hero-logo-img { height: 210px; width: auto; image-rendering: auto; filter: drop-shadow(0 4px 24px rgba(147,51,234,0.2)); }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.08;
  color: var(--t1); margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: var(--t2); line-height: 1.75; max-width: 580px; margin: 0 auto 3rem;
  text-wrap: balance;
}

.hero-stats { display: flex; justify-content: center; gap: clamp(2.5rem, 5vw, 5rem); }
.hero-stat { text-align: center; }
.hero-stat-n {
  display: block; font-family: var(--mono); font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600; color: var(--t1); line-height: 1;
}
.hero-stat-l {
  display: block; font-size: 0.68rem; font-weight: 500; color: var(--t3);
  margin-top: 0.4rem; letter-spacing: 0.04em;
}

.hero-update {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 2rem;
}
.hero-update-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
  animation: heroDotPulse 2s ease-in-out infinite;
}
@keyframes heroDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.hero-update span {
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--t3);
}

.hero-cta {
  display: flex; justify-content: center; gap: 0.75rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}

/* === SECTION COMMON ================================================= */
.sec { padding: clamp(2rem, 3vw, 2.5rem) 0; }
.sec-head { text-align: center; margin-bottom: clamp(1rem, 2vw, 1.5rem); }
.sec-head .pre {
  display: block; font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.65rem;
}
.sec-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--t1);
  text-wrap: balance;
}
.sec-desc {
  font-size: 0.92rem; color: var(--t3); line-height: 1.7;
  max-width: 580px; margin: 1rem auto 0; text-wrap: balance;
}

/* === PERFORMANCE ==================================================== */
.tools, .precast, .gallery, .faq, .sec {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* === VIDEO SHOWCASE ================================================== */
.videos { padding: clamp(2rem, 3vw, 2.5rem) 0; border-top: 1px solid var(--border); }

.video-featured { position: relative; margin-bottom: 1.5rem; }
.video-player {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
}
.video-player video { width: 100%; display: block; transition: opacity 0.2s ease; }
.video-label {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: white; background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 0.4rem 0.85rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.video-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.video-thumb {
  background: none; border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; cursor: pointer; padding: 0;
  transition: all 0.25s var(--ease); display: flex; flex-direction: column;
}
.video-thumb:hover { border-color: var(--border-h); }
.video-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 4px 20px var(--accent-glow);
}
.video-thumb video {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; pointer-events: none;
}
.video-thumb span {
  display: block; font-family: var(--mono); font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.04em; color: var(--t3);
  padding: 0.45rem 0.5rem; text-align: center; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.video-thumb.active span { color: var(--accent); }

/* === RIBBON ========================================================= */
.ribbon-marquee {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); margin-bottom: 1.25rem;
}
.ribbon-marquee::before, .ribbon-marquee::after {
  content:""; position: absolute; top: 0; bottom: 0; width: 3rem; z-index: 2; pointer-events: none;
}
.ribbon-marquee::before { left: 0; background: linear-gradient(to right, var(--card), transparent); }
.ribbon-marquee::after { right: 0; background: linear-gradient(to left, var(--card), transparent); }
.ribbon-track {
  display: flex; align-items: stretch; gap: 0.9rem; width: max-content;
  animation: ribbonScroll 90s linear infinite; padding: 1.15rem 0.75rem;
}
.ribbon-panel {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 0.85rem 0.95rem 0.65rem;
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px; flex-shrink: 0;
}
.ribbon-panel-buttons { display: flex; align-items: flex-start; gap: 0.25rem; flex: 1; }
.ribbon-panel-label {
  text-align: center; font-family: var(--mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
  padding-top: 0.4rem; margin-top: 0.6rem;
  border-top: 1px solid rgba(147,51,234,0.1); white-space: nowrap;
}
.ribbon-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0.35rem; border-radius: 6px; flex-shrink: 0;
}
.ribbon-btn img { width: 32px; height: 32px; }
.ribbon-btn span { font-size: 0.56rem; font-weight: 500; color: var(--t3); text-align: center; line-height: 1.2; white-space: pre-line; }
.ribbon-group { display: flex; flex-direction: column; gap: 0.3rem; flex-shrink: 0; }
.ribbon-group-buttons {
  display: flex; align-items: flex-start; gap: 0.15rem;
  padding: 0.3rem 0.35rem; background: rgba(147,51,234,0.03);
  border: 1px solid rgba(147,51,234,0.06); border-radius: 6px;
}
.ribbon-group-label {
  font-family: var(--mono); font-size: 0.48rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--t3);
  text-align: center; white-space: nowrap;
}
@keyframes ribbonScroll { from { transform: translateX(0); } to { transform: translateX(-25%); } }

/* === TOOLS ========================================================== */
.tools { padding: clamp(2rem, 3vw, 2.5rem) 0; }

.tools-split {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--card);
}

.tools-tabs {
  display: flex; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.15); overflow-x: auto; scrollbar-width: none;
}
.tools-tabs::-webkit-scrollbar { display: none; }

.tools-tab {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.5rem; background: none; border: none; cursor: pointer;
  text-align: center; transition: all 0.25s var(--ease);
  border-right: 1px solid var(--border); position: relative;
  white-space: nowrap; flex: 1; justify-content: center;
}
.tools-tab:last-child { border-right: none; }
.tools-tab::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--accent); opacity: 0; transition: opacity 0.25s var(--ease);
}
.tools-tab:hover { background: rgba(255,255,255,0.02); }
.tools-tab.active { background: rgba(147,51,234,0.04); }
.tools-tab.active::after { opacity: 1; }

.tools-tab-icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--t3); opacity: 0.5; transition: all 0.25s var(--ease); }
.tools-tab.active .tools-tab-icon { color: var(--accent); opacity: 1; }
.tools-tab-name { font-size: 0.82rem; font-weight: 600; color: var(--t3); transition: color 0.2s; }
.tools-tab.active .tools-tab-name { color: var(--t1); }
.tools-tab-count {
  font-family: var(--mono); font-size: 0.55rem; font-weight: 500;
  color: var(--t3); opacity: 0.4; background: rgba(255,255,255,0.04);
  padding: 0.15rem 0.4rem; border-radius: 6px; line-height: 1;
}
.tools-tab.active .tools-tab-count { color: var(--accent); opacity: 0.8; background: var(--accent-soft); }

.tools-detail { position: relative; padding: 2.5rem; }

.tools-panel {
  display: none; flex-direction: column; gap: 1.5rem;
  animation: panelFadeIn 0.35s var(--ease);
}
.tools-panel.active { display: flex; }
@keyframes panelFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.tools-panel h3 { font-size: 1.35rem; font-weight: 800; color: var(--t1); letter-spacing: -0.02em; }
.tools-panel > p { font-size: 0.9rem; color: var(--t3); line-height: 1.7; max-width: 520px; }

.tools-cmds { display: flex; flex-direction: column; gap: 0.4rem; }
.tools-cmd {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.7rem 0.85rem; border-radius: 10px; transition: all 0.2s var(--ease);
}
.tools-cmd:hover { background: rgba(255,255,255,0.025); }
.tools-cmd img { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; }
.tools-cmd strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--t1); margin-bottom: 0.1rem; }
.tools-cmd span { font-size: 0.72rem; color: var(--t3); line-height: 1.4; }
.tools-cmd-sm img { width: 22px; height: 22px; }
.tools-cmd-sm strong { font-size: 0.75rem; font-weight: 500; }
.tools-cmd-sm span { font-size: 0.65rem; }

.tools-pdb { margin-top: 0.25rem; }
.tools-pdb + .tools-pdb { margin-top: 0.75rem; }
.tools-pdb-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.tools-pdb-label {
  font-family: var(--mono); font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); white-space: nowrap;
}
.tools-pdb-line { flex: 1; height: 1px; background: linear-gradient(to right, var(--accent-border), transparent); }
.tools-pdb-items {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.15rem; padding-left: 0.25rem; border-left: 1px solid rgba(147,51,234,0.12);
}

/* === PILL TABS SHOWCASE ============================================== */
.precast { padding: clamp(2rem, 3vw, 2.5rem) 0; border-top: 1px solid var(--border); }

.pill-showcase { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }

.pill-tabs {
  display: flex; gap: 0.35rem; padding: 0.3rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 100px; overflow-x: auto; overscroll-behavior-x: contain;
  scrollbar-width: none; touch-action: pan-x;
}
.pill-tabs::-webkit-scrollbar { display: none; }

.pill-tab {
  padding: 0.55rem 1.15rem; border-radius: 100px; border: none; background: none;
  font-family: var(--font); font-size: 0.75rem; font-weight: 600;
  color: var(--t3); cursor: pointer; white-space: nowrap; transition: all 0.25s var(--ease);
}
.pill-tab:hover { color: var(--t2); }
.pill-tab.active {
  background: var(--accent); color: white;
  box-shadow: 0 2px 12px rgba(147,51,234,0.3);
}

.pill-player {
  width: 100%; position: relative;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03);
}

.pill-video { display: none; }
.pill-video.active { display: block; animation: pillFadeIn 0.4s var(--ease); }
@keyframes pillFadeIn { from { opacity: 0; } to { opacity: 1; } }
.pill-video video { width: 100%; display: block; }

/* === COVERFLOW ======================================================= */
.gallery { padding: 1.5rem 0; border-top: 1px solid var(--border); }
.gallery .sec-head { margin-bottom: 0; }

.coverflow {
  position: relative; overflow: hidden; padding: 0; perspective: 1200px;
}
.coverflow::before, .coverflow::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: clamp(4rem, 12vw, 10rem); z-index: 4; pointer-events: none;
}
.coverflow::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.coverflow::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.coverflow-track {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 480px;
}
.coverflow-slide {
  position: absolute; width: 780px; max-width: 58vw;
  border-radius: 12px; overflow: hidden; border: 1px solid var(--border);
  background: var(--card); box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transition: all 0.55s var(--ease); cursor: pointer; will-change: transform, opacity;
}
.coverflow-slide img { width: 100%; display: block; }

.coverflow-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--border);
  background: rgba(9,11,20,0.8); backdrop-filter: blur(8px);
  color: var(--t2); cursor: pointer; transition: all 0.2s var(--ease);
}
.coverflow-btn:hover { border-color: var(--accent-border); color: var(--t1); background: rgba(147,51,234,0.15); }
.coverflow-btn svg { width: 18px; height: 18px; }
.coverflow-prev { left: clamp(1rem, 4vw, 3rem); }
.coverflow-next { right: clamp(1rem, 4vw, 3rem); }

/* === MID CTA ======================================================== */
.mid-cta-wrap { text-align: center; padding: 2rem 1.5rem; }
.mid-cta-wrap .btn { min-width: 360px; padding: 1rem 3rem; font-size: 1rem; }

/* === V1 SHARED STYLES (compat, extras, pricing) ==================== */
.section { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
.wrap { max-width: 1140px; margin: 0 auto; padding-inline: 1.5rem; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  color: var(--t1); margin-bottom: 2.5rem;
}

.tag {
  display: inline-block;
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent-border);
  padding: 0.25rem 0.85rem; border-radius: 60px; margin-bottom: 1rem;
}

/* Compat */
.compat-card {
  display: flex; align-items: center; gap: 2.5rem; padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06); border-radius: 20px;
  transition: border-color 0.3s var(--ease);
}
.compat-card:hover { border-color: var(--accent-border); }
.compat-logo {
  width: 80px; height: 80px; object-fit: contain; flex-shrink: 0;
  border-radius: 16px; background: var(--surface); padding: 8px;
}
.compat-card h3 { font-size: 1.35rem; font-weight: 700; color: var(--t1); margin-bottom: 0.5rem; }
.compat-card p { font-size: 0.95rem; color: var(--t2); line-height: 1.7; max-width: 550px; }

/* Extras */
.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.extra-card {
  padding: 1.5rem; border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
  transition: all 0.3s var(--ease);
}
.extra-card:hover { border-color: var(--accent-border); background: var(--accent-soft); }
.extra-icon { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; margin-bottom: 0.75rem; }
.extra-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--t1); margin-bottom: 0.35rem; }
.extra-card p { font-size: 0.825rem; color: var(--t3); line-height: 1.55; }

/* Pricing - asymmetric duo */
.pricing-duo {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 1.25rem;
  align-items: start; max-width: 760px; margin: 0 auto;
}
.price-card {
  padding: 2rem; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px;
  transition: all 0.35s var(--ease); position: relative;
}
.price-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }

.price-badge {
  position: absolute; top: -10px; left: 2rem;
  font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.85rem; border-radius: 60px;
  background: var(--accent-dim); color: white;
}

.price-card h3 { font-size: 1.35rem; font-weight: 700; color: var(--t1); }
.price-sub {
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent);
  display: block; margin-top: 0.15rem;
}
.price-value { margin: 1.25rem 0; }
.price-old { display: block; font-size: 0.8rem; color: var(--t3); text-decoration: line-through; margin-bottom: 0.1rem; }
.price-label { display: block; font-size: 0.85rem; color: var(--t3); margin-bottom: 0.25rem; }
.price-amount { font-family: var(--mono); font-size: 2rem; font-weight: 500; color: var(--t1); line-height: 1.1; }
.price-amount-xl { font-size: 2.75rem; }
.price-amount small { font-family: var(--font); font-size: 0.8rem; color: var(--t3); font-weight: 400; margin-left: 0.15rem; }
.price-equiv { display: block; font-family: var(--mono); font-size: 0.72rem; font-weight: 500; color: var(--accent); margin-top: 0.2rem; }

.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.price-card li { font-size: 0.85rem; color: var(--t2); padding-left: 1.2rem; position: relative; }
.price-card li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0.4;
}

/* Compact mensal */
.price-compact { align-self: center; }

/* Mega anual */
.price-mega {
  padding: 2rem;
  border-color: var(--accent-border);
  background: linear-gradient(180deg, var(--accent-soft) 0%, transparent 50%);
  text-align: center;
}
.price-mega:hover { border-color: var(--accent); }
.price-mega ul { align-items: center; margin-top: 1.25rem; margin-bottom: 0; }

.price-hook {
  font-size: 0.95rem; font-weight: 500; color: var(--t1);
  margin-bottom: 1.5rem; line-height: 1.5;
}

/* Countdown */
.countdown-wrap { margin-top: 1rem; margin-bottom: 0.25rem; }
.countdown-label {
  display: block; font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}
.countdown { display: inline-flex; align-items: center; gap: 0.35rem; }
.countdown-block { display: flex; align-items: baseline; gap: 0.15rem; }
.cd-num {
  font-family: var(--mono); font-size: 1.5rem; font-weight: 500;
  color: var(--t1); min-width: 2ch; text-align: center;
}
.cd-unit {
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  color: var(--t3); text-transform: uppercase;
}
.cd-sep { font-family: var(--mono); font-size: 1.25rem; color: var(--t3); }

/* === GUARANTEE ====================================================== */
.guarantee {
  display: flex; align-items: center; gap: 2.5rem; padding: 2.5rem;
  border: 1px solid var(--accent-border); border-radius: var(--radius); background: var(--accent-soft);
}
.guarantee-seal {
  flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 1.8rem; font-weight: 600; color: var(--accent);
}
.guarantee h2 { font-size: 1.3rem; font-weight: 800; color: var(--t1); margin-bottom: 0.5rem; }
.guarantee p { font-size: 0.88rem; color: var(--t3); line-height: 1.7; max-width: 500px; }

/* === CREATORS ======================================================= */
.creators {
  display: flex; gap: 2.5rem; align-items: center; padding: 2rem;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.creators-photo { width: 200px; height: auto; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.creators-bios { display: flex; flex-direction: column; gap: 1.5rem; }
.creator-bio h3 { font-size: 1rem; font-weight: 800; color: var(--t1); margin-bottom: 0.15rem; }
.creator-role {
  display: block; font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}
.creator-bio p { font-size: 0.82rem; color: var(--t3); line-height: 1.6; }

/* === FAQ ============================================================ */
.faq { padding: clamp(2rem, 3vw, 2.5rem) 0; border-top: 1px solid var(--border); }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: var(--card); transition: border-color 0.3s var(--ease); }
.faq-item[open] { border-color: var(--accent-border); }
.faq-item summary {
  padding: 1rem 1.25rem; font-size: 0.88rem; font-weight: 600; color: var(--t1);
  cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--mono); font-size: 1.1rem; font-weight: 400;
  color: var(--t3); flex-shrink: 0; transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-item p { padding: 0 1.25rem 1.1rem; font-size: 0.82rem; color: var(--t3); line-height: 1.7; }

/* === FINAL CTA ====================================================== */
.final-cta {
  text-align: center; padding: 3.5rem 2.5rem;
  border: 1px solid var(--accent-border); border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 60%);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(147,51,234,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 1.25rem; position: relative; }
.final-cta h2 {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
  color: var(--t1); letter-spacing: -0.02em; margin-bottom: 1rem; position: relative;
}
.final-pricing { margin-bottom: 1.25rem; position: relative; }
.final-old { display: block; font-size: 0.8rem; color: var(--t3); text-decoration: line-through; }
.final-label { display: block; font-size: 0.75rem; color: var(--t3); margin-top: 0.2rem; }
.final-amount { display: block; font-family: var(--mono); font-size: 2.5rem; font-weight: 700; color: var(--t1); line-height: 1.1; margin-top: 0.2rem; }
.final-installment { display: block; font-size: 0.75rem; color: var(--t3); margin-top: 0.25rem; }
.final-cta .btn { position: relative; }
.final-cta .countdown-wrap { border-top: none; padding-top: 0; }

/* === FOOTER ========================================================= */
.site-footer {
  background: #0f0f12;
  color: #a4a4ad;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer__wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.site-footer__brand {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  font-size: 0.98rem;
}
.site-footer__credit {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}
.site-footer__credit a {
  color: #cfd2d6;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
  transition: color 0.2s, border-color 0.2s;
}
.site-footer__credit a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.site-footer__credit strong {
  color: #fff;
  font-weight: 700;
}
.site-footer__social {
  margin: 0.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-footer__link {
  color: #cfd2d6;
  text-decoration: none;
  font-size: 0.88rem;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
  transition: color 0.2s, border-color 0.2s;
}
.site-footer__link:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.site-footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.site-footer__ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(253, 29, 29, 0.4);
}
.site-footer__copy {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: #6c6c74;
}

/* === WHATSAPP ======================================================= */
.wpp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 45;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: all 0.3s var(--ease); text-decoration: none;
}
.wpp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
.wpp-float svg { width: 28px; height: 28px; }

/* === ANIMATIONS ===================================================== */
.sr {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.sr.vis { opacity: 1; transform: translateY(0); }
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--d) * 160ms + 200ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE ===================================================== */
@media (max-width: 1024px) {
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding-top: 5rem; }
  .hero-logo { margin-bottom: 1.25rem; }
  .hero h1 { font-size: 2rem; margin-bottom: 1rem; }
  .hero h1 br, .br-desk { display: none; }
  .hero-logo-img { height: 120px; }
  .hero-sub { margin-bottom: 2rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }

  .video-thumbs { grid-template-columns: repeat(2, 1fr); }
  .pill-tabs {
    overflow-x: auto; flex-wrap: nowrap; border-radius: 12px;
    align-self: stretch; margin-inline: -1.25rem; padding-inline: 1.25rem;
    border: none; background: none;
  }
  .pill-tab {
    padding: 0.45rem 0.85rem; font-size: 0.7rem; flex-shrink: 0;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 100px;
  }
  .pill-tab.active { border-color: var(--accent); }

  .tools-tab { padding: 0.85rem 1rem; flex: 0 0 auto; }
  .tools-tab-count { display: none; }
  .tools-detail { padding: 1.75rem 1.5rem; }

  .compat-card { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2rem 1.5rem; }
  .compat-card p { max-width: 100%; }
  .extras-grid { grid-template-columns: 1fr; }
  .pricing-duo { grid-template-columns: 1fr; max-width: 480px; }
  .price-compact { order: 2; }
  .price-mega { order: 1; }
  .price-amount-xl { font-size: 2.25rem; }

  .guarantee { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2rem 1.5rem; }
  .guarantee p { max-width: 100%; }

  .creators { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
  .creators-photo { width: 160px; }

  .coverflow-track { height: 380px; }
  .coverflow-slide { width: 520px; }

  .final-cta { padding: 2.5rem 1.5rem; }
  .final-amount { font-size: 2rem; }

  .wpp-float { width: 50px; height: 50px; bottom: 1rem; right: 1rem; }
  .wpp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 1.25rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero-sub { font-size: 0.88rem; }
  .coverflow-track { height: 280px; }
  .coverflow-slide { width: 320px; max-width: 75vw; }
}

/* ═══ TOPNAV STICKY + TOP STRIP (portado do struct-v2, paleta roxa) ═══ */
.topnav-sticky { position: sticky; top: 0; z-index: 60; }

.topstrip {
  background: linear-gradient(90deg, #6d28d9, #7c3aed 50%, #6d28d9);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #f3e8ff;
  font-family: var(--font, 'Montserrat', sans-serif); font-size: 0.78rem; font-weight: 500;
}
.topstrip-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 0.45rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; flex-wrap: wrap;
}
.topstrip-item {
  display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  color: #f3e8ff;
}
.topstrip-item[hidden] { display: none !important; }
.topstrip-item strong {
  color: #ffffff; font-weight: 800; font-variant-numeric: tabular-nums;
  font-size: 0.95rem; letter-spacing: -0.01em;
  text-shadow: 0 0 14px rgba(245,208,254,0.45);
}
.topstrip-ico { width: 15px; height: 15px; color: #ffffff; flex-shrink: 0; opacity: 0.92; }
.topstrip-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.28); }
.topstrip-sep[hidden] { display: none !important; }
.topstrip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7), 0 0 10px rgba(255,255,255,0.8);
  animation: topstripPulse 2s ease-out infinite;
}
@keyframes topstripPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.65), 0 0 10px rgba(255,255,255,0.8); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0), 0 0 10px rgba(255,255,255,0.8); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0), 0 0 10px rgba(255,255,255,0.8); }
}
.topstrip-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  color: #6d28d9;
  padding: 0.16rem 0.45rem; border-radius: 3px;
  background: #ffffff;
}
.topstrip-countdown .topstrip-cd {
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 0.92rem;
  padding: 0.14rem 0.55rem; border-radius: 4px;
  background: #0a070f;
  border: 1px solid rgba(255,255,255,0.18);
}
.topstrip-cd-label { color: #e9d5ff; font-size: 0.78rem; }
.topstrip-live {
  font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.12);
  padding: 0.12rem 0.38rem; border-radius: 3px;
  margin-left: 0.25rem;
}

/* NAV */
.topnav {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0.65rem 1.5rem; gap: 1rem;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.topnav__brand { justify-self: start; display: inline-flex; align-items: center; gap: 0.6rem; }
.topnav__brand img { height: 30px; width: 30px; object-fit: contain; opacity: 0.92; transition: opacity 0.2s; }
.topnav__brand:hover img { opacity: 1; }

.topnav__links {
  justify-self: center; display: inline-flex; gap: 1.5rem;
  font-size: 0.85rem; font-weight: 500;
}
.topnav__links a { color: #b9a6cc; text-decoration: none; transition: color 0.2s; }
.topnav__links a:hover { color: #fff; }

.topnav__ctas { justify-self: end; display: inline-flex; align-items: center; gap: 0.5rem; }
.topnav__ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.9rem; border-radius: 100px;
  background: transparent; color: #ededeb;
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 500; font-size: 0.82rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.topnav__ghost svg { color: #22c55e; opacity: 0.9; }
.topnav__ghost:hover { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.35); }
.topnav__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; border-radius: 100px;
  background: #7c3aed;
  color: #ffffff; font-weight: 700; font-size: 0.82rem;
  text-decoration: none;
  border: 1px solid #7c3aed;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.topnav__cta:hover { background: #6d28d9; border-color: #6d28d9; transform: translateY(-1px); }

@media (max-width: 900px) {
  .topnav { grid-template-columns: auto auto !important; padding-right: 0.75rem; }
  .topnav__links { display: none; }
  .topnav__ctas { justify-self: end; margin-left: auto; }
}
@media (max-width: 820px) {
  .topstrip-inner { gap: 0.75rem; padding: 0.5rem 1rem; font-size: 0.75rem; }
  .topstrip-item strong { font-size: 0.85rem; }
  .topstrip-cd-label { font-size: 0.7rem; }
}
@media (max-width: 720px) {
  /* Topstrip compacta, com wrap e centralizada */
  .topstrip-inner {
    gap: 0.8rem; padding: 0.45rem 1rem;
    flex-wrap: wrap; overflow-x: visible;
    justify-content: center;
  }
  .topstrip-sep { display: none; }
  .topstrip-item { font-size: 0.72rem; gap: 0.35rem; }
  .topstrip-item strong { font-size: 0.82rem; }
  .topstrip-cd-label { font-size: 0.7rem; }
  .topstrip-live { font-size: 0.54rem; letter-spacing: 0.1em; padding: 0.1rem 0.3rem; }
  .topstrip-badge { font-size: 0.56rem; letter-spacing: 0.1em; padding: 0.1rem 0.32rem; }
}
@media (max-width: 420px) {
  .topstrip-inner { padding: 0.4rem 0.75rem; gap: 0.55rem; }
  .topstrip-item span:not(.topstrip-dot):not(.topstrip-badge):not(.topstrip-live) { display: none; }
  .topnav { padding: 0.55rem 0.85rem; }
  .topnav__brand img { height: 26px; width: 26px; }
  .topnav__ghost { padding: 0.45rem 0.55rem; }
  .topnav__cta { padding: 0.5rem 0.85rem; font-size: 0.75rem; }
}
@media (max-width: 560px) {
  .topnav__ghost span { display: none; }
  .topnav__ghost { padding: 0.5rem 0.65rem; }
  .topnav { padding-right: 0.5rem; gap: 0.5rem; }
  .topnav__ctas { gap: 0.35rem; }
}
@media (prefers-reduced-motion: reduce) {
  .topstrip-dot { animation: none; }
}

/* ═══ FEEDBACK: depoimentos reais ═══ */
.section-feedback { padding: 5rem 0 4.5rem; position: relative; }
.section-feedback::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(50% 40% at 50% 0%, rgba(147,51,234,0.08), transparent 70%);
  pointer-events: none;
}
.feedback-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; position: relative; }
.feedback-eyebrow {
  font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  background: var(--accent-soft);
  display: inline-block;
}
.feedback-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.15;
  margin: 1.1rem 0 0; letter-spacing: -0.02em;
  color: var(--t1);
}
.feedback-title .feedback-accent {
  background: linear-gradient(135deg, #c084fc, var(--accent));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.feedback-frame {
  max-width: 960px; margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  box-shadow: 0 30px 80px -40px rgba(147,51,234,0.35), 0 1px 0 rgba(255,255,255,0.04) inset;
  background: rgba(10,10,11,0.6);
}
.feedback-frame img {
  display: block; width: 100%; height: auto;
}
@media (max-width: 720px) {
  .section-feedback { padding: 3.5rem 0 3rem; }
  .feedback-frame { border-radius: 14px; }
}

/* ═══ USO DIARIO: top comandos ontem ═══ */
.section-usage { padding: 5rem 0 4.5rem; position: relative; }
.section-usage::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 20% 0%, rgba(147,51,234,0.08), transparent 70%),
    radial-gradient(40% 40% at 90% 100%, rgba(168,85,247,0.05), transparent 70%);
  pointer-events: none;
}
.usage-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; position: relative; }
.usage-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  background: var(--accent-soft);
}
.usage-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.15;
  margin: 1.1rem 0 0.8rem; letter-spacing: -0.02em;
}
.usage-title .usage-accent {
  background: linear-gradient(135deg, #c084fc, var(--accent));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.usage-sub { color: rgba(237,237,235,0.68); font-size: 1rem; line-height: 1.55; }
.usage-sub strong { color: #c084fc; font-weight: 600; }

.usage-card {
  max-width: 860px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(19,19,26,0.9), rgba(10,10,11,0.96));
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 20px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 30px 80px -40px rgba(147,51,234,0.3), 0 1px 0 rgba(255,255,255,0.03) inset;
  position: relative;
}
.usage-meta {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed var(--border, rgba(255,255,255,0.06));
  margin-bottom: 1.25rem;
}
.usage-meta-item { display: flex; flex-direction: column; gap: 0.15rem; }
.usage-meta-label {
  font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(237,237,235,0.5);
}
.usage-meta-value {
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em;
  color: #c084fc;
  font-variant-numeric: tabular-nums;
}
.usage-meta-div { width: 1px; align-self: stretch; background: var(--border, rgba(255,255,255,0.06)); }
.usage-meta-spacer { flex: 1; }
.usage-live {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(237,237,235,0.6);
}
.usage-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 0 rgba(147,51,234,0.6);
  animation: usage-pulse 1.8s ease-out infinite;
}
@keyframes usage-pulse {
  0% { box-shadow: 0 0 0 0 rgba(147,51,234,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(147,51,234,0); }
  100% { box-shadow: 0 0 0 0 rgba(147,51,234,0); }
}

.usage-chart {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.usage-row {
  --p: 0%;
  display: grid; grid-template-columns: 28px 40px 1fr; align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.015);
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease, cubic-bezier(0.16,1,0.3,1));
}
.usage-row:hover {
  background: rgba(147,51,234,0.05);
  border-color: var(--accent-border);
  transform: translateX(2px);
}
.usage-rank {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 0.78rem;
  color: rgba(237,237,235,0.4);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.usage-row.top-1 .usage-rank,
.usage-row.top-2 .usage-rank,
.usage-row.top-3 .usage-rank { color: #c084fc; font-weight: 700; }
.usage-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(147,51,234,0.15), rgba(147,51,234,0.04));
  border: 1px solid var(--accent-border);
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.usage-icon img { width: 26px; height: 26px; image-rendering: crisp-edges; }
.usage-icon--fallback { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 0.85rem; color: #c084fc; font-weight: 700; }
.usage-body { min-width: 0; }
.usage-row-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 0.75rem; margin-bottom: 0.35rem;
}
.usage-name {
  font-size: 0.95rem; font-weight: 600; letter-spacing: -0.005em;
  line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.usage-uses {
  font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 0.78rem;
  color: rgba(237,237,235,0.55);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  white-space: nowrap;
}
.usage-uses b { color: #c084fc; font-weight: 700; }
.usage-bar {
  position: relative; width: 100%; height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}
.usage-bar-fill {
  position: absolute; inset: 0 auto 0 0;
  width: var(--p); max-width: 100%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent), #c084fc);
  border-radius: 999px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 18px rgba(147,51,234,0.4);
}
.usage-card.is-animated .usage-bar-fill { transform: scaleX(1); }
.usage-card.is-animated .usage-row:nth-child(1) .usage-bar-fill { transition-delay: 0.05s; }
.usage-card.is-animated .usage-row:nth-child(2) .usage-bar-fill { transition-delay: 0.12s; }
.usage-card.is-animated .usage-row:nth-child(3) .usage-bar-fill { transition-delay: 0.19s; }
.usage-card.is-animated .usage-row:nth-child(4) .usage-bar-fill { transition-delay: 0.26s; }
.usage-card.is-animated .usage-row:nth-child(5) .usage-bar-fill { transition-delay: 0.33s; }
.usage-card.is-animated .usage-row:nth-child(6) .usage-bar-fill { transition-delay: 0.40s; }
.usage-card.is-animated .usage-row:nth-child(7) .usage-bar-fill { transition-delay: 0.47s; }
.usage-card.is-animated .usage-row:nth-child(8) .usage-bar-fill { transition-delay: 0.54s; }
.usage-card.is-animated .usage-row:nth-child(9) .usage-bar-fill { transition-delay: 0.61s; }
.usage-card.is-animated .usage-row:nth-child(10) .usage-bar-fill { transition-delay: 0.68s; }

.usage-row.is-skeleton .usage-bar-fill { background: rgba(255,255,255,0.06); box-shadow: none; transform: scaleX(0.4); animation: usage-skel 1.4s ease-in-out infinite; }
.usage-row.is-skeleton .usage-name,
.usage-row.is-skeleton .usage-uses { color: transparent; background: rgba(255,255,255,0.05); border-radius: 6px; }
.usage-row.is-skeleton .usage-name { width: 55%; height: 12px; display: inline-block; }
.usage-row.is-skeleton .usage-uses { width: 60px; height: 12px; display: inline-block; }
@keyframes usage-skel {
  0%,100% { opacity: 0.5; transform: scaleX(0.3); }
  50% { opacity: 1; transform: scaleX(0.85); }
}

.usage-cta { margin-top: 1.5rem; display: flex; justify-content: center; }
.usage-cta .btn { min-width: 280px; }
.usage-error,
.usage-fallback {
  list-style: none;
  text-align: center; padding: 1.5rem 1rem;
  color: rgba(237,237,235,0.6); font-size: 0.9rem; line-height: 1.55;
}
.usage-fallback a { color: #c084fc; text-decoration: underline; }

@media (max-width: 720px) {
  .section-usage { padding: 3.5rem 0 3rem; }
  .usage-card { padding: 1.25rem 1.1rem 1.1rem; border-radius: 16px; }
  .usage-meta { gap: 0.9rem; }
  .usage-meta-value { font-size: 1.2rem; }
  .usage-meta-div { display: none; }
  .usage-live { width: 100%; justify-content: flex-start; }
  .usage-row { grid-template-columns: 22px 32px 1fr; gap: 0.6rem; padding: 0.45rem 0.5rem; }
  .usage-icon { width: 30px; height: 30px; border-radius: 8px; }
  .usage-icon img { width: 22px; height: 22px; }
  .usage-name { font-size: 0.85rem; }
  .usage-uses { font-size: 0.72rem; }
}

@media (prefers-reduced-motion: reduce) {
  .usage-card .usage-bar-fill { transition: none; transform: scaleX(1); }
  .usage-live-dot { animation: none; }
}
