/* ============================================================
   SYNCOY — Landing Page Styles
   Tokens inherited from style.css (:root)
   ============================================================ */

/* ── Shared helpers ── */
.l-gold   { color: var(--gold); }
.l-green  { color: var(--green); }
.l-red    { color: var(--red); }
.l-muted  { color: var(--muted); }

/* ── Layout containers ── */
.l-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.l-container--narrow {
  max-width: 760px;
}

/* ── Section base ── */
.l-section {
  padding: 120px 0;
  position: relative;
}
.l-section__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.l-section__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.l-section__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ── Buttons ── */
.l-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.l-btn--gold {
  background: var(--gold);
  color: #080808;
}
.l-btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 169, 126, 0.3);
}
.l-btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.l-btn--ghost:hover {
  border-color: rgba(200, 169, 126, 0.4);
  color: var(--gold);
}
.l-btn--lg {
  padding: 14px 28px;
  font-size: 13px;
}

/* ── Ambient orbs ── */
.l-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.l-orb--gold {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 169, 126, 0.12) 0%, transparent 70%);
  top: -100px;
  left: -150px;
}
.l-orb--indigo {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 107, 249, 0.1) 0%, transparent 70%);
  bottom: 0;
  right: -100px;
}

/* ── Fade-up animation base ── */
.js-fade-up {
  opacity: 0;
  transform: translateY(28px);
}

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
.l-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.l-nav.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.l-nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.l-nav__logo {
  text-decoration: none;
  flex-shrink: 0;
}
.l-nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: 8px;
}
.l-nav__links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.l-nav__links a:hover { color: var(--text); }

/* Nav dropdown */
.l-nav__has-dropdown { position: relative; }
.l-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.l-nav__dropdown-toggle svg {
  transition: transform 0.25s var(--ease-out);
}
.l-nav__has-dropdown:hover .l-nav__dropdown-toggle svg {
  transform: rotate(180deg);
}
.l-nav__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 14px;
  min-width: 280px;
  padding: 8px;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid rgba(200, 169, 126, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(200, 169, 126, 0.06) inset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease-out),
              transform 0.3s var(--ease-out),
              visibility 0.25s;
  z-index: 1001;
}
.l-nav__has-dropdown:hover .l-nav__dropdown,
.l-nav__has-dropdown:focus-within .l-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Invisible bridge so hover doesn't break when moving from toggle to menu */
.l-nav__dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.l-nav__dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.l-nav__dropdown-item:hover {
  background: rgba(200, 169, 126, 0.08);
}
.l-nav__dropdown-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 126, 0.1);
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 8px;
}
.l-nav__dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.l-nav__dropdown-name {
  font-size: 13px !important;
  font-weight: 600;
  color: var(--text) !important;
  letter-spacing: 0.02em !important;
}
.l-nav__dropdown-desc {
  font-size: 11px !important;
  color: var(--muted) !important;
  letter-spacing: 0.01em !important;
}
.l-nav__actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.l-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.l-nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
}
.l-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px 32px 24px;
  background: rgba(8, 8, 8, 0.97);
  border-bottom: 1px solid var(--border);
}
.l-nav__mobile a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 4px 0;
}
.l-nav__mobile.open { display: flex; }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.l-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.l-hero > .l-hero__content {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.l-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.l-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.l-hero__headline {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.l-hero__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.l-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.l-hero__note {
  margin-top: 20px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.l-hero__note::before {
  content: '✓ ';
  color: var(--green);
}

/* HUD mock in hero */
.l-hud-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.l-hud__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(200, 169, 126, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.l-hud__caption {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-align: center;
}

/* Scroll hint */
.l-scroll-hint {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 500;
}
.l-scroll-hint.hidden {
  opacity: 0;
}
.l-scroll-hint__line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════
   HUD COMPONENT (shared between hero + workers tab)
   ═══════════════════════════════════════════════════ */
.l-hud {
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid rgba(200, 169, 126, 0.25);
  border-radius: 14px;
  padding: 14px 16px;
  width: 260px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 169, 126, 0.08);
  position: relative;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
  user-select: none;
}
.l-hud--static { margin: 0 auto; }
.l-hud__drag {
  font-size: 8px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}
.l-hud__project {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.l-hud__timer {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.l-hud__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.l-hud__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text);
  letter-spacing: 0.04em;
  min-width: 0;
}
.l-hud__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
.l-hud__idle {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.l-hud__controls {
  display: flex;
  gap: 8px;
}
.l-hud__pause,
.l-hud__stop {
  flex: 1;
  padding: 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.l-hud__pause {
  background: rgba(107, 107, 249, 0.15);
  border: 1px solid rgba(107, 107, 249, 0.3);
  color: #9898fc;
}
.l-hud__pause:hover { background: rgba(107, 107, 249, 0.25); }
.l-hud__stop {
  background: rgba(200, 169, 126, 0.12);
  border: 1px solid rgba(200, 169, 126, 0.25);
  color: var(--gold);
}
.l-hud__stop:hover { background: rgba(200, 169, 126, 0.2); }

/* ═══════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════ */
.l-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  flex-wrap: wrap;
}
.l-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 40px;
  gap: 4px;
}
.l-stat__num {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.l-stat__label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.l-stat__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════════════ */
.l-problem {
  background: var(--bg);
}
.l-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.l-problem__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.l-problem__card:hover {
  border-color: rgba(200, 169, 126, 0.2);
  transform: translateY(-4px);
}
.l-problem__card--center {
  border-color: rgba(200, 169, 126, 0.15);
  background: rgba(200, 169, 126, 0.03);
}
.l-problem__icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.l-problem__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.l-problem__pain {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.l-problem__after {
  font-size: 13px;
  color: var(--text);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   WHO IT'S FOR — TABS
   ═══════════════════════════════════════════════════ */
.l-for-who {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.l-for-who::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 169, 126, 0.3), transparent);
}
.l-tabs {
  margin-top: 48px;
}
.l-tabs__nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.l-tab-btn {
  padding: 12px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: -1px;
}
.l-tab-btn:hover { color: var(--text); }
.l-tab-btn--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.l-tab-panel {
  display: none;
}
.l-tab-panel--active { display: block; }
.l-tab-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.l-tab-panel__copy h3 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 28px;
}
.l-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.l-feature-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.l-feature-list__icon {
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Dashboard mock (in tab visuals) */
.l-dashboard-mock {
  background: rgba(8, 8, 8, 0.8);
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 14px;
  padding: 24px;
  backdrop-filter: blur(10px);
}
.l-dm__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.l-dm__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.l-dm__badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
}
.l-dm__badge--live {
  background: rgba(76, 175, 125, 0.15);
  color: var(--green);
}
.l-dm__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.l-dm__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.l-dm__stat-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.l-dm__stat-key {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.l-dm__stages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-dm__stage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.l-dm__stage--done {
  color: var(--text);
  background: rgba(76, 175, 125, 0.04);
}
.l-dm__stage--active {
  color: var(--text);
  background: rgba(200, 169, 126, 0.05);
  border-color: rgba(200, 169, 126, 0.2);
}
.l-dm__editors {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-dm__editor-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.l-dm__editor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}
.l-dm__editor-dot--on {
  background: var(--green);
  box-shadow: 0 0 6px rgba(76, 175, 125, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════ */
.l-how { background: var(--bg); }
.l-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
}
.l-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
  height: 100%;
}
.l-step:hover {
  border-color: rgba(200, 169, 126, 0.2);
  transform: translateY(-4px);
}
.l-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 20px;
  padding: 0 8px;
  align-self: center;
}
.l-step__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.l-step__body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.l-step__body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   FEATURES — ROLE BLOCKS
   ═══════════════════════════════════════════════════ */
.l-features {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-bottom: 0;
}
.l-features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 169, 126, 0.25), transparent);
}
.l-features .l-container {
  padding-bottom: 0;
}
.l-features .l-section__sub {
  margin-bottom: 0;
}

/* ─ Role Feature Tabs ─ */
.l-rf-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: rgba(8, 8, 8, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 20px 0 0;
  position: relative;
  backdrop-filter: blur(20px);
}
.l-rf-tab {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.35s var(--ease-out);
  white-space: nowrap;
}
.l-rf-tab:hover { color: var(--text); }
.l-rf-tab--active {
  color: #080808;
}
.l-rf-tab svg {
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}
.l-rf-tab--active svg { transform: scale(1.08); }
.l-rf-tab__indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: var(--gold);
  border-radius: 8px;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(200, 169, 126, 0.35);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

/* Panels container */
.l-rf-panels {
  position: relative;
  margin-top: 24px;
  min-height: 520px;
}
.l-rf-block {
  position: absolute;
  inset: 0;
  padding: 32px 0 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out),
              transform 0.6s var(--ease-out);
}
.l-rf-block--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.l-rf-block--active .l-rf-copy,
.l-rf-block--active .l-rf-visual {
  animation: rf-slide-in 0.7s var(--ease-out) both;
}
.l-rf-block--active .l-rf-visual { animation-delay: 0.1s; }
@keyframes rf-slide-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.l-rf-block--active .l-rf-list li {
  animation: rf-list-in 0.5s var(--ease-out) both;
}
.l-rf-block--active .l-rf-list li:nth-child(1) { animation-delay: 0.15s; }
.l-rf-block--active .l-rf-list li:nth-child(2) { animation-delay: 0.22s; }
.l-rf-block--active .l-rf-list li:nth-child(3) { animation-delay: 0.29s; }
.l-rf-block--active .l-rf-list li:nth-child(4) { animation-delay: 0.36s; }
@keyframes rf-list-in {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.l-rf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.l-rf-grid--flip .l-rf-visual { order: -1; }

.l-rf-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.l-rf-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 32px;
}
.l-rf-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.l-rf-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.l-rf-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mock cards */
.l-rf-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-rf-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.l-rf-mock__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.l-rf-mock__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.l-rf-mock__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(90,90,90,0.3);
  color: var(--muted);
}
.l-rf-mock__tag--live {
  background: rgba(76,175,125,0.15);
  color: var(--green);
}
.l-rf-mock__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.l-rf-mock__stats--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.l-rf-mock__stats--4 .l-rf-mock__val {
  font-size: 15px;
}
.l-rf-mock__stats--4 .l-rf-mock__key {
  font-size: 9px;
}
.l-rf-mock__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.l-rf-mock__val {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.l-rf-mock__key {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.l-rf-mock__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}
.l-rf-mock__context {
  font-size: 10px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-top: -10px;
  margin-bottom: 18px;
  padding-left: 1px;
  border-left: 2px solid rgba(200, 169, 126, 0.3);
  padding-left: 10px;
  transition: opacity 0.4s;
}
.l-rf-mock__editors {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-rf-mock__editor {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text);
}
.l-rf-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.l-rf-mock__dot--on {
  background: var(--green);
  box-shadow: 0 0 6px rgba(76,175,125,0.5);
}
.l-rf-mock__app {
  flex: 1;
  font-size: 11px;
  color: var(--muted);
}
.l-rf-mock__time {
  font-size: 11px;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.l-rf-mock__stages {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.l-rf-mock__stage {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  margin: 0 -14px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--muted);
  transition: color 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.l-rf-mock__stage + .l-rf-mock__stage { margin-top: 1px; }
.l-rf-mock__stage::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 0;
  height: 1px;
  background: var(--border);
}
.l-rf-mock__stage:last-child::after { display: none; }
.l-rf-mock__stage-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-rf-mock__stage-name {
  transition: color 0.4s var(--ease-out);
}
.l-rf-mock__stage-pct {
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  color: var(--muted);
  transition: color 0.4s var(--ease-out), opacity 0.3s;
}

/* Check mark — hidden by default */
.l-rf-mock__check {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s var(--ease-out), transform 0.4s var(--ease-out);
}
.l-rf-mock__check path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.65, 0, 0.45, 1);
}

/* DONE state */
.l-rf-mock__stage--done {
  color: var(--text);
  background: rgba(76, 175, 125, 0.04);
}
.l-rf-mock__stage--done .l-rf-mock__stage-name {
  color: var(--text);
}
.l-rf-mock__stage--done .l-rf-mock__stage-pct {
  opacity: 0;
  width: 0;
  overflow: hidden;
}
.l-rf-mock__stage--done .l-rf-mock__check {
  opacity: 1;
  transform: scale(1);
}
.l-rf-mock__stage--done .l-rf-mock__check path {
  stroke-dashoffset: 0;
}

/* ACTIVE state */
.l-rf-mock__stage--active {
  color: var(--text);
  font-weight: 600;
  background: linear-gradient(90deg, rgba(200, 169, 126, 0.08) 0%, rgba(200, 169, 126, 0.02) 100%);
  box-shadow: inset 2px 0 0 var(--gold);
}
.l-rf-mock__stage--active .l-rf-mock__stage-name {
  color: var(--gold);
}
.l-rf-mock__stage--active .l-rf-mock__stage-pct {
  color: var(--gold);
  font-weight: 600;
}
.l-rf-mock__stage--active::before {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% 100%;
  animation: stage-shimmer 2s linear infinite;
  opacity: 0.6;
}
@keyframes stage-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ─── Live client mock premium layer ─── */
.l-rf-mock--client {
  position: relative;
  overflow: hidden;
}
.l-rf-mock--studio {
  position: relative;
  overflow: visible;
}
.l-rf-mock__scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(200, 169, 126, 0.12) 0%, transparent 100%);
  pointer-events: none;
  transform: translateY(-100%);
  animation: scanline 6s ease-in-out infinite;
  z-index: 1;
}
@keyframes scanline {
  0%   { transform: translateY(-100%); opacity: 0; }
  10%  { opacity: 1; }
  40%  { transform: translateY(600%); opacity: 1; }
  45%  { transform: translateY(600%); opacity: 0; }
  46%  { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(-100%); opacity: 0; }
}

/* Live pulsing dot on LIVE badge */
.l-rf-mock__tag--live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.l-rf-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(76, 175, 125, 0.7);
  animation: live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(76, 175, 125, 0.7); }
  70%  { box-shadow: 0 0 0 6px rgba(76, 175, 125, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 125, 0); }
}

/* Project-wide progress bar */
.l-rf-mock__progress-bar {
  position: relative;
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  margin-bottom: 16px;
  overflow: hidden;
}
.l-rf-mock__progress-fill {
  position: absolute;
  inset: 0;
  right: auto;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(200, 169, 126, 0.6);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.l-rf-mock__progress-fill::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 12px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7));
  filter: blur(2px);
}

/* Hours counter ticking — subtle flash on tick */
.l-rf-mock__val.tick {
  animation: val-tick 0.35s var(--ease-out);
}
@keyframes val-tick {
  0%   { color: var(--gold-light); text-shadow: 0 0 8px rgba(200,169,126,0.4); }
  100% { }
}

/* Delivered overlay */
.l-rf-mock__delivered {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
  z-index: 3;
}
.l-rf-mock__delivered svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 12px rgba(76, 175, 125, 0.6));
}
.l-rf-mock__delivered.show {
  opacity: 1;
  animation: delivered-flash 1.6s ease-out;
}
@keyframes delivered-flash {
  0%   { background: rgba(76, 175, 125, 0.3); }
  30%  { background: rgba(76, 175, 125, 0.08); }
  100% { background: rgba(8, 8, 8, 0.92); }
}
.l-rf-mock--hud {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.l-rf-mock__caption {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── Studio P&L chart ─── */
.l-rf-chart { display: flex; flex-direction: column; }
.l-rf-chart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.l-rf-chart__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.l-rf-chart__tabs {
  position: relative;
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.l-rf-chart__tabs::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  width: var(--ind-w, 0px);
  transform: translateX(var(--ind-x, 0px));
  background: var(--gold);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(200, 169, 126, 0.3);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.l-rf-chart__tab {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.35s var(--ease-out);
}
.l-rf-chart__tab:hover { color: var(--text); }
.l-rf-chart__tab--active {
  color: #080808;
}
.l-rf-chart__legend {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.l-rf-chart__leg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--muted);
}
.l-rf-chart__sw {
  display: inline-block;
  width: 10px;
  height: 3px;
  border-radius: 2px;
}
.l-rf-chart__sw--inv { background: var(--gold); }
.l-rf-chart__sw--col { background: var(--green); }
.l-rf-chart__sw--exp { background: rgba(224, 82, 82, 0.85); }

.l-rf-chart__plot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  height: 110px;
  padding: 10px 2px 24px;
  position: relative;
  border-bottom: 1px dashed var(--border);
  transition: opacity 0.25s ease;
}
.l-rf-chart__plot.swapping { opacity: 0; }
.l-rf-chart__plot::before,
.l-rf-chart__plot::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.04);
}
.l-rf-chart__plot::before { top: 33%; }
.l-rf-chart__plot::after  { top: 66%; }

.l-rf-chart__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  height: 100%;
  justify-content: flex-end;
}
.l-rf-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 100%;
  width: 100%;
  justify-content: center;
}
.l-rf-chart__bar {
  flex: 1;
  max-width: 9px;
  min-width: 4px;
  border-radius: 3px 3px 0 0;
  height: 0;
  transition: height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.l-rf-chart__bar--inc {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 8px rgba(200, 169, 126, 0.25);
}
.l-rf-chart__bar--inv {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 6px rgba(200, 169, 126, 0.25);
}
.l-rf-chart__bar--col {
  background: linear-gradient(180deg, rgba(76, 175, 125, 0.95), rgba(76, 175, 125, 0.6));
  box-shadow: 0 0 6px rgba(76, 175, 125, 0.25);
}
.l-rf-chart__bar--exp {
  background: linear-gradient(180deg, rgba(224, 82, 82, 0.85), rgba(224, 82, 82, 0.55));
}
.l-rf-chart__col--loss .l-rf-chart__bar--exp {
  background: linear-gradient(180deg, #E05252, #B43232);
  box-shadow: 0 0 10px rgba(224, 82, 82, 0.5);
}
.l-rf-chart__col--loss .l-rf-chart__label {
  color: var(--red);
  font-weight: 600;
}
.l-rf-chart__label {
  position: absolute;
  bottom: -18px;
  font-size: 9px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.l-rf-chart__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.l-rf-chart__net-key {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.l-rf-chart__net-val {
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--green);
  transition: color 0.4s;
}
.l-rf-chart__net-val--loss { color: var(--red); }

/* Walkthrough tooltip on Outstanding stat (W view only) */
.l-rf-mock__stat--tip-host { position: relative; }
.l-rf-tip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  width: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(8px);
  transition: opacity 0.5s var(--ease-out),
              transform 0.6s var(--ease-out);
  z-index: 10;
}
.l-rf-tip.show {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.l-rf-tip__arrow {
  display: block;
  width: 60px;
  height: 2px;
}
.l-rf-tip__head {
  display: block;
}
.l-rf-tip__bubble {
  width: 220px;
  margin-left: 4px;
}

/* Above variant — tooltip escapes ABOVE the whole card, arrow drops down to the stat */
/* Above variant:
   The bubble floats OUTSIDE the card (clearing the top edge),
   the dashed line + chevron pass THROUGH the card top into the stat. */
.l-rf-tip--above {
  left: 50%;
  top: auto;
  bottom: 100%;
  transform: translateX(-50%) translateY(8px);
  flex-direction: column;
  align-items: center;
}
.l-rf-tip--above.show {
  transform: translateX(-50%) translateY(0);
}
.l-rf-tip--above .l-rf-tip__bubble {
  order: 1;
  margin: 0 0 4px 0;
}
.l-rf-tip--above .l-rf-tip__arrow {
  order: 2;
  width: 2px;
  height: 100px;
  transform-origin: top center;
  transform: scaleY(0);
}
.l-rf-tip--above.show .l-rf-tip__arrow {
  transform: scaleY(1);
}
.l-rf-tip--above .l-rf-tip__head {
  order: 3;
  width: 10px;
  height: 6px;
  transform: translateY(-4px);
}
.l-rf-tip--above.show .l-rf-tip__head {
  transform: translateY(0);
}

/* Below variant — tooltip sits under host, arrow points up */
.l-rf-tip--below {
  left: 50%;
  top: calc(100% + 10px);
  bottom: auto;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%) translateY(-8px);
}
.l-rf-tip--below.show {
  transform: translateX(-50%) translateY(0);
}
.l-rf-tip--below .l-rf-tip__head {
  order: 1;
  width: 10px;
  height: 6px;
  transform: translateY(4px);
}
.l-rf-tip--below.show .l-rf-tip__head {
  transform: translateY(0);
}
.l-rf-tip--below .l-rf-tip__arrow {
  order: 2;
  width: 2px;
  height: 32px;
  transform-origin: top center;
  transform: scaleY(0);
}
.l-rf-tip--below.show .l-rf-tip__arrow {
  transform: scaleY(1);
}
.l-rf-tip--below .l-rf-tip__bubble {
  order: 3;
  margin: 4px 0 0 0;
}

/* Left variant — tooltip sits to the left of host, arrow points right */
.l-rf-tip--left {
  left: auto;
  right: calc(100% + 14px);
  flex-direction: row;
  transform: translateY(-50%) translateX(-8px);
}
.l-rf-tip--left.show {
  transform: translateY(-50%) translateX(0);
}
.l-rf-tip--left .l-rf-tip__bubble {
  margin-left: 0;
  margin-right: 4px;
  order: 1;
}
.l-rf-tip--left .l-rf-tip__arrow {
  order: 2;
  transform-origin: right center;
}
.l-rf-tip--left .l-rf-tip__head {
  order: 3;
  transform: translateX(4px);
}
.l-rf-tip--left.show .l-rf-tip__head {
  transform: translateX(0);
}
.l-rf-tip__bubble {
  position: relative;
  padding: 12px 14px;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid rgba(200, 169, 126, 0.35);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(200, 169, 126, 0.08) inset,
    0 0 24px rgba(200, 169, 126, 0.08);
}
.l-rf-tip__label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.l-rf-tip__bubble p {
  font-size: 11px;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
.l-rf-tip__bubble em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}
.l-rf-tip__arrow {
  filter: drop-shadow(0 0 4px rgba(200, 169, 126, 0.3));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.l-rf-tip.show .l-rf-tip__arrow {
  transform: scaleX(1);
}
.l-rf-tip__arrow line {
  animation: tip-dash-flow 1.8s linear infinite;
}
@keyframes tip-dash-flow {
  to { stroke-dashoffset: -12; }
}
.l-rf-tip__head {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s var(--ease-out) 0s,
              transform 0.3s var(--ease-out) 0s;
}
.l-rf-tip.show .l-rf-tip__head {
  opacity: 1;
  transform: translateX(0);
}

/* Studio live engine — value tick, bar shimmer, tab pulse */
.l-rf-mock__val.flash {
  animation: stat-flash 0.55s var(--ease-out);
}
@keyframes stat-flash {
  0%   { text-shadow: 0 0 14px rgba(200,169,126,0.7); transform: translateY(-1px); }
  100% { text-shadow: none; transform: translateY(0); }
}
.l-rf-chart__bar.pulse::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), transparent);
  border-radius: 3px 3px 0 0;
  animation: bar-pulse 0.9s ease-out;
  pointer-events: none;
}
@keyframes bar-pulse {
  0%   { opacity: 0; transform: translateY(-100%); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(0); }
}
.l-rf-chart__tab.auto-pulse {
  animation: tab-pulse 0.6s var(--ease-out);
}
@keyframes tab-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,169,126,0.6); }
  100% { box-shadow: 0 0 0 8px rgba(200,169,126,0); }
}
.l-rf-mock--studio .l-rf-mock__scanline {
  /* Inherit existing client scanline animation but slower so it's ambient */
  animation-duration: 9s;
}

/* ═══════════════════════════════════════════════════
   VERTICALS
   ═══════════════════════════════════════════════════ */
.l-verticals { background: var(--bg); }
.l-verticals__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.l-vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s;
  opacity: 0.55;
}
.l-vertical--live {
  opacity: 1;
  border-color: rgba(200, 169, 126, 0.15);
}
.l-vertical__icon {
  font-size: 22px;
}
.l-vertical__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.l-vertical__badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
}
.l-vertical__badge--live {
  background: rgba(76, 175, 125, 0.15);
  color: var(--green);
}
.l-vertical__badge--cta {
  background: rgba(200, 169, 126, 0.12);
  color: var(--gold);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.l-faq { background: var(--surface); border-top: 1px solid var(--border); }
.l-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.l-faq__item {
  border-bottom: 1px solid var(--border);
}
.l-faq__item:last-child { border-bottom: none; }
.l-faq__item summary {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  user-select: none;
}
.l-faq__item summary::-webkit-details-marker { display: none; }
.l-faq__item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.l-faq__item[open] summary::after {
  transform: rotate(45deg);
}
.l-faq__item summary:hover { background: rgba(255,255,255,0.02); }
.l-faq__body {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════ */
.l-cta { background: var(--bg); }
.l-cta__card {
  background: var(--surface);
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.l-cta__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 169, 126, 0.5), transparent);
}
.l-orb--cta {
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
}
.l-orb--cta-2 {
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
}
.l-cta__inner {
  position: relative;
  z-index: 1;
}
.l-cta__label {
  margin-bottom: 20px;
  display: block;
}
.l-cta__headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.l-cta__sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.l-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.l-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
}
.l-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.l-footer__brand .wordmark {
  display: block;
  margin-bottom: 12px;
}
.l-footer__brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.l-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.l-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.l-footer__col a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.l-footer__col a:hover { color: var(--text); }
.l-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}
.l-footer__status {
  display: flex;
  align-items: center;
  gap: 7px;
}
.l-footer__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(76, 175, 125, 0.5);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .l-steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .l-step__arrow { display: none; }
  .l-verticals__strip { grid-template-columns: repeat(2, 1fr); }
  .l-rf-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .l-section { padding: 80px 0; }
  .l-hero { padding: 100px 24px 60px; min-height: auto; }
  .l-hero__content { grid-template-columns: 1fr; gap: 48px; }
  .l-hud-wrap { display: none; }
  .l-nav__links { display: none; }
  .l-nav__actions { display: none; }
  .l-nav__hamburger { display: flex; }
  .l-problem__grid { grid-template-columns: 1fr; }
  .l-tab-panel__inner { grid-template-columns: 1fr; gap: 36px; }
  .l-tab-panel__visual { display: none; }
  .l-steps { grid-template-columns: 1fr; }
  .l-footer__top { grid-template-columns: 1fr; gap: 36px; }
  .l-footer__links { grid-template-columns: repeat(2, 1fr); }
  .l-cta__card { padding: 48px 28px; }
  .l-stats { gap: 0; }
  .l-stat { padding: 12px 20px; }
  .l-stat__divider { display: none; }
  /* Features showcase stacks on mobile */
  .l-feat-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .l-rf-grid { grid-template-columns: 1fr; gap: 40px; }
  .l-rf-grid--flip .l-rf-visual { order: 0; }
  .l-rf-tabs { display: flex; width: 100%; overflow-x: auto; }
  .l-rf-tab { flex: 1; justify-content: center; padding: 10px 12px; font-size: 11px; }
  .l-rf-tab span { display: none; }
  .l-rf-tab svg { width: 18px; height: 18px; }
  .l-rf-panels { min-height: 900px; }
  .l-feat-item { padding: 12px 20px; }
  .l-feat-item__desc { display: none; }
}

@media (max-width: 480px) {
  .l-container { padding: 0 20px; }
  .l-verticals__strip { grid-template-columns: 1fr 1fr; }
  .l-footer__links { grid-template-columns: 1fr; }
  .l-tabs__nav { overflow-x: auto; }
  .l-tab-btn { white-space: nowrap; }
}
