/* ============================================================
   NEURON GUARD — Design System
   Dark cybersecurity aesthetic: deep space black + electric green
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --bg:          #030810;
  --bg-0:        #030810;
  --bg-1:        #060f1d;
  --bg-2:        #091525;
  --bg-card:     rgba(0, 255, 140, 0.025);
  --card-bg:     rgba(0, 255, 140, 0.025);
  --bg-card-h:   rgba(0, 255, 140, 0.055);

  --green:       #00ff8c;
  --green-2:     #00cc6e;
  --green-3:     #00804a;
  --green-glow:  rgba(0, 255, 140, 0.18);
  --green-glow2: rgba(0, 255, 140, 0.06);

  --cyan:        #00d4ff;
  --red:         #ff3355;
  --amber:       #ffaa00;

  --text:        #ddeee6;
  --text-1:      #ddeee6;
  --text-2:      #6a9080;
  --text-3:      #628779;
  --border:      rgba(0, 255, 140, 0.1);
  --border-2:    rgba(0, 255, 140, 0.22);

  --font-display: 'Courier Prime', monospace;
  --font-body:    'Courier Prime', monospace;
  --font-mono:    'Courier Prime', monospace;

  --max-w: 1180px;
  --radius: 12px;
  --radius-lg: 20px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(0, 255, 140, 0.16);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 5000;
  padding: 10px 14px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--bg-1);
  color: var(--text);
  font-size: 0.82rem;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 14px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green-3); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
.display-font { font-family: var(--font-display); }
.mono-font    { font-family: var(--font-mono); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-2); font-size: 1rem; }

.text-green  { color: var(--green); }
.text-cyan   { color: var(--cyan); }
.text-amber  { color: #ffaa00; }
.text-muted  { color: var(--text-2); }
.text-center { text-align: center; }
.text-sm     { font-size: 0.875rem; }
.text-xs     { font-size: 0.78rem; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: 16px; }
.gap-8 { gap: 32px; }

/* ===== UTILITIES ===== */
.section-panel {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-panel-tight {
  padding-top: 48px;
  padding-bottom: 48px;
}

.u-stack-8 { display: flex; flex-direction: column; gap: 8px; }
.u-stack-10 { display: flex; flex-direction: column; gap: 10px; }
.u-stack-12 { display: flex; flex-direction: column; gap: 12px; }

.u-center-wrap {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.u-btn-full {
  width: 100%;
  text-align: center;
}

.u-title-gap-sm { margin-bottom: 8px; }
.u-title-gap-md { margin-bottom: 24px; }
.u-title-gap-lg { margin-bottom: 28px; }

.u-intro-muted {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--text-2);
  font-size: 0.9rem;
}

.u-note-muted {
  margin-top: 16px;
  max-width: 740px;
  color: var(--text-2);
}

.u-price-currency {
  font-size: 1.2rem;
  font-weight: 600;
}
.u-price-currency-green { color: var(--green); }
.u-price-currency-cyan { color: var(--cyan); }
.u-price-currency-amber { color: #ffaa00; }

.u-price-row-top { margin-top: 10px; }
.u-price-note-top { margin-top: 4px; }

.u-container-680 {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.u-container-760 { max-width: 760px; }
.u-container-800 { max-width: 800px; }

.u-link-rail {
  color: var(--text-2);
  font-size: 0.82rem;
  margin: 0 8px;
}

.u-logo-inline { display: inline-flex; }
.u-mt-4 { margin-top: 4px; }
.u-copy-center {
  margin: 16px auto 32px;
}
.u-container-600 {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.section-label-center {
  justify-content: center;
}

.service-check-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.service-check-item {
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-2);
  align-items: flex-start;
}
.service-check-mark {
  color: var(--green);
  flex-shrink: 0;
}
.text-087 { font-size: 0.87rem; }
.text-088 { font-size: 0.88rem; }

.flow-arrow {
  display: flex;
  justify-content: center;
  padding: 4px 0;
  color: var(--text-2);
}
.guardrail-chip {
  font-size: 0.72rem;
  background: rgba(0,255,140,0.12);
  border: 1px solid rgba(0,255,140,0.2);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--green);
}
.info-row {
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.card-pad-20 {
  padding: 20px 22px;
}
.split-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.plan-title-sm {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 10px;
}
.plan-note-sm {
  font-size: 0.76rem;
  color: var(--text-2);
  font-family: var(--font-mono);
  margin-top: 5px;
}
.plan-copy-sm {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.6;
}
.card-pad-22 { padding: 22px 26px; }

/* ===== SECTION HEADER ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0,255,140,0.08);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.section-title {
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 620px;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #030810;
  box-shadow: 0 0 24px rgba(0,255,140,0.25), 0 4px 12px rgba(0,0,0,0.4);
}
.btn-primary:hover {
  background: #1affa0;
  box-shadow: 0 0 18px rgba(0,255,140,0.25), 0 3px 10px rgba(0,0,0,0.35);
}
.btn-outline {
  border: 1px solid var(--border-2);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-glow2);
}
.btn-ghost {
  color: var(--green);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  gap: 6px;
}
.btn-ghost:hover {
  border-bottom-color: var(--green);
}
.btn-ghost::after {
  content: '→';
  transition: transform 0.2s;
}
.btn-ghost:hover::after { transform: translateX(4px); }

/* ===== CARD ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.card:hover {
  background: var(--bg-card-h);
  border-color: var(--border-2);
  box-shadow: 0 0 30px var(--green-glow2), 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}
.card-icon {
  width: 44px; height: 44px;
  background: rgba(0,255,140,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  border: 1px solid var(--border);
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-mono);
}
.badge-green { background: rgba(0,255,140,0.12); color: var(--green); border: 1px solid rgba(0,255,140,0.2); }
.badge-red   { background: rgba(255,51,85,0.12); color: var(--red); border: 1px solid rgba(255,51,85,0.2); }
.badge-cyan  { background: rgba(0,212,255,0.12); color: var(--cyan); border: 1px solid rgba(0,212,255,0.2); }
.badge-amber { background: rgba(255,170,0,0.12); color: var(--amber); border: 1px solid rgba(255,170,0,0.2); }

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
  margin: 0;
}

/* ===== GLOW TEXT ===== */
.glow-text {
  color: var(--green);
  text-shadow: 0 0 40px rgba(0,255,140,0.5), 0 0 80px rgba(0,255,140,0.2);
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-grid {
  background-image:
    linear-gradient(rgba(0,255,140,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,140,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bg-radial {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,255,140,0.06) 0%, transparent 70%);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(3, 8, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #030810;
  font-weight: 800;
  box-shadow: 0 0 16px rgba(0,255,140,0.4);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-actions .btn {
  padding: 9px 20px;
  font-size: 0.85rem;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border);
  background: rgba(0, 255, 140, 0.04);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch button {
  min-width: 38px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.lang-switch button:hover {
  color: var(--text);
}
.lang-switch button.active {
  color: #04110b;
  background: var(--green);
  border-color: rgba(0, 255, 140, 0.45);
  box-shadow: 0 0 14px rgba(0, 255, 140, 0.2);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(3,8,16,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: 12px 16px; }
.mobile-menu .nav-actions { flex-direction: column; margin-top: 12px; }
.mobile-menu .btn { justify-content: center; }
.mobile-menu .lang-switch {
  width: 100%;
  justify-content: center;
  margin-bottom: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,140,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,140,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,255,140,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--green);
  background: rgba(0,255,140,0.08);
  border: 1px solid rgba(0,255,140,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: blink 2s infinite;
}
.hero h1 {
  margin-bottom: 24px;
  color: var(--text);
}
.hero h1 span {
  color: var(--green);
  text-shadow: 0 0 60px rgba(0,255,140,0.4);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-ctas-centered {
  justify-content: center;
  margin-top: 26px;
  margin-bottom: 0;
}
.hero-right-stack {
  margin-top: 22px;
}
.hero-right-stack .terminal {
  min-height: 500px;
}
.hero-right-stack .terminal-body {
  height: 420px;
}
.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.hero-micro-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-2);
}
.hero-micro-item::before {
  content: '·';
  color: var(--green);
  font-size: 1rem;
}
.hero-proof-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
  align-items: stretch;
}
.hero-proof-media {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #050f1d;
}
.hero-proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-proof-copy {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 24px 22px;
}
.hero-proof-copy h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.hero-proof-copy p {
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.hero-proof-list {
  display: grid;
  gap: 10px;
}
.hero-proof-list li {
  font-size: 0.86rem;
  color: var(--text-1);
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(0, 255, 140, 0.04);
}
.hero-visual {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Terminal */
.terminal {
  background: #060e1a;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,255,140,0.08), 0 24px 80px rgba(0,0,0,0.5);
}
.terminal-header {
  background: #091525;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.terminal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.terminal-dot.red   { background: #ff5f57; }
.terminal-dot.amber { background: #febc2e; }
.terminal-dot.green { background: #28c840; }
.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-2);
  margin-left: 8px;
}
.terminal-body {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.8;
  height: 430px;
  overflow: hidden;
}
.terminal-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0 14px;
  border-top: 1px solid var(--border);
}
.terminal-nav-dot {
  width: 14px;
  height: 14px;
  min-width: 32px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 255, 140, 0.25);
  transition: var(--transition);
}
.terminal-nav-dot.active {
  background: var(--green);
  box-shadow: 0 0 12px rgba(0, 255, 140, 0.7);
}
.t-comment  { color: #3a6044; }
.t-key      { color: var(--cyan); }
.t-string   { color: #f0a862; }
.t-pass     { color: var(--green); font-weight: 600; }
.t-violation{ color: var(--red); font-weight: 600; }
.t-number   { color: #a78bfa; }
.t-bracket  { color: var(--text-2); }

/* ===== PLAYGROUND VISUAL ===== */
.ng-playground-section {
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(0,255,140,0.10), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(0,212,255,0.09), transparent 30%);
}
.ng-playground {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,255,140,0.2);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0,255,140,0.06), rgba(0,8,15,0.86) 42%, rgba(5,16,30,0.92)),
    radial-gradient(circle at 56% 18%, rgba(0,255,140,0.12), transparent 32%);
  box-shadow: 0 28px 80px rgba(0,0,0,0.36), inset 0 1px 0 rgba(255,255,255,0.04);
  padding: 22px;
}
.ng-playground::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(142,255,213,0.11) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.36;
  pointer-events: none;
}
.ng-playground-tabs,
.ng-chatplayground,
.ng-playground-status {
  position: relative;
  z-index: 1;
}
.ng-playground-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ng-playground-tab {
  border: 1px solid rgba(0,255,140,0.2);
  border-radius: 999px;
  background: rgba(0,255,140,0.06);
  color: var(--text-2);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 16px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.ng-playground-tab:hover,
.ng-playground-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: #00120b;
}
.ng-playground-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  border: 1px solid rgba(0,255,140,0.16);
  border-radius: 16px;
  background: rgba(0,0,0,0.24);
  color: var(--text-2);
  padding: 14px 16px;
  font-size: 0.88rem;
}
.ng-chatplayground {
  overflow: hidden;
  border: 1px solid rgba(0,255,140,0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,255,140,0.11), transparent 28%),
    linear-gradient(180deg, rgba(6,18,32,0.94), rgba(0,8,15,0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 54px rgba(0,0,0,0.28);
}
.ng-chatplayground-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(0,255,140,0.14);
  background: rgba(0,0,0,0.24);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 14px 18px;
}
.ng-chatplayground-head div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
}
.ng-chatplayground-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(0,255,140,0.9);
}
.ng-chatplayground-body {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
}
.ng-chat-message {
  max-width: min(780px, 88%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 16px 18px;
  line-height: 1.6;
  animation: chat-message-in 0.42s ease both;
}
.ng-chat-message.user {
  align-self: flex-end;
  background: rgba(0,212,255,0.10);
  border-color: rgba(0,212,255,0.22);
  color: var(--text);
}
.ng-chat-message.guard {
  align-self: flex-start;
  background: rgba(0,255,140,0.08);
  border-color: rgba(0,255,140,0.20);
}
.ng-chat-author {
  display: block;
  margin-bottom: 6px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ng-chat-thinking {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,255,140,0.14);
  border-radius: 999px;
  background: rgba(0,0,0,0.22);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  padding: 9px 13px;
}
.ng-chat-thinking::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(0,255,140,0.75);
  animation: blink 1.2s infinite;
}
.ng-chat-result {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  margin-top: 2px;
}
.ng-chat-verdict {
  border-radius: 18px;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
}
.ng-chat-verdict.pass {
  background: rgba(0,255,140,0.12);
  border: 1px solid rgba(0,255,140,0.42);
  color: var(--green);
}
.ng-chat-verdict.violation {
  background: rgba(255,51,85,0.12);
  border: 1px solid rgba(255,51,85,0.42);
  color: var(--red);
}
.ng-chat-details {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
  padding: 14px 16px;
  color: var(--text-2);
  font-size: 0.88rem;
}
.ng-chat-details strong {
  color: var(--text);
}
.ng-chat-inputbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(0,255,140,0.14);
  background: rgba(0,0,0,0.26);
  color: var(--text-3);
  padding: 16px 18px;
}
.ng-chat-inputbar strong {
  border-radius: 999px;
  background: var(--green);
  color: #00120b;
  font-family: var(--font-display);
  padding: 8px 14px;
}
.ng-chat-loading {
  color: var(--text-3);
  font-family: var(--font-mono);
}
.ng-chat-typed.typing::after {
  content: "";
  display: inline-block;
  width: 0.58em;
  height: 1.1em;
  margin-left: 3px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(0,255,140,0.8);
  vertical-align: -0.18em;
  animation: blink 0.8s infinite;
}
@keyframes chat-message-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 760px) {
  .ng-chatplayground-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .ng-chatplayground-body {
    min-height: 500px;
    padding: 18px;
  }
  .ng-chat-message {
    max-width: 100%;
  }
  .ng-chat-result {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LOGOS BAR
   ============================================================ */
.logos-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-3);
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.logo-item:hover { color: var(--green); }

/* ============================================================
   METRICS
   ============================================================ */
.metrics-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.metrics-text h2 { margin-bottom: 16px; }
.metrics-text p  { font-size: 1.05rem; }
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.metric-tile {
  background: var(--bg-0);
  padding: 28px 24px;
  text-align: center;
}
.metric-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 0 20px var(--green-glow2);
}
.metric-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(0,255,140,0.3);
}
.metric-label {
  font-size: 0.875rem;
  color: var(--text-2);
  font-weight: 500;
}

/* ============================================================
   FIREWALL SECTION
   ============================================================ */
.firewall-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.firewall-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.firewall-text h2 { margin-bottom: 20px; }
.firewall-text p { font-size: 1.05rem; margin-bottom: 32px; }
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border-2);
  background: var(--bg-card-h);
}
.feature-icon {
  width: 36px; height: 36px;
  background: rgba(0,255,140,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.feature-icon-sm {
  width: 28px;
  height: 28px;
  font-size: 0.8rem;
}
.feature-card h4 { margin-bottom: 2px; font-size: 0.95rem; }
.feature-card p { font-size: 0.85rem; }
.firewall-visual {
  position: relative;
}
.pipeline-diagram {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  font-family: var(--font-mono);
  font-size: 0.84rem;
}
.pipeline-node {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 4px;
  color: var(--text-2);
  position: relative;
}
.pipeline-node-sm {
  font-size: 0.78rem;
  padding: 10px 12px;
}
.pipeline-node.active {
  background: rgba(0,255,140,0.06);
  border: 1px solid var(--border);
  color: var(--text);
}
.pipeline-node.pass-node {
  background: rgba(0,255,140,0.08);
  border: 1px solid rgba(0,255,140,0.2);
  color: var(--green);
}
.pipeline-node.violation-node {
  background: rgba(255,51,85,0.08);
  border: 1px solid rgba(255,51,85,0.2);
  color: var(--red);
}
.pipeline-arrow {
  text-align: center;
  color: var(--text-3);
  font-size: 0.7rem;
  margin: 2px 0;
}
.node-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--green);
}
.node-dot.red { background: var(--red); box-shadow: 0 0 8px var(--red); }
.pipeline-parallel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 10px 0;
}

/* Product workflow canvas */
.orchestration-flow {
  margin-top: 42px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 140, 0.08), transparent 50%),
    radial-gradient(circle at 78% 70%, rgba(0, 212, 255, 0.08), transparent 52%),
    var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 24px 24px 18px;
  overflow: hidden;
}
.orchestration-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.orchestration-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}
.orchestration-head h3 {
  font-size: 1rem;
  color: var(--text-2);
  font-weight: 600;
}
.workflow-figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 140, 0.16);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.workflow-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.proflow-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
}
.proflow-scroll::-webkit-scrollbar { height: 5px; }
.proflow-scroll::-webkit-scrollbar-thumb { background: rgba(0, 255, 140, 0.28); border-radius: 999px; }
.proflow-canvas {
  position: relative;
  width: 100%;
  min-width: 980px;
  height: 336px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 22% 26%, rgba(0, 255, 140, 0.11), transparent 36%),
    radial-gradient(circle at 72% 70%, rgba(0, 212, 255, 0.10), transparent 40%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0%, transparent 34%),
    #061121;
  border: 1px solid rgba(0, 255, 140, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 24px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.proflow-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(174, 202, 189, 0.16) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.12;
}
.proflow-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.pf-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  filter: drop-shadow(0 0 8px rgba(0, 255, 140, 0.35));
}
.pf-green { stroke: url(#lineGreen); }
.pf-red { stroke: url(#lineRed); filter: drop-shadow(0 0 8px rgba(255, 51, 85, 0.35)); }
.pf-line.d1 { animation: pfFlow 4.2s linear infinite; }
.pf-line.d2 { animation: pfFlow 4.8s linear infinite 0.35s; }
.pf-line.d3 { animation: pfFlow 4.6s linear infinite 0.7s; }
.pf-line.d4 { animation: pfFlow 5s linear infinite 1s; }
.pf-line.d5 { animation: pfFlow 4.4s linear infinite 1.3s; }
.pf-line.d6 { animation: pfFlow 3.8s linear infinite 1.7s; }
.pf-line.d7 { animation: pfFlow 3.8s linear infinite 2.1s; }
.pf-line.d8 { animation: pfFlow 3.8s linear infinite 2.4s; }

.pf-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(19, 28, 42, 0.95), rgba(8, 14, 24, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.pf-node strong {
  display: block;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
}
.pf-node small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-2);
  font-family: var(--font-mono);
  margin-top: 2px;
}
.pf-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 255, 140, 0.08);
  border: 1px solid rgba(0, 255, 140, 0.3);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.pf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(0, 255, 140, 0.8);
  flex-shrink: 0;
}
.pf-dot.red {
  background: var(--red);
  box-shadow: 0 0 8px rgba(255, 51, 85, 0.8);
}

.pf-webhook { left: 24px; top: 166px; width: 180px; }
.pf-pre { left: 210px; top: 76px; width: 180px; }
.pf-core {
  left: 410px;
  top: 122px;
  width: 190px;
  height: 124px;
  padding: 18px;
  border-radius: 22px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(22, 43, 38, 0.9), rgba(8, 20, 22, 0.95));
  border: 1px solid rgba(122, 255, 194, 0.52);
  box-shadow: 0 0 0 1px rgba(0, 255, 140, 0.25), 0 0 34px rgba(0, 255, 140, 0.3), 0 18px 34px rgba(0, 0, 0, 0.45);
}
.pf-core-title {
  font-size: 1.26rem;
  font-family: var(--font-display);
  color: #ecfff7;
  line-height: 1.1;
}
.pf-core-sub {
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--green);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.pf-gr-top { left: 730px; top: 62px; width: 150px; }
.pf-gr-mid { left: 730px; top: 156px; width: 150px; }
.pf-gr-bot { left: 730px; top: 250px; width: 150px; }

.pf-response { left: 944px; top: 154px; width: 104px; }
.pf-out-success { left: 1058px; top: 92px; width: 96px; }
.pf-out-error { left: 1058px; top: 228px; width: 96px; border-color: rgba(255, 51, 85, 0.35); }

@keyframes pfFlow {
  0% { stroke-dashoffset: 220; opacity: 0; }
  14% { opacity: 1; }
  100% { stroke-dashoffset: -220; opacity: 0; }
}

/* ============================================================
   WHAT WE PROVIDE
   ============================================================ */
.provide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.provide-card-main,
.provide-card-sm,
.provide-card-sm2,
.provide-card-sm3,
.provide-card-sm4 { grid-column: span 1; }

.provide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.provide-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 0 30px var(--green-glow2);
}
.provide-card h3 { margin-bottom: 12px; }
.provide-card p  { font-size: 0.9rem; margin-bottom: 14px; }
.provide-card-main { background: var(--bg-1); }

/* ============================================================
   TECHNICAL VALUE
   ============================================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tech-col { display: flex; flex-direction: column; gap: 12px; }
.tech-col h3 { margin-bottom: 8px; font-size: 1.15rem; }
.tech-col p { font-size: 0.9rem; }
.tech-col-icon {
  width: 48px; height: 48px;
  background: rgba(0,255,140,0.08);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table th {
  background: var(--bg-1);
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--text-2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.comparison-table .highlight-col {
  background: rgba(0,255,140,0.04);
  color: var(--text);
}
.check-yes { color: var(--green); font-size: 1.1rem; }
.check-no  { color: var(--text-3); font-size: 1.1rem; }
.check-maybe { color: var(--amber); font-size: 1.1rem; }

/* ============================================================
   BENEFIT CARDS
   ============================================================ */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: var(--green);
  box-shadow: 0 0 24px var(--green-glow2);
  transform: translateY(-4px);
}
.benefit-number {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green-3);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.benefit-card p  { font-size: 0.875rem; }

/* ============================================================
   API BLOCK
   ============================================================ */
.api-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-text h2 { margin-bottom: 20px; }
.cta-text p  { font-size: 1.05rem; margin-bottom: 28px; }
.cta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.cta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
}
.cta-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  width: 20px;
  flex-shrink: 0;
}
.cta-visual {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.cta-visual-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-2);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text);
  transition: var(--transition);
}
.service-item:hover {
  border-color: var(--border-2);
  color: var(--green);
}

/* Delivery cards image header */
.delivery-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  border: none;
  margin-bottom: 16px;
  display: block;
}
.delivery-card {
  padding: 0;
  overflow: hidden;
}
.delivery-card h3,
.delivery-card p {
  padding-left: 28px;
  padding-right: 28px;
}
.delivery-card p {
  padding-bottom: 24px;
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.delivery-card-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.delivery-card-featured {
  grid-column: 1 / -1;
}
.delivery-card-featured-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 28px 12px;
}
.delivery-card-featured-head p {
  max-width: 48%;
  margin-left: auto;
}
.delivery-card-horizontal .delivery-card-content {
  padding: 24px 20px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.delivery-card-horizontal .delivery-card-image {
  height: 100%;
  min-height: 260px;
  margin-bottom: 0;
}
.delivery-card-horizontal h3,
.delivery-card-horizontal p {
  padding-left: 0;
  padding-right: 0;
}
.delivery-card-featured h3,
.delivery-card-featured p {
  padding-left: 0;
  padding-right: 0;
}
.delivery-card-image-full {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}
.service-item-icon { font-size: 1.1rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--transition);
}
.pricing-card.featured {
  background: rgba(0,255,140,0.04);
  border-color: rgba(0,255,140,0.3);
  box-shadow: 0 0 60px rgba(0,255,140,0.06);
  position: relative;
}
.pricing-card.featured::before {
  content: 'MÁS POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #030810;
  background: var(--green);
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 600;
  white-space: nowrap;
}
.pricing-plan { font-family: var(--font-mono); font-size: 0.8rem; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pricing-price span { font-size: 1.2rem; color: var(--text-2); font-weight: 400; }
.pricing-price small { font-size: 0.9rem; color: var(--text-2); display: block; margin-top: 4px; font-family: var(--font-body); }
.pricing-desc { font-size: 0.9rem; color: var(--text-2); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-2);
}
.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  gap: 16px;
  color: var(--text);
}
.faq-question:hover { background: var(--bg-card-h); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 0.9rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,255,140,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-2); }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-top: 14px;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-subscribe {
  display: flex;
  gap: 8px;
}
.footer-subscribe input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
}
.footer-subscribe input:focus { border-color: var(--green); }
.footer-subscribe .btn { padding: 10px 18px; font-size: 0.85rem; flex-shrink: 0; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-2);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-3); }
.footer-bottom p a { color: var(--green); text-decoration: none; }
.footer-bottom p a:hover { text-decoration: underline; }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer-bottom-links a:hover { color: var(--text-2); }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0,255,140,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 720px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-2);
  font-family: var(--font-mono);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--green); }
.breadcrumb-sep { color: var(--text-3); }

/* Nebula background for product hero */
.nebula-layer {
  --mx: 50%;
  --my: 48%;
  position: absolute;
  inset: 66px 0 10px 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
  overflow: hidden;
}
.nebula-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 55%, rgba(0, 255, 140, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 45%, rgba(0, 212, 255, 0.05) 0%, transparent 60%),
    radial-gradient(circle at var(--mx) var(--my), rgba(0, 255, 140, 0.08) 0%, transparent 35%);
  transition: background-position 0.18s ease, background 0.18s ease;
}
.nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.42;
  will-change: transform;
  transition: transform 0.22s ease-out;
}
.nebula-a {
  width: 520px;
  height: 320px;
  left: -120px;
  top: 20px;
  background: radial-gradient(circle at 60% 45%, rgba(0, 255, 140, 0.33), rgba(0, 255, 140, 0.03) 72%);
  animation: nebulaDriftA 14s ease-in-out infinite;
}
.nebula-b {
  width: 540px;
  height: 340px;
  right: -120px;
  top: 10px;
  background: radial-gradient(circle at 35% 55%, rgba(0, 212, 255, 0.30), rgba(0, 212, 255, 0.03) 72%);
  animation: nebulaDriftB 18s ease-in-out infinite;
}
.nebula-c {
  width: 620px;
  height: 360px;
  left: 26%;
  bottom: -170px;
  background: radial-gradient(circle at 50% 40%, rgba(0, 255, 140, 0.22), rgba(0, 255, 140, 0.02) 74%);
  animation: nebulaDriftC 16s ease-in-out infinite;
}

@keyframes nebulaDriftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 20px) scale(1.05); }
}
@keyframes nebulaDriftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-36px, 24px) scale(1.06); }
}
@keyframes nebulaDriftC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(26px, -22px) scale(1.04); }
}

/* ============================================================
   COVERAGE / COBERTURA
   ============================================================ */
.coverage-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-2);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0,255,140,0.06);
}
.coverage-group { margin-bottom: 48px; }
.coverage-group-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.coverage-grid-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.coverage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}
.coverage-item:hover {
  border-color: var(--border-2);
  background: var(--bg-card-h);
}
.coverage-item-name { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.coverage-item-table { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-2); margin-top: 2px; }

/* New Coverage Page */
.coverage-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.coverage-explain-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.coverage-mini-list {
  display: grid;
  gap: 10px;
}
.coverage-mini-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  color: var(--text-2);
}
.coverage-mini-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(0, 255, 140, 0.65);
}
.coverage-chart-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chart-panel {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  padding: 12px;
  min-height: 220px;
}
.chart-panel canvas {
  width: 100% !important;
  height: 200px !important;
}
.chart-panel-lg {
  min-height: 340px;
}
.chart-panel-lg canvas {
  height: 310px !important;
}
.coverage-domain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.coverage-domain-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.coverage-domain-card p {
  font-size: 0.92rem;
}
.coverage-active-detail {
  margin-top: 8px;
}
.coverage-active-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.coverage-active-head h3 {
  font-size: 1.22rem;
  margin-bottom: 6px;
}
.coverage-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.coverage-example-item {
  padding: 14px 14px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
}
.coverage-example-item h4 {
  font-size: 0.94rem;
  margin-bottom: 5px;
  color: var(--text);
}
.coverage-example-item p {
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.6;
}
.coverage-mini-list-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.coverage-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.coverage-kpi-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 14px;
  background: linear-gradient(160deg, rgba(0,255,140,0.04), rgba(0,212,255,0.02));
}
.coverage-kpi-value {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}
.coverage-kpi-value.cyan { color: var(--cyan); }
.coverage-kpi-value.amber { color: #ffaa00; }
.coverage-kpi-label {
  margin-top: 4px;
  font-size: 0.76rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

/* ============================================================
   NEWS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: 0 0 24px var(--green-glow2);
}
.news-card-img {
  background: var(--bg-2);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 2rem;
  border-bottom: 1px solid var(--border);
}
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.news-category { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--green); text-transform: uppercase; }
.news-card h3 { font-size: 1.05rem; line-height: 1.4; }
.news-card p { font-size: 0.85rem; flex: 1; }
.news-meta { font-size: 0.78rem; color: var(--text-3); font-family: var(--font-mono); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 0 30px var(--green-glow2);
  transform: translateY(-3px);
}
.service-card h3 { font-size: 1.2rem; }
.service-card p { font-size: 0.875rem; flex: 1; }
.service-price {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--green);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .benefit-cards { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { display: none; }
  .firewall-inner { grid-template-columns: 1fr; gap: 48px; }
  .provide-grid { grid-template-columns: 1fr; }
  .provide-card-main,
  .provide-card-sm,
  .provide-card-sm2,
  .provide-card-sm3,
  .provide-card-sm4 { grid-column: span 1; grid-row: span 1; }
  .api-block { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-block { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; gap: 24px; }
  .orchestration-flow { padding: 20px 16px 12px; }
  .orchestration-head { flex-direction: column; align-items: flex-start; margin-bottom: 10px; }
  .orchestration-head h3 { font-size: 0.92rem; }
  .proflow-canvas { min-width: 940px; height: 320px; }
  .nebula-layer {
    inset: 96px 0 18px 0;
    opacity: 0.55;
  }
  .coverage-explain-grid {
    grid-template-columns: 1fr;
  }
  .coverage-domain-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-proof-grid {
    grid-template-columns: 1fr;
  }
  .coverage-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-right-stack {
    margin-top: 30px;
  }
  .hero-right-stack .terminal {
    min-height: 500px;
  }
  .hero-right-stack .terminal-body {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .section { padding: 72px 0; }
  .hero { padding: 80px 0 60px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .benefit-cards { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-subscribe { flex-direction: column; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .hero-right-stack {
    margin-top: 14px;
  }
  .hero-right-stack .terminal {
    min-height: auto;
  }
  .hero-right-stack .terminal-body {
    height: 360px;
  }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th,
  .comparison-table td { padding: 10px 12px; }
  .orchestration-flow { margin-top: 26px; padding: 16px 12px 8px; }
  .proflow-canvas { min-width: 880px; height: 300px; }
  .delivery-grid { grid-template-columns: 1fr; gap: 16px; }
  .delivery-card-horizontal { grid-template-columns: 1fr; }
  .delivery-card-horizontal .delivery-card-image { min-height: 160px; }
  .delivery-card-featured { grid-column: auto; }
  .delivery-card-featured-head {
    flex-direction: column;
    gap: 10px;
    padding: 20px 20px 10px;
  }
  .delivery-card-featured-head p {
    max-width: 100%;
    margin-left: 0;
  }
  .nebula-layer { display: none; }
  .coverage-domain-grid {
    grid-template-columns: 1fr;
  }
  .coverage-example-grid {
    grid-template-columns: 1fr;
  }
  .coverage-kpi-grid {
    grid-template-columns: 1fr;
  }
  .coverage-active-head {
    flex-direction: column;
  }
  .chart-panel-lg {
    min-height: 280px;
  }
  .chart-panel-lg canvas {
    height: 250px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   HERO — CENTERED LAYOUT
   ============================================================ */
.hero-centered {
  text-align: center;
}
.hero-centered .hero-content {
  margin: 0 auto;
  max-width: 780px;
  text-align: center;
}
.hero-centered .hero-ctas { justify-content: center; }
.hero-centered .hero-micro { justify-content: center; }
.hero-centered .hero-badge { justify-content: center; }

.hero-terminal-wrap {
  margin: 52px auto 0;
  max-width: 680px;
  width: 100%;
}

/* ============================================================
   ANIMATED TERMINAL
   ============================================================ */
.terminal-scenario { transition: opacity 0.35s ease; }
.terminal-scenario.fade-out { opacity: 0; pointer-events: none; }

/* ============================================================
   WHATSAPP BUBBLE
   ============================================================ */
.whatsapp-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-bubble:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(37,211,102,0.65);
}
.whatsapp-bubble svg {
  display: block;
  width: 26px;
  height: 26px;
  fill: #fff;
  transform: translateY(0.5px);
}
.whatsapp-bubble::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ============================================================
   CUSTOM BOOKING CALENDAR
   ============================================================ */
.booking-section {
  scroll-margin-top: 86px;
  padding-top: 72px;
  padding-bottom: 72px;
}
.booking-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 140, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 14%, rgba(0,255,140,0.14), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(0,200,255,0.12), transparent 30%),
    linear-gradient(135deg, rgba(0,255,140,0.07), rgba(5,18,35,0.78) 44%, rgba(0,8,15,0.92));
  box-shadow: 0 22px 70px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.04);
  padding: 28px;
}
.booking-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(142,255,213,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
  opacity: 0.45;
}
.booking-topline,
.booking-grid {
  position: relative;
  z-index: 1;
}
.booking-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.booking-kicker,
.booking-panel-label {
  margin: 0 0 8px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.booking-topline h3,
.booking-panel h4 {
  margin: 0;
  color: var(--text);
}
.booking-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.booking-meta span,
.booking-selected-pill,
.booking-note {
  border: 1px solid rgba(0,255,140,0.22);
  border-radius: 999px;
  background: rgba(0,255,140,0.08);
  color: var(--text-2);
  font-size: 0.78rem;
  padding: 8px 12px;
}
.booking-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(220px, 0.72fr) minmax(300px, 0.9fr);
  gap: 18px;
}
.booking-panel {
  border: 1px solid rgba(0,255,140,0.16);
  border-radius: 22px;
  background: rgba(2, 15, 27, 0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  padding: 22px;
}
.booking-monthbar {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.booking-monthbar small {
  display: block;
  color: var(--text-3);
  margin-top: 3px;
}
.booking-month {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  text-transform: capitalize;
}
.booking-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,255,140,0.22);
  border-radius: 14px;
  background: rgba(0,255,140,0.06);
  color: var(--green);
  cursor: pointer;
  font-size: 1.6rem;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.booking-nav:hover {
  background: rgba(0,255,140,0.14);
  border-color: rgba(0,255,140,0.5);
}
.booking-weekdays,
.booking-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.booking-weekdays {
  margin-bottom: 8px;
  color: var(--text-3);
  font-family: var(--font-display);
  font-size: 0.74rem;
  text-transform: uppercase;
  text-align: center;
}
.booking-day {
  min-height: 54px;
  border: 1px solid rgba(0,255,140,0.11);
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  color: var(--text-2);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.booking-day:hover:not(:disabled) {
  background: rgba(0,255,140,0.08);
  border-color: rgba(0,255,140,0.42);
  color: var(--text);
}
.booking-day.active {
  background: var(--green);
  border-color: var(--green);
  color: #00120b;
  box-shadow: 0 0 24px rgba(0,255,140,0.34);
}
.booking-day.today:not(.active) {
  color: var(--green);
  border-color: rgba(0,255,140,0.35);
}
.booking-day.muted,
.booking-day:disabled {
  cursor: not-allowed;
  color: rgba(215,255,238,0.32);
  background: rgba(255,255,255,0.025);
}
.booking-slots {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.booking-slot {
  width: 100%;
  border: 1px solid rgba(0,200,255,0.22);
  border-radius: 14px;
  background: rgba(0,200,255,0.055);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  padding: 13px 16px;
  text-align: left;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.booking-slot:hover:not(:disabled),
.booking-slot.active {
  background: rgba(0,255,140,0.14);
  border-color: rgba(0,255,140,0.55);
  color: var(--green);
}
.booking-slot:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  text-decoration: line-through;
}
.booking-note {
  border-radius: 16px;
  line-height: 1.6;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--text-2);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
}
.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(0,255,140,0.18);
  border-radius: 14px;
  background: rgba(0,8,15,0.62);
  color: var(--text);
  font: inherit;
  font-family: var(--font-body);
  padding: 13px 14px;
}
.booking-form textarea {
  resize: vertical;
  min-height: 94px;
}
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(0,255,140,0.55);
  box-shadow: 0 0 0 3px rgba(0,255,140,0.09);
}
.booking-submit {
  width: 100%;
  margin-top: 4px;
}
.booking-feedback {
  min-height: 1.2em;
  margin: 0;
  color: var(--text-3);
  font-size: 0.82rem;
}
.booking-feedback.success {
  color: var(--green);
}
.booking-feedback.error {
  color: var(--red);
}
@media (max-width: 1120px) {
  .booking-grid {
    grid-template-columns: 1fr 1fr;
  }
  .booking-form {
    grid-column: 1 / -1;
  }
}
@media (max-width: 760px) {
  .booking-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .booking-shell {
    padding: 18px;
    border-radius: 22px;
  }
  .booking-topline {
    flex-direction: column;
  }
  .booking-meta {
    justify-content: flex-start;
  }
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .booking-day {
    min-height: 44px;
    border-radius: 12px;
  }
  .booking-panel {
    padding: 16px;
  }
}
