@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@300;400;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ───────────────────────────────────────────
   CYMPL BROCHURE — Standalone Styles
   No dependency on theme.css or app.css
   ─────────────────────────────────────────── */

:root {
  --c-purple:      rgb(26,26,142);
  --c-dpurple:     rgb(16,16,86);
  --c-bpurple:     rgb(14,10,43);
  --c-lpurple:     rgb(113,113,205);
  --c-green:       rgb(28,184,155);
  --c-lgreen:      rgb(39,217,184);
  --c-orange:      rgb(241,115,0);
  --c-lorange:     rgb(255,165,81);
  --c-coral:       rgb(245,119,97);
  --c-mgrey:       rgb(70,70,70);
  --c-lgrey:       rgb(244,244,248);
  --c-lavender:    rgb(230,230,244);
  --c-wlavender:   rgb(241,241,248);
  --gradient-hero: linear-gradient(135deg, rgba(20,20,20,1) 0%, rgba(16,16,86,1) 40%, rgba(26,26,142,1) 100%);
  --gradient-cta:  linear-gradient(135deg, var(--c-purple), var(--c-dpurple));
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Anek Latin', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--c-mgrey);
  background: #fff;
  overflow-x: hidden;
}

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  transition: background .3s;
}
.navbar.scrolled {
  background: rgba(16,12,43,0.98) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .5px;
}
.nav-link {
  font-weight: 400;
  font-size: .95rem;
  transition: color .2s;
}
.nav-link:hover { color: var(--c-lgreen) !important; }
.btn-nav {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  padding: .35rem 1.1rem;
  font-weight: 600;
  font-size: .88rem;
  text-align: center;
  transition: all .2s;
  white-space: nowrap;
}
.btn-nav:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.75);
  color: #fff;
}

/* ── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--gradient-hero);
  overflow: hidden;
}
#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 2rem;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--c-green), var(--c-lgreen));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .lead {
  font-size: 1.25rem;
  opacity: .9;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-badges {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badge {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: .35rem 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ────────────────────────────── */
.btn-primary-c {
  background: var(--c-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .75rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-c:hover {
  background: var(--c-lgreen);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28,184,155,.35);
  color: #fff;
}
.btn-outline-c {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 8px;
  padding: .7rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-c:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* ── SECTIONS ───────────────────────────── */
section {
  padding: 5rem 0;
}
.section-label {
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--c-green);
  margin-bottom: .5rem;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-dpurple);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--c-mgrey);
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── PROBLEM / SOLUTION STATS ───────────── */
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--c-purple);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-size: .95rem;
  color: var(--c-mgrey);
  line-height: 1.4;
}

/* ── FEATURE CARDS ──────────────────────── */
.feature-card {
  background: #fff;
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(44,26,142,.08);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-purple), var(--c-green));
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,26,142,.12);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.2rem;
}
.feature-icon.purple { background: var(--c-purple); }
.feature-icon.green  { background: var(--c-green); }
.feature-icon.orange { background: var(--c-orange); }
.feature-icon.coral  { background: var(--c-coral); }
.feature-icon.lpurple { background: var(--c-lpurple); }
.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-dpurple);
  margin-bottom: .6rem;
}
.feature-card p {
  font-size: .95rem;
  color: var(--c-mgrey);
  line-height: 1.6;
  margin: 0;
}
.feature-tag {
  display: inline-block;
  background: var(--c-wlavender);
  color: var(--c-purple);
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 0;
  margin-top: .8rem;
}

/* ── SCREENSHOT PLACEHOLDERS ────────────── */
.screenshot-placeholder {
  background: linear-gradient(135deg, var(--c-wlavender), var(--c-lavender));
  border: 2px dashed rgba(44,26,142,.15);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--c-lpurple);
  font-size: .9rem;
  min-height: 320px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.screenshot-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: .5;
}
.screenshot-placeholder span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
}
.screenshot-placeholder.dark {
  background: linear-gradient(135deg, rgba(29,16,86,.9), rgba(44,26,142,.8));
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
}

/* ── HOW IT WORKS ───────────────────────── */
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-purple);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-purple), var(--c-green));
  margin: 0 auto;
}
.step-card {
  background: #fff;
  border-radius: 4px;
  padding: 1.5rem;
  border: 1px solid rgba(44,26,142,.08);
}
.step-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-dpurple);
  margin-bottom: .4rem;
}
.step-card p {
  font-size: .9rem;
  color: var(--c-mgrey);
  line-height: 1.5;
  margin: 0;
}

/* ── FRAMEWORKS ─────────────────────────── */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.framework-item {
  background: #fff;
  border-radius: 3px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(26,26,142,.08);
  transition: all .3s;
}
.framework-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26,26,142,.1);
}
.framework-item i {
  font-size: 2rem;
  color: var(--c-purple);
  margin-bottom: .8rem;
}
.framework-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-dpurple);
  margin-bottom: .3rem;
}
.framework-item p {
  font-size: .82rem;
  color: var(--c-mgrey);
  margin: 0;
  line-height: 1.4;
}

/* ── AUDIENCE TABS ──────────────────────── */
.audience-tab {
  cursor: pointer;
  padding: .8rem 1.5rem;
  border-radius: 4px;
  background: var(--c-wlavender);
  color: var(--c-mgrey);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: all .2s;
}
.audience-tab:hover,
.audience-tab.active {
  background: #fff;
  border-color: var(--c-purple);
  color: var(--c-dpurple);
  box-shadow: 0 4px 12px rgba(26,26,142,.1);
}
.audience-panel {
  display: none;
}
.audience-panel.active {
  display: block;
}

/* ── PRICING ────────────────────────────── */
.pricing-card {
  background: #fff;
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid rgba(26,26,142,.08);
  height: 100%;
  transition: all .3s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,26,142,.12);
}
.pricing-card.featured {
  border-color: var(--c-purple);
  box-shadow: 0 8px 30px rgba(26,26,142,.15);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-purple);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem 1rem;
  border-radius: 999px;
  letter-spacing: .5px;
}
.pricing-tier {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-purple);
  margin-bottom: .5rem;
}
.pricing-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--c-dpurple);
  line-height: 1;
}
.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--c-mgrey);
}
.pricing-desc {
  font-size: .9rem;
  color: var(--c-mgrey);
  margin: .8rem 0 1.5rem;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}
.pricing-features li {
  font-size: .9rem;
  color: var(--c-mgrey);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(26,26,142,.05);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.pricing-features li i {
  color: var(--c-green);
  font-size: 1.1rem;
}
.pricing-features li.disabled {
  opacity: .4;
}
.pricing-features li.disabled i {
  color: var(--c-mgrey);
}

/* ── TESTIMONIALS ───────────────────────── */
.testimonial-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
}
.testimonial-card .quote {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.testimonial-card .author {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}

/* ── FAQ ─────────────────────────────────── */
.faq-item {
  border: 1px solid rgba(26,26,142,.08);
  border-radius: 3px;
  margin-bottom: .75rem;
  overflow: hidden;
  transition: all .2s;
}
.faq-item:hover {
  border-color: rgba(26,26,142,.15);
}
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-dpurple);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Anek Latin', sans-serif;
}
.faq-question i {
  transition: transform .3s;
  color: var(--c-purple);
}
.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.5rem 1.2rem;
  font-size: .95rem;
  color: var(--c-mgrey);
  line-height: 1.7;
  background: #fff;
}

/* ── CTA BANNER ─────────────────────────── */
.cta-section {
  background: var(--gradient-cta);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(28,184,155,.2), transparent 70%);
  border-radius: 50%;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: .85;
  max-width: 550px;
  margin: 0 auto 2rem;
}

/* ── CONTACT ────────────────────────────── */
.contact-form {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 2.5rem;
  max-width: 560px;
  margin: 0 auto;
}
.contact-form .form-control {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 4px;
  padding: .7rem 1rem;
  font-family: 'Anek Latin', sans-serif;
}
.contact-form .form-control::placeholder {
  color: rgba(255,255,255,.5);
}
.contact-form .form-control:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(28,184,155,.2);
  color: #fff;
}
.contact-form label {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .3rem;
}

/* ── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--c-bpurple);
  color: rgba(255,255,255,.6);
  padding: 3rem 0 1.5rem;
}
.site-footer h6 {
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-footer a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
.site-footer a:hover { color: var(--c-lgreen); }
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li { margin-bottom: .4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: .82rem;
}

/* ── UTILITY ────────────────────────────── */
.bg-lavender { background: var(--c-lavender); }
.bg-wlavender { background: var(--c-wlavender); }
.bg-dpurple { background: var(--c-dpurple); color: #fff; }
.bg-lgrey { background: var(--c-lgrey); }
.text-purple { color: var(--c-purple) !important; }
.text-green { color: var(--c-green) !important; }
.text-dpurple { color: var(--c-dpurple) !important; }

/* ── ANIMATIONS ─────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 991px) {
  .hero h1 { font-size: 2.4rem; }
  section { padding: 3.5rem 0; }
  .section-title { font-size: 1.8rem; }
}
@media (max-width: 767px) {
  .hero h1 { font-size: 2rem; }
  .hero .lead { font-size: 1.05rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .stat-number { font-size: 2.2rem; }
  .pricing-card { margin-bottom: 1.5rem; }
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .framework-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   VISUAL REFRESH — NEW DESIGN SYSTEM (Migration Guide)
   ══════════════════════════════════════════════════════ */

/* ── Extra tokens ───────────────────────────────────── */
:root {
  --grad-hero: linear-gradient(135deg, #0F0B28 0%, #100050 45%, #1a1a8e 100%);
  --grad-acc:  linear-gradient(90deg, var(--c-lgreen), var(--c-lpurple));
  --c-ink:     rgb(15,11,40);
}

/* ── Shared section utilities ───────────────────────── */
.section { padding: 120px 0; position: relative; }
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem; letter-spacing: .2em;
  color: var(--c-purple); text-transform: uppercase;
  margin-bottom: 16px; font-weight: 500;
}
.section-h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.02em; color: var(--c-dpurple);
  margin: 0 0 24px; text-wrap: balance;
}
.grad-text {
  background: linear-gradient(90deg, var(--c-purple), var(--c-green));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 1.15rem; line-height: 1.7;
  max-width: 680px; margin: 0 auto 64px;
  color: var(--c-mgrey); text-align: center;
}
.section-sub-left { font-size: 1.1rem; line-height: 1.7; margin: 0 0 32px; color: var(--c-mgrey); }

/* ── Button system ──────────────────────────────────── */
.btn-cympl {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-weight: 600; font-size: 1rem;
  border-radius: 8px; border: none; cursor: pointer;
  text-decoration: none; transition: all .25s ease;
  font-family: 'Anek Latin', sans-serif;
}
.btn-cympl-primary {
  background: var(--c-green); color: #fff;
  box-shadow: 0 8px 24px rgba(28,184,155,.35), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-cympl-primary:hover {
  background: var(--c-lgreen); transform: translateY(-2px); color: #fff;
  box-shadow: 0 14px 36px rgba(28,184,155,.5);
}
.btn-cympl-ghost {
  background: rgba(255,255,255,.06); color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.btn-cympl-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); color: #fff; }
.btn-cympl-outline {
  background: transparent; border: 2px solid var(--c-purple); color: var(--c-purple);
}
.btn-cympl-outline:hover { background: var(--c-purple); color: #fff; }
.btn-cympl-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-cympl-nav { padding: 10px 20px; font-size: .9rem; border-radius: 6px; }

/* ── Check list ─────────────────────────────────────── */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative; padding: 12px 0 12px 36px;
  font-size: 1rem; color: var(--c-mgrey);
  border-bottom: 1px solid rgba(26,26,142,.06);
}
.check-list li::before {
  content: '\2713'; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; background: var(--c-green); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; line-height: 22px; text-align: center;
}

/* ═════════════════════════════════════════════════════
   §1  HERO — PARTICLE NETWORK
   ═════════════════════════════════════════════════════ */
.hero-stage {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-hero); overflow: hidden; color: #fff; isolation: isolate;
}
.hero-particles-canvas { position: absolute; inset: 0; z-index: 1; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; pointer-events: none; }
.hero-glow-1 { top: -100px; left: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(39,217,184,.4), transparent 40%); }
.hero-glow-2 { bottom: -150px; right: -150px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(113,113,205,.5), transparent 60%); }
.hero-content { position: relative; z-index: 5; text-align: center; max-width: 920px; padding: 140px 32px 80px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: .7rem; letter-spacing: .18em;
  color: rgba(255,255,255,.65); padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 999px;
  background: rgba(255,255,255,.04); backdrop-filter: blur(8px); margin-bottom: 32px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-lgreen); box-shadow: 0 0 12px var(--c-lgreen);
  animation: pulseDot 2s infinite ease-in-out;
}
@keyframes pulseDot { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 3.6rem); font-weight: 700;
  line-height: 1.05; letter-spacing: -.025em; margin: 0 0 28px;
}
.hero-line { display: block; }
.hero-line-grad {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  background: linear-gradient(90deg, var(--c-lgreen) 0%, var(--c-lpurple) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-lead { font-size: 1.2rem; line-height: 1.6; color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto 40px; }
.hero-lead em { color: var(--c-lgreen); font-style: normal; font-weight: 600; }
.hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.hero-meta {
  display: inline-flex; gap: 32px; align-items: center;
  padding: 20px 32px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px; backdrop-filter: blur(10px);
}
.hero-meta-item { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.hero-meta-item strong { font-size: 1.6rem; font-weight: 700; color: #fff; }
.hero-meta-item strong span { font-size: .9rem; font-weight: 400; color: rgba(255,255,255,.6); margin-left: 2px; }
.hero-meta-label { font-family: 'JetBrains Mono', monospace; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.hero-meta-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

.hero-scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: .65rem; letter-spacing: .3em; color: rgba(255,255,255,.5);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2.4s infinite ease-in-out;
}
@keyframes scrollLine {
  0%  { transform:scaleY(0); transform-origin:top }
  50% { transform:scaleY(1); transform-origin:top }
  51% { transform:scaleY(1); transform-origin:bottom }
  100%{ transform:scaleY(0); transform-origin:bottom }
}

/* ═════════════════════════════════════════════════════
   §4  STATS — EDITORIAL NUMBERS
   ═════════════════════════════════════════════════════ */
.section-stats {
  background: var(--c-lgrey);
  border-top: 1px solid rgba(26,26,142,.06);
  border-bottom: 1px solid rgba(26,26,142,.06);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-card-big {
  padding: 48px 32px; border-right: 1px solid rgba(26,26,142,.08);
  background: #fff; transition: background .3s; position: relative;
}
.stat-card-big:last-child { border-right: none; }
.stat-card-big:hover { background: var(--c-wlavender); }
.stat-num {
  font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 800;
  line-height: 1; letter-spacing: -.04em; color: var(--c-dpurple);
  margin-bottom: 16px; font-feature-settings: "tnum";
}
.stat-num span { font-size: .55em; color: var(--c-green); margin-left: 4px; }
.stat-bar { width: 40px; height: 3px; background: var(--c-green); margin-bottom: 20px; }
.stat-label-big { font-size: .95rem; line-height: 1.5; color: var(--c-mgrey); margin: 0; }

/* ═════════════════════════════════════════════════════
   §7c  POSTURE CHECK CALLOUT
   ═════════════════════════════════════════════════════ */
.section-posture-check { background: var(--c-dpurple); color: #fff; overflow: hidden; }
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.pc-eyebrow { color: var(--c-lgreen) !important; }
.pc-h2 { color: #fff; }
.pc-lead { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,.75); margin: 0 0 28px; }
.pc-checklist { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 10px; }
.pc-checklist li { padding-left: 28px; position: relative; font-size: .95rem; color: rgba(255,255,255,.8); }
.pc-checklist li::before { content: '\2713'; position: absolute; left: 0; color: var(--c-lgreen); font-weight: 700; }
.pc-footnote { margin: 14px 0 0; font-size: .8rem; color: rgba(255,255,255,.45); font-family: 'JetBrains Mono', monospace; letter-spacing: .04em; }

.pc-mock-wrap { position: relative; }
.pc-mock-glow {
  position: absolute; inset: -60px;
  background: radial-gradient(ellipse at center, rgba(39,217,184,.25), transparent 65%);
  filter: blur(40px); pointer-events: none;
}
.pc-mock {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px; padding: 28px; backdrop-filter: blur(12px); position: relative; z-index: 1;
}
.pc-mock-grade { display: flex; align-items: center; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 20px; }
.pc-mock-grade-ring {
  width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--c-lgreen);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 700; color: var(--c-lgreen); flex-shrink: 0;
}
.pc-mock-grade-label { font-family: 'JetBrains Mono', monospace; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.pc-mock-grade-sub { font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.3; }

.pc-mock-domains { display: flex; gap: 12px; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 20px; }
.pc-mock-domain { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.pc-mock-domain-arc { width: 44px; height: 22px; border-radius: 44px 44px 0 0; border: 4px solid var(--c-lpurple); border-bottom: none; }
.pc-mock-domain-arc.pc-mock-domain-green { border-color: var(--c-green); }
.pc-mock-domain-arc.pc-mock-domain-amber { border-color: var(--c-orange); }
.pc-mock-domain-label { font-size: .65rem; color: rgba(255,255,255,.5); font-family: 'JetBrains Mono', monospace; letter-spacing: .06em; }

.pc-mock-gaps { margin-bottom: 20px; }
.pc-mock-gaps-h { font-family: 'JetBrains Mono', monospace; font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.pc-mock-gap { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.75); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.pc-mock-gap:last-child { border-bottom: none; }
.pc-mock-gap-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pc-mock-gap-amber { background: var(--c-orange); }
.pc-mock-gap-red   { background: var(--c-coral); }

.pc-mock-intel { display: flex; gap: 8px; flex-wrap: wrap; }
.pc-mock-intel-item { font-family: 'JetBrains Mono', monospace; font-size: .7rem; padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.pc-mock-intel-pass { background: rgba(28,184,155,.15); color: var(--c-lgreen); }
.pc-mock-intel-warn { background: rgba(241,115,0,.15); color: var(--c-orange); }

/* ═════════════════════════════════════════════════════
   §2  CAPABILITIES — BENTO GRID
   ═════════════════════════════════════════════════════ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(220px, auto); gap: 16px; }
.bento-lg { grid-column: span 2; grid-row: span 2; }
.bento-md { grid-column: span 2; }
.bento-sm { grid-column: span 1; }

.bento-card {
  position: relative; background: #fff;
  border: 1px solid rgba(26,26,142,.08); border-radius: 18px; padding: 28px;
  display: flex; flex-direction: column; transition: all .3s ease;
  overflow: hidden; isolation: isolate;
}
.bento-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--card-grad-1, rgba(113,113,205,.06)), transparent 60%);
  opacity: 0; transition: opacity .3s; z-index: -1;
}
.bento-card:hover { transform: translateY(-4px); border-color: var(--card-accent, var(--c-lpurple)); box-shadow: 0 20px 60px rgba(26,26,142,.12); }
.bento-card:hover::before { opacity: 1; }

.bento-purple  { --card-accent: var(--c-purple);  --card-grad-1: rgba(26,26,142,.08); }
.bento-green   { --card-accent: var(--c-green);   --card-grad-1: rgba(28,184,155,.08); }
.bento-coral   { --card-accent: var(--c-coral);   --card-grad-1: rgba(245,119,97,.08); }
.bento-lpurple { --card-accent: var(--c-lpurple); --card-grad-1: rgba(113,113,205,.08); }
.bento-orange  { --card-accent: var(--c-orange);  --card-grad-1: rgba(241,115,0,.08); }

.bento-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--card-accent, var(--c-purple)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; flex-shrink: 0; }
.bento-tag { position: absolute; top: 24px; right: 24px; font-family: 'JetBrains Mono', monospace; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--c-wlavender); color: var(--card-accent, var(--c-purple)); font-weight: 600; }
.bento-title { font-size: 1.25rem; font-weight: 600; color: var(--c-dpurple); margin: 0 0 12px; letter-spacing: -.01em; }
.bento-lg .bento-title { font-size: 1.6rem; }
.bento-copy { font-size: .95rem; line-height: 1.6; color: var(--c-mgrey); margin: 0; flex: 1; }
.bento-link { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--card-accent, var(--c-purple)); margin-top: 20px; transition: gap .2s; text-decoration: none; }
.bento-card:hover .bento-link { gap: 10px; }

/* ═════════════════════════════════════════════════════
   §3  DASHBOARD SHOWCASE — TILTED 3D
   ═════════════════════════════════════════════════════ */
.section-dash-tilted { background: var(--c-wlavender); overflow: hidden; }
.dash-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }

.dash-tilt-stage { position: relative; height: 520px; perspective: 1600px; }
.dash-tilt-glow { position: absolute; inset: -40px; background: radial-gradient(ellipse at center, rgba(113,113,205,.4), transparent 60%); filter: blur(60px); z-index: 0; }
.dash-tilt-frame { position: absolute; top: 0; left: 0; width: 100%; transform: rotateY(-12deg) rotateX(6deg) translateZ(0); transition: transform .4s ease; z-index: 2; }
.dash-tilt-frame-2 { top: 70px; left: 50px; width: 80%; transform: rotateY(-12deg) rotateX(6deg) translateZ(-100px); z-index: 1; opacity: .75; }
.dash-tilt-stage:hover .dash-tilt-frame { transform: rotateY(-6deg) rotateX(3deg) translateZ(20px); }

.dash-mock { background: #fff; border-radius: 12px; border: 1px solid rgba(26,26,142,.1); overflow: hidden; box-shadow: 0 30px 80px rgba(26,26,142,.18), 0 8px 24px rgba(26,26,142,.08); }
.dash-mock-chrome { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--c-lgrey); border-bottom: 1px solid rgba(26,26,142,.08); }
.dash-mock-dots { display: flex; gap: 6px; }
.dash-mock-dots span { width: 11px; height: 11px; border-radius: 50%; }
.dash-mock-dots span:nth-child(1) { background: #FF5F57; }
.dash-mock-dots span:nth-child(2) { background: #FEBC2E; }
.dash-mock-dots span:nth-child(3) { background: #28C840; }
.dash-mock-url { flex: 1; text-align: center; font-family: 'JetBrains Mono', monospace; font-size: .75rem; color: var(--c-mgrey); }
.dash-mock-live { display: flex; align-items: center; gap: 6px; font-family: 'JetBrains Mono', monospace; font-size: .7rem; color: var(--c-coral); font-weight: 600; }
.dash-mock-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-coral); box-shadow: 0 0 8px var(--c-coral); animation: pulseDot 1.4s infinite; }

.dash-mock-body { display: grid; grid-template-columns: 160px 1fr; min-height: 340px; }
.dash-mock-side { background: var(--c-dpurple); color: rgba(255,255,255,.7); padding: 20px 14px; display: flex; flex-direction: column; gap: 3px; }
.dash-mock-logo { color: #fff; font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; margin-bottom: 20px; }
.dash-mock-nav { padding: 9px 12px; border-radius: 6px; font-size: .8rem; font-weight: 500; }
.dash-mock-nav-active { background: rgba(39,217,184,.15); color: var(--c-lgreen); }

.dash-mock-main { padding: 20px 24px; }
.dash-mock-h { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
.dash-mock-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: .6rem; letter-spacing: .15em; color: var(--c-lpurple); margin-bottom: 3px; }
.dash-mock-title { font-size: 1.2rem; font-weight: 600; color: var(--c-dpurple); }
.dash-mock-pill { background: rgba(28,184,155,.12); color: var(--c-green); font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; }

.dash-mock-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.dash-mock-stat { background: var(--c-lgrey); padding: 14px; border-radius: 8px; }
.dash-mock-stat-num { font-size: 1.6rem; font-weight: 700; color: var(--c-dpurple); font-feature-settings: "tnum"; line-height: 1; }
.dash-mock-stat-green { color: var(--c-green); }
.dash-mock-stat-coral { color: var(--c-coral); }
.dash-mock-stat-lbl { font-family: 'JetBrains Mono', monospace; font-size: .58rem; letter-spacing: .12em; color: var(--c-mgrey); margin-top: 4px; }

.dash-mock-cats-h { font-family: 'JetBrains Mono', monospace; font-size: .6rem; letter-spacing: .15em; color: var(--c-lpurple); margin-bottom: 10px; }
.dash-mock-cat { display: grid; grid-template-columns: 110px 1fr 36px; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid rgba(26,26,142,.05); font-size: .8rem; }
.dash-mock-cat:last-child { border-bottom: none; }
.dash-mock-cat-name { color: var(--c-mgrey); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-mock-cat-bar { height: 5px; background: var(--c-lavender); border-radius: 3px; overflow: hidden; }
.dash-mock-cat-fill { height: 100%; background: linear-gradient(90deg, var(--c-purple), var(--c-green)); border-radius: 3px; }
.dash-mock-cat-pct { font-family: 'JetBrains Mono', monospace; font-size: .75rem; font-weight: 600; color: var(--c-dpurple); text-align: right; }

/* ═════════════════════════════════════════════════════
   §7d  FINAL CTA — THREE-PATH
   ═════════════════════════════════════════════════════ */
.section-final-cta { background: var(--c-wlavender); }
.fcta-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; margin-top: 64px; }
.fcta-card {
  background: #fff; border: 1px solid rgba(26,26,142,.08);
  border-radius: 18px; padding: 36px; display: flex; flex-direction: column; gap: 12px;
  transition: all .3s; position: relative; isolation: isolate; overflow: hidden;
}
.fcta-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,142,.07), transparent 60%);
  opacity: 0; transition: opacity .3s; z-index: -1;
}
.fcta-card:not(.fcta-card-primary):hover {
  transform: translateY(-4px);
  border-color: rgba(26,26,142,.22);
  box-shadow: 0 20px 60px rgba(26,26,142,.1);
}
.fcta-card:not(.fcta-card-primary):hover::before { opacity: 1; }
.fcta-card-primary {
  background: linear-gradient(135deg, var(--c-dpurple) 0%, #261680 100%);
  border-color: transparent; color: #fff;
  box-shadow: 0 20px 60px rgba(26,26,142,.3);
}
.fcta-icon { font-size: 2rem; color: var(--c-green); margin-bottom: 4px; }
.fcta-card-primary .fcta-icon { color: var(--c-lgreen); }
.fcta-tag { font-family: 'JetBrains Mono', monospace; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--c-mgrey); padding: 4px 10px; background: var(--c-wlavender); border-radius: 999px; align-self: flex-start; }
.fcta-card-primary .fcta-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.65); }
.fcta-title { font-size: 1.3rem; font-weight: 600; color: var(--c-dpurple); margin: 0; }
.fcta-card-primary .fcta-title { color: #fff; }
.fcta-copy { font-size: .95rem; line-height: 1.6; color: var(--c-mgrey); margin: 0; flex: 1; }
.fcta-card-primary .fcta-copy { color: rgba(255,255,255,.7); }
.fcta-btn { margin-top: auto; align-self: flex-start; }

/* ═════════════════════════════════════════════════════
   RESPONSIVE — NEW COMPONENTS
   ═════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .section { padding: 80px 0; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg, .bento-md { grid-column: span 2; }
  .bento-lg { grid-row: span 1; }
  .bento-sm { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card-big { border-bottom: 1px solid rgba(26,26,142,.08); }
  .stat-card-big:nth-child(2) { border-right: none; }
  .pc-grid { grid-template-columns: 1fr; gap: 48px; }
  .dash-grid { grid-template-columns: 1fr; gap: 40px; }
  .dash-tilt-stage { height: 400px; }
  .fcta-grid { grid-template-columns: 1fr 1fr; }
  .fcta-card-primary { grid-column: span 2; }
  .hero-meta { gap: 20px; padding: 16px 24px; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento-lg, .bento-md, .bento-sm { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card-big { border-right: none; }
  .fcta-grid { grid-template-columns: 1fr; }
  .fcta-card-primary { grid-column: span 1; }
  .hero-meta { flex-direction: column; gap: 16px; text-align: center; }
  .hero-meta-item { align-items: center; }
  .hero-meta-divider { width: 40px; height: 1px; }
  .dash-tilt-stage { display: none; }
}

/* ── Reduced motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow-dot, .hero-scroll-line, .dash-mock-live-dot { animation: none !important; }
  .bento-card, .fcta-card, .dash-tilt-frame, .btn-cympl, .btn-cympl-primary { transition: none !important; }
  .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
  .dash-tilt-stage:hover .dash-tilt-frame { transform: rotateY(-12deg) rotateX(6deg) translateZ(0); }
}

/* ════════════════════════════════════════════════════════
   FAQ V2 — MATCHES NEW CARD LANGUAGE
   ════════════════════════════════════════════════════════ */
.faq-v2-item {
  background: #fff; border: 1px solid rgba(26,26,142,.08);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
  transition: all .3s; position: relative; isolation: isolate;
}
.faq-v2-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,142,.06), transparent 60%);
  opacity: 0; transition: opacity .3s; z-index: -1;
}
.faq-v2-item:hover { border-color: rgba(26,26,142,.2); box-shadow: 0 8px 32px rgba(26,26,142,.08); }
.faq-v2-item:hover::before { opacity: 1; }
.faq-v2-question {
  width: 100%; background: transparent; border: none;
  padding: 22px 24px; font-size: 1rem; font-weight: 600;
  color: var(--c-dpurple); text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Anek Latin', sans-serif;
}
.faq-v2-question i { color: var(--c-lpurple); transition: transform .3s; flex-shrink: 0; font-size: 1.2rem; }
.faq-v2-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-v2-answer {
  padding: 0 24px 22px; font-size: .95rem;
  color: var(--c-mgrey); line-height: 1.7;
}

/* ── Navbar contact button ───────────────────────────── */
.btn-contact-nav {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: .35rem 1.1rem;
  font-weight: 600;
  font-size: .88rem;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.btn-contact-nav:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }

/* ── Stats CTA ──────────────────────────────────────── */
.stats-cta { text-align: center; margin-top: 56px; }

/* ════════════════════════════════════════════════════════
   HOW IT WORKS — VERTICAL TIMELINE
   ════════════════════════════════════════════════════════ */
.hiw-inner { max-width: 680px; margin: 0 auto; }
.hiw-track { position: relative; padding-left: 80px; }
.hiw-track::before {
  content: '';
  position: absolute; left: 23px; top: 24px; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--c-purple), var(--c-green));
}
.hiw-step { position: relative; margin-bottom: 52px; }
.hiw-step:last-child { margin-bottom: 0; }
.hiw-step-circle {
  position: absolute; left: -80px; top: 0;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--c-dpurple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: .78rem; font-weight: 600;
  z-index: 1; flex-shrink: 0;
}
.hiw-step-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem; letter-spacing: .18em; color: var(--c-lpurple);
  margin-bottom: 6px; padding-top: 10px;
}
.hiw-step-title { font-size: 1.15rem; font-weight: 600; color: var(--c-dpurple); margin-bottom: 8px; }
.hiw-step-desc { font-size: .95rem; color: var(--c-mgrey); line-height: 1.6; margin: 0; }

/* ════════════════════════════════════════════════════════
   FRAMEWORKS V2 — STATUS PILL CARDS
   ════════════════════════════════════════════════════════ */
.fw-v2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fw-v2-card {
  background: #fff; border: 1px solid rgba(26,26,142,.08);
  border-radius: 14px; padding: 28px; transition: all .3s;
  position: relative; isolation: isolate; overflow: hidden;
}
.fw-v2-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,184,155,.07), transparent 60%);
  opacity: 0; transition: opacity .3s; z-index: -1;
}
.fw-v2-card:hover {
  transform: translateY(-3px);
  border-color: rgba(28,184,155,.35);
  box-shadow: 0 12px 40px rgba(26,26,142,.1);
}
.fw-v2-card:hover::before { opacity: 1; }
.fw-v2-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.fw-v2-status-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.fw-v2-live { color: var(--c-green); }
.fw-v2-live .fw-v2-status-dot { background: var(--c-green); box-shadow: 0 0 6px var(--c-green); }
.fw-v2-soon { color: var(--c-orange); }
.fw-v2-soon .fw-v2-status-dot { background: var(--c-orange); }
.fw-v2-name { font-size: 1.05rem; font-weight: 600; color: var(--c-dpurple); margin-bottom: 8px; }
.fw-v2-desc { font-size: .88rem; color: var(--c-mgrey); line-height: 1.5; margin: 0; }

@media (max-width: 1000px) { .fw-v2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .fw-v2-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════
   PRICING V2 — CLEAN CARDS
   ════════════════════════════════════════════════════════ */
.pricing-v2-wrap {
  display: grid; grid-template-columns: 1fr 1.12fr 1fr;
  gap: 24px; align-items: start;
}
.pricing-v2-card {
  border: 1px solid rgba(26,26,142,.1); border-radius: 16px;
  padding: 36px 28px; background: #fff; position: relative;
  isolation: isolate; overflow: hidden; transition: all .3s;
}
.pricing-v2-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,142,.07), transparent 60%);
  opacity: 0; transition: opacity .3s; z-index: -1;
}
.pricing-v2-card:not(.pricing-v2-featured):hover {
  transform: translateY(-4px);
  border-color: rgba(26,26,142,.25);
  box-shadow: 0 20px 60px rgba(26,26,142,.12);
}
.pricing-v2-card:not(.pricing-v2-featured):hover::before { opacity: 1; }
.pricing-v2-featured {
  background: linear-gradient(135deg, var(--c-dpurple) 0%, #261680 100%);
  border-color: transparent; color: #fff; padding-top: 56px;
  box-shadow: 0 20px 60px rgba(26,26,142,.35);
}
.pricing-v2-popular {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--c-green); color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px; white-space: nowrap;
}
.pricing-v2-tier {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-purple); margin-bottom: 16px;
}
.pricing-v2-featured .pricing-v2-tier { color: rgba(255,255,255,.55); }
.pricing-v2-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pricing-v2-from { font-size: .9rem; color: var(--c-mgrey); }
.pricing-v2-featured .pricing-v2-from { color: rgba(255,255,255,.55); }
.pricing-v2-amount {
  font-size: 3.2rem; font-weight: 800; line-height: 1; letter-spacing: -.03em;
  color: var(--c-dpurple); font-feature-settings: "tnum";
}
.pricing-v2-featured .pricing-v2-amount { color: #fff; }
.pricing-v2-per { font-size: .95rem; font-weight: 400; color: var(--c-mgrey); }
.pricing-v2-featured .pricing-v2-per { color: rgba(255,255,255,.55); }
.pricing-v2-desc {
  font-size: .9rem; color: var(--c-mgrey); line-height: 1.5;
  margin: 14px 0 20px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(26,26,142,.08);
}
.pricing-v2-featured .pricing-v2-desc { color: rgba(255,255,255,.65); border-bottom-color: rgba(255,255,255,.1); }
.pricing-v2-features { list-style: none; padding: 0; margin: 0 0 28px; }
.pricing-v2-feature {
  font-size: .9rem; color: var(--c-mgrey);
  padding: 11px 0; border-bottom: 1px solid rgba(26,26,142,.06);
  display: flex; align-items: baseline; gap: 10px;
}
.pricing-v2-feature:last-child { border-bottom: none; }
.pricing-v2-featured .pricing-v2-feature { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.08); }
.pricing-v2-check { color: var(--c-green); font-weight: 700; font-size: 1rem; flex-shrink: 0; line-height: 1.4; }
.pricing-v2-featured .pricing-v2-check { color: var(--c-lgreen); }
.pricing-v2-feature-off { color: var(--c-mgrey); opacity: .35; }
.pricing-v2-dash { flex-shrink: 0; line-height: 1.4; }
.pricing-v2-btn {
  display: block; width: 100%; text-align: center;
  padding: 14px 24px; font-size: 1rem; font-weight: 600;
  border-radius: 8px; text-decoration: none; transition: all .25s;
  cursor: pointer; border: none; font-family: 'Anek Latin', sans-serif;
}
.pricing-v2-btn-outline {
  background: transparent; border: 2px solid rgba(26,26,142,.18); color: var(--c-dpurple);
}
.pricing-v2-btn-outline:hover { border-color: var(--c-purple); background: var(--c-wlavender); color: var(--c-dpurple); }
.pricing-v2-btn-filled { background: var(--c-green); color: #fff; box-shadow: 0 4px 16px rgba(28,184,155,.3); }
.pricing-v2-btn-filled:hover { background: var(--c-lgreen); color: #fff; transform: translateY(-1px); }

@media (max-width: 1000px) {
  .pricing-v2-wrap { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-v2-featured { padding-top: 52px; }
}

/* ════════════════════════════════════════════════════════
   CONTACT TABS
   ════════════════════════════════════════════════════════ */
.contact-tabs { display: flex; gap: 8px; margin-bottom: 28px; }
.contact-tab-btn {
  flex: 1; padding: 12px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.65);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: all .2s; font-family: 'Anek Latin', sans-serif; text-align: center;
}
.contact-tab-btn:hover { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); }
.contact-tab-btn.active { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.45); }
.contact-form-meta { color: rgba(255,255,255,.55); font-size: .88rem; text-align: center; margin-bottom: 20px; }
