@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Sora:wght@300;400;500;600&display=swap");

:root {
  --white: #ffffff;
  --lime: #70e000;
  --lime-soft: #b7ff66;
  --black: #020202;
  --ink: #0b0b0b;
  --surface: #0f1012;
  --surface-2: #14161a;
  --border: rgba(255, 255, 255, 0.08);
  --muted: rgba(255, 255, 255, 0.65);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.35);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Sora", sans-serif;
  color: #f5f5f5;
  background-color: var(--black);
  background-image: radial-gradient(circle at 18% 18%, rgba(112, 224, 0, 0.08), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.04), transparent 35%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-content {
  flex: 1;
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 6vw;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(2, 2, 2, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-center {
  justify-content: center;
}

.nav-right {
  justify-content: flex-end;
}

.lang-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(6, 6, 6, 0.7);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-trigger:focus {
  outline: 2px solid rgba(112, 224, 0, 0.35);
  outline-offset: 2px;
}

.lang-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(112, 224, 0, 0.5);
}

.lang-caret {
  font-size: 0.7rem;
  opacity: 0.7;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 170px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 10;
}

.lang-tooltip:hover .lang-menu,
.lang-tooltip:focus-within .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.lang-link:hover {
  color: var(--white);
  background: rgba(112, 224, 0, 0.1);
  border-color: rgba(112, 224, 0, 0.2);
}

.nav-auth-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-chip {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--black);
  font-weight: 700;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--white);
}

.page {
  padding: 52px 6vw 100px;
  max-width: 1500px;
  margin: 0 auto;
}

.section {
  margin-bottom: 76px;
}

.section-divider {
  height: 1px;
  width: 100%;
  background: var(--border);
  margin: 40px 0 70px;
}

.section-title {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin: 0 0 16px;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--lime);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.social-proof-band {
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(112, 224, 0, 0.35);
  background: linear-gradient(135deg, rgba(112, 224, 0, 0.16), rgba(2, 2, 2, 0.95));
  box-shadow: var(--shadow-soft);
  margin-bottom: 48px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.proof-item {
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(7, 7, 7, 0.6);
  display: grid;
  gap: 6px;
}

.proof-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.proof-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-left {
  max-width: 560px;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  margin: 16px 0 14px;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--lime-soft);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 26px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(112, 224, 0, 0.12);
  color: var(--lime-soft);
  font-size: 0.85rem;
  border: 1px solid rgba(112, 224, 0, 0.25);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.profile-stream {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(5, 5, 5, 0.75));
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.profile-stream::after {
  content: \"\";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(112, 224, 0, 0.08), transparent 70%);
  transform: translateX(-120%);
  animation: stream-sweep 7s ease-in-out infinite;
  pointer-events: none;
}

.profile-row {
  display: grid;
  grid-template-columns: 40px 1fr 64px;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(6, 6, 6, 0.85);
  animation: profile-float 4.8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.profile-row:nth-child(2) {
  animation-delay: 0.5s;
}

.profile-row:nth-child(3) {
  animation-delay: 1s;
}

.profile-row:nth-child(4) {
  animation-delay: 1.5s;
}

.profile-row:nth-child(5) {
  animation-delay: 2s;
}

.profile-row.is-new {
  border-color: rgba(112, 224, 0, 0.45);
  box-shadow: 0 0 0 1px rgba(112, 224, 0, 0.18) inset;
  animation: profile-float 4.8s ease-in-out infinite, profile-pop 6s ease-in-out infinite;
}

.profile-row.is-new::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(112, 224, 0, 0.2), transparent 70%);
  transform: translateX(-120%);
  animation: profile-sweep 6s ease-in-out infinite;
  pointer-events: none;
}

.profile-badge {
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(112, 224, 0, 0.4);
  background: rgba(112, 224, 0, 0.14);
  color: var(--lime-soft);
}

.profile-avatar {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(112, 224, 0, 0.4), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(112, 224, 0, 0.35);
}

.profile-lines {
  display: grid;
  gap: 6px;
}

.profile-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.profile-line::after {
  content: \"\";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(112, 224, 0, 0.25), transparent);
  animation: line-scan 5.5s ease-in-out infinite;
}

.profile-line.short {
  width: 60%;
}

.profile-tag {
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(112, 224, 0, 0.3);
  background: rgba(112, 224, 0, 0.16);
  animation: profile-pulse 4.5s ease-in-out infinite;
}

@keyframes profile-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes profile-pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes profile-pop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  18% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  65% {
    opacity: 1;
    transform: translateY(-4px) scale(1);
  }
  100% {
    opacity: 0.8;
    transform: translateY(0) scale(1);
  }
}

@keyframes profile-sweep {
  0% {
    transform: translateX(-120%);
  }
  45% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes stream-sweep {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes line-scan {
  0% {
    transform: translateX(-120%);
  }
  60% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.trust-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  background: rgba(10, 10, 10, 0.6);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.feature {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.75);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.value-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.75);
}

.value-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}

.value-copy {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.step {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(12, 12, 12, 0.7);
}

.step-index {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(112, 224, 0, 0.18);
  color: var(--lime-soft);
  font-weight: 600;
  margin-bottom: 12px;
}

.step-title {
  font-weight: 600;
}

.step-copy {
  color: var(--muted);
  margin-top: 8px;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.option-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(11, 11, 11, 0.65);
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.testimonial-scroll {
  display: flex;
  gap: 18px;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  scrollbar-width: none;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  flex: 0 0 auto;
}

.testimonial-scroll::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.75);
  box-shadow: var(--shadow-soft);
  min-width: 240px;
  max-width: 280px;
  flex: 0 0 auto;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.4;
}

.testimonial-meta {
  margin-top: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.dashboard-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  align-items: center;
}

.dashboard-copy {
  max-width: 520px;
}

.benefit-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.dashboard-mock {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(112, 224, 0, 0.25);
  background: linear-gradient(160deg, rgba(112, 224, 0, 0.12), rgba(5, 5, 5, 0.92));
  box-shadow: var(--shadow-soft);
}

.dashboard-title {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.dashboard-kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.dashboard-kpi {
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(7, 7, 7, 0.75);
}

.dashboard-kpi-value {
  font-size: 1.4rem;
  font-weight: 600;
}

.dashboard-kpi-label {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-table {
  display: grid;
  gap: 10px;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.5fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(6, 6, 6, 0.75);
}

.dashboard-cell {
  font-size: 0.85rem;
  color: var(--muted);
}

.dashboard-cell.primary {
  color: var(--white);
  font-weight: 600;
}

.country-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.country-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(112, 224, 0, 0.35);
  background: rgba(112, 224, 0, 0.14);
  color: var(--lime-soft);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.pricing-strip,
.pricing-grid,
.billing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card,
.plan-card,
.auth-card {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.pricing-selector {
  display: grid;
  gap: 14px;
}

.pricing-slider {
  margin: 6px 0 2px;
}

.pricing-slider .rc-slider-mark,
.pricing-slider .rc-slider-dot,
.pricing-slider .rc-slider-dot-active {
  display: none;
}

.pricing-header {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.pricing-metric {
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(6, 6, 6, 0.7);
}

.pricing-metric .card-value,
.pricing-metric .price-value {
  margin: 6px 0 0;
}

.metric-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--muted);
}

.price-value {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--lime);
}

.card.highlight,
.plan-card.highlight {
  border-color: rgba(112, 224, 0, 0.5);
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--muted);
}

.card-value {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 8px 0 6px;
}

.card-meta {
  color: var(--muted);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(112, 224, 0, 0.25);
}

.btn.ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}

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

.auth-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  align-items: start;
}

.auth-copy {
  max-width: 420px;
}

.auth-panel {
  display: grid;
  gap: 18px;
}

.recover-link {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--lime-soft);
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
}

.recover-link:hover {
  color: var(--lime);
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 6, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  padding: 20px;
}

.modal-card {
  width: min(520px, 92vw);
  background: rgba(10, 10, 10, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--lime);
}

.modal-title {
  margin: 0;
  font-size: 1.3rem;
}

.modal-step {
  display: grid;
  gap: 10px;
}

.modal-step-title {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.segmented {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(6, 6, 6, 0.8);
}

.segmented-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.segmented-btn.active {
  background: var(--lime);
  color: var(--black);
}

.legal-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-note a {
  color: var(--lime-soft);
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.auth-card label,
.card label {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(3, 3, 3, 0.9);
  color: var(--white);
  padding: 12px 14px;
  font-family: inherit;
}

.Select-control,
.dropdown-dark .Select-control {
  background: rgba(3, 3, 3, 0.9) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  min-height: 44px;
}

.Select-placeholder,
.Select-value-label,
.Select-input > input,
.dropdown-dark .Select-placeholder,
.dropdown-dark .Select-value-label,
.dropdown-dark .Select-input > input {
  color: var(--white) !important;
}

.Select-input > input,
.dropdown-dark .Select-input > input {
  background: transparent !important;
}

.Select__control,
.dropdown-dark .Select__control {
  background: rgba(3, 3, 3, 0.9) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  min-height: 44px;
}

.Select__placeholder,
.Select__single-value,
.Select__input-container,
.dropdown-dark .Select__placeholder,
.dropdown-dark .Select__single-value,
.dropdown-dark .Select__input-container {
  color: var(--white) !important;
}

.Select__multi-value,
.dropdown-dark .Select__multi-value {
  background: rgba(112, 224, 0, 0.18) !important;
  border: 1px solid rgba(112, 224, 0, 0.35) !important;
  border-radius: 999px !important;
}

.Select__multi-value__label,
.dropdown-dark .Select__multi-value__label {
  color: var(--lime-soft) !important;
}

.Select__menu,
.dropdown-dark .Select__menu {
  background: #0b0b0b !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
}

.Select--multi .Select-value,
.dropdown-dark .Select--multi .Select-value {
  background: rgba(112, 224, 0, 0.18) !important;
  border: 1px solid rgba(112, 224, 0, 0.35) !important;
  color: var(--lime-soft) !important;
  border-radius: 999px !important;
}

.Select--multi .Select-value-label,
.dropdown-dark .Select--multi .Select-value-label {
  color: var(--lime-soft) !important;
}

.Select-menu-outer,
.dropdown-dark .Select-menu-outer {
  background: #0b0b0b !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  margin-top: 6px;
}

.Select-option,
.dropdown-dark .Select-option {
  color: var(--white) !important;
  background: transparent !important;
}

.Select-option.is-focused,
.dropdown-dark .Select-option.is-focused {
  background: rgba(112, 224, 0, 0.1) !important;
}

.Select-arrow-zone,
.dropdown-dark .Select-arrow-zone {
  color: var(--muted) !important;
}

.textarea {
  min-height: 120px;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 8px 0 16px;
}

.checklist label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(6, 6, 6, 0.7);
}

.checklist input {
  accent-color: var(--lime);
}

.toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 10px;
}

.toggle label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(6, 6, 6, 0.7);
  color: var(--white);
}

.toggle input {
  accent-color: var(--lime);
}

.max-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 6px 0 10px;
  flex-wrap: wrap;
}

.max-row .toggle {
  margin: 0;
}

.max-row .input {
  flex: 1;
  min-width: 160px;
}

.checklist.option-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checklist.option-grid label {
  padding: 12px 14px;
  border-radius: 14px;
  transition: border 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.checklist.option-grid label:hover {
  border-color: rgba(112, 224, 0, 0.5);
  transform: translateY(-1px);
}

.option-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.option-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.option-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.option-title {
  font-weight: 600;
}

.option-tag {
  font-size: 0.78rem;
  color: var(--lime-soft);
}

.option-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(112, 224, 0, 0.5);
  color: var(--lime-soft);
  font-size: 0.7rem;
  font-weight: 700;
  cursor: help;
}

.option-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(112, 224, 0, 0.4);
  background: radial-gradient(80% 80% at 30% 20%, rgba(112, 224, 0, 0.26) 0%, rgba(112, 224, 0, 0.12) 45%, rgba(7, 10, 5, 0.45) 100%);
  box-shadow: inset 0 0 0 1px rgba(112, 224, 0, 0.08), 0 6px 16px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  --option-icon: none;
}

.option-icon::after,
.option-icon::before {
  content: "";
  position: absolute;
}

.option-icon::before {
  inset: 8px;
  background: var(--lime);
  z-index: 1;
  -webkit-mask: var(--option-icon) center/contain no-repeat;
  mask: var(--option-icon) center/contain no-repeat;
}

.option-icon::after {
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.option-icon.option-email {
  --option-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='14' rx='3'/><path d='M3 7l9 6 9-6'/></svg>");
}

.option-icon.option-phone {
  --option-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='7' y='2' width='10' height='20' rx='2'/><path d='M10 5h4'/><circle cx='12' cy='18' r='1'/></svg>");
}

.option-icon.option-website {
  --option-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M3 12h18'/><path d='M12 3c2.5 3 2.5 15 0 18'/><path d='M12 3c-2.5 3-2.5 15 0 18'/></svg>");
}

.option-icon.option-insights {
  --option-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 18V8'/><path d='M10 18V5'/><path d='M16 18V11'/><path d='M4 12l4-3 4 2 4-5'/></svg>");
}

.option-icon.option-address {
  --option-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s-6-5.2-6-10a6 6 0 1112 0c0 4.8-6 10-6 10z'/><circle cx='12' cy='11' r='2'/></svg>");
}

.option-icon.option-creators {
  --option-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='9' cy='8' r='3'/><path d='M3 20c0-3 12-3 12 0'/><path d='M17.5 6l.8 1.6 1.7.3-1.2 1.2.3 1.7-1.6-.8-1.6.8.3-1.7-1.2-1.2 1.7-.3z'/></svg>");
}

.rc-slider-track {
  background-color: var(--lime);
}

.rc-slider-handle {
  border-color: var(--lime);
  background: var(--black);
  box-shadow: none;
}

.rc-slider-dot-active {
  border-color: var(--lime);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin: 18px 0 20px;
}

.metric {
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(6, 6, 6, 0.7);
  font-size: 0.9rem;
}

.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.dashboard-left,
.dashboard-right {
  display: grid;
  gap: 18px;
}

.dashboard-shell.is-locked {
  opacity: 0.6;
  filter: blur(1px);
  pointer-events: none;
}

.history-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.history-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(6, 6, 6, 0.7);
}

.history-info {
  display: grid;
  gap: 4px;
}

.history-handle {
  font-weight: 600;
}

.history-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime-soft);
  font-size: 0.85rem;
  margin-top: 4px;
}

.history-loader {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(112, 224, 0, 0.25);
  border-top-color: var(--lime);
  animation: spin 0.9s linear infinite;
  flex-shrink: 0;
}

.history-meta {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 4px;
}

.history-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.history-download {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .history-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .history-controls {
    flex-direction: column;
  }

  .history-actions,
  .history-download {
    width: 100%;
  }
}

.lock-banner {
  margin-bottom: 16px;
}

.lock-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(112, 224, 0, 0.3);
  background: rgba(8, 8, 8, 0.85);
}

.lock-title {
  font-weight: 600;
}

.lock-copy {
  color: var(--muted);
  margin-top: 4px;
}

.credit-balance {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 12px 0;
}

.status {
  margin-top: 12px;
  color: var(--muted);
}

.status-cta {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.status-line {
  font-weight: 600;
}

.status-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.status-log {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(112, 224, 0, 0.2);
  background: rgba(15, 16, 18, 0.92);
  color: var(--muted);
  font-size: 0.82rem;
  white-space: pre-wrap;
  max-height: 220px;
  overflow: auto;
}

#results-table[data-dash-is-loading="true"] {
  min-height: 180px;
  position: relative;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(112, 224, 0, 0.4);
  background: rgba(6, 6, 6, 0.65);
}

#results-table[data-dash-is-loading="true"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin: -28px 0 0 -14px;
  border-radius: 50%;
  border: 2px solid rgba(112, 224, 0, 0.2);
  border-top-color: var(--lime);
  animation: spin 1s linear infinite;
}

#results-table[data-dash-is-loading="true"]::after {
  content: "Extraction en cours";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 10px);
  color: var(--lime-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(112, 224, 0, 0.35);
  background: rgba(5, 5, 5, 0.92);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 40;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  animation: toast-fade 4s ease forwards;
}

@keyframes toast-fade {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  12% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.compliance-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(112, 224, 0, 0.25);
  background: rgba(8, 8, 8, 0.7);
  color: var(--muted);
  font-size: 0.85rem;
}

.muted {
  color: var(--muted);
}

.plan-list {
  padding-left: 18px;
  color: var(--muted);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.quote-card {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.7);
  box-shadow: var(--shadow-soft);
}

.quote-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.quote-author {
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(112, 224, 0, 0.12), rgba(2, 2, 2, 0.95));
  border: 1px solid rgba(112, 224, 0, 0.35);
}

.cta-copy h2 {
  margin: 0 0 8px;
}

.footer {
  padding: 32px 6vw;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: rgba(2, 2, 2, 0.85);
}

.footer-brand {
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-note {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 420px;
}

.footer-right {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-right a {
  color: var(--muted);
}

.footer-right a:hover {
  color: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 820px) {
  .nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-center {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-row {
    grid-template-columns: 1fr;
  }

  .lock-card {
    flex-direction: column;
    align-items: flex-start;
  }

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