/* ============================================================
   EditMatch+ — Design System v2.5 (Identidade Global Premium)
   Fundo profundo, roxo elétrico, Sora pesada, profundidade real
   ============================================================ */
:root {
  --bg: #0A0A0E;
  --bg-2: #0D0D12;
  --surface: #14141B;
  --surface-2: #1A1A23;
  --surface-3: #21212C;
  --border: #262631;
  --border-2: #32323F;
  --text: #F5F4F7;
  --text-2: #C9C7D1;
  --muted: #8E8B9B;
  --primary: #6C3EF5;
  --primary-2: #7C4DFF;
  --primary-soft: #9B7BFF;
  --primary-pale: #C4AEFF;
  --grad-primary: linear-gradient(135deg, #7C4DFF 0%, #5B2ED9 100%);
  --grad-cta: linear-gradient(135deg, #8B5CFF 0%, #6C3EF5 55%, #5327C9 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  --success: #3ECF8E;
  --warn: #FFD056;
  --danger: #F55E5E;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 1px 0 rgba(255,255,255,.03) inset, 0 10px 30px -12px rgba(0,0,0,.6);
  --shadow-pop: 0 20px 50px -12px rgba(0,0,0,.7), 0 0 0 1px rgba(155,123,255,.08);
  --glow: 0 0 80px -10px rgba(108,62,245,.45);
}

body.light-mode {
  --bg: #F8F9FB;
  --bg-2: #F0F2F5;
  --surface: #FFFFFF;
  --surface-2: #F9FAFB;
  --surface-3: #F1F3F5;
  --border: #E5E7EB;
  --border-2: #D1D5DB;
  --text: #111827;
  --text-2: #374151;
  --muted: #6B7280;
  --shadow-card: 0 4px 6px -1px rgba(0,0,0,.05), 0 2px 4px -1px rgba(0,0,0,.03);
  --shadow-pop: 0 10px 25px -5px rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.05);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-stagger-1 { animation-delay: 0.1s; opacity: 0; }
.animate-stagger-2 { animation-delay: 0.2s; opacity: 0; }
.animate-stagger-3 { animation-delay: 0.3s; opacity: 0; }
.animate-stagger-4 { animation-delay: 0.4s; opacity: 0; }


* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background:
    radial-gradient(1100px 500px at 50% -180px, rgba(108,62,245,.16), transparent 65%),
    var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand, .btn { font-family: 'Sora', sans-serif; }
a { color: var(--primary-soft); text-decoration: none; transition: color .15s; }
a:hover { color: var(--primary-pale); }
::placeholder { color: #5d5a6b; }
::selection { background: rgba(108,62,245,.45); }

/* barra de rolagem discreta */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #2b2b37; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-track { background: transparent; }

/* ---------------------------------------------------------- topo */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: flex-start; gap: 32px;
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(12,12,17,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; color: var(--text); cursor: pointer; flex: none; }
.brand .logo {
  width: 34px; height: 34px; border-radius: 9px; object-fit: cover;
  filter: drop-shadow(0 0 10px rgba(108,62,245,.55));
}
.brand .plus { color: var(--primary-soft); }
.nav { display: flex; align-items: center; justify-content: space-between; font-size: 14px; flex-wrap: nowrap; flex: 1; }
.nav a { color: var(--text-2); font-weight: 600; white-space: nowrap; }
.nav a:hover, .nav a.active { color: var(--text); }

.nav-dropdown {
  position: relative;
  display: inline-block;
  padding: 12px 0; /* Expanded hit area */
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-trigger::after {
  content: '▾';
  font-size: 10px;
  opacity: 0.7;
}
.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-pop);
  min-width: 240px;
  display: flex;
  flex-direction: column;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-content a {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-2);
  transition: all 0.15s ease;
}
.nav-dropdown-content a:hover {
  background: rgba(108,62,245,0.08);
  color: var(--primary-soft);
}

/* ---------------------------------------------------------- botões / inputs */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--grad-cta); color: #fff; border: none; cursor: pointer;
  padding: 12px 22px; border-radius: 12px; font-weight: 700; font-size: 14px;
  letter-spacing: .1px; white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(108,62,245,.55), 0 1px 0 rgba(255,255,255,.15) inset;
  transition: transform .2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow .2s, filter .15s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 14px 34px -8px rgba(108,62,245,.65), 0 1px 0 rgba(255,255,255,.15) inset; }
.btn:active { transform: translateY(0) scale(.97); }
.btn.ghost {
  background: rgba(255,255,255,.03); border: 1px solid var(--border-2); color: var(--text);
  box-shadow: none;
}
.btn.ghost:hover { border-color: var(--primary-soft); color: var(--primary-pale); background: rgba(108,62,245,.08); filter: none; box-shadow: none; }
.btn.small { padding: 8px 16px; font-size: 13px; border-radius: 10px; }
.btn.danger { background: rgba(245,94,94,.08); border: 1px solid rgba(245,94,94,.5); color: var(--danger); box-shadow: none; }
.btn.success { background: linear-gradient(135deg, #46E39D, #2AAE71); color: #04231a; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

input, select, textarea {
  width: 100%; background: var(--surface-2); color: var(--text);
  border: 1px solid var(--border-2); border-radius: var(--radius-sm);
  padding: 12px 15px; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,62,245,.22);
}
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 19px) 55%, calc(100% - 14px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
select option { background-color: #13131a; color: #fff; }
label { display: block; font-size: 11.5px; font-weight: 700; color: var(--muted); margin: 15px 0 7px; letter-spacing: .8px; text-transform: uppercase; font-family: 'Sora', sans-serif; }

/* ---------------------------------------------------------- layout base */
.page { max-width: 1180px; margin: 0 auto; padding: 36px clamp(16px, 4vw, 32px) 90px; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 40%), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform .2s, border-color .2s;
}
.grid { display: grid; gap: 18px; }
.muted { color: var(--muted); }
.star { color: var(--warn); }

.eyebrow {
  display: inline-block; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--primary-soft); margin-bottom: 12px;
}
.h-display {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.1;
  margin: 0 0 14px; letter-spacing: -.7px;
}
.h-section {
  font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; line-height: 1.15;
  margin: 0 0 10px; letter-spacing: -.4px;
}

.tag {
  display: inline-block; padding: 4px 13px; border-radius: 999px;
  border: 1px solid rgba(155,123,255,.5); color: var(--primary-pale);
  background: rgba(108,62,245,.10);
  font-size: 12.5px; font-weight: 600;
}
.tag.dim { border-color: var(--border-2); color: var(--muted); background: transparent; }

.cortex-box {
  position: relative;
  border: 1px solid rgba(124,77,255,.45);
  background: linear-gradient(135deg, rgba(108,62,245,.14), rgba(108,62,245,.05) 60%), var(--surface);
  border-radius: var(--radius); padding: 18px 20px;
  box-shadow: 0 0 40px -18px rgba(108,62,245,.5);
}
.cortex-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--grad-primary); color: #fff; font-size: 11px; font-weight: 800;
  padding: 4px 11px; border-radius: 999px; letter-spacing: .8px; text-transform: uppercase;
  font-family: 'Sora', sans-serif;
  box-shadow: 0 4px 14px -4px rgba(108,62,245,.7);
}

/* capas geradas (substituem os placeholders listrados) */
.cover {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,.06);
}
.cover .cover-init {
  font-family: 'Sora', sans-serif; font-weight: 800; letter-spacing: 1px;
  color: rgba(255,255,255,.9); text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.cover .play-chip {
  position: absolute; right: 10px; bottom: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(10,10,14,.78);
  display: grid; place-items: center; font-size: 11px; color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.cover::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 20% 0%, rgba(255,255,255,.14), transparent 45%);
  pointer-events: none;
}

.avatar {
  width: 62px; height: 62px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 800; font-size: 21px; font-family: 'Sora', sans-serif;
  color: #fff; border: 2px solid rgba(255,255,255,.14);
  box-shadow: 0 6px 20px -6px rgba(0,0,0,.6);
}

.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--surface-3); border: 1px solid rgba(124,77,255,.6);
  color: var(--text); padding: 13px 24px; border-radius: 14px;
  font-size: 14px; font-weight: 600; z-index: 100;
  box-shadow: var(--shadow-pop);
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  max-width: min(520px, 90vw);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { border-color: var(--danger); }

/* skeleton de carregamento */
.skel {
  border-radius: var(--radius); height: 92px;
  background: linear-gradient(100deg, var(--surface) 40%, var(--surface-2) 50%, var(--surface) 60%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite linear;
  border: 1px solid var(--border);
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* animação de entrada das views */
.view-in { animation: viewIn .35s cubic-bezier(.2,.7,.3,1) both; }
@keyframes viewIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------------------------------------------------------- home */
.hero {
  position: relative; text-align: center;
  padding: 50px 20px 40px;
}
.hero .slogan {
  color: var(--primary-soft); font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 4px; text-transform: uppercase; margin: 0 0 20px;
}
.hero .sub { color: var(--text-2); font-size: 17.5px; line-height: 1.6; max-width: 680px; margin: 10px auto 36px; }

.searchbar {
  display: flex; gap: 10px; max-width: 680px; margin: 0 auto;
  background: rgba(26, 26, 35, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(155, 123, 255, 0.2);
  border-radius: 20px; padding: 10px 10px 10px 22px; align-items: center;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.8), 0 0 0 6px rgba(108,62,245,.03);
  transition: border-color .25s, box-shadow .25s;
}
.searchbar:focus-within { border-color: var(--primary-soft); box-shadow: 0 24px 60px -20px rgba(0,0,0,.8), 0 0 0 6px rgba(108,62,245,.18); }
.searchbar input { border: none; background: transparent; padding: 10px 0; font-size: 16px; box-shadow: none; color: #fff; }
.searchbar input:focus { box-shadow: none; }

.hero-chips { margin-top: 22px; justify-content: center; }
.hero-chips .tag { transition: transform .18s, border-color .18s, background .18s; }
.hero-chips .tag:hover { transform: scale(1.05); border-color: var(--primary-pale); background: rgba(108,62,245,.18); }

/* stats strip com estilo glassmorphism */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 60px auto 0;
}
.stats-card {
  background: var(--grad-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 20px 15px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: border-color .2s;
}
.stats-card:hover {
  border-color: rgba(155, 123, 255, 0.2);
}
.stats-card .v {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 36px);
  background: linear-gradient(135deg, #fff 30%, var(--primary-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.stats-card .l {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.3;
}

.section { margin-top: clamp(70px, 10vw, 120px); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.section-head p { color: var(--muted); font-size: 16px; line-height: 1.65; margin: 10px 0 0; }

/* organizador de grupos de categorias */
.group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.group-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform .2s, border-color .2s;
}
.group-card:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 123, 255, 0.3);
}
.group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 12px;
}
.group-header .icon {
  font-size: 24px;
}
.group-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.group-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.group-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.02);
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 600;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.group-list li:hover {
  background: rgba(108, 62, 245, 0.08);
  border-color: rgba(155, 123, 255, 0.3);
  color: #fff;
  transform: translateX(4px);
}
.group-list li .arrow {
  color: var(--primary-soft);
  font-size: 11px;
  font-weight: 800;
}

/* cards de editor em destaque */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.feat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .25s;
  box-shadow: var(--shadow-card);
}
.feat-card:hover { transform: translateY(-5px); border-color: rgba(155,123,255,.5); box-shadow: var(--shadow-pop); }
.feat-card .cover { height: 160px; border-radius: 0; border: none; }
.feat-card .body { padding: 18px 20px 20px; }
.feat-card h3 { margin: 0 0 6px; font-size: 17px; color: #fff; display: flex; justify-content: space-between; align-items: baseline; }
.feat-card .meta { color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.feat-card .price { color: var(--text); font-weight: 700; font-size: 14.5px; }

/* linha de tempo do "Como Funciona" */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.step-card:hover {
  border-color: rgba(155, 123, 255, 0.35);
  transform: translateY(-2px);
}
.step-card .num-bg {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 110px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  color: rgba(108, 62, 245, 0.07);
  user-select: none;
  line-height: 1;
}
.step-card .step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.step-card .step-header .n {
  color: var(--primary-soft);
  font-weight: 800;
  font-size: 11px;
  font-family: 'Sora', sans-serif;
  letter-spacing: 2px;
}
.step-card h4 { margin: 0 0 8px; font-size: 17px; color: #fff; position: relative; z-index: 2; }
.step-card p { color: var(--text-2); font-size: 14px; line-height: 1.6; margin: 0; position: relative; z-index: 2; }

/* painel Cortex (estilo slide do deck) */
.cortex-panel {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, #6C3EF5 0%, #4E27B8 60%, #3A1D87 100%);
  border-radius: 26px; padding: clamp(30px, 5vw, 54px);
  box-shadow: var(--glow);
  text-align: left;
}
.cortex-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 85% -60px, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.cortex-panel h2 { color: #fff; margin-top: 14px; }
.cortex-panel .lead { color: #E6DEFF; font-size: 16.5px; max-width: 560px; line-height: 1.65; margin: 6px 0 34px; }
.cx-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.cx-item {
  background: rgba(10,10,14,.36); border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; padding: 20px;
  transition: border-color .2s, background .2s;
}
.cx-item:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(10,10,14,0.45);
}
.cx-item b { display: block; font-family: 'Sora', sans-serif; font-size: 15px; margin-bottom: 6px; color: #fff; }
.cx-item span { color: #DCD2FF; font-size: 13.5px; line-height: 1.55; }

/* faixa CTA final */
.cta-band {
  text-align: center; margin-top: clamp(70px, 10vw, 120px);
  padding: clamp(45px, 7vw, 80px) 24px;
  border: 1px solid rgba(155,123,255,.25); border-radius: 26px;
  background:
    radial-gradient(500px 240px at 50% -80px, rgba(108,62,245,.28), transparent 70%),
    var(--surface);
}

/* ---------------------------------------------------------- busca */
.search-layout { display: grid; grid-template-columns: 250px 1fr; gap: 26px; }
.filters .card { padding: 18px; position: sticky; top: 82px; }
.filters h4 { margin: 0; font-size: 15px; }
.editor-card {
  display: flex; gap: 18px; align-items: center; cursor: pointer;
  transition: transform .18s, border-color .18s, box-shadow .2s;
}
.editor-card:hover { border-color: rgba(155,123,255,.5); transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.editor-card .thumb { width: 128px; height: 82px; flex: none; }
.editor-card h3 { margin: 0 0 5px; font-size: 16.5px; }
.editor-card .meta { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ---------------------------------------------------------- perfil */
.profile-head { display: flex; gap: 18px; align-items: center; margin: 20px 0 14px; }
.showreel { height: 280px; font-size: 15px; }
.showreel .cover-init { font-size: 44px; }
.portfolio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 16px 0 6px; }
.portfolio .cover { height: 104px; }
.pacote {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 16px 18px; border: 1px solid var(--border-2); border-radius: 14px;
  margin-bottom: 10px; cursor: pointer; background: var(--surface);
  transition: border-color .15s, transform .15s;
}
.pacote:hover { border-color: var(--primary); transform: translateX(3px); }
.pacote .preco { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 19px; color: var(--primary-soft); white-space: nowrap; }

/* ---------------------------------------------------------- brief / match */
.match-card { text-align: center; padding: 20px 12px; cursor: pointer; transition: transform .18s, border-color .18s; }
.match-card:hover { border-color: rgba(155,123,255,.55); transform: translateY(-3px); }
.match-card .pct { font-size: 32px; font-weight: 800; font-family: 'Sora', sans-serif; background: linear-gradient(135deg, #fff, var(--primary-pale)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.matches-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.dropzone {
  border: 1.5px dashed var(--border-2); border-radius: 14px; padding: 28px;
  text-align: center; color: var(--muted); cursor: pointer; transition: border-color .15s, background .15s;
  background: rgba(255,255,255,.015);
}
.dropzone:hover { border-color: var(--primary-soft); background: rgba(108,62,245,.05); }

/* ---------------------------------------------------------- workspace */
.ws-layout { display: grid; grid-template-columns: 1.65fr 1fr; gap: 20px; }
.player { height: 320px; font-size: 16px; position: relative; }
.player .cover-init { font-size: 40px; }
.player .playbtn {
  position: relative; z-index: 2;
  width: 72px; height: 72px; border-radius: 50%; background: var(--grad-cta);
  display: grid; place-items: center; font-size: 25px; color: #fff; cursor: pointer;
  box-shadow: 0 14px 40px -8px rgba(108,62,245,.8);
  transition: transform .18s;
}
.player .playbtn:hover { transform: scale(1.08); }
.timeline { display: flex; align-items: center; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.timeline .track { flex: 1; min-width: 160px; height: 7px; background: var(--surface-3); border-radius: 4px; position: relative; cursor: pointer; }
.timeline .track .fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--grad-primary); border-radius: 4px; }
.timeline .track .cm { position: absolute; top: -4px; width: 3px; height: 15px; background: var(--warn); border-radius: 2px; box-shadow: 0 0 8px rgba(255,208,86,.7); }
.version-pill { padding: 5px 13px; border-radius: 999px; border: 1px solid var(--border-2); font-size: 12.5px; cursor: pointer; color: var(--text-2); background: var(--surface); }
.version-pill.active { border-color: var(--primary); color: var(--primary-pale); font-weight: 700; background: rgba(108,62,245,.12); }
.comment { display: flex; gap: 10px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.comment:last-of-type { border-bottom: none; }
.comment .ts { flex: none; cursor: pointer; }
.comment.resolved { opacity: .45; }
.chat-box { display: flex; flex-direction: column; height: 440px; }
.chat-msgs { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; padding-right: 4px; }
.msg {
  max-width: 86%; padding: 11px 15px; border-radius: 16px 16px 16px 5px; font-size: 14px;
  background: var(--surface-3); border: 1px solid var(--border-2); line-height: 1.45;
}
.msg.mine { align-self: flex-end; background: var(--grad-primary); border-color: transparent; border-radius: 16px 16px 5px 16px; box-shadow: 0 8px 22px -8px rgba(108,62,245,.6); }
.msg .trad { display: block; margin-top: 7px; padding-top: 7px; border-top: 1px dashed rgba(255,255,255,.25); font-size: 13px; opacity: .85; }
.chat-input { display: flex; gap: 8px; margin-top: 12px; }
.escrow-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px; border: 1px solid var(--border-2); color: var(--text-2);
  background: var(--surface);
}
.escrow-badge.locked { border-color: rgba(255,208,86,.55); color: var(--warn); background: rgba(255,208,86,.06); }
.escrow-badge.released { border-color: rgba(62,207,142,.55); color: var(--success); background: rgba(62,207,142,.06); }

/* ---------------------------------------------------------- dashboard */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat { text-align: center; padding: 22px 14px; }
.stat .v { font-size: 28px; font-weight: 800; font-family: 'Sora', sans-serif; }
.stat .l { color: var(--muted); font-size: 13px; margin-top: 5px; }
.lead { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(155,123,255,.18); font-size: 14px; }
.lead:last-child { border-bottom: none; }

/* ---------------------------------------------------------- planos */
.plans-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; align-items: stretch; margin-top: 34px; }
.plan { position: relative; display: flex; flex-direction: column; gap: 15px; text-align: left; padding: 30px 28px; }
.plan.popular {
  border: 1px solid rgba(155,123,255,.65);
  background: linear-gradient(180deg, rgba(108,62,245,.16), rgba(108,62,245,.03) 55%), var(--surface);
  box-shadow: var(--glow);
  transform: scale(1.02);
}
.plan .badge {
  position: absolute; top: -14px; right: 22px; background: #fff; color: #0A0A0E;
  font-size: 11.5px; font-weight: 800; padding: 6px 15px; border-radius: 999px; font-family: 'Sora', sans-serif;
  box-shadow: 0 6px 18px -4px rgba(0,0,0,.5);
}
.plan h3 { margin: 0; font-size: 16px; color: var(--primary-soft); letter-spacing: .3px; }
.plan .preco { font-size: 42px; font-weight: 800; font-family: 'Sora', sans-serif; letter-spacing: -1px; }
.plan .preco small { font-size: 15px; color: var(--muted); font-weight: 400; letter-spacing: 0; }
.plan ul { margin: 0; padding: 0; list-style: none; color: var(--text-2); font-size: 14px; display: flex; flex-direction: column; gap: 11px; flex: 1; line-height: 1.45; }
.plan ul li { display: flex; gap: 10px; }
.plan ul li::before { content: '→'; color: var(--primary-soft); font-weight: 800; flex: none; }

/* ---------------------------------------------------------- chamada */
.call-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.call-tile { height: 250px; position: relative; font-size: 15px; }
.call-tile .who {
  position: absolute; bottom: 12px; left: 12px; background: rgba(5,5,8,.82);
  padding: 5px 13px; border-radius: 9px; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.1);
}
.call-controls { display: flex; gap: 10px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.live-caption { margin-top: 18px; }
.live-caption .en { color: var(--text-2); }
.live-caption .pt { font-weight: 700; font-size: 16.5px; margin-top: 5px; }
.rec { color: var(--danger); font-weight: 700; }
@keyframes pulse { 50% { opacity: .5; } }
.rec .dot { display: inline-block; animation: pulse 1.4s infinite; }

/* ---------------------------------------------------------- auth */
.auth-card { max-width: 430px; margin: 46px auto; padding: 32px; }
.role-switch { display: flex; gap: 10px; margin-top: 6px; }
.role-switch .opt {
  flex: 1; text-align: center; padding: 14px 10px; border: 1px solid var(--border-2);
  border-radius: 13px; cursor: pointer; font-weight: 700; font-size: 14px; color: var(--text-2);
  transition: border-color .15s, background .15s;
}
.role-switch .opt.sel { border-color: var(--primary); color: var(--primary-pale); background: rgba(108,62,245,.12); }

/* ---------------------------------------------------------- rodapé */
.footer {
  border-top: 1px solid var(--border); margin-top: 80px;
  padding: 40px clamp(16px, 4vw, 40px) 30px;
  color: var(--muted); font-size: 13.5px;
}
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 26px; }
.footer h5 { margin: 0 0 12px; font-family: 'Sora', sans-serif; font-size: 13px; color: var(--text); letter-spacing: .5px; }
.footer a { display: block; color: var(--muted); margin-bottom: 8px; }
.footer a:hover { color: var(--primary-pale); }
.footer .brandline { display: flex; align-items: center; gap: 10px; color: var(--text); font-family: 'Sora', sans-serif; font-weight: 700; margin-bottom: 10px; }
.footer .brandline img { width: 26px; border-radius: 7px; }
.footer .copy { max-width: 1180px; margin: 26px auto 0; padding-top: 18px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12.5px; }

/* ---------------------------------------------------------- responsivo */
@media (max-width: 900px) {
  .search-layout, .ws-layout, .call-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .filters .card { position: static; }
  .nav .hide-m, .nav-left-links, .nav-search-container { display: none !important; }
  .topbar { padding: 12px 14px; }
  .brand span { font-size: 17px; }
  .plan.popular { transform: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .hero-wrapper { grid-template-columns: 1fr !important; text-align: center !important; padding-top: 30px !important; padding-bottom: 30px !important; }
  .hero-wrapper h1, .hero-wrapper p { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
  .hero-chips { justify-content: center !important; }
}
@media (max-width: 560px) {
  .stats-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .editor-card { flex-direction: column; align-items: stretch; }
  .editor-card .thumb { width: 100%; height: 130px; }
  .stats-strip { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------- Dropdown de Usuário Estilo YouTube */
.user-dropdown-menu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}
.user-dropdown-menu .dropdown-item {
  color: var(--text-2) !important;
}

/* ---------------------------------------------------------- Animações de Flutuação da Home */
@keyframes floatAnim1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}
@keyframes floatAnim2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-0.5deg); }
}
@keyframes floatAnim3 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.8deg); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cortex-panel {
  background: linear-gradient(135deg, #6C3EF5, #4E27B8, #7C4DFF, #3A1D87) !important;
  background-size: 300% 300% !important;
  animation: gradientShift 12s ease infinite !important;
}
.floating-editor-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.floating-editor-card:hover {
  transform: scale(1.03) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 15px 35px rgba(108, 62, 245, 0.25) !important;
  cursor: pointer;
}

/* ---------------------------------------------------------- Estilos do Wizard de Briefing */
.wizard-step {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}
.wizard-step.active {
  opacity: 1;
  transform: translateX(0);
  display: block;
}
.wizard-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.wizard-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(108, 62, 245, 0.4);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 30px rgba(108, 62, 245, 0.12);
}
.wizard-card.selected {
  border-color: var(--primary) !important;
  background: linear-gradient(135deg, rgba(108, 62, 245, 0.08) 0%, rgba(124, 77, 255, 0.02) 100%) !important;
  box-shadow: 0 0 25px rgba(108, 62, 245, 0.28) !important;
  animation: scalePop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wizard-card .icon {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
.brief-icon-svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255,255,255,0.6);
  transition: stroke 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}
.wizard-card:hover .brief-icon-svg {
  stroke: var(--primary-soft);
  transform: scale(1.08);
}
.wizard-card.selected .brief-icon-svg {
  stroke: #fff;
  transform: scale(1.08);
  filter: drop-shadow(0 0 6px rgba(108, 62, 245, 0.6));
}
.wizard-card h4 {
  margin: 0 0 4px;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s ease;
}
.wizard-card.selected h4 {
  color: #fff;
}
.wizard-card .sub {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.3s ease;
}
.wizard-card.selected .sub {
  color: rgba(255, 255, 255, 0.6);
}
.wizard-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13.5px;
  border: 2px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  transition: all 0.25s ease;
}
.wizard-step-circle.active {
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 10px rgba(108, 62, 245, 0.2);
}
.wizard-step-circle.completed {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

/* --- MICRO-ANIMAÇÕES TÉCNICAS (SVG KEYFRAMES) --- */
@keyframes scalePop {
  0% { transform: scale(0.96); }
  100% { transform: scale(1); }
}
@keyframes playheadSlide {
  0%, 100% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
}
.playhead-anim {
  animation: playheadSlide 3s ease-in-out infinite;
}
@keyframes layerFloat {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-2px) translateX(2px); }
}
.layer-anim-2 {
  animation: layerFloat 4s ease-in-out infinite;
}
@keyframes rotateAnim {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.rotate-anim {
  transform-origin: 12px 12px;
  animation: rotateAnim 10s linear infinite;
}
@keyframes waveBounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1.2); }
}
.wave-anim {
  transform-origin: bottom;
  animation: waveBounce 1.2s ease-in-out infinite;
}
.wave-anim-1 { animation-delay: 0.1s; }
.wave-anim-2 { animation-delay: 0.3s; }
.wave-anim-3 { animation-delay: 0.5s; }
.wave-anim-4 { animation-delay: 0.2s; }
.wave-anim-5 { animation-delay: 0.4s; }

/* ---------------------------------------------------------- Estilos Apple Store */
.apple-category-item:hover .icon-circle {
  transform: scale(1.06);
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}
.apple-category-item.active:hover .icon-circle {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}
.apple-project-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease !important;
}
.apple-project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 77, 255, 0.22) !important;
  box-shadow: 0 12px 30px rgba(108, 62, 245, 0.12) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}
.apple-category-row::-webkit-scrollbar {
  display: none;
}

/* --- ESTILO ICON WRAPPER DO WIZARD --- */
.wizard-card:hover .icon-wrapper {
  background: rgba(108, 62, 245, 0.12) !important;
  border-color: rgba(108, 62, 245, 0.4) !important;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 0 15px rgba(108, 62, 245, 0.25);
}
.wizard-card.selected .icon-wrapper {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 0 18px rgba(108, 62, 245, 0.4);
  color: #fff !important;
}

/* --- SYSTEM WIZARD LAYOUT CLASSES --- */
.wizard-container-box {
  background: #13131a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.wizard-progress-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}
.wizard-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.wizard-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.wizard-grid-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 35px;
}
.wizard-label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.wizard-select {
  width: 100%;
  padding: 14px;
  background: #181824;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #fff;
  outline: none;
  font-family: inherit;
}
.wizard-select:focus, .wizard-input:focus, .wizard-textarea:focus {
  border-color: var(--primary-soft);
  box-shadow: 0 0 8px rgba(108, 62, 245, 0.25);
}
.wizard-input {
  padding: 14px;
  background: #181824;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #fff;
  width: 100%;
  outline: none;
  font-family: inherit;
  font-size: 14px;
}
.wizard-textarea {
  width: 100%;
  padding: 14px;
  background: #181824;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #fff;
  font-size: 14.5px;
  outline: none;
  resize: none;
  line-height: 1.5;
  font-family: inherit;
}
.wizard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.wizard-footer-right {
  display: flex;
  justify-content: flex-end;
}
.wizard-flex-gap {
  display: flex;
  gap: 16px;
}
.wizard-input-wrapper {
  margin-bottom: 20px;
}
.wizard-input-wrapper-lg {
  margin-bottom: 24px;
}

/* --- PREMIUM DASHBOARD & PROJECT TRACKER SYSTEM --- */
.db-welcome-banner {
  background: linear-gradient(135deg, rgba(108, 62, 245, 0.16) 0%, rgba(24, 24, 37, 0.8) 100%);
  border: 1px solid rgba(108, 62, 245, 0.22);
  border-radius: 24px;
  padding: 35px 30px;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.db-welcome-banner::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.stat-card-glass {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stat-card-glass:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 62, 245, 0.3);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 30px rgba(108, 62, 245, 0.08);
}
.stat-card-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0.7;
}
.stat-card-glass.success::before {
  background: var(--success);
}
.stat-card-glass.info::before {
  background: var(--info);
}
.rich-project-card-v2 {
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease !important;
}
.rich-project-card-v2:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 77, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.03) !important;
  box-shadow: 0 12px 30px rgba(108, 62, 245, 0.12) !important;
}
.project-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.2) 0%, rgba(108, 62, 245, 0.05) 100%);
  border: 1px solid rgba(124, 77, 255, 0.25);
  color: #fff;
  transition: transform 0.3s ease;
}
.rich-project-card-v2:hover .project-icon-box {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, var(--primary) 0%, rgba(108, 62, 245, 0.15) 100%);
}

/* --- TRACKING BAR (STEPS RENDER) --- */
.tracker-dot {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-3);
  transition: all 0.3s ease;
}
.tracker-dot.active {
  background: rgba(108, 62, 245, 0.12);
  border-color: var(--primary-soft);
  color: var(--primary-pale);
}
.tracker-dot.concluded {
  background: rgba(62, 207, 142, 0.12);
  border-color: rgba(62, 207, 142, 0.3);
  color: #3ecf8e;
}
.tracker-bar {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
.tracker-bar.active {
  background: linear-gradient(90deg, var(--primary-soft) 0%, rgba(124, 77, 255, 0.1) 100%);
}
.tracker-bar.concluded {
  background: linear-gradient(90deg, #3ecf8e 0%, rgba(62, 207, 142, 0.1) 100%);
}

@keyframes floatAnim1 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes floatAnim2 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Google Translate Fixes */
.goog-te-banner-frame.skiptranslate, .goog-te-banner-frame {
  display: none !important;
}
body {
  top: 0px !important;
  position: static !important;
}
.goog-tooltip {
  display: none !important;
}
.goog-tooltip:hover {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
#goog-gt-tt, .goog-te-balloon-frame {
  display: none !important;
}

/* Pricing Page Styles (TradingView Style) */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0 48px;
  gap: 16px;
}
.pricing-toggle-switch {
  position: relative;
  width: 56px;
  height: 30px;
  background: var(--surface-light);
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}
.pricing-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(108,62,245,0.5);
}
.pricing-toggle.annual .pricing-toggle-switch::after {
  transform: translateX(26px);
}
.pricing-toggle-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: 0.3s;
}
.pricing-toggle-label.active {
  color: var(--text-1);
}
.save-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.pricing-table-wrapper {
  margin-top: 60px;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.pricing-table th, .pricing-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pricing-table th {
  background: rgba(20, 20, 27, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
  font-weight: 600;
  color: var(--text-1);
  font-size: 15px;
}
.pricing-table td {
  color: var(--text-2);
  font-size: 14px;
}
.pricing-table tr:hover td {
  background: rgba(255,255,255,0.02);
}
.pricing-table .feature-cat {
  background: rgba(108,62,245,0.05);
  font-weight: 700;
  color: var(--primary-soft);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}
.pricing-table .check {
  color: #22c55e;
  font-weight: bold;
}
.pricing-table .cross {
  color: #ef4444;
  opacity: 0.5;
}
