﻿:root {
  --bg: #080b0f;
  --bg2: #0d1117;
  --bg3: #111820;
  --border: rgba(255,255,255,0.07);
  --border-glow: rgba(0,200,255,0.2);
  --text: #e8edf3;
  --text-muted: #8fa0b3;
  --text-dim: #5c6e80;
  --accent: #00c8ff;
  --accent2: #0072ff;
  --accent-glow: rgba(0,200,255,0.15);
  --red: #ff3b5c;
  --orange: #ff7b3a;
  --green: #00e583;
  --card: rgba(255,255,255,0.03);
  --card-hover: rgba(255,255,255,0.055);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

section[id],
div[id] {
  scroll-margin-top: 110px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
  cursor: default;
}
a, button, [role="button"], label, select, summary, .btn, .btn-primary, .btn-secondary, .nav-cta, .modal-close, .checkbox-item, .faq-item, .toggle-switch, .plan-cta, .demo-banner a, .ptck, .btn-part, .check-item {
  cursor: pointer !important;
}

input, textarea {
  cursor: text !important;
}

select {
  cursor: pointer !important;
}

.form-notice {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.6;
}

.form-notice strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.form-notice.success {
  background: rgba(0, 229, 131, 0.08);
  border-color: rgba(0, 229, 131, 0.28);
  color: #d8ffee;
}

.form-notice.error {
  background: rgba(255, 59, 92, 0.08);
  border-color: rgba(255, 59, 92, 0.28);
  color: #ffd9df;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────── */
#cursor {
  display: none;
}


/* ─── NOISE OVERLAY ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 28px 0 24px;
  height: 108px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(8,11,15,0.85);
  backdrop-filter: blur(20px);
}

.page-logo-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 156px 20px 34px;
}

.page-logo-banner img {
  display: block;
  width: min(440px, 62vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 200, 255, 0.14));
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  margin-right: 0;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo img {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 200, 255, 0.18));
}
.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}
.nav-links {
  display: flex;
  gap: 14px;
  list-style: none;
  align-items: center;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: center;
  justify-self: center;
  width: 100%;
  min-width: 0;
}
.nav-links a {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
#langSwitcher { justify-self: end; }
.nav-links a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}
.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: #33d5ff !important;
  box-shadow: 0 0 20px rgba(0,200,255,0.4) !important;
}
/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 40px 80px;
  overflow: hidden;
}
.hero-grid { 
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0,114,255,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,200,255,0.07) 0%, transparent 70%);
  top: 40%;
  right: 15%;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  background: rgba(0,200,255,0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.03em;
  position: relative;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .accent-word {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  line-height: 1.6;
  margin: 24px 0 16px;
  font-weight: 400;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-sub2 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  animation: fadeUp 0.6s 0.25s ease both;
  margin-bottom: 40px;
}
.hero-sub2 span { color: var(--accent); }
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.6s 0.35s ease both;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  background: var(--accent);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: default;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.3s, transform 0.2s;
  letter-spacing: 0.04em;
}
.btn-primary:hover {
  background: #33d5ff;
  box-shadow: 0 0 30px rgba(0,200,255,0.5);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  cursor: default;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  letter-spacing: 0.04em;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

/* ─── STATS BAR ──────────────────────────────────────── */
.stats-bar {
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 80px;
  padding: 20px 0;
  background: rgba(255,255,255,0.015);
  animation: fadeUp 0.6s 0.5s ease both;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Space Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  display: block;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ─── SECTIONS ───────────────────────────────────────── */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.text-muted { color: var(--text-muted); }

/* ─── WHAT IT DOES ───────────────────────────────────── */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  align-items: center;
}
.what-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.what-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--card);
  transition: border-color 0.2s, color 0.2s;
}
.pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── SCREENSHOT CARDS ───────────────────────────────── */
.screen-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg2);
}
.screen-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,200,255,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.screen-card img {
  width: 100%;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.4s ease;
}
.screen-card:hover img {
  opacity: 1;
  transform: scale(1.02);
}
.screen-bar {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.02);
}
.screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ─── FEATURES GRID ──────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.feature-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--border-glow);
  background: var(--card-hover);
  transform: translateY(-3px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 18px;
  background: rgba(255,255,255,0.02);
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.dp-modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mobile-stack-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mobile-stack-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mobile-stack-mini-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* ─── HOW IT WORKS ───────────────────────────────────── */
.how-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  max-width: 100%;
  padding: 100px 40px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(0,200,255,0.3), var(--accent));
}
.step {
  text-align: center;
  padding: 0 30px;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 20px rgba(0,200,255,0.15);
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── SCREENSHOTS SHOWCASE ───────────────────────────── */
.screens-section {
  overflow: hidden;
  position: relative;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.screens-title {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 40px;
}
.screens-scroll {
  display: flex;
  gap: 20px;
  padding: 10px 40px 30px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,200,255,0.3) transparent;
  max-width: 1200px;
  margin: 0 auto;
}
.screens-scroll::-webkit-scrollbar { height: 4px; }
.screens-scroll::-webkit-scrollbar-track { background: transparent; }
.screens-scroll::-webkit-scrollbar-thumb { background: rgba(0,200,255,0.3); border-radius: 2px; }
.screen-thumb {
  flex: 0 0 360px;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg2);
  transition: border-color 0.3s, transform 0.3s;
}
.screen-thumb:hover {
  border-color: var(--border-glow);
  transform: scale(1.02);
}
.screen-thumb img {
  width: 100%;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.screen-thumb:hover img { opacity: 1; }
.screen-caption {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.screen-caption-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* ─── NETWORK HUB ────────────────────────────────────── */
.hub-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.hub-modes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.hub-mode {
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s, background 0.3s;
}
.hub-mode:hover {
  border-color: var(--border-glow);
  background: var(--card-hover);
}
.hub-mode-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.badge-off { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.badge-monitor { background: rgba(0,200,255,0.1); color: var(--accent); border: 1px solid rgba(0,200,255,0.3); }
.badge-enforce { background: rgba(0,229,131,0.1); color: var(--green); border: 1px solid rgba(0,229,131,0.3); }
.hub-mode-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ─── WHO ────────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.who-grid-3 { grid-template-columns: repeat(3, 1fr); }
.who-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.who-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}
.who-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.who-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.who-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ─── WHY ────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.why-item {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s, background 0.3s;
}
.why-item:hover {
  border-color: var(--border-glow);
  background: var(--card-hover);
}
.why-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--accent);
  margin-top: 2px;
}
.why-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.why-item p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ─── SECURITY BADGES ────────────────────────────────── */
.security-row {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.security-badge {
  flex: 1;
  min-width: 220px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  display: flex;
  gap: 14px;
  align-items: center;
}
.security-badge-icon { font-size: 22px; }
.security-badge h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.security-badge p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,114,255,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-section h2 { position: relative; z-index: 1; }
.cta-section p {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  margin: 16px 0 40px;
  font-size: 17px;
}
.cta-btns {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────────── */

/* ─── FOOTER ENRICHI ────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px 28px;
  background: var(--bg);
  max-width: 100%;
  display: block;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; margin-bottom: 32px; flex-wrap: wrap;
}
.footer-tagline {
  font-size: 13px; color: var(--text-dim); margin-top: 12px;
  line-height: 1.65; max-width: 300px;
}
.footer-tagline strong { color: var(--text-muted); font-weight: 600; }
.footer-legal-links {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.footer-legal-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 4px;
}
.footer-legal-btn {
  background: none; border: none; padding: 0;
  color: var(--text-dim); font-family: 'Syne', sans-serif; font-size: 13px;
  cursor: pointer; text-align: right;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.1);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.footer-legal-btn:hover { color: var(--accent); text-decoration-color: var(--accent); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); font-family: 'JetBrains Mono', monospace; }
.footer-reg { font-size: 11px; color: var(--text-dim); font-family: 'JetBrains Mono', monospace; }

/* ─── LEGAL OVERLAYS ─────────────────────────────────────────────── */
.legal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.legal-overlay.open { opacity: 1; pointer-events: all; }
.legal-box {
  background: var(--bg2); border: 1px solid var(--border-glow);
  border-radius: 16px; width: 100%; max-width: 720px;
  max-height: 82vh; display: flex; flex-direction: column;
  box-shadow: 0 0 60px rgba(0,200,255,0.08);
  transform: translateY(20px); transition: transform 0.3s ease;
}
.legal-overlay.open .legal-box { transform: translateY(0); }
.legal-box-header {
  padding: 20px 24px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.legal-box-title {
  font-family: 'Space Mono', monospace; font-size: 12px;
  font-weight: 700; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase;
}
.legal-box-close {
  background: none; border: 1px solid var(--border);
  color: var(--text-muted); width: 28px; height: 28px;
  border-radius: 6px; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s; line-height: 1;
}
.legal-box-close:hover { border-color: var(--accent); color: var(--accent); }
.legal-box-body {
  padding: 24px; overflow-y: auto; flex: 1;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
a, button, [role="button"], label, select, summary, .btn, .btn-primary, .btn-secondary, .nav-cta, .modal-close, .checkbox-item, .faq-item, .toggle-switch, .plan-cta, .demo-banner a, .ptck, .btn-part, .check-item {
  cursor: pointer !important;
}

input, textarea {
  cursor: text !important;
}

select {
  cursor: pointer !important;
}
.legal-box-body::-webkit-scrollbar { width: 4px; }
.legal-box-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.legal-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.legal-meta-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; padding: 3px 8px; border-radius: 4px;
  border: 1px solid var(--border-glow); color: var(--accent);
  background: rgba(0,200,255,0.05);
}
.legal-section { margin-bottom: 24px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h3 {
  font-family: 'Space Mono', monospace; font-size: 11px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.legal-section p { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 6px; }
.legal-section ul { padding-left: 16px; margin-bottom: 6px; }
.legal-section li { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.legal-section strong { color: var(--text); font-weight: 600; }
@media (max-width: 600px) {
  .footer-legal-links { align-items: flex-start; }
  .footer-legal-btn { text-align: left; }
  .legal-box { max-height: 90vh; }
  .legal-box-body { padding: 16px; }
a, button, [role="button"], label, select, summary, .btn, .btn-primary, .btn-secondary, .nav-cta, .modal-close, .checkbox-item, .faq-item, .toggle-switch, .plan-cta, .demo-banner a, .ptck, .btn-part, .check-item {
  cursor: pointer !important;
}

input, textarea {
  cursor: text !important;
}

select {
  cursor: pointer !important;
}
}
footer .nav-logo { color: var(--text-muted); font-size: 13px; }
footer p { font-size: 12px; color: var(--text-dim); font-family: 'JetBrains Mono', monospace; }

/* ─── TICKER ─────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: rgba(0,200,255,0.02);
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ticker-item span { color: var(--accent); }

/* ─── REVEAL ANIMATION ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── KEYFRAMES ──────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .page-logo-banner {
    padding: 118px 20px 18px;
  }

  .page-logo-banner img {
    width: min(240px, 72vw);
  }

  .what-grid,
  .hub-layout,
  .features-grid { grid-template-columns: 1fr; }
  .dp-modes-grid { grid-template-columns: 1fr; gap: 14px; }
  .mobile-stack-2,
  .mobile-stack-3,
  .mobile-stack-mini-2 { grid-template-columns: 1fr !important; }
  .who-grid,
  .who-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 30px; }
  .steps-row::before { display: none; }
  nav { padding: 0 20px; }
  .hero { padding: 20px 20px 64px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(8,11,15,0.97);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.35);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 10px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }
  section { padding: 64px 20px; }
  .how-section,
  .ai-section,
  .cta-section { padding: 64px 20px; }
  .screens-title,
  .screens-scroll { padding-left: 20px; padding-right: 20px; }
  #stickyCta { padding: 12px 20px !important; }
  #stickyCta > div {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}

/* ─── LANG SWITCHER ──────────────────────────────────── */
#langSwitcher select {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 28px 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.08em;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7a8d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
#langSwitcher select:hover,
#langSwitcher select:focus {
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
  background-color: rgba(0,200,255,0.05);
}
#langSwitcher select option {
  background: #0d1117;
  color: var(--text);
}

/* ─── SECTION IA V2 ──────────────────────────────────── */
.ai-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 100px 40px;
  overflow: hidden;
  position: relative;
}
.ai-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,114,255,0.07) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ai-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ai-header {
  text-align: center;
  margin-bottom: 64px;
}
.ai-header h2 {
  margin-bottom: 0;
}
.ai-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* Pipeline */
.ai-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 56px;
}
.ai-pipeline-step {
  text-align: center;
  padding: 0 12px;
}
.ai-step-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  border: 1px solid var(--border-glow);
  background: rgba(0,200,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 12px;
  position: relative;
}
.ai-step-line {
  width: 2px; height: 32px;
  background: linear-gradient(180deg, var(--accent), rgba(0,200,255,0.2));
  margin: 0 auto 12px;
  border-radius: 1px;
}
.ai-step-label {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.ai-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.ai-pipeline-arrow {
  align-self: center;
  padding-bottom: 120px;
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  color: var(--border-glow);
}

/* Score cards */
.ai-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.ai-score-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 16px;
  transition: border-color 0.3s, background 0.3s;
}
.ai-score-card:hover {
  background: var(--card-hover);
  border-color: var(--border-glow);
}
.ai-score-critical {
  border-color: rgba(255,59,92,0.25);
  background: rgba(255,59,92,0.03);
}
.ai-score-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ai-score-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 54px;
}
.ai-score-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
}
.ai-score-bar {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease;
}
.ai-score-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
}
.ai-score-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Features row */
.ai-features-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ai-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  transition: border-color 0.3s, background 0.3s;
}
.ai-feat:hover {
  border-color: var(--border-glow);
  background: var(--card-hover);
}
.ai-feat-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ai-feat h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}
.ai-feat p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1000px) {
  .ai-pipeline {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .ai-pipeline-arrow { display: none; }
  .ai-scores { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ai-section { padding: 60px 20px; }
  .ai-scores { grid-template-columns: 1fr; }
  .ai-features-row { grid-template-columns: 1fr; }
  .ai-pipeline { grid-template-columns: 1fr; }
}

