@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;600&display=swap";
@import "https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap";
:root {
  --tl-bg: #040711;
  --tl-bg-alt: #070b19;
  --tl-cyan: #00f0ff;
  --tl-purple: #b026ff;
  --tl-text-main: #fff;
  --tl-text-muted: #8a99b5;
  --tl-glass: #0a1026a6;
  --tl-glass-border: #00f0ff26;
  --tl-glow-cyan: 0 0 20px #00f0ff66;
  --tl-glow-purple: 0 0 30px #b026ff66;
}

html {
  scroll-behavior: smooth;
}

.tl-shell {
  background-color: var(--tl-bg);
  color: var(--tl-text-main);
  width: 100%;
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

.tl-title {
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #fff 0%, var(--tl-cyan) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  animation: .8s ease-out forwards tl-fade-up;
}

.tl-subtitle {
  color: var(--tl-text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
  animation: 1s ease-out forwards tl-fade-up;
}

.tl-section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

.tl-section-desc {
  text-align: center;
  color: var(--tl-text-muted);
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
}

.tl-section {
  width: 100%;
  padding: 6rem 1.5rem;
  position: relative;
}

.tl-section-alt {
  background-color: var(--tl-bg-alt);
  border-top: 1px solid #ffffff08;
  border-bottom: 1px solid #ffffff08;
}

.tl-container {
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.tl-header {
  z-index: 1000;
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tl-glass-border);
  background: #040711cc;
  width: 100%;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
}

.tl-nav {
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  display: flex;
}

.tl-logo {
  letter-spacing: -.02em;
  color: var(--tl-text-main);
  align-items: center;
  gap: .75rem;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.tl-logo-icon {
  color: var(--tl-cyan);
  filter: drop-shadow(0 0 8px #00f0ff99);
}

.tl-nav-links {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.tl-nav-links a {
  color: var(--tl-text-muted);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
}

.tl-nav-links a:hover {
  color: var(--tl-cyan);
}

.tl-btn-primary {
  background: var(--tl-cyan);
  color: #000;
  cursor: pointer;
  box-shadow: var(--tl-glow-cyan);
  border: none;
  border-radius: 50px;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
}

.tl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px #00f0ff99;
}

.tl-btn-secondary {
  color: var(--tl-text-main);
  border: 1px solid var(--tl-glass-border);
  cursor: pointer;
  background: none;
  border-radius: 50px;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.tl-btn-secondary:hover {
  border-color: var(--tl-cyan);
  background: #ffffff0d;
}

.tl-hero {
  text-align: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 6rem;
  display: flex;
  overflow: hidden;
}

.tl-hero-bg {
  z-index: 1;
  background: radial-gradient(circle at 20% 30%, #00f0ff26 0%, #0000 40%), radial-gradient(circle at 80% 70%, #b026ff26 0%, #0000 40%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.tl-hero-grid {
  z-index: 0;
  opacity: .4;
  background-image: linear-gradient(#ffffff08 1px, #0000 1px), linear-gradient(90deg, #ffffff08 1px, #0000 1px);
  background-size: 50px 50px;
  width: 100%;
  height: 100%;
  animation: 20s linear infinite grid-move;
  position: absolute;
  top: 0;
  left: 0;
  transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(3);
}

.tl-hero-actions {
  justify-content: center;
  gap: 1rem;
  animation: 1.2s ease-out forwards tl-fade-up;
  display: flex;
}

.tl-hero-preview {
  border: 1px solid var(--tl-glass-border);
  background: var(--tl-glass);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  margin-top: 4rem;
  padding: 1rem;
  animation: 6s ease-in-out infinite float;
  box-shadow: 0 20px 50px #00000080;
}

.tl-preview-header {
  gap: 8px;
  margin-bottom: 1rem;
  display: flex;
}

.tl-dot {
  background: #333;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.tl-dot:first-child {
  background: #ff5f56;
}

.tl-dot:nth-child(2) {
  background: #ffbd2e;
}

.tl-dot:nth-child(3) {
  background: #27c93f;
}

.tl-hero-preview-content {
  text-align: left;
  gap: 1rem;
  display: flex;
}

.tl-preview-card {
  background: #ffffff05;
  border-radius: 8px;
  flex: 1;
  padding: 1.5rem;
}

.tl-preview-card-alt {
  background: #00f5c41a;
  border: 1px solid #00f5c44d;
}

.tl-features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  display: grid;
}

.tl-feature-card {
  background: var(--tl-glass);
  transform-style: preserve-3d;
  perspective: 1000px;
  border: 1px solid #ffffff0d;
  border-radius: 16px;
  padding: 2.5rem;
  transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
}

.tl-feature-card:hover {
  border-color: var(--tl-cyan);
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 15px 35px #00f0ff1a;
}

.tl-feature-icon {
  width: 60px;
  height: 60px;
  color: var(--tl-cyan);
  background: #00f0ff1a;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  display: flex;
}

.tl-feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.tl-feature-card p {
  color: var(--tl-text-muted);
  line-height: 1.6;
}

.tl-comparison {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  display: grid;
}

.tl-comp-card {
  border-radius: 20px;
  padding: 2.5rem;
}

.tl-comp-them {
  opacity: .7;
  background: #ff32320d;
  border: 1px solid #ff32321a;
}

.tl-comp-us {
  border: 1px solid var(--tl-cyan);
  box-shadow: var(--tl-glow-cyan);
  z-index: 2;
  background: linear-gradient(145deg, #00f0ff1a, #b026ff0d);
  transform: scale(1.05);
}

.tl-comp-list {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.tl-comp-list li {
  color: var(--tl-text-muted);
  gap: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  display: flex;
}

.tl-comp-us .tl-comp-list li {
  color: var(--tl-text-main);
}

.tl-footer {
  text-align: center;
  border-top: 1px solid #ffffff0d;
  padding: 4rem 1.5rem;
}

.tl-footer p {
  color: var(--tl-text-muted);
  margin-top: 1rem;
}

@keyframes tl-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grid-move {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(3);
  }

  100% {
    transform: perspective(500px) rotateX(60deg) translateY(0) scale(3);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.tl-lgpd-grid {
  text-align: left;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  display: grid;
}

.tl-lgpd-card {
  background: #ffffff05;
  border: 1px solid #ffffff0d;
  border-radius: 12px;
  padding: 1.5rem;
}

@media (width <= 900px) {
  .tl-comparison {
    grid-template-columns: 1fr;
  }

  .tl-comp-us {
    transform: scale(1);
  }

  .tl-nav-links {
    display: none;
  }

  .tl-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .tl-hero-preview-content {
    flex-direction: column;
  }

  .tl-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tl-hero-actions .tl-btn-primary, .tl-hero-actions .tl-btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .tl-lgpd-grid {
    grid-template-columns: 1fr;
  }

  .tl-section {
    padding: 4rem 1.5rem;
  }
}

@media (width <= 480px) {
  .tl-title {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  .tl-subtitle {
    font-size: 1rem;
  }

  .tl-section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .tl-hero {
    padding-top: 5rem;
  }

  .tl-feature-card, .tl-pricing-card, .tl-comp-card {
    padding: 1.5rem;
  }
}

.tl-pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: stretch;
  gap: 2rem;
  margin-top: 2rem;
  display: grid;
}

.tl-pricing-card {
  background: var(--tl-glass);
  border: 1px solid #ffffff0d;
  border-radius: 16px;
  flex-direction: column;
  padding: 2.5rem;
  transition: all .3s;
  display: flex;
  position: relative;
}

.tl-pricing-card:hover {
  border-color: #00f0ff4d;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px #0006;
}

.tl-pricing-card--popular {
  border: 2px solid #00f5c4;
  transform: scale(1.03);
  box-shadow: 0 10px 40px #00f5c426;
}

.tl-pricing-card--popular:hover {
  border-color: #00f5c4;
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 15px 50px #00f5c440;
}

.tl-pricing-popular-tag {
  color: #000;
  letter-spacing: 1px;
  background: #00f5c4;
  border-radius: 50px;
  padding: 4px 16px;
  font-size: .75rem;
  font-weight: 800;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.tl-pricing-badge {
  text-transform: uppercase;
  color: var(--tl-cyan);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: .85rem;
  font-weight: 800;
}

.tl-pricing-price {
  align-items: baseline;
  margin-bottom: .5rem;
  display: flex;
}

.tl-price-symbol {
  color: var(--tl-text-main);
  margin-right: 4px;
  font-size: 1.5rem;
  font-weight: 700;
}

.tl-price-amount {
  color: var(--tl-text-main);
  font-size: 3.5rem;
  font-weight: 800;
}

.tl-price-per {
  color: var(--tl-text-muted);
  margin-left: 4px;
  font-size: 1rem;
}

.tl-pricing-range {
  color: var(--tl-text-muted);
  margin-bottom: 2rem;
  font-size: .95rem;
}

.tl-pricing-divider {
  background: #ffffff14;
  height: 1px;
  margin-bottom: 2rem;
}

.tl-pricing-features {
  flex-direction: column;
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  display: flex;
}

.tl-pricing-features li {
  color: var(--tl-text-main);
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  display: flex;
}

.tl-pricing-features li span {
  color: var(--tl-text-muted);
}

.tl-price-discount-badge {
  color: #00f5c4;
  letter-spacing: .5px;
  background: #00f5c426;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: .75rem;
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 800;
  display: inline-block;
}

@property --grad-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 135deg;
}

@property --aurora-hue {
  syntax: "<number>";
  inherits: false;
  initial-value: 160;
}

@property --glow-r {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

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

.apres-root {
  color: #e8eaf6;
  background: #020818;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  position: relative;
  overflow-x: hidden;
}

.apres-particles {
  pointer-events: none;
  z-index: 0;
  position: fixed;
  inset: 0;
}

.apres-particle {
  background: radial-gradient(circle, #00f5c4 0%, #0000 70%);
  border-radius: 50%;
  animation: linear infinite particle-float;
  position: absolute;
}

@keyframes particle-float {
  0% {
    opacity: var(--op, .3);
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: calc(var(--op, .3) * 1.5);
    transform: translateY(-40px) scale(1.3);
  }

  100% {
    opacity: var(--op, .3);
    transform: translateY(0) scale(1);
  }
}

.apres-aurora {
  pointer-events: none;
  z-index: 0;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.aurora-orb {
  filter: blur(120px);
  border-radius: 50%;
  animation: 20s ease-in-out infinite alternate orb-drift;
  position: absolute;
}

.aurora-orb--1 {
  background: radial-gradient(circle, #00ffaa26 0%, #0000 70%);
  width: 600px;
  height: 600px;
  animation-delay: 0s;
  top: -200px;
  left: -200px;
}

.aurora-orb--2 {
  background: radial-gradient(circle, #9947eb1f 0%, #0000 70%);
  width: 500px;
  height: 500px;
  animation-delay: -7s;
  top: 30%;
  right: -150px;
}

.aurora-orb--3 {
  background: radial-gradient(circle, #1a8cff1a 0%, #0000 70%);
  width: 700px;
  height: 700px;
  animation-delay: -14s;
  bottom: -200px;
  left: 30%;
}

@keyframes orb-drift {
  from {
    transform: translate(0) scale(1);
  }

  to {
    transform: translate(60px, 40px) scale(1.1);
  }
}

.apres-hero {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  min-height: 100vh;
  padding: 4rem 2rem;
  display: flex;
  position: relative;
}

.apres-hero__badge {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #00f5c4;
  background: #00f5c40d;
  border: 1px solid #00f5c44d;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  font-size: .75rem;
  font-weight: 600;
  animation: .8s cubic-bezier(.34, 1.56, .64, 1) both badge-in;
  display: inline-flex;
}

.badge-dot {
  background: #00f5c4;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2s ease-in-out infinite dot-pulse;
  box-shadow: 0 0 8px #00f5c4;
}

@keyframes dot-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.6);
  }
}

@keyframes badge-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.apres-hero__title {
  letter-spacing: -.04em;
  align-items: baseline;
  gap: .2em;
  font-size: clamp(2.5rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 1;
  display: flex;
}

.title-word {
  animation: .9s cubic-bezier(.34, 1.56, .64, 1) both title-rise;
  display: inline-block;
}

.title-word--maps {
  color: #0000;
  background: linear-gradient(135deg, #fff 30%, #a0aec0) text;
  animation-delay: .1s;
}

.title-word--pro {
  color: #0000;
  text-shadow: none;
  filter: drop-shadow(0 0 40px #00f5c466);
  background: linear-gradient(135deg, #00f5c4, #00b4d8) text;
  animation-delay: .2s;
}

.title-word--v4 {
  color: #ffffff4d;
  align-self: flex-end;
  margin-bottom: .15em;
  font-size: .45em;
  animation-delay: .3s;
}

@keyframes title-rise {
  from {
    opacity: 0;
    transform: translateY(40px) scale(.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.apres-hero__sub {
  color: #ffffff8c;
  max-width: 560px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.7;
  animation: .8s .4s both fade-up;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.apres-hero__stats {
  background: #ffffff0f;
  border: 1px solid #ffffff14;
  border-radius: 20px;
  gap: 1px;
  animation: .8s .6s both fade-up;
  display: flex;
  overflow: hidden;
}

.hero-stat {
  animation: stat-pop .6s calc(.7s + var(--i) * .1s) cubic-bezier(.34,1.56,.64,1) both;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 1.2rem 2rem;
  display: flex;
}

.hero-stat + .hero-stat {
  border-left: 1px solid #ffffff0f;
}

.hero-stat strong {
  color: #0000;
  background: linear-gradient(135deg, #00f5c4, #7c3aed) text;
  font-size: 1.6rem;
  font-weight: 800;
}

.hero-stat span {
  color: #fff6;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
}

@keyframes stat-pop {
  from {
    opacity: 0;
    transform: scale(.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.apres-hero__scroll-hint {
  color: #ffffff40;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  animation: .8s 1s both fade-up, 2s ease-in-out 2s infinite scroll-bob;
  display: flex;
}

@keyframes scroll-bob {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

.apres-timeline {
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  position: relative;
}

.timeline-spine {
  background: linear-gradient(#0000, #00f5c44d 10%, #7c3aed4d 50%, #10b9814d 90%, #0000);
  width: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-spine:after {
  content: "";
  background: linear-gradient(#00f5c4, #7c3aed, #10b981);
  height: 0%;
  animation: linear both spine-grow scroll(root);
  animation-range: 20% 90%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@keyframes spine-grow {
  from {
    height: 0%;
  }

  to {
    height: 100%;
  }
}

.timeline-item {
  cursor: pointer;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  margin-bottom: 5rem;
  display: grid;
  position: relative;
}

.timeline-node {
  z-index: 3;
  grid-column: 2;
  justify-content: center;
  align-items: center;
  padding-top: .5rem;
  display: flex;
  position: relative;
}

.node-ring {
  border: 2px solid var(--color, #00f5c4);
  opacity: .3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: 3s ease-in-out infinite ring-breathe;
  position: absolute;
}

.node-dot {
  border: 2px solid var(--color, #00f5c4);
  z-index: 2;
  width: 44px;
  height: 44px;
  box-shadow: 0 0 20px color-mix(in srgb, var(--color) 40%, transparent);
  background: #020818e6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
  display: flex;
}

.node-pulse {
  background: var(--color, #00f5c4);
  opacity: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  animation: 3s ease-out infinite pulse-out;
  position: absolute;
}

@keyframes ring-breathe {
  0%, 100% {
    opacity: .3;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.15);
  }
}

@keyframes pulse-out {
  0% {
    opacity: .4;
    transform: scale(.8);
  }

  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}

.timeline-item--left .timeline-card {
  text-align: right;
  grid-area: 1 / 1;
  margin-right: 2rem;
}

.timeline-item--left .timeline-node {
  grid-area: 1 / 2;
}

.timeline-item--left .card-header {
  flex-direction: row-reverse;
}

.timeline-item--left .card-metrics {
  justify-content: flex-end;
}

.timeline-item--right .timeline-card {
  grid-column: 3;
  margin-left: 2rem;
}

.timeline-item--right .timeline-node {
  grid-area: 1 / 2;
}

.timeline-item--left .timeline-card {
  opacity: 0;
  transition: opacity .7s, transform .7s cubic-bezier(.34, 1.56, .64, 1);
  transition-delay: var(--delay, 0s);
  transform: translateX(-50px);
}

.timeline-item--right .timeline-card {
  opacity: 0;
  transition: opacity .7s, transform .7s cubic-bezier(.34, 1.56, .64, 1);
  transition-delay: var(--delay, 0s);
  transform: translateX(50px);
}

.timeline-item--visible .timeline-card {
  opacity: 1;
  transform: translateX(0);
}

.timeline-card {
  backdrop-filter: blur(20px);
  background: #ffffff08;
  border: 1px solid #ffffff14;
  border-radius: 20px;
  padding: 1.8rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
}

.timeline-card:before {
  content: "";
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--color) 8%, transparent),
    transparent 60%);
  opacity: 0;
  border-radius: 20px;
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.timeline-item--active .timeline-card, .timeline-card:hover {
  border-color: color-mix(in srgb, var(--color) 40%, transparent);
  box-shadow: 0 0 40px color-mix(in srgb, var(--color) 15%, transparent),
              0 20px 60px #0006;
  transform: translateY(-4px);
}

.timeline-item--active .timeline-card:before, .timeline-card:hover:before {
  opacity: 1;
}

.timeline-item--active .node-dot {
  box-shadow: 0 0 40px color-mix(in srgb, var(--color) 70%, transparent);
  transform: scale(1.2);
}

.timeline-card:after {
  content: "";
  background: linear-gradient(90deg,
    transparent,
    color-mix(in srgb, var(--color) 60%, transparent),
    transparent);
  height: 1px;
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
}

.card-phase {
  letter-spacing: .2em;
  color: var(--color, #00f5c4);
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-family: JetBrains Mono, monospace;
  font-size: .7rem;
  font-weight: 800;
}

.card-header {
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  display: flex;
}

.card-icon {
  flex-shrink: 0;
  font-size: 1.8rem;
}

.card-label {
  color: #fff6;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .72rem;
}

.card-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.card-desc {
  color: #ffffff8c;
  margin-bottom: 1.2rem;
  font-size: .88rem;
  line-height: 1.7;
}

.card-metrics {
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.metric {
  animation: metric-in .5s calc(.3s + var(--mi) * 80ms) both;
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: .5rem .9rem;
  display: flex;
}

.timeline-item--visible .metric {
  animation-play-state: running;
}

.metric strong {
  color: var(--color, #00f5c4);
  font-family: JetBrains Mono, monospace;
  font-size: .95rem;
  font-weight: 800;
}

.metric span {
  color: #fff6;
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
  font-size: .65rem;
}

@keyframes metric-in {
  from {
    opacity: 0;
    transform: scale(.85) translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.card-code-wrap {
  max-height: 0;
  margin-bottom: 0;
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.card-code-wrap--open {
  max-height: 300px;
  margin-bottom: 1rem;
}

.card-code {
  color: #a5f3fc;
  white-space: pre;
  background: #00000080;
  border: 1px solid #ffffff14;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-family: JetBrains Mono, monospace;
  font-size: .75rem;
  line-height: 1.7;
  overflow-x: auto;
}

.card-toggle {
  color: #fff6;
  cursor: pointer;
  background: none;
  border: 1px solid #ffffff1a;
  border-radius: 8px;
  padding: .4rem .8rem;
  font-family: JetBrains Mono, monospace;
  font-size: .72rem;
  transition: color .2s, border-color .2s;
}

.card-toggle:hover {
  color: var(--color, #00f5c4);
  border-color: var(--color, #00f5c4);
}

.apres-arch {
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

.apres-section-title {
  letter-spacing: -.03em;
  color: #0000;
  background: linear-gradient(135deg, #fff 40%, #fff6) text;
  margin-bottom: 3rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
}

.arch-diagram {
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  position: relative;
}

.arch-connectors {
  pointer-events: none;
  z-index: 0;
  width: 90%;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  transform: translateY(-50%);
}

.arch-path {
  stroke-dasharray: 12 4;
  animation: 2s linear infinite dash-march;
}

@keyframes dash-march {
  to {
    stroke-dashoffset: -48px;
  }
}

.arch-node {
  z-index: 1;
  backdrop-filter: blur(20px);
  animation: arch-in .6s calc(var(--i) * .12s) cubic-bezier(.34,1.56,.64,1) both;
  cursor: default;
  background: #ffffff0a;
  border: 1px solid #ffffff1a;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 1.5rem 1rem;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  display: flex;
  position: relative;
}

.arch-node:hover {
  border-color: #00f5c44d;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px #0006, 0 0 30px #00f5c41a;
}

.arch-node__icon {
  font-size: 2rem;
}

.arch-node strong {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}

.arch-node span {
  color: #fff6;
  font-size: .7rem;
}

@keyframes arch-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.apres-stack {
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  position: relative;
}

.stack-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.stack-card {
  text-align: left;
  animation: arch-in .6s calc(var(--si) * .1s) both;
  background: #ffffff08;
  border: 1px solid #ffffff14;
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color .3s, transform .3s;
}

.stack-card:hover {
  border-color: #7c3aed4d;
  transform: translateY(-4px);
}

.stack-card__cat {
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: .8rem;
  font-size: .7rem;
  font-weight: 700;
}

.stack-card ul {
  flex-direction: column;
  gap: 6px;
  list-style: none;
  display: flex;
}

.stack-card li {
  color: #fff9;
  animation: list-in .4s calc(var(--si) * .1s + var(--ii) * 50ms) both;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  display: flex;
}

.stack-card li:before {
  content: "";
  background: #7c3aed;
  border-radius: 50%;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
}

@keyframes list-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.apres-footer {
  z-index: 2;
  text-align: center;
  border-top: 1px solid #ffffff0f;
  padding: 4rem 2rem;
  position: relative;
}

.footer-glow {
  filter: blur(4px);
  background: linear-gradient(90deg, #0000, #00f5c4, #0000);
  width: 300px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.apres-footer p {
  color: #ffffff40;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: .8rem;
}

.footer-pills {
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  display: flex;
}

.footer-pills span {
  color: #ffffff80;
  background: #ffffff0f;
  border: 1px solid #ffffff1a;
  border-radius: 100px;
  padding: .3rem .8rem;
  font-size: .72rem;
  font-weight: 600;
}

@media (width <= 768px) {
  .timeline-item {
    grid-template-rows: auto;
    grid-template-columns: 48px 1fr;
  }

  .timeline-item--left .timeline-card, .timeline-item--right .timeline-card {
    text-align: left;
    grid-area: 1 / 2;
    margin-left: 1rem;
    margin-right: 0;
  }

  .timeline-item--left .card-header {
    flex-direction: row;
  }

  .timeline-item--left .card-metrics {
    justify-content: flex-start;
  }

  .timeline-node {
    grid-area: 1 / 1;
  }

  .timeline-spine {
    left: 24px;
  }

  .arch-diagram {
    grid-template-columns: repeat(3, 1fr);
  }

  .arch-connectors {
    display: none;
  }

  .apres-hero__stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    min-width: 140px;
  }
}

.text-shimmer {
  background: linear-gradient(to right,
    var(--accent) 20%,
    #fff 40%,
    #fff 60%,
    var(--accent) 80%);
  color: #0000;
  background-size: 200%;
  background-clip: text;
  animation: 3s linear infinite shimmer-shine;
  display: inline-block;
}

@keyframes shimmer-shine {
  to {
    background-position: 200%;
  }
}

.flow-config-shell {
  min-width: 48px;
  max-width: 100%;
  transition: width .3s cubic-bezier(.7, 0, .3, 1), min-width .3s cubic-bezier(.7, 0, .3, 1);
  position: relative;
  overflow: visible;
}

.flow-config-shell.collapsed {
  min-width: 48px;
  max-width: 56px;
  box-shadow: 0 2px 12px #0008;
  width: 56px !important;
  padding: 0 !important;
}

.flow-config-shell.expanded {
  min-width: 350px;
  max-width: 100%;
  box-shadow: var(--shadow-strong);
  width: 100% !important;
}

.dashboard-content .flow-config-shell.expanded {
  max-width: none;
  margin: 0;
  width: 100% !important;
}

.settings-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.settings-card {
  gap: 1rem;
  min-height: 100%;
  display: grid;
}

.settings-card--wide {
  grid-column: 1 / -1;
}

.settings-card__top {
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  display: flex;
}

.settings-card__top h3 {
  margin-bottom: .35rem;
}

.settings-card__top p {
  color: var(--text-secondary);
  max-width: 54ch;
  font-size: .88rem;
}

.settings-label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: -.35rem;
  font-size: .72rem;
  display: block;
}

.settings-card select, .settings-card input {
  border-radius: 12px;
  min-height: 42px;
  font-size: .92rem;
}

.settings-card select::placeholder, .settings-card input::placeholder, .dashboard-content input::placeholder, .dashboard-content select::placeholder {
  color: #a3b6d38f;
  font-size: .82rem;
  line-height: 1.1;
}

.flow-config-body {
  max-width: none;
  margin: 0 auto;
}

.flow-config-grid {
  align-items: start;
}

.setup-panel {
  background: #080e20b8;
  border: 1px solid #74f2ff1a;
  border-radius: 16px;
  min-width: 0;
  padding: .8rem .85rem .9rem;
  box-shadow: inset 0 1px #ffffff08;
}

.setup-panel--drip {
  grid-row: span 2;
}

.flow-config-grid .setup-panel {
  min-height: 0;
}

.flow-config-grid input, .flow-config-grid select, .sequence-panel input, .sequence-panel button {
  border-radius: 10px;
}

.flow-config-grid input, .flow-config-grid select, .sequence-panel input {
  min-height: 38px;
}

.flow-config-grid input, .flow-config-grid select {
  width: 100%;
}

.flow-config-grid label, .sequence-panel > label {
  text-transform: uppercase;
  letter-spacing: .08em;
}

.flow-config-grid .setup-panel > label {
  margin-bottom: .65rem;
}

.flow-config-grid .setup-panel input[type="checkbox"] {
  display: none;
}

.drip-toggle-wrap {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.drip-toggle-wrap[data-disabled="true"] {
  opacity: .45;
  cursor: not-allowed;
}

.drip-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 22px;
  position: relative;
}

.drip-toggle input {
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  position: absolute;
}

.drip-toggle__track {
  background: #ffffff12;
  border: 1px solid #ffffff1f;
  border-radius: 999px;
  transition: background .22s, border-color .22s;
  position: absolute;
  inset: 0;
}

.drip-toggle input:checked ~ .drip-toggle__track {
  background: #74f2ff33;
  border-color: #74f2ff7a;
}

.drip-toggle__thumb {
  background: #ffffff59;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  transition: transform .22s cubic-bezier(.7, 0, .3, 1), background .22s, box-shadow .22s;
  position: absolute;
  top: 3px;
  left: 3px;
}

.drip-toggle input:checked ~ .drip-toggle__thumb {
  background: var(--accent);
  transform: translateX(18px);
  box-shadow: 0 0 8px #74f2ff8c;
}

.flow-config-grid .setup-panel .animate-fade-in {
  border-radius: 14px;
}

.sequence-panel {
  background: linear-gradient(#080e20b3, #080e208a);
  border: 1px solid #74f2ff1a;
  border-radius: 16px;
  padding: .85rem .9rem .95rem;
}

.sequence-rows {
  align-items: center;
}

.sequence-rows input {
  background: #ffffff08;
  border: 1px solid #74f2ff14;
  min-width: 0;
}

.sequence-rows button, .sequence-freeform button, .flow-config-actions button {
  min-height: 38px;
}

.sequence-freeform input {
  min-width: 0;
}

.sequence-chips {
  padding-top: .2rem;
}

.sequence-help {
  border-top: 1px solid #ffffff0d;
  padding-top: .4rem;
}

.flow-config-actions {
  padding-top: .35rem;
}

.flow-config-toggle {
  z-index: 2;
  background: var(--bg-main);
  border: 2px solid var(--accent);
  cursor: pointer;
  border-radius: 50%;
  outline: none;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: left .3s cubic-bezier(.7, 0, .3, 1), box-shadow .3s cubic-bezier(.7, 0, .3, 1);
  display: flex;
  position: absolute;
  top: 24px;
  left: -18px;
  box-shadow: 0 2px 12px #0008;
}

.toast-icon {
  animation: .3s cubic-bezier(.175, .885, .32, 1.275) forwards scaleIn;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 var(--accent-glow);
    transform: scale(.95);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px #0000;
  }

  100% {
    transform: scale(.95);
    box-shadow: 0 0 #0000;
  }
}

.logo-pulse {
  animation: 2s ease-in-out infinite pulse-dot;
}

.flow-config-shell.collapsed .flow-config-toggle {
  box-shadow: none;
  left: -12px;
}

.flow-config-shell .config-section input, .flow-config-shell .config-section select {
  border-radius: 9px;
  padding: 6px 10px;
  font-size: .92rem;
}

@media (width <= 1100px) {
  .flow-config-grid {
    grid-template-columns: 1fr !important;
  }

  .setup-panel--drip {
    grid-row: auto;
  }

  .flow-config-actions {
    grid-template-columns: 1fr;
  }
}

.flow-config-shell .config-section input:focus, .flow-config-shell .config-section select:focus, .sequence-panel input:focus {
  border-color: #74f2ff52;
  outline: none;
  box-shadow: 0 0 0 3px #74f2ff14;
}

.flow-config-shell .config-section button, .sequence-panel button {
  transition: transform .18s, border-color .18s, background .18s;
}

.flow-config-shell .config-section button:hover, .sequence-panel button:hover {
  transform: translateY(-1px);
}

.flow-config-shell .config-section label {
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-size: .85rem;
  font-weight: 600;
}

:root {
  --font-main: "Space Grotesk", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --bg-main: #050816;
  --bg-card: #0b1329d1;
  --bg-card-strong: #0e1731f5;
  --accent: #74f2ff;
  --accent-strong: #d8ff3e;
  --accent-hot: #ff7a59;
  --accent-glow: #74f2ff38;
  --text-primary: #f4f7ec;
  --text-secondary: #a3b6d3;
  --text-muted: #64779a;
  --border: #74f2ff2e;
  --glass-bg: linear-gradient(180deg, #0a1125e6, #090c1ab8);
  --glass-border: #74f2ff24;
  --danger: #ff5f70;
  --warning: #ffd24f;
  --shadow-strong: 0 24px 80px #00000073;
  --input-bg: #040a16c7;
  --input-border: #74f2ff2e;
  --glass-panel-bg: #ffffff05;
  --glass-panel-border: #ffffff0d;
  --glass-element-bg: #0000004d;
  --table-header-bg: #050a1699;
  --table-row-hover: #74f2ff0f;
  --table-row-selected: #74f2ff14;
}

:root[data-theme="light"] {
  --bg-main: #f4f7f9;
  --bg-card: #ffffffd9;
  --bg-card-strong: #fffffffa;
  --accent: #006aff;
  --accent-strong: #00b046;
  --accent-hot: #ea4c23;
  --accent-glow: #006aff26;
  --text-primary: #0a1120;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border: #0000001f;
  --glass-bg: linear-gradient(180deg, #ffffffe6, #f8fafccc);
  --glass-border: #0000001a;
  --shadow-strong: 0 12px 40px #00000014;
  --input-bg: #ffffffe6;
  --input-border: #00000026;
  --glass-panel-bg: #fff9;
  --glass-panel-border: #0000000d;
  --glass-element-bg: #fffc;
  --table-header-bg: #f0f4f8cc;
  --table-row-hover: #006aff0d;
  --table-row-selected: #006aff14;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  transition: background-color .3s, color .3s;
  overflow-x: hidden;
}

body:before {
  content: "";
  z-index: -2;
  background: radial-gradient(circle at 20% 20%, #74f2ff24, #0000 28%), radial-gradient(circle at 80% 18%, #ff7a592e, #0000 22%), radial-gradient(circle at 50% 55%, #d8ff3e14, #0000 20%), linear-gradient(#02040b 0%, #050816 48%, #02050d 100%);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

:root[data-theme="light"] body:before {
  background: radial-gradient(circle at 20% 20%, #006aff14, #0000 28%), radial-gradient(circle at 80% 18%, #ea4c2314, #0000 22%), radial-gradient(circle at 50% 55%, #00b04614, #0000 20%), linear-gradient(#f4f7f9 0%, #e2e8f0 48%, #cbd5e1 100%);
}

body:after {
  content: "";
  z-index: -1;
  opacity: .35;
  background-image: linear-gradient(#74f2ff0d 1px, #0000 1px), linear-gradient(90deg, #74f2ff0d 1px, #0000 1px);
  background-size: 72px 72px;
  position: fixed;
  inset: 0;
  mask-image: radial-gradient(circle, #000 38%, #0000 95%);
}

:root[data-theme="light"] body:after {
  background-image: linear-gradient(#0000000a 1px, #0000 1px), linear-gradient(90deg, #0000000a 1px, #0000 1px);
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 1.5rem 2rem;
}

.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-strong);
  border-radius: 24px;
}

.card {
  padding: 1.25rem;
  transition: transform .22s, box-shadow .22s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 56px #00000061;
}

h1 {
  letter-spacing: -.02em;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #fff 0%, #b8fff0 48%, #ffe3c8 100%);
  -webkit-background-clip: text;
  margin-bottom: .5rem;
  font-size: 2.5rem;
  font-weight: 800;
}

p.subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

input, select, textarea {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  width: 100%;
  color: var(--text-primary);
  border-radius: 14px;
  outline: none;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  transform: translateY(-1px);
}

button {
  cursor: pointer;
  border: none;
  border-radius: 999px;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  font-family: inherit;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  display: inline-flex;
}

button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 10px 30px var(--accent-glow);
}

button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px #74f2ff52;
}

button.primary:active {
  transform: scale(.98);
}

button.danger {
  background: var(--danger);
  color: #fff;
}

.client-btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--accent-glow);
  border: none;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: .8rem 1.4rem;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  display: inline-flex;
}

.client-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #74f2ff40;
}

.client-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.client-btn--ghost {
  color: var(--text-primary);
  box-shadow: none;
  background: none;
  border: 1px solid #ffffff1a;
}

.client-btn--ghost:hover {
  box-shadow: none;
  background: #ffffff0d;
}

button.glass, a.glass {
  color: var(--text-primary);
}

.dashboard-grid {
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin-top: 2rem;
  display: grid;
}

.logs-container {
  height: 400px;
  font-family: var(--font-mono);
  border: 1px solid var(--border);
  background: #01060fb8;
  border-radius: 16px;
  padding: 1rem;
  font-size: .85rem;
  overflow-y: auto;
}

.log-entry {
  border-left: 2px solid #0000;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

.log-entry.info {
  border-color: #3498db;
}

.log-entry.success {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.log-entry.warning {
  border-color: var(--warning);
  color: var(--warning);
}

.log-entry.error {
  border-color: var(--danger);
  color: var(--danger);
}

.progress-container {
  border: 1px solid var(--glass-border);
  background: #ffffff0d;
  border-radius: 4px;
  width: 100%;
  height: 8px;
  margin-top: 1rem;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-strong) 100%);
  height: 100%;
  box-shadow: 0 0 10px var(--accent-glow);
  transition: width .5s cubic-bezier(.1, .7, 1, .1);
}

.results-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 1rem;
}

.results-table th {
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--font-mono);
  background: var(--table-header-bg);
  padding: .85rem 1rem;
}

.results-table td {
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  padding: .55rem .95rem;
  font-size: .9rem;
  transition: background .18s;
}

.results-table tbody tr:hover {
  background: var(--table-row-hover);
  box-shadow: inset 3px 0 0 var(--accent);
}

.results-table tbody tr.row-selected, .results-table tbody tr.row-selected:hover {
  background: var(--table-row-selected);
}

.results-toolbar {
  gap: 1rem;
  padding: 1rem 1.5rem 0;
  display: grid;
}

.results-filter-grid {
  grid-template-columns: minmax(0, 1.8fr) repeat(4, minmax(0, 1fr));
  gap: .65rem;
  display: grid;
}

.funnel-toolbar {
  gap: .75rem;
  padding: .85rem 0 .3rem;
  display: grid;
}

.funnel-search-wrap {
  align-items: center;
  display: flex;
  position: relative;
}

.funnel-search-icon {
  color: var(--text-muted);
  pointer-events: none;
  position: absolute;
  left: 14px;
}

.funnel-search-input {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  width: 100%;
  color: var(--text-primary);
  border-radius: 14px;
  outline: none;
  padding: .75rem 2.6rem;
  font-family: inherit;
  font-size: .92rem;
  transition: border-color .2s, box-shadow .2s;
}

.funnel-search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #74f2ff1a;
}

.funnel-search-input::placeholder {
  color: #a3b6d380;
  font-size: .85rem;
}

.funnel-search-clear {
  width: 26px;
  height: 26px;
  color: var(--danger);
  cursor: pointer;
  background: #ff5f702e;
  border: none;
  border-radius: 50%;
  place-items: center;
  padding: 0;
  transition: background .15s;
  display: grid;
  position: absolute;
  right: 10px;
}

.funnel-search-clear:hover {
  background: #ff5f7052;
}

.funnel-selectors {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .55rem;
  display: grid;
}

.funnel-select-group {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.funnel-select-label {
  font-size: .66rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  padding-left: 4px;
  display: block;
}

.funnel-select-group select {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  min-height: 40px;
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 12px;
  padding: .5rem .75rem;
  font-size: .88rem;
  transition: border-color .2s, box-shadow .2s;
}

.funnel-select-group select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px #74f2ff14;
}

.funnel-active-bar {
  background: linear-gradient(135deg, #74f2ff0f, #d8ff3e0a);
  border: 1px solid #74f2ff24;
  border-radius: 12px;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  padding: .6rem .85rem;
  animation: .3s forwards fadeIn;
  display: flex;
}

.funnel-active-label {
  color: var(--text-muted);
  font-size: .72rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  flex-shrink: 0;
  align-items: center;
  gap: 5px;
  display: inline-flex;
}

.funnel-active-tags {
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  display: flex;
}

.funnel-tag {
  color: var(--text-primary);
  white-space: nowrap;
  background: #74f2ff1a;
  border: 1px solid #74f2ff33;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: .3rem .65rem;
  font-size: .76rem;
  display: inline-flex;
}

.funnel-tag--search {
  background: #ff7a591a;
  border-color: #ff7a5938;
}

.funnel-tag strong {
  color: var(--accent);
}

.funnel-tag--search strong {
  color: var(--accent-hot);
}

.funnel-tag button {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  cursor: pointer;
  background: #ffffff14;
  border: none;
  border-radius: 50%;
  place-items: center;
  padding: 0;
  transition: background .15s;
  display: grid;
}

.funnel-tag button:hover {
  color: #fff;
  background: #ff5f704d;
}

.funnel-connector {
  width: 24px;
  height: 24px;
  color: var(--accent-strong);
  font-size: .64rem;
  font-weight: 700;
  font-family: var(--font-mono);
  background: #d8ff3e24;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.funnel-clear-all {
  color: var(--danger);
  font-size: .72rem;
  font-family: var(--font-mono);
  cursor: pointer;
  white-space: nowrap;
  background: #ff5f7014;
  border: 1px solid #ff5f7033;
  border-radius: 999px;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding: .3rem .7rem;
  transition: background .15s, border-color .15s;
  display: inline-flex;
}

.funnel-clear-all:hover {
  background: #ff5f702e;
  border-color: #ff5f7059;
}

.client-portal {
  background: var(--bg-main);
  flex-direction: column;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.client-topbar {
  -webkit-backdrop-filter: blur(14px);
  z-index: 10;
  background: #040812eb;
  border-bottom: 1px solid #74f2ff1a;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .7rem 1.5rem;
  display: flex;
}

.client-topbar__brand {
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-primary);
  align-items: center;
  gap: .7rem;
  font-size: .92rem;
  font-weight: 700;
  display: flex;
}

.client-topbar__logo-dot {
  background: radial-gradient(circle, var(--accent-strong) 0%, var(--accent) 58%, transparent 62%);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  box-shadow: 0 0 14px #d8ff3eb3;
}

.client-topbar__actions {
  align-items: center;
  gap: .45rem;
  display: flex;
}

.client-topbar__tab {
  color: var(--text-secondary);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  background: #080e20b8;
  border: 1px solid #74f2ff1a;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: .5rem .9rem;
  font-size: .76rem;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  display: inline-flex;
}

.client-topbar__tab:hover {
  border-color: #74f2ff47;
  transform: translateY(-1px);
}

.client-topbar__tab.active {
  color: var(--text-primary);
  background: linear-gradient(135deg, #74f2ff2e, #d8ff3e1f);
  border-color: #74f2ff4d;
}

.client-topbar__badge {
  background: var(--accent-hot);
  color: #fff;
  border-radius: 999px;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  font-size: .66rem;
  font-weight: 700;
  line-height: 1;
  display: inline-grid;
}

.client-topbar__logout {
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: 1px solid #ffffff14;
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  padding: .5rem .85rem;
  font-size: .76rem;
  transition: border-color .15s, color .15s;
  display: inline-flex;
}

.client-topbar__logout:hover {
  color: var(--danger);
  border-color: #ff5f704d;
}

.client-main {
  flex: 1;
  padding: 1.25rem 1.5rem 2rem;
  overflow-y: auto;
}

.client-section-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: .65rem;
  display: flex;
}

.client-section-title {
  letter-spacing: -.02em;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #fff 0%, #b8fff0 48%, #ffe3c8 100%);
  -webkit-background-clip: text;
  margin-bottom: .2rem;
  font-size: 1.6rem;
  font-weight: 800;
}

.client-section-title .accent-text {
  -webkit-text-fill-color: var(--accent);
}

.client-section-subtitle {
  color: var(--text-secondary);
  font-size: .88rem;
}

.client-stat-chip {
  color: var(--text-primary);
  background: #080e20cc;
  border: 1px solid #74f2ff1f;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: .45rem .85rem;
  font-size: .8rem;
  display: inline-flex;
}

.client-stat-chip--muted {
  color: var(--text-secondary);
  background: #080e2080;
  border-color: #ffffff0f;
}

.client-stat-chip--lg {
  padding: .55rem 1rem;
  font-size: .88rem;
}

.client-selection-bar {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: .6rem 0;
  display: flex;
}

.client-selection-bar__info {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.client-selection-bar__actions {
  align-items: center;
  gap: .45rem;
  display: flex;
}

.client-btn {
  cursor: pointer;
  border: none;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: .5rem .95rem;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  transition: transform .15s, box-shadow .15s, background .15s;
  display: inline-flex;
}

.client-btn:hover {
  transform: translateY(-1px);
}

.client-btn--ghost {
  color: var(--text-secondary);
  background: #080e20b8;
  border: 1px solid #74f2ff1f;
}

.client-btn--ghost:hover {
  color: var(--text-primary);
  border-color: #74f2ff47;
}

.client-btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #9effaa 100%);
  color: #041017;
  box-shadow: 0 6px 20px #74f2ff33;
}

.client-btn--primary:hover {
  box-shadow: 0 10px 28px #74f2ff4d;
}

.client-btn--checkout {
  background: linear-gradient(135deg, var(--accent-strong) 0%, #c6ff00 100%);
  color: #060c1a;
  padding: .65rem 1.25rem;
  font-size: .88rem;
  box-shadow: 0 6px 20px #d8ff3e33;
}

.client-btn--checkout:hover {
  box-shadow: 0 12px 32px #d8ff3e4d;
}

.client-btn--checkout:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.client-table-wrap {
  background: #050a1699;
  border: 1px solid #74f2ff14;
  border-radius: 16px;
  margin-top: .3rem;
  overflow-x: auto;
}

.client-results-table {
  margin-top: 0;
}

.client-results-table .td-code {
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: .82rem;
}

.client-empty-state {
  text-align: center;
  color: var(--text-muted);
  opacity: .5;
  padding: 5rem 2rem;
}

.client-empty-state svg {
  margin-bottom: 1rem;
}

.client-table-footer {
  color: var(--text-muted);
  border-top: 1px solid #ffffff08;
  margin-top: .5rem;
  padding: .7rem .5rem;
  font-size: .78rem;
}

.client-checkbox {
  appearance: none;
  cursor: pointer;
  background: #040a16b3;
  border: 1.5px solid #74f2ff47;
  border-radius: 5px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  transition: background .15s, border-color .15s, box-shadow .15s;
  position: relative;
}

.client-checkbox:checked {
  background: linear-gradient(135deg, var(--accent), #9effaa);
  border-color: var(--accent);
  box-shadow: 0 0 8px #74f2ff4d;
}

.client-checkbox:checked:after {
  content: "✓";
  color: #041017;
  place-items: center;
  font-size: .7rem;
  font-weight: 800;
  display: grid;
  position: absolute;
  inset: 0;
}

.status-badge {
  font-size: .72rem;
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 999px;
  align-items: center;
  padding: .25rem .6rem;
  display: inline-flex;
}

.status-badge--available {
  color: var(--accent);
  background: #74f2ff14;
  border: 1px solid #74f2ff24;
}

.status-badge--selected {
  color: var(--accent-hot);
  background: #ff7a591f;
  border: 1px solid #ff7a593d;
}

.checkout-actions-bar {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: .5rem 0;
  display: flex;
}

.checkout-grid {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: .5rem 0;
  display: grid;
}

.checkout-pricing-card {
  background: linear-gradient(#080e20e0, #050a16c7);
  border: 1px solid #74f2ff1f;
  border-radius: 18px;
  padding: 1.15rem;
}

.checkout-pricing-title {
  color: var(--accent);
  margin-bottom: .85rem;
  font-size: .92rem;
}

.checkout-pricing-body {
  gap: .45rem;
  display: grid;
}

.checkout-pricing-row {
  color: var(--text-secondary);
  justify-content: space-between;
  align-items: center;
  font-size: .86rem;
  display: flex;
}

.checkout-pricing-row strong {
  color: var(--text-primary);
}

.checkout-pricing-row--discount strong {
  color: var(--accent-strong);
}

.checkout-pricing-row--total {
  color: var(--text-primary);
  padding: .2rem 0;
  font-size: 1.05rem;
}

.checkout-pricing-row--total strong {
  color: var(--accent);
  font-size: 1.15rem;
}

.checkout-pricing-row--per-lead {
  opacity: .75;
  font-size: .78rem;
}

.checkout-divider {
  background: #74f2ff14;
  height: 1px;
  margin: .25rem 0;
}

.checkout-plan-select {
  border-radius: 8px;
  width: auto;
  min-height: auto;
  padding: 5px 10px;
  font-size: .82rem;
}

.checkout-export-btn {
  justify-content: center;
  width: 100%;
  margin-top: .6rem;
}

.checkout-order-card {
  color: var(--accent);
  background: #74f2ff0f;
  border: 1px solid #74f2ff2e;
  border-radius: 18px;
  align-self: start;
  align-items: center;
  gap: .85rem;
  padding: 1.15rem;
  display: flex;
}

.checkout-order-card span {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .76rem;
  display: block;
}

.checkout-order-card strong {
  color: var(--text-primary);
  margin-top: 2px;
  font-size: .95rem;
  display: block;
}

.admin-portal {
  background: var(--bg-main);
  flex-direction: column;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.admin-topbar {
  -webkit-backdrop-filter: blur(14px);
  z-index: 10;
  background: #040812eb;
  border-bottom: 1px solid #74f2ff1a;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .7rem 1.5rem;
  display: flex;
}

.admin-topbar__nav {
  align-items: center;
  gap: .45rem;
  display: flex;
}

.admin-main {
  flex: 1;
  padding: 1.5rem 2rem 2.5rem;
  overflow-y: auto;
}

.admin-screen {
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
}

.admin-overview {
  gap: 1.25rem;
  display: grid;
}

.admin-overview__header {
  margin-bottom: .2rem;
}

.admin-overview__title {
  letter-spacing: -.02em;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #fff 0%, #b8fff0 48%, #ffe3c8 100%);
  -webkit-background-clip: text;
  margin-bottom: .2rem;
  font-size: 1.6rem;
  font-weight: 800;
}

.admin-overview__subtitle {
  color: var(--text-secondary);
  font-size: .88rem;
}

.admin-kpi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  display: grid;
}

.admin-kpi-card {
  background: linear-gradient(#080e20d9, #050a16b8);
  border: 1px solid #74f2ff1a;
  border-radius: 18px;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.15rem;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex;
}

.admin-kpi-card--clickable {
  cursor: pointer;
}

.admin-kpi-card:hover {
  border-color: #74f2ff38;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px #00000040;
}

.admin-kpi-card__icon {
  background: #74f2ff14;
  border-radius: 14px;
  flex-shrink: 0;
  place-items: center;
  width: 44px;
  height: 44px;
  display: grid;
}

.admin-kpi-card__body {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.admin-kpi-card__label {
  font-size: .7rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}

.admin-kpi-card__value {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.1;
}

.admin-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  display: grid;
}

.admin-detail-card {
  background: #080e20b8;
  border: 1px solid #74f2ff14;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  transition: border-color .18s, transform .18s;
}

.admin-detail-card:hover {
  border-color: #74f2ff2e;
  transform: translateY(-1px);
}

.admin-detail-card__title {
  font-size: .78rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .7rem;
}

.admin-detail-card__stats {
  gap: 1.25rem;
  display: flex;
}

.admin-detail-stat {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.admin-detail-stat span {
  color: var(--accent-hot);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
}

.admin-detail-stat small {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .68rem;
}

.admin-detail-card__status {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.admin-status-indicator {
  color: var(--text-secondary);
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  display: inline-flex;
}

.admin-status-dot {
  background: var(--text-muted);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: background .3s, box-shadow .3s;
}

.admin-status-indicator--active .admin-status-dot {
  background: var(--accent-strong);
  animation: 2s ease-out infinite radarPulse;
  box-shadow: 0 0 12px #d8ff3eb3;
}

.admin-detail-card__meta {
  color: var(--text-muted);
  font-size: .76rem;
}

.admin-orders-section {
  margin-top: .25rem;
}

.admin-orders-title {
  font-size: .78rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .6rem;
}

.admin-orders-table-wrap {
  background: #050a1680;
  border: 1px solid #74f2ff14;
  border-radius: 16px;
  overflow-x: auto;
}

.admin-orders-table {
  margin-top: 0;
}

.analytics-modal {
  min-width: min(640px, 90vw);
}

.analytics-modal__title {
  color: var(--text-primary);
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
}

.analytics-tabs {
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.1rem;
  display: flex;
}

.analytics-tab {
  color: var(--text-secondary);
  font-size: .78rem;
  font-family: var(--font-mono);
  cursor: pointer;
  background: #74f2ff0a;
  border: 1px solid #74f2ff1f;
  border-radius: 20px;
  padding: 6px 16px;
  transition: all .18s;
}

.analytics-tab:hover {
  color: var(--text-primary);
  border-color: #74f2ff40;
}

.analytics-tab--active {
  border-color: var(--tl-cyan);
  color: var(--tl-cyan);
  background: #74f2ff24;
  font-weight: 600;
}

.analytics-content {
  justify-content: center;
  padding: .5rem 0;
  display: flex;
}

.analytics-period-selector {
  justify-content: center;
  gap: 6px;
  margin-bottom: .8rem;
  display: flex;
}

.admin-ranking-section {
  padding: 1rem 0 0;
}

.admin-section-title {
  color: var(--text-primary);
  align-items: center;
  gap: 7px;
  margin-bottom: .7rem;
  font-size: .88rem;
  font-weight: 700;
  display: flex;
}

.admin-ranking-list {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.admin-ranking-item {
  background: #080e2099;
  border: 1px solid #74f2ff0f;
  border-radius: 14px;
  align-items: center;
  gap: .75rem;
  padding: .65rem .9rem;
  transition: border-color .15s, background .15s;
  display: flex;
}

.admin-ranking-item:hover {
  background: #080e20cc;
  border-color: #74f2ff24;
}

.admin-ranking-item--inactive {
  border-color: #e74c3c1a;
}

.admin-ranking-pos {
  font-size: 1rem;
  font-weight: 900;
  font-family: var(--font-mono);
  text-align: center;
  min-width: 32px;
}

.admin-ranking-info {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.admin-ranking-email {
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .82rem;
  overflow: hidden;
}

.admin-ranking-info small {
  color: var(--text-muted);
  font-size: .68rem;
}

.admin-ranking-value {
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  display: flex;
}

.admin-ranking-value strong {
  color: var(--accent-hot);
  font-size: 1.05rem;
  font-weight: 800;
}

.admin-ranking-value small {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .62rem;
}

.status-badge--inactive {
  color: #e74c3c;
  letter-spacing: .04em;
  background: #e74c3c24;
  border: 1px solid #e74c3c40;
  border-radius: 12px;
  padding: 3px 10px;
  font-size: .68rem;
  font-weight: 600;
}

.chip-list, .tag-pills {
  flex-wrap: wrap;
  gap: .55rem;
  display: flex;
}

.chip {
  color: var(--text-secondary);
  background: #090f1ee6;
  border: 1px solid #74f2ff24;
  border-radius: 999px;
  padding: .55rem .9rem;
  font-size: .74rem;
}

.chip.active {
  color: var(--text-primary);
  background: linear-gradient(135deg, #74f2ff33, #d8ff3e2e);
  border-color: #d8ff3e4d;
}

.tag-pill {
  color: var(--text-secondary);
  background: #74f2ff0d;
  border: 1px solid #74f2ff1a;
  border-radius: 5px;
  align-items: center;
  padding: .18rem .45rem;
  font-size: .66rem;
  font-weight: 500;
  display: inline-flex;
}

.tag-pill--channel {
  color: #f0ffd0;
  background: #d8ff3e14;
  border-color: #d8ff3e24;
}

.tag-pill--keyword {
  color: #ffd7cc;
  background: #ff7a5914;
  border-color: #ff7a5929;
}

.result-meta-line {
  color: var(--text-muted);
  margin-top: .45rem;
  font-size: .72rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: 1s linear infinite spinSlow;
}

@keyframes radarPulse {
  0% {
    opacity: .2;
    transform: scale(.82);
  }

  60% {
    opacity: .55;
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes scanSweep {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes lineShift {
  0% {
    opacity: .55;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(10px);
  }

  100% {
    opacity: .55;
    transform: translateX(0);
  }
}

@keyframes borderBlink {
  0%, 100% {
    box-shadow: 0 0 0 1px #74f2ff1f, inset 0 0 0 1px #74f2ff0a;
  }

  50% {
    box-shadow: 0 0 0 1px #ff7a5957, inset 0 0 0 1px #74f2ff33;
  }
}

@keyframes shimmerMove {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

.animate-fade-in {
  animation: .4s forwards fadeIn;
}

.landing-shell {
  padding: 0 0 5rem;
}

.landing-header {
  z-index: 100;
  -webkit-backdrop-filter: blur(14px);
  background: #040812e0;
  border-bottom: 1px solid #74f2ff1a;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: .9rem 2rem;
  display: flex;
  position: sticky;
  top: 0;
}

.landing-stage, .comparison-section, .system-map, .ops-section, .roadmap-section {
  width: min(1360px, 100% - 4rem);
  max-width: 1360px;
  margin: 0 auto;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.landing-stage {
  padding: 2rem 0 4rem;
  position: relative;
}

.landing-nav {
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  display: flex;
}

.landing-nav__link {
  min-height: 40px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #080e20b8;
  border: 1px solid #74f2ff24;
  border-radius: 999px;
  align-items: center;
  padding: 0 1rem;
  font-size: .8rem;
  text-decoration: none;
  transition: transform .2s, border-color .2s, background .2s;
  display: inline-flex;
}

.landing-nav__link:hover {
  background: #0c142ceb;
  border-color: #74f2ff52;
  transform: translateY(-1px);
}

.landing-nav__cta {
  background: var(--accent-strong);
  color: #060c1a;
  min-height: 36px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  align-items: center;
  gap: .4rem;
  padding: 0 1rem;
  font-size: .8rem;
  font-weight: 700;
  transition: opacity .2s;
  display: inline-flex;
}

.landing-nav__cta:hover {
  opacity: .88;
}

.comparison-section {
  padding: 0 0 4.5rem;
}

.comparison-section, .system-map, .ops-section, .landing-footer {
  scroll-margin-top: 4rem;
}

.comparison-section .section-inner {
  gap: 1rem;
  display: grid;
}

.comparison-section__heading {
  margin-bottom: 1rem;
}

.landing-topbar {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.brand-mark, .brand-badge, .eyebrow, .section-kicker, .signal-frame__hud, .status-dot, .roadmap-card__step, .tag-chip, .pulse-card span, .command-stream__line, .secondary-cta {
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

.brand-mark {
  text-transform: uppercase;
  align-items: center;
  gap: .85rem;
  font-weight: 600;
  display: inline-flex;
}

.brand-mark__core {
  background: radial-gradient(circle, var(--accent-strong) 0%, var(--accent) 58%, transparent 62%);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  box-shadow: 0 0 18px #d8ff3ecc;
}

.brand-badge, .eyebrow {
  color: var(--text-secondary);
  background: #070d1ce6;
  border: 1px solid #74f2ff29;
  border-radius: 999px;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1rem;
  display: inline-flex;
}

.hero-grid {
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 100%;
  display: grid;
}

.hero-copy {
  padding: 2rem 0;
}

.landing-title {
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 28px #74f2ff24;
  background: linear-gradient(105deg, #fffffff5 0%, #c2fff7eb 28%, #fffffffa 44%, #d8ff3ef5 52%, #fffffffa 60%, #ffd0b0e6 100%) 0% / 230% 100%;
  -webkit-background-clip: text;
  max-width: 12ch;
  margin: 1rem 0 1.25rem;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: .95;
  animation: 4.2s linear infinite shimmerMove;
}

.landing-summary {
  max-width: 62ch;
  color: var(--text-secondary);
  font-size: 1.08rem;
}

.landing-summary--legal {
  opacity: .72;
  font-size: .88rem;
}

.landing-stage {
  scroll-margin-top: 80px;
}

.pricing-strip {
  color: var(--text-primary);
  background: linear-gradient(120deg, #d8ff3e14, #74f2ff0f);
  border: 1px solid #d8ff3e3d;
  border-radius: 16px;
  margin-top: 1.2rem;
  padding: .95rem 1.05rem;
  font-size: .96rem;
}

.source-compare {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  display: grid;
}

.source-compare__card {
  background: #080e20d6;
  border: 1px solid #74f2ff24;
  border-radius: 18px;
  padding: 1rem;
}

.source-compare__card h3 {
  color: var(--accent);
  margin-bottom: .7rem;
  font-size: .98rem;
}

.source-compare__card ul {
  gap: .45rem;
  margin: 0;
  padding-left: 1rem;
  display: grid;
}

.source-compare__card li {
  color: var(--text-secondary);
  font-size: .86rem;
  line-height: 1.45;
}

.compare-checklist {
  gap: .75rem;
  display: grid;
}

.compare-checklist__row {
  background: #070d1ee0;
  border: 1px solid #74f2ff24;
  border-radius: 16px;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: start;
  gap: .85rem;
  padding: .95rem;
  display: grid;
}

.compare-checklist__row h4 {
  color: var(--text-primary);
  margin-top: .15rem;
  margin-bottom: 0;
  font-size: .9rem;
}

.compare-checklist__cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  display: grid;
}

.compare-checklist__item {
  border: 1px solid #74f2ff1f;
  border-radius: 12px;
  align-items: flex-start;
  gap: .55rem;
  padding: .65rem .7rem;
  display: flex;
}

.compare-checklist__item strong {
  color: var(--text-primary);
  margin-bottom: .25rem;
  font-size: .8rem;
  display: block;
}

.compare-checklist__item p {
  color: var(--text-secondary);
  margin: 0;
  font-size: .82rem;
  line-height: 1.4;
}

.compare-checklist__item.is-positive {
  background: #5fffb014;
  border-color: #5fffb038;
}

.compare-checklist__item.is-positive svg {
  color: #61ffb2;
  flex: none;
}

.compare-checklist__item.is-negative {
  background: #ff7a5914;
  border-color: #ff7a5938;
}

.compare-checklist__item.is-negative svg {
  color: var(--accent-hot);
  flex: none;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
  display: flex;
}

.landing-cta {
  padding-inline: 1.35rem;
}

.secondary-cta {
  min-height: 52px;
  color: var(--text-primary);
  background: #0d1327b8;
  border: 1px solid #ff7a5942;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 0 1.25rem;
  text-decoration: none;
  display: inline-flex;
}

.pulse-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.pulse-card {
  background: #080e20d6;
  border: 1px solid #74f2ff1f;
  border-radius: 22px;
  padding: 1rem 1.1rem;
  animation: 5s ease-in-out infinite borderBlink;
}

.pulse-card span {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: .74rem;
  display: block;
}

.pulse-card strong {
  margin-top: .45rem;
  font-size: 1rem;
  display: block;
}

.hero-visual {
  margin-left: -26px;
  position: relative;
}

.signal-frame {
  min-height: 460px;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.signal-frame:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #74f2ff1a, #0000 44%), linear-gradient(#0000, #ffffff05);
  position: absolute;
  inset: 0;
}

.signal-frame__hud {
  color: var(--text-secondary);
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  display: flex;
}

.status-dot {
  color: var(--accent-strong);
  align-items: center;
  gap: .5rem;
  display: inline-flex;
}

.status-dot:before {
  content: "";
  background: var(--accent-strong);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 12px #d8ff3ed9;
}

.signal-core {
  place-items: center;
  min-height: 320px;
  display: grid;
  position: relative;
}

.signal-core__ring {
  border: 1px solid #74f2ff2e;
  border-radius: 50%;
  position: absolute;
}

.signal-core__ring--a {
  width: 440px;
  height: 440px;
  animation: 24s linear infinite spinSlow;
}

.signal-core__ring--b {
  border-color: #ff7a5942;
  width: 320px;
  height: 320px;
  animation: 16s linear infinite reverse spinSlow;
}

.signal-core__ring--c {
  border-style: dashed;
  border-color: #d8ff3e57;
  width: 210px;
  height: 210px;
  animation: 2.8s ease-out infinite radarPulse;
}

.signal-core__beam {
  filter: blur(4px);
  opacity: .9;
  background: conic-gradient(#74f2ff80, #0000 32% 100%);
  border-radius: 50%;
  width: 300px;
  height: 300px;
  animation: 6s linear infinite scanSweep;
  position: absolute;
}

.signal-core__center {
  z-index: 2;
  width: 112px;
  height: 112px;
  color: var(--accent);
  background: radial-gradient(circle, #74f2ff42, #060f1cf5);
  border: 1px solid #74f2ff57;
  border-radius: 50%;
  place-items: center;
  display: grid;
  position: relative;
  box-shadow: 0 0 28px #74f2ff3d;
}

.signal-core__tag {
  color: var(--text-primary);
  text-transform: uppercase;
  background: #080e20f5;
  border: 1px solid #74f2ff2e;
  border-radius: 999px;
  padding: .5rem .75rem;
  font-size: .74rem;
  animation: 4s ease-in-out infinite floatY;
  position: absolute;
}

.signal-core__tag--top {
  top: 52px;
}

.signal-core__tag--right {
  animation-delay: .8s;
  right: 20px;
}

.signal-core__tag--bottom {
  animation-delay: 1.4s;
  bottom: 42px;
}

.command-stream {
  gap: .75rem;
  margin-top: .5rem;
  display: grid;
}

.command-stream__line {
  color: var(--text-secondary);
  background: #060b1ac7;
  border: 1px solid #74f2ff1a;
  border-radius: 16px;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  animation: 6s ease-in-out infinite lineShift;
  display: flex;
}

.command-stream__line:nth-child(2) {
  animation-delay: .7s;
}

.command-stream__line:nth-child(3) {
  animation-delay: 1.2s;
}

.command-stream__line:nth-child(4) {
  animation-delay: 1.8s;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-kicker {
  color: var(--accent-strong);
  text-transform: uppercase;
  margin-bottom: .8rem;
  font-size: .8rem;
  display: inline-block;
}

.section-heading h2 {
  margin-bottom: .85rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
}

.section-heading p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.system-map, .ops-section, .roadmap-section {
  padding-top: 2rem;
}

.ops-section {
  padding-bottom: 2rem;
}

.landing-footer {
  background: linear-gradient(#0000 0%, #040812d1 18%, #040812f5 100%);
  margin-top: 1rem;
  padding: 1.5rem 0 3rem;
}

.landing-footer__shell {
  border-top: 1px solid #74f2ff2e;
  padding: 1.4rem 1.5rem 1.2rem;
}

.landing-footer__top {
  grid-template-columns: 1.8fr repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1.5rem;
  display: grid;
}

.landing-footer__brand p, .landing-footer__group p {
  color: var(--text-secondary);
  margin-top: .7rem;
  font-size: .9rem;
  line-height: 1.55;
}

.landing-footer__brand .brand-mark {
  margin-bottom: .7rem;
  font-size: .9rem;
}

.landing-footer__group h3 {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .65rem;
  font-size: .84rem;
}

.landing-footer__group p:last-child {
  max-width: 34ch;
}

.landing-footer__links {
  gap: .55rem;
  display: grid;
}

.landing-footer__links a, .landing-footer__button {
  min-height: 38px;
  color: var(--text-primary);
  text-align: left;
  background: #070d1c73;
  border: 1px solid #74f2ff1f;
  border-radius: 999px;
  justify-content: flex-start;
  align-items: center;
  padding: .55rem .85rem;
  font-family: inherit;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
}

.landing-footer__button {
  cursor: pointer;
  width: 100%;
}

.landing-footer__links a:hover, .landing-footer__button:hover {
  background: #0b1227d1;
  border-color: #74f2ff47;
}

.landing-footer__bottom {
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-top: 1px solid #74f2ff1f;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  font-size: .76rem;
  display: flex;
}

.landing-footer__bottom span:last-child {
  text-align: right;
}

.system-map .section-inner, .ops-section .section-inner, .roadmap-section .section-inner {
  gap: 1.25rem;
  display: grid;
}

.roadmap-section .section-heading {
  max-width: 760px;
}

.roadmap-grid {
  justify-content: center;
}

.system-map__grid, .roadmap-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  display: grid;
}

.system-node, .roadmap-card {
  min-height: 220px;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.system-node:before, .roadmap-card:before, .ops-panel:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #74f2ff29, #0000 70%);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  position: absolute;
  inset: auto -10% -65% auto;
}

.system-node__icon {
  width: 52px;
  height: 52px;
  color: var(--accent);
  background: linear-gradient(135deg, #74f2ff24, #ff7a592e);
  border-radius: 18px;
  place-items: center;
  margin-bottom: 1rem;
  display: inline-grid;
}

.system-node h3, .roadmap-card h3 {
  margin-bottom: .8rem;
  font-size: 1.25rem;
}

.system-node p, .roadmap-card p, .ops-step p {
  color: var(--text-secondary);
}

.ops-panel {
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.ops-panel__header {
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.ops-panel__header h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
}

.ops-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.ops-step {
  background: #080d1cbd;
  border: 1px solid #74f2ff1a;
  border-radius: 22px;
  gap: .9rem;
  padding: 1.2rem;
  display: flex;
}

.ops-step svg {
  color: var(--accent-hot);
  margin-top: .25rem;
}

.roadmap-card__step {
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: .8rem;
  display: inline-flex;
}

.tag-cloud {
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.2rem;
  display: flex;
}

.tag-chip {
  color: var(--text-primary);
  background: #74f2ff1a;
  border: 1px solid #74f2ff2e;
  border-radius: 999px;
  padding: .55rem .8rem;
  font-size: .74rem;
  display: inline-flex;
}

.dashboard-shell {
  grid-template-columns: 278px minmax(0, 1fr);
  align-items: start;
  gap: 1.25rem;
  width: min(1520px, 100% - 4rem);
  margin: 1rem auto 0;
  padding-bottom: 2rem;
  display: grid;
}

.dashboard-sidebar {
  z-index: 20;
  width: 100%;
  max-height: calc(100vh - 2rem);
  box-shadow: var(--shadow-strong);
  background: linear-gradient(#080e20f0, #080c18db);
  border-radius: 28px;
  padding: 1rem;
  position: sticky;
  top: 1rem;
  left: auto;
  right: auto;
  overflow: auto;
}

.dashboard-navbar {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: .9rem;
  display: flex;
}

.dashboard-navbar__links {
  flex-flow: column;
  align-items: stretch;
  gap: .65rem;
  display: flex;
}

.dashboard-sidebar__brand {
  letter-spacing: .04em;
  text-transform: uppercase;
  align-items: center;
  gap: .65rem;
  margin-bottom: .15rem;
  font-weight: 700;
  display: flex;
}

.dashboard-sidebar__top p, .sidebar-status-card p, .sidebar-group__title, .field-guide-card p, .platform-footnote, .agent-card p, .platform-card li {
  color: var(--text-secondary);
}

.sidebar-group {
  align-items: center;
  gap: .65rem;
  margin-top: 0;
  display: flex;
}

.sidebar-group__title {
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-right: .2rem;
  font-size: .74rem;
}

.sidebar-nav__item {
  width: 100%;
  color: var(--text-primary);
  background: #070d1ceb;
  border: 1px solid #74f2ff1a;
  border-radius: 18px;
  justify-content: flex-start;
  padding: .8rem .95rem;
  box-shadow: inset 0 1px #ffffff08;
}

.sidebar-nav__item.active {
  background: linear-gradient(135deg, #74f2ff2e, #d8ff3e24);
  border-color: #d8ff3e38;
}

.sidebar-status-card {
  background: #080e20d1;
  border: 1px solid #74f2ff1a;
  border-radius: 18px;
  gap: .75rem;
  padding: .9rem;
  display: flex;
}

.dashboard-content {
  gap: 1.1rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding-right: 0;
  font-size: .95rem;
  line-height: 1.45;
  display: grid;
}

.dashboard-content h1 {
  line-height: 1.05;
  font-size: 1.9rem !important;
}

.dashboard-content h2 {
  line-height: 1.15;
  font-size: 1.35rem !important;
}

.dashboard-content h3 {
  line-height: 1.2;
  font-size: 1rem !important;
}

.dashboard-content h4 {
  line-height: 1.2;
  font-size: .95rem !important;
}

.dashboard-content .subtitle, .dashboard-content .result-meta-line, .dashboard-content .sidebar-group__title, .dashboard-content .sidebar-status-card p, .dashboard-content .dashboard-sidebar__top p {
  font-size: .82rem !important;
}

.dashboard-content button, .dashboard-content input, .dashboard-content select, .dashboard-content .chip, .dashboard-content .tag-pill {
  font-size: .88rem;
}

.dashboard-content input, .dashboard-content select, .settings-card input, .settings-card select {
  border-radius: 12px;
}

.dashboard-content .results-table {
  font-size: .86rem;
}

.dashboard-content .results-table th {
  font-size: .76rem;
}

.dashboard-content .results-table td {
  font-size: .84rem;
}

.dashboard-content .glossary-title-shimmer {
  font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
}

.dashboard-content .section-toggle-title {
  font-size: 1rem !important;
}

.dashboard-content .glass.card {
  background: #080d1cc2;
  border: 1px solid #74f2ff14;
  border-radius: 20px;
  box-shadow: 0 12px 40px #00000047;
}

.dashboard-content .glass.card:hover {
  transform: none;
  box-shadow: 0 16px 48px #00000059;
}

.dashboard-content .results-table th, .dashboard-content .results-table td {
  border-bottom-color: #74f2ff0f;
}

.dashboard-content .results-toolbar {
  padding: 1.1rem 1.25rem 0;
}

.dashboard-content header#dashboard-overview {
  background: linear-gradient(135deg, #080e20e6, #080c18c2);
  border: 1px solid #74f2ff14;
  border-radius: 28px;
  padding: 1.15rem 1.25rem .95rem;
  box-shadow: 0 18px 60px #00000040;
}

.dashboard-content header#dashboard-overview .glass {
  background: #080e20e6;
  border: 1px solid #74f2ff1f;
}

.dashboard-content header#dashboard-overview button.glass {
  border-radius: 16px;
  min-height: 50px;
}

.dashboard-content header#dashboard-overview .glass[style*="font-size: '0.76rem'"] {
  letter-spacing: .03em;
}

.dashboard-content .dashboard-grid {
  grid-template-columns: minmax(320px, 412px) minmax(0, 1fr);
  gap: 1.1rem;
  margin-top: 0;
}

.dashboard-content .flow-config-shell, .dashboard-content .glass.card.flow-config-shell, .dashboard-content .glass.card, .dashboard-content #base-de-leads {
  border-radius: 28px;
}

.dashboard-content .flow-config-shell.expanded {
  box-shadow: 0 24px 70px #00000042;
}

.dashboard-content #base-de-leads {
  background: linear-gradient(#080e20e6, #080c18d1);
  border: 1px solid #74f2ff14;
  box-shadow: 0 24px 70px #0000004d;
}

.dashboard-content #base-de-leads > div:first-child {
  background: linear-gradient(90deg, #74f2ff0f, #fff0);
  padding: 1.35rem 1.5rem;
}

.dashboard-content .results-toolbar {
  padding-top: .95rem;
  padding-bottom: .25rem;
}

.dashboard-content .results-filter-grid input, .dashboard-content .results-filter-grid select {
  min-height: 42px;
}

.dashboard-content .results-table {
  margin-top: 0;
}

.dashboard-content .results-table thead th {
  backdrop-filter: blur(10px);
  z-index: 1;
  background: #070c18eb;
  position: sticky;
  top: 0;
}

.dashboard-content .results-table tbody tr:hover {
  background: #74f2ff0a;
}

.dashboard-content .logs-container {
  background: #040a16c2;
  height: 330px;
}

.dashboard-content .flow-config-body, .dashboard-content .sequence-panel, .dashboard-content .setup-panel {
  background: #070d1cb8;
}

.dashboard-content .setup-panel input, .dashboard-content .setup-panel select, .dashboard-content .sequence-panel input, .dashboard-content .results-filter-grid input, .dashboard-content .results-filter-grid select, .dashboard-content #base-de-leads input, .dashboard-content #base-de-leads select {
  min-height: 42px;
}

.dashboard-content .setup-panel input::placeholder, .dashboard-content .sequence-panel input::placeholder, .dashboard-content .results-filter-grid input::placeholder, .dashboard-content #base-de-leads input::placeholder {
  color: #a3b6d38f;
  font-size: .8rem;
}

.dashboard-content .subtitle {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dashboard-sidebar__top {
  align-items: center;
  gap: .8rem;
  margin-right: .4rem;
  display: flex;
}

.dashboard-sidebar__top p {
  margin: 0;
  font-size: .82rem;
}

.sidebar-status-card {
  padding: .55rem .75rem;
}

.dashboard-section-anchor {
  scroll-margin-top: 1rem;
}

.extractor-guide-card {
  margin-bottom: 1.5rem;
}

.section-heading.compact h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.field-guide-grid, .agent-card-grid, .platform-grid {
  gap: 1rem;
  display: grid;
}

.field-guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agent-card-grid, .platform-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.field-guide-card, .agent-card, .platform-card {
  background: #080e20c7;
  border: 1px solid #74f2ff1a;
  border-radius: 20px;
  padding: 1.1rem;
}

.field-guide-card h3, .agent-card h3, .platform-card h3 {
  margin-bottom: .7rem;
  font-size: 1rem;
}

.agent-card__icon {
  width: 46px;
  height: 46px;
  color: var(--accent);
  background: #74f2ff1a;
  border-radius: 14px;
  place-items: center;
  margin-bottom: .9rem;
  display: inline-grid;
}

.platform-card ul {
  padding-left: 1rem;
}

.platform-card li + li {
  margin-top: .55rem;
}

.platform-footnote {
  margin-top: 1rem;
}

.glossary-toggle {
  width: 100%;
  color: var(--text-primary);
  background: #080e20b8;
  border: 1px solid #74f2ff29;
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  display: flex;
}

.glossary-title-shimmer {
  letter-spacing: .02em;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(120deg, #9ef8ff 8%, #fff 34%, #d8ff3e 58%, #9ef8ff 85%) 0 0 / 240%;
  -webkit-background-clip: text;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  animation: 2.8s linear infinite shimmerMove;
}

.section-toggle-title {
  color: var(--text-primary);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 700;
}

.glossary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1rem;
  display: grid;
}

.glossary-card {
  background: #090d1cc7;
  border: 1px solid #74f2ff1f;
  border-radius: 16px;
  padding: 1rem;
}

.glossary-card h4 {
  color: var(--accent);
  margin-bottom: .4rem;
}

.glossary-card p {
  color: var(--text-secondary);
}

.app-modal {
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal-backdrop {
  backdrop-filter: blur(6px);
  background: linear-gradient(#06080a99, #06080acc);
  position: absolute;
  inset: 0;
}

.modal-card {
  background: linear-gradient(#080c18f5, #070a14e0);
  border: 1px solid #74f2ff1f;
  border-radius: 24px;
  width: min(1280px, 97%);
  max-height: 94vh;
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: auto;
}

@media (width <= 1200px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
    width: min(100%, 100% - 1rem);
  }

  .dashboard-sidebar {
    max-height: none;
    position: static;
  }

  .dashboard-content .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (width <= 900px) {
  .hero-grid, .comparison-section, .ops-timeline, .system-map__grid, .roadmap-grid, .pulse-grid, .dashboard-grid, .dashboard-shell, .field-guide-grid, .agent-card-grid, .platform-grid, .glossary-grid, .lead-cart-layout {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .results-filter-grid, .funnel-selectors {
    grid-template-columns: 1fr 1fr;
  }

  .client-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
    padding: .65rem 1rem;
  }

  .client-topbar__actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .client-main {
    padding: 1rem;
  }

  .client-selection-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-actions-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-actions-bar .client-btn {
    justify-content: center;
  }

  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
    padding: .65rem 1rem;
  }

  .admin-topbar__nav {
    flex-wrap: wrap;
    width: 100%;
  }

  .admin-main {
    padding: 1rem;
  }

  .admin-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-detail-grid {
    grid-template-columns: 1fr;
  }

  .landing-topbar, .ops-panel__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-nav {
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .landing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    padding: .85rem 1.25rem;
  }

  .landing-footer__top {
    grid-template-columns: 1fr;
  }

  .landing-footer__bottom {
    flex-direction: column;
  }

  .landing-footer__bottom span:last-child {
    text-align: left;
  }

  .signal-frame {
    min-height: 420px;
  }

  .hero-visual {
    margin-left: 0;
  }

  .section-inner {
    width: 100%;
  }

  .source-compare, .compare-checklist__cols, .compare-checklist__row {
    grid-template-columns: 1fr;
  }

  .comparison-section {
    padding-bottom: 4rem;
  }

  .signal-core__ring--a {
    width: 320px;
    height: 320px;
  }

  .signal-core__ring--b, .signal-core__beam {
    width: 240px;
    height: 240px;
  }

  .app-modal {
    padding: 1rem;
    position: static;
  }

  .dashboard-sidebar {
    width: 100%;
    max-height: none;
    padding: 1.2rem;
    position: static;
    overflow: visible;
  }

  .dashboard-navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-navbar__links {
    width: 100%;
  }

  .dashboard-content {
    margin-top: 0;
  }

  .dashboard-content .dashboard-grid, .dashboard-content header#dashboard-overview {
    width: 100%;
  }

  .modal-backdrop {
    display: none;
  }
}

@media (width <= 640px) {
  .container, .landing-stage, .system-map, .ops-section, .roadmap-section {
    width: min(100%, 100% - 1rem);
    padding-inline: 0;
  }

  .landing-title {
    font-size: 2.7rem;
  }

  .signal-core__tag {
    font-size: .68rem;
  }

  .funnel-selectors {
    grid-template-columns: 1fr;
  }

  .funnel-active-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-topbar__brand {
    font-size: .8rem;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: #a3b6d326;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a3b6d34d;
}

.results-table tbody tr {
  transition: all .2s;
}

.results-table tbody tr:hover {
  z-index: 10;
  background: #74f2ff0a;
  position: relative;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #0000001a;
}

.skeleton-box {
  background-color: #ffffff0d;
  border-radius: 8px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.skeleton-box:after {
  content: "";
  background-image: linear-gradient(90deg, #fff0 0, #ffffff0d 20%, #ffffff1a 60%, #fff0);
  animation: 2s infinite shimmer;
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.ui-badge {
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 20px;
  align-items: center;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 600;
  display: inline-flex;
}

.ui-badge--cyan {
  color: #00f2fe !important;
  background: #00f2fe26 !important;
  border: 1px solid #00f2fe4d !important;
}

.ui-badge--purple {
  color: #a18cd1 !important;
  background: #a18cd126 !important;
  border: 1px solid #a18cd14d !important;
}

.ui-badge--green {
  color: #25d366;
  background: #25d3661f;
  border: 1px solid #25d36633;
}

.ui-badge--neutral {
  color: var(--text-secondary);
  background: #ffffff0f;
  border: 1px solid #ffffff1a;
}

button.client-btn, .checkout-btn, button.action-btn.primary, .start-btn {
  color: #000 !important;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%) !important;
  border: none !important;
  font-weight: 700 !important;
  transition: all .2s !important;
  box-shadow: 0 4px 15px #00f2fe66 !important;
}

button.client-btn:hover:not(:disabled), .checkout-btn:hover:not(:disabled), button.action-btn.primary:hover:not(:disabled), .start-btn:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 6px 20px #00f2fe99 !important;
}

button.client-btn:disabled, .checkout-btn:disabled, button.action-btn.primary:disabled, .start-btn:disabled {
  color: #888 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  background: #333 !important;
}

.checkout-btn-add {
  color: #000 !important;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
  border: none !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px #38ef7d4d !important;
}

.checkout-btn-add:hover:not(:disabled) {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px #38ef7d80 !important;
}

.admin-bi-section-title {
  color: var(--text-primary);
  letter-spacing: -.01em;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
}

.admin-kpi-card-new {
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(135deg, #ffffff08 0%, #ffffff01 100%);
  border: 1px solid #ffffff0d;
  border-radius: 20px;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1), border-color .25s, box-shadow .25s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px #0003;
}

.admin-kpi-card-new:hover {
  border-color: #74f2ff40;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #74f2ff1a;
}

.admin-kpi-card-new:after {
  content: "";
  background: none;
  width: 100%;
  height: 4px;
  transition: background .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.admin-kpi-card-new--revenue:after {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.admin-kpi-card-new--leads:after {
  background: linear-gradient(90deg, #74f2ff 0%, #38bdf8 100%);
}

.admin-kpi-card-new--sales:after {
  background: linear-gradient(90deg, #a18cd1 0%, #8b5cf6 100%);
}

.admin-kpi-card-new--clients:after {
  background: linear-gradient(90deg, #ff7a59 0%, #f97316 100%);
}

.admin-kpi-card-new--danger:after {
  background: linear-gradient(90deg, #ff5f70 0%, #ef4444 100%);
}

.admin-kpi-card-new__icon-container {
  background: #ffffff08;
  border: 1px solid #ffffff0d;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: transform .3s;
  display: flex;
}

.admin-kpi-card-new:hover .admin-kpi-card-new__icon-container {
  transform: scale(1.1) rotate(5deg);
}

.admin-kpi-card-new__content {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.admin-kpi-card-new__label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .8rem;
  font-weight: 500;
}

.admin-kpi-card-new__value {
  color: var(--text-primary);
  letter-spacing: -.02em;
  font-size: 1.75rem;
  font-weight: 700;
}

.admin-executive-card {
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(#0b132999 0%, #080e2066 100%);
  border: 1px solid #74f2ff14;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px #0000004d;
}

.admin-ranking-list-new {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.admin-ranking-item-new {
  background: #ffffff04;
  border: 1px solid #ffffff08;
  border-radius: 14px;
  align-items: center;
  padding: .85rem 1rem;
  transition: all .2s;
  display: flex;
}

.admin-ranking-item-new:hover {
  background: #74f2ff08;
  border-color: #74f2ff1f;
  transform: translateX(4px);
}

.admin-ranking-item-new__position {
  font-family: var(--font-mono);
  justify-content: center;
  align-items: center;
  width: 28px;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
}

.ranking-medal-gold {
  color: #fbbf24;
  text-shadow: 0 0 10px #fbbf2466;
}

.ranking-medal-silver {
  color: #cbd5e1;
  text-shadow: 0 0 10px #cbd5e166;
}

.ranking-medal-bronze {
  color: #d97706;
  text-shadow: 0 0 10px #d9770666;
}

.admin-ranking-item-new__avatar {
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 12px;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  box-shadow: 0 4px 10px #0003;
}

.admin-ranking-item-new__info {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.admin-ranking-item-new__title {
  color: var(--text-primary);
  font-size: .9rem;
  font-weight: 600;
}

.admin-ranking-item-new__subtitle {
  color: var(--text-secondary);
  font-size: .75rem;
}

.admin-ranking-item-new__value {
  text-align: right;
  flex-direction: column;
  display: flex;
}

.admin-ranking-item-new__value strong {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
}

.admin-ranking-item-new__value small {
  color: var(--text-secondary);
  font-size: .7rem;
}

.pulsing-dot-container {
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.pulsing-dot {
  background-color: #ffd24f;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 #ffd24f66;
}

.pulsing-dot--active {
  background-color: #10b981;
  animation: 2s infinite pulse-green;
}

.pulsing-dot--paused {
  background-color: #f59e0b;
  animation: 2s infinite pulse-orange;
}

.pulsing-dot--stopped {
  background-color: #ef4444;
  animation: 2s infinite pulse-red;
}

@keyframes pulse-green {
  0% {
    transform: scale(.95);
    box-shadow: 0 0 #10b981b3;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px #10b98100;
  }

  100% {
    transform: scale(.95);
    box-shadow: 0 0 #10b98100;
  }
}

@keyframes pulse-orange {
  0% {
    transform: scale(.95);
    box-shadow: 0 0 #f59e0bb3;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px #f59e0b00;
  }

  100% {
    transform: scale(.95);
    box-shadow: 0 0 #f59e0b00;
  }
}

@keyframes pulse-red {
  0% {
    transform: scale(.95);
    box-shadow: 0 0 #ef4444b3;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px #ef444400;
  }

  100% {
    transform: scale(.95);
    box-shadow: 0 0 #ef444400;
  }
}

.client-workspace-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  align-items: start;
  gap: 1.5rem;
  margin-top: 1rem;
  display: grid;
}

.custom-map-marker {
  transition: transform .25s ease-out;
}

.custom-map-marker:hover {
  z-index: 1000 !important;
  transform: scale(1.3) !important;
}

@media (width <= 1024px) {
  .client-workspace-grid {
    grid-template-columns: 1fr !important;
  }
}
/*# sourceMappingURL=client.aa436662.css.map */
