/* Hide portal chrome until session is verified */
html.vc-auth-pending #appShell,
html.vc-auth-pending .admin-shell {
  visibility: hidden;
}
html.vc-auth-pending body {
  overflow: hidden;
}
html.vc-auth-pending::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: var(--bg, #F5F7FF);
}
html.vc-auth-pending::after {
  content: 'Loading VyaparComply…';
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #4A5568;
  padding-top: 52px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='16' fill='none' stroke='%23E07B00' stroke-width='3' stroke-linecap='round' stroke-dasharray='50 90'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 20 20' to='360 20 20' dur='0.85s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/svg%3E") center top / 40px 40px no-repeat;
}
@keyframes vc-spin {
  to { transform: rotate(360deg); }
}
.vc-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(224, 123, 0, 0.2);
  border-top-color: #E07B00;
  border-radius: 50%;
  animation: vc-spin 0.85s linear infinite;
}

/* ═══════════════════════════════════════════════════════════════
   VyaparComply CA — Shared Stylesheet
   Brand: orange #E07B00, Inter + JetBrains Mono
   ═══════════════════════════════════════════════════════════════ */

:root, [data-theme="light"] {
  --bg: #F5F7FF;
  --panel: #FFFFFF;
  --card: #FFFFFF;
  --hover: #F8FAFF;
  --hover2: #EEF2FF;
  --b1: rgba(0,0,0,.07);
  --b2: rgba(0,0,0,.11);
  --b3: rgba(0,0,0,.18);
  --t1: #0F1629;
  --t2: #4A5568;
  --t3: #94A3B8;
  --acc: #E07B00;
  --acc2: #F59E0B;
  --acc-s: rgba(224,123,0,.10);
  --acc-b: rgba(224,123,0,.20);
  --grn: #16A34A;
  --red: #DC2626;
  --blu: #2563EB;
  --pur: #7C3AED;
  --cyn: #0891B2;
  --ylw: #CA8A04;
  --grn-s: rgba(22,163,74,.10);
  --red-s: rgba(220,38,38,.10);
  --blu-s: rgba(37,99,235,.10);
  --pur-s: rgba(124,58,237,.10);
  --sh: 0 1px 8px rgba(0,0,0,.08);
  --sh2: 0 4px 20px rgba(0,0,0,.12);
  --sh3: 0 12px 40px rgba(0,0,0,.16);
  --rad: 10px;
  --rad2: 14px;
  --rad3: 18px;
  --f: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --fm: 'JetBrains Mono', 'Courier New', monospace;
}

[data-theme="dark"] {
  --bg: #0C0E14;
  --panel: #141720;
  --card: #1A1E2A;
  --hover: #1E2334;
  --hover2: #252C40;
  --b1: rgba(255,255,255,.06);
  --b2: rgba(255,255,255,.10);
  --b3: rgba(255,255,255,.18);
  --t1: #E8EDFF;
  --t2: #7B8DB0;
  --t3: #3D4F6E;
  --acc: #F59E0B;
  --acc2: #FBBF24;
  --acc-s: rgba(245,158,11,.12);
  --acc-b: rgba(245,158,11,.22);
  --grn: #22C55E;
  --red: #F43F5E;
  --blu: #3B82F6;
  --pur: #A855F7;
  --cyn: #06B6D4;
  --ylw: #EAB308;
  --grn-s: rgba(34,197,94,.12);
  --red-s: rgba(244,63,94,.12);
  --blu-s: rgba(59,130,246,.12);
  --pur-s: rgba(168,85,247,.12);
  --sh: 0 2px 12px rgba(0,0,0,.3);
  --sh2: 0 6px 24px rgba(0,0,0,.4);
  --sh3: 0 16px 48px rgba(0,0,0,.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--f);
  font-size: 14px;
  line-height: 1.55;
  min-height: 100vh;
  transition: background .2s, color .2s;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--acc); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ═══ NAV (PUBLIC PAGES) ═══ */
.pub-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--b1);
}
[data-theme="dark"] .pub-nav { background: rgba(20,23,32,.85); }

.pub-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pub-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: var(--t1);
}
.pub-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--acc), #EA580C);
  display: grid;
  place-items: center;
  font-size: 17px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 3px 10px rgba(224,123,0,.3);
}
.pub-brand-name { font-size: 17px; font-weight: 800; letter-spacing: -.3px; }
.pub-brand-tag { font-size: 10px; color: var(--t3); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; line-height: 1; }

.pub-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.pub-nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--t2);
  font-weight: 500;
  font-size: 14px;
  transition: all .15s;
}
.pub-nav-links a:hover {
  background: var(--hover);
  color: var(--t1);
  text-decoration: none;
}
.pub-nav-cta { display: flex; align-items: center; gap: 8px; }

.pub-mob-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--b2);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--t1);
}

@media (max-width: 880px) {
  .pub-nav-links { display: none; }
  .pub-mob-toggle { display: block; }
  .pub-nav-cta .btn-ghost { display: none; }
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-family: var(--f);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:disabled { opacity: .55; cursor: not-allowed; }

.btn-primary {
  background: var(--acc);
  color: #fff;
  box-shadow: 0 2px 10px rgba(224,123,0,.25);
}
.btn-primary:hover:not(:disabled) {
  background: #C56A00;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(224,123,0,.4);
}

.btn-ghost {
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--b2);
}
.btn-ghost:hover { background: var(--hover); border-color: var(--b3); }

.btn-soft {
  background: var(--acc-s);
  color: var(--acc);
}
.btn-soft:hover { background: var(--acc-b); }

.btn-lg { padding: 14px 26px; font-size: 15px; border-radius: 12px; }
.btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 8px; }
.btn-block { width: 100%; }

.btn-link {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  color: var(--acc);
  cursor: pointer;
  font-weight: 600;
}
.btn-link:hover { text-decoration: underline; }

.action-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.td-actions { min-width: 200px; vertical-align: middle; }
.action-meta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.action-meta.sent {
  background: var(--grn-s);
  color: var(--grn);
}
.btn-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 8px;
  border: 1px solid var(--b2);
  background: var(--card);
  color: var(--t1);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s, transform .1s;
}
.btn-act:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.btn-act:active { transform: translateY(0); }
.btn-act-purple {
  border-color: #c4b5fd;
  background: #f5f3ff;
  color: #5b21b6;
}
.btn-act-purple:hover { background: #ede9fe; }
.btn-act-blue {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1d4ed8;
}
.btn-act-blue:hover { background: #dbeafe; }
.btn-act-green {
  border-color: #86efac;
  background: #f0fdf4;
  color: #15803d;
}
.btn-act-green:hover { background: #dcfce7; }
.btn-act-neutral {
  border-color: var(--b2);
  background: var(--bg);
  color: var(--t2);
}
.btn-act-neutral:hover { background: var(--hover); color: var(--t1); }
.btn-act-danger {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}
.btn-act-danger:hover { background: #fee2e2; }
.draft-card-actions {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--b1);
}

/* ═══ HERO + SECTIONS ═══ */
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-narrow { max-width: 880px; }
.section-tight { padding: 48px 24px; }

.hero {
  position: relative;
  padding: 80px 24px 60px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 50% -10%, rgba(224,123,0,.12), transparent 60%),
    radial-gradient(600px 300px at 20% 100%, rgba(124,58,237,.08), transparent 60%);
  z-index: -1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--acc-s);
  color: var(--acc);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid var(--acc-b);
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--acc), #EA580C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.lead {
  font-size: 18px;
  color: var(--t2);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--t3);
  margin-top: 16px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* ═══ SECTION HEADERS ═══ */
.sh-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--acc-s);
  color: var(--acc);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sh-title {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.sh-sub {
  color: var(--t2);
  font-size: 16px;
  max-width: 640px;
  line-height: 1.6;
}
.sh-center { text-align: center; }
.sh-center .sh-sub { margin: 0 auto; }

/* ═══ FEATURE GRID ═══ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--b1);
  border-radius: var(--rad3);
  padding: 26px;
  transition: all .2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--acc-b);
  box-shadow: var(--sh2);
}
.feature-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--acc-s);
  color: var(--acc);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.3px; }
.feature-card p { color: var(--t2); font-size: 14px; line-height: 1.6; }

/* ═══ STATS ═══ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 40px;
  background: var(--card);
  border: 1px solid var(--b1);
  border-radius: var(--rad3);
  margin-top: 48px;
}
.stat-block { text-align: center; }
.stat-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--acc), #EA580C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-lbl { color: var(--t2); font-size: 13px; margin-top: 6px; font-weight: 500; }

/* ═══ PRICING ═══ */
.pricing-toggle {
  display: inline-flex;
  background: var(--card);
  border: 1px solid var(--b1);
  border-radius: 10px;
  padding: 4px;
  margin: 0 auto 40px;
}
.pricing-toggle button {
  padding: 8px 18px;
  border: none;
  background: transparent;
  color: var(--t2);
  font-weight: 600;
  font-size: 13px;
  border-radius: 7px;
  cursor: pointer;
  font-family: inherit;
}
.pricing-toggle button.on {
  background: var(--acc);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--b1);
  border-radius: var(--rad3);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.popular {
  border: 2px solid var(--acc);
  box-shadow: 0 12px 40px rgba(224,123,0,.18);
  transform: scale(1.02);
}
.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--acc);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .5px;
}
.price-name { font-size: 13px; font-weight: 700; color: var(--t2); letter-spacing: .5px; text-transform: uppercase; }
.price-amt { font-size: 44px; font-weight: 800; letter-spacing: -1.5px; margin: 12px 0 4px; }
.price-amt small { font-size: 15px; color: var(--t3); font-weight: 500; }
.price-desc { color: var(--t2); font-size: 14px; margin-bottom: 24px; }
.price-list {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.price-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--t1);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-list li::before {
  content: '✓';
  color: var(--grn);
  font-weight: 700;
  flex-shrink: 0;
}
.price-list li.muted { color: var(--t3); }
.price-list li.muted::before { content: '—'; color: var(--t3); }

/* ═══ FORMS ═══ */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--t1);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--b2);
  background: var(--bg);
  color: var(--t1);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--acc);
  box-shadow: 0 0 0 3px var(--acc-s);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-hint { font-size: 12px; color: var(--t3); margin-top: 5px; }
.form-error { font-size: 12px; color: var(--red); margin-top: 5px; display: none; }
.form-error.show { display: block; }

.form-card {
  background: var(--card);
  border: 1px solid var(--b1);
  border-radius: var(--rad3);
  padding: 32px;
  box-shadow: var(--sh);
}

/* ═══ AUTH PAGES ═══ */
.auth-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-aside {
  background: linear-gradient(135deg, #1A1E2A 0%, #0C0E14 100%);
  color: #E8EDFF;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-aside::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 30% 30%, rgba(224,123,0,.18), transparent 60%),
    radial-gradient(500px 400px at 80% 80%, rgba(124,58,237,.12), transparent 60%);
}
.auth-aside-inner { position: relative; z-index: 1; }
.auth-aside-quote { font-size: 22px; font-weight: 600; line-height: 1.4; letter-spacing: -.4px; margin-top: 32px; max-width: 460px; }
.auth-aside-attr { color: #7B8DB0; font-size: 13px; margin-top: 12px; }

.auth-feat-list { list-style: none; margin-top: 28px; }
.auth-feat-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #B7C0D9;
}
.auth-feat-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(245,158,11,.2);
  color: #F59E0B;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.auth-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.auth-form {
  width: 100%;
  max-width: 420px;
}
.auth-form h1 { font-size: 28px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 8px; }
.auth-form p.muted { color: var(--t2); margin-bottom: 28px; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--t3);
  font-size: 12px;
  margin: 22px 0;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--b2);
}

@media (max-width: 880px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
}

/* ═══ FOOTER ═══ */
.pub-footer {
  background: var(--panel);
  border-top: 1px solid var(--b1);
  padding: 60px 24px 30px;
  margin-top: 80px;
}
.pub-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--t1);
  letter-spacing: .3px;
}
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 8px; }
.foot-col ul a {
  color: var(--t2);
  font-size: 13px;
  text-decoration: none;
}
.foot-col ul a:hover { color: var(--acc); }
.foot-about p { color: var(--t2); font-size: 13px; line-height: 1.6; margin: 12px 0 16px; max-width: 320px; }
.foot-bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--b1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--t3);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 880px) {
  .pub-footer-inner { grid-template-columns: 1fr 1fr; }
  .foot-about { grid-column: 1 / -1; }
}

/* ═══ ALERT / BANNER ═══ */
.banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
}
.banner-info { background: var(--blu-s); color: var(--blu); border: 1px solid rgba(37,99,235,.2); }
.banner-warn { background: rgba(202,138,4,.1); color: var(--ylw); border: 1px solid rgba(202,138,4,.2); }
.banner-ok { background: var(--grn-s); color: var(--grn); border: 1px solid rgba(22,163,74,.2); }
.banner-err { background: var(--red-s); color: var(--red); border: 1px solid rgba(220,38,38,.2); }

/* ═══ TESTIMONIALS ═══ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.testi {
  background: var(--card);
  border: 1px solid var(--b1);
  border-radius: var(--rad3);
  padding: 24px;
}
.testi-stars { color: var(--ylw); font-size: 14px; margin-bottom: 12px; }
.testi p { font-size: 15px; line-height: 1.6; color: var(--t1); margin-bottom: 18px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acc), #EA580C);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-role { color: var(--t3); font-size: 12px; }

/* ═══ FAQ ═══ */
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--b1);
  border-radius: var(--rad2);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--acc);
  font-weight: 400;
  line-height: 1;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  color: var(--t2);
  line-height: 1.65;
  font-size: 14px;
  transition: max-height .3s, padding .3s;
}
.faq-item.open .faq-a { padding: 0 22px 18px; max-height: 500px; }

/* ═══ CTA STRIP ═══ */
.cta-strip {
  background: linear-gradient(135deg, var(--acc) 0%, #EA580C 100%);
  color: #fff;
  border-radius: var(--rad3);
  padding: 52px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 80% 0%, rgba(255,255,255,.18), transparent 60%);
}
.cta-strip > * { position: relative; }
.cta-strip h2 { font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; letter-spacing: -.6px; margin-bottom: 12px; }
.cta-strip p { font-size: 16px; opacity: .95; margin-bottom: 26px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-strip .btn-primary {
  background: #fff;
  color: var(--acc);
  font-weight: 700;
}
.cta-strip .btn-primary:hover { background: #FFF7E6; }

/* ═══ THEME TOGGLE ═══ */
.theme-tog {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--b2);
  background: transparent;
  color: var(--t1);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 17px;
  transition: all .15s;
}
.theme-tog:hover { background: var(--hover); }

/* ═══ DOC / LEGAL PAGES ═══ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal-content h1 { font-size: 36px; font-weight: 800; letter-spacing: -.8px; margin-bottom: 8px; }
.legal-meta { color: var(--t3); font-size: 13px; margin-bottom: 36px; }
.legal-content h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; letter-spacing: -.3px; }
.legal-content h3 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; }
.legal-content p, .legal-content li { color: var(--t2); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content strong { color: var(--t1); }

/* ═══ TOAST ═══ */
.toast-wrap {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--card);
  border: 1px solid var(--b1);
  border-left: 4px solid var(--acc);
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: var(--sh2);
  font-size: 14px;
  min-width: 280px;
  max-width: 380px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: toastIn .25s ease;
}
.toast.s { border-left-color: var(--grn); }
.toast.e { border-left-color: var(--red); }
.toast.w { border-left-color: var(--ylw); }
.toast.i { border-left-color: var(--blu); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ═══ UTILITIES ═══ */
.hide { display: none !important; }
.text-center { text-align: center; }
.muted { color: var(--t2); }
.dim { color: var(--t3); }
.mono { font-family: var(--fm); }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══ LAUNCH OFFER (landing popup + strip) ═══ */
.vc-launch-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: vcLaunchFadeIn 0.2s ease;
}
.vc-launch-overlay.open {
  display: flex;
}
.vc-launch-overlay[hidden] {
  display: none !important;
}
@keyframes vcLaunchFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.vc-launch-modal {
  background: var(--card);
  border: 1px solid var(--b1);
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
  max-height: min(92vh, 640px);
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  position: relative;
  padding: 0 0 20px;
  animation: vcLaunchSlideUp 0.28s ease;
}
@keyframes vcLaunchSlideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.vc-launch-hero {
  text-align: center;
  padding: 28px 24px 16px;
  background: linear-gradient(165deg, rgba(224, 123, 0, 0.14) 0%, transparent 55%);
  border-radius: 20px 20px 0 0;
}
.vc-launch-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  background: var(--acc);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.vc-launch-kicker {
  font-size: 12px;
  color: var(--t3);
  margin: 0 0 8px;
}
.vc-launch-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}
.vc-launch-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
  letter-spacing: -1px;
}
.vc-launch-was {
  font-size: 14px;
  color: var(--t3);
  text-decoration: line-through;
  font-weight: 600;
}
.vc-launch-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--t1);
  margin: 0;
}
.vc-launch-slots {
  font-size: 12px;
  color: var(--t2);
  margin: 8px 0 0;
}
.vc-launch-feats {
  list-style: none;
  margin: 0;
  padding: 12px 24px;
  font-size: 13px;
  color: var(--t2);
  border-top: 1px solid var(--b1);
  border-bottom: 1px solid var(--b1);
}
.vc-launch-feats li {
  padding: 6px 0 6px 22px;
  position: relative;
}
.vc-launch-feats li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--grn);
  font-weight: 700;
}
.vc-launch-details {
  margin: 14px 20px 0;
  font-size: 12px;
  color: var(--t2);
  line-height: 1.5;
}
.vc-launch-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--t1);
  padding: 8px 0;
}
.vc-launch-details p {
  margin: 0 0 8px;
}
.vc-launch-details a {
  color: var(--acc);
}
.vc-launch-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--t2);
  line-height: 1.4;
  margin: 14px 20px 12px;
  cursor: pointer;
}
.vc-launch-check input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--acc);
}
.vc-launch-modal .btn-block {
  width: calc(100% - 40px);
  margin: 0 20px;
  display: block;
}
.vc-launch-foot {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0 12px;
}
.vc-launch-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: none;
  background: var(--card);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  color: var(--t2);
  line-height: 1;
  box-shadow: var(--sh);
}
.vc-launch-close:hover {
  color: var(--t1);
  background: var(--hover);
}
.vc-offer-strip {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(90deg, rgba(224, 123, 0, 0.1), rgba(224, 123, 0, 0.03));
  border: 1px solid rgba(224, 123, 0, 0.25);
  border-radius: 14px;
}
.vc-offer-strip-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--acc);
  margin-right: 8px;
}
.vc-offer-strip-text {
  font-size: 15px;
  flex: 1;
  min-width: 200px;
}
.vc-offer-strip-text .dim {
  font-size: 13px;
}
body.vc-launch-open {
  overflow: hidden;
}
.auth-aside-headline {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.4px;
  margin-top: 32px;
  max-width: 460px;
}
.auth-aside-lead {
  color: #9BA8C4;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 440px;
}
