/* ==========================================================================
   Novaris Tech Solutions — Global Stylesheet
   ========================================================================== */

/* ---------- Reset & Tokens ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --bg-0: #07091a;
  --bg-1: #0b1130;
  --bg-2: #111a3f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);

  --text: #e7ecff;
  --text-muted: #a4adcb;
  --text-dim: #7a83a3;

  --brand-1: #38bdf8;   /* cyan */
  --brand-2: #818cf8;   /* indigo */
  --brand-3: #c084fc;   /* violet */
  --accent: #22d3ee;
  --success: #34d399;
  --warning: #fbbf24;
  --danger:  #f87171;

  --grad-primary: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
  --grad-soft:    linear-gradient(135deg, rgba(56,189,248,0.18), rgba(192,132,252,0.18));

  /* Layout */
  --max: 1200px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', Consolas, monospace;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(800px 600px at 10% -5%, rgba(56,189,248,0.18), transparent 60%),
    radial-gradient(700px 600px at 95% 8%, rgba(192,132,252,0.16), transparent 60%),
    radial-gradient(900px 700px at 50% 100%, rgba(129,140,248,0.12), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p  { color: var(--text-muted); }

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-1);
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; position: relative; }
.section-tight { padding: 4rem 0; }
.center { text-align: center; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 9, 26, 0.7);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
.nav.scrolled { background: rgba(7, 9, 26, 0.92); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  gap: 1rem;
}

.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em;
}
.logo-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--grad-primary);
  color: white;
  font-weight: 800;
  font-family: var(--font-mono);
  box-shadow: 0 6px 24px -8px rgba(56,189,248,0.55);
}
.logo span.gradient-text { font-weight: 700; }

.nav-links {
  display: flex; gap: 0.4rem; align-items: center;
  list-style: none;
}
.nav-links a {
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--text); background: var(--surface-2); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  background: var(--grad-primary);
  color: #07091a;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px -10px rgba(129,140,248,0.65); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--text);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: var(--text);
  transition: transform 0.2s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
}
.btn-primary {
  background: var(--grad-primary);
  color: #07091a;
  box-shadow: 0 12px 30px -12px rgba(129,140,248,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(129,140,248,0.65); }

.btn-secondary {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
}
.btn-secondary:hover { background: var(--surface-2); border-color: var(--brand-1); }

.btn-link {
  color: var(--brand-1);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.btn-link:hover { color: var(--brand-3); gap: 0.55rem; }
.btn-link::after { content: "→"; transition: transform 0.2s; }
.btn-link:hover::after { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero p.lead { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 540px; }
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap;
}
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats .num { font-size: 1.8rem; font-weight: 700; color: var(--text); }
.hero-stats .lbl { color: var(--text-dim); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* Animated graphic — abstract data viz */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  width: 100%;
}
.hero-visual .blob {
  position: absolute; inset: 0;
  background: var(--grad-soft);
  filter: blur(60px);
  border-radius: 50%;
  opacity: 0.7;
}
.hero-visual .panel {
  position: absolute;
  background: rgba(11,17,48,0.75);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  padding: 1rem 1.2rem;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}
.hero-visual .panel-1 { top: 8%; left: 0; min-width: 220px; animation: floaty 6s ease-in-out infinite; }
.hero-visual .panel-2 { top: 40%; right: 0;  min-width: 240px; animation: floaty 7s ease-in-out infinite reverse; }
.hero-visual .panel-3 { bottom: 6%; left: 18%; min-width: 250px; animation: floaty 8s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }

.panel-title { font-size: 0.75rem; text-transform: uppercase; color: var(--text-dim); letter-spacing: 0.12em; }
.panel-value { font-size: 1.4rem; font-weight: 700; margin-top: 0.2rem; }
.panel-trend { font-size: 0.8rem; color: var(--success); margin-top: 0.2rem; }
.panel-bars { display: flex; gap: 4px; margin-top: 0.7rem; align-items: flex-end; height: 36px; }
.panel-bars i {
  display: block; width: 8px;
  background: var(--grad-primary); border-radius: 2px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease), border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--brand-1);
}
.card .icon svg { width: 22px; height: 22px; stroke-width: 1.7; }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; }
.card .card-link { margin-top: 1.25rem; display: inline-block; }

.card-accent::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--grad-primary);
  opacity: 0; transition: opacity 0.3s;
}
.card-accent:hover::before { opacity: 1; }

/* ---------- Feature list (services) ---------- */
.feature-list { list-style: none; display: grid; gap: 0.5rem; margin-top: 1rem; }
.feature-list li {
  font-size: 0.93rem; color: var(--text-muted);
  display: flex; gap: 0.5rem; align-items: flex-start;
}
.feature-list li::before {
  content: "✓"; color: var(--brand-1); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ---------- Industry chips ---------- */
.industry-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.industry-tile:hover {
  border-color: var(--brand-1);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.industry-tile .ico {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  font-size: 1.6rem;
  color: var(--brand-1);
}
.industry-tile .ico svg { width: 26px; height: 26px; stroke-width: 1.6; }
.perk .ico svg { width: 20px; height: 20px; stroke-width: 1.7; }
.contact-info .info-item .ico svg { width: 18px; height: 18px; stroke-width: 1.7; }
.contact-info .info-item .ico { color: var(--brand-1); }
.perk .ico { color: var(--brand-1); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  margin: 4rem auto 0;
  max-width: var(--max);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(192,132,252,0.12));
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 100%, rgba(56,189,248,0.2), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { max-width: 580px; margin: 0 auto 2rem; }
.cta-banner .btn { position: relative; }

/* ---------- Footer ---------- */
.footer {
  margin-top: 6rem;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: rgba(7, 9, 26, 0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { margin-top: 1rem; font-size: 0.92rem; max-width: 320px; }
.footer-col h4 {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-dim); margin-bottom: 1rem; font-weight: 600;
}
.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-col a { color: var(--text-muted); font-size: 0.93rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--brand-1); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
  color: var(--text-dim); font-size: 0.85rem;
  flex-wrap: wrap; gap: 1rem;
}
.socials { display: flex; gap: 0.6rem; }
.socials a {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; transition: all 0.2s;
}
.socials a:hover { background: var(--surface-2); border-color: var(--brand-1); color: var(--brand-1); }
.socials svg { width: 16px; height: 16px; }

/* ---------- Page header (interior pages) ---------- */
.page-head {
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
}
.page-head h1 { margin-bottom: 1rem; }
.page-head p { max-width: 680px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  display: inline-flex; gap: 0.5rem;
  font-size: 0.85rem; color: var(--text-dim);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--brand-1); }

/* ---------- About — values ---------- */
.value-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.value-card .num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--brand-1);
  margin-bottom: 0.8rem;
  display: block;
}

/* ---------- Case studies ---------- */
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.case-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.case-card .case-cover {
  height: 180px;
  background: var(--grad-soft);
  position: relative;
  display: grid; place-items: center;
  color: var(--brand-1);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.case-card .case-cover::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}
.case-card .case-cover::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 60%; height: 100%;
  background: radial-gradient(closest-side, rgba(56,189,248,0.25), transparent 70%);
  filter: blur(20px);
}
.case-card .case-cover svg {
  width: 58px; height: 58px;
  stroke-width: 1.4;
  position: relative;
  z-index: 1;
}
.case-card:hover .case-cover svg { transform: scale(1.06); transition: transform 0.3s var(--ease); }
.case-card .case-body { padding: 1.5rem; }
.case-card .tag {
  display: inline-block; font-size: 0.72rem;
  background: rgba(56,189,248,0.1);
  color: var(--brand-1);
  padding: 0.25rem 0.7rem; border-radius: 999px;
  margin-bottom: 0.8rem; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 600;
}
.case-metrics {
  display: flex; gap: 1.25rem; margin-top: 1.25rem;
  padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.case-metrics .m { flex: 1; }
.case-metrics .m .v { font-size: 1.4rem; font-weight: 700; color: var(--brand-1); }
.case-metrics .m .k { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Careers ---------- */
.perk {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.perk .ico {
  font-size: 1.5rem; flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  border-radius: 10px;
}
.perk h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.perk p { font-size: 0.88rem; }

.job-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: all 0.2s;
  gap: 1rem; flex-wrap: wrap;
}
.job-card:hover { background: var(--surface-2); border-color: var(--brand-1); }
.job-card h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.job-meta { display: flex; gap: 1rem; color: var(--text-dim); font-size: 0.85rem; flex-wrap: wrap; }
.job-meta span::before { content: "•"; margin-right: 1rem; color: var(--border-strong); }
.job-meta span:first-child::before { content: ""; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info .info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-info .info-item .ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 0.3rem; font-weight: 600; }
.contact-info p { color: var(--text); font-size: 0.95rem; }

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-field label {
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 0.4rem; font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-1);
  background: rgba(0,0,0,0.4);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-status { margin-top: 1rem; font-size: 0.9rem; color: var(--success); display: none; }
.form-status.show { display: block; }

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.legal-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.7; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content strong { color: var(--text); }
.legal-meta {
  color: var(--text-dim); font-size: 0.9rem;
  padding-bottom: 1.5rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

/* ---------- 404 ---------- */
.notfound {
  min-height: 70vh;
  display: grid; place-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.notfound .code {
  font-family: var(--font-mono);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}

/* ---------- Trusted-by logo strip ---------- */
.logo-strip {
  padding: 3rem 0 1rem;
  position: relative;
}
.logo-strip .lbl {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
  font-weight: 600;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 0.75rem;
  color: var(--text-muted);
  opacity: 0.78;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, color 0.2s;
  border-radius: 10px;
}
.brand-mark:hover { opacity: 1; color: var(--text); }
.brand-mark svg { width: 22px; height: 22px; flex-shrink: 0; }
.brand-mark .name { white-space: nowrap; }

/* ---------- Redesigned hero dashboard mock ---------- */
.dash {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  background: linear-gradient(180deg, rgba(17,26,63,0.85), rgba(11,17,48,0.7));
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow:
    0 30px 80px -25px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.02) inset;
  backdrop-filter: blur(10px);
}
.dash::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 70%; height: 70%;
  background: radial-gradient(closest-side, rgba(56,189,248,0.35), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.dash-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.dash-bar .dots { display: flex; gap: 6px; }
.dash-bar .dots i {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.dash-bar .url {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  background: rgba(0,0,0,0.25);
  padding: 0.3rem 0.7rem;
  border-radius: 7px;
}
.dash-bar .badge {
  font-size: 0.7rem;
  color: var(--success);
  background: rgba(52,211,153,0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.dash-bar .badge::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--success);
  box-shadow: 0 0 8px var(--success);
}
.dash-body { padding-top: 1rem; }
.dash-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.dash-kpi {
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
}
.dash-kpi .k { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); }
.dash-kpi .v { font-size: 1.15rem; font-weight: 700; margin-top: 0.15rem; }
.dash-kpi .delta { font-size: 0.7rem; color: var(--success); margin-top: 0.1rem; }
.dash-kpi .delta.warn { color: var(--warning); }
.dash-chart {
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem;
  margin-bottom: 0.9rem;
}
.dash-chart-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.6rem;
}
.dash-chart-head .t { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.dash-chart-head .sub { font-size: 0.7rem; color: var(--text-dim); }
.dash-chart svg { width: 100%; height: 88px; display: block; }
.dash-list {
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
}
.dash-list .item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dash-list .item:last-child { border-bottom: none; }
.dash-list .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
  flex-shrink: 0;
}
.dash-list .dot.run  { background: var(--brand-1); box-shadow: 0 0 6px var(--brand-1); animation: pulse 1.6s ease-in-out infinite; }
.dash-list .name { color: var(--text); flex: 1; }
.dash-list .meta { color: var(--text-dim); font-family: var(--font-mono); font-size: 0.72rem; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.dash-float {
  position: absolute;
  bottom: -22px; left: -28px;
  background: rgba(11,17,48,0.92);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  display: flex; align-items: center; gap: 0.7rem;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.7);
  animation: floaty 6s ease-in-out infinite;
}
.dash-float .ic {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--grad-soft);
  color: var(--brand-1);
}
.dash-float .ic svg { width: 16px; height: 16px; }
.dash-float .t { font-size: 0.75rem; color: var(--text-dim); }
.dash-float .v { font-size: 0.9rem; font-weight: 700; color: var(--text); }

/* ---------- Process / how-we-work ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--brand-1);
  opacity: 0.8;
}
.step h4 { font-size: 1.05rem; margin: 0.9rem 0 0.4rem; }
.step p  { font-size: 0.9rem; }
.step .ic {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--grad-soft);
  color: var(--brand-1);
}
.step .ic svg { width: 20px; height: 20px; stroke-width: 1.7; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, background 0.2s;
}
.testimonial:hover { border-color: var(--border-strong); background: var(--surface-2); }
.testimonial .quote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial .quote::before {
  content: "“";
  display: block;
  font-family: 'Georgia', serif;
  font-size: 3rem;
  color: var(--brand-1);
  line-height: 0.6;
  margin-bottom: 0.3rem;
  opacity: 0.6;
}
.testimonial .who {
  display: flex; align-items: center; gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #07091a;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  flex-shrink: 0;
}
.testimonial .name { font-weight: 600; font-size: 0.92rem; color: var(--text); }
.testimonial .role { font-size: 0.8rem; color: var(--text-dim); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-visual .panel { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin: 2rem auto 0; max-width: 360px; }
  .dash { margin: 2.5rem auto 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 4.5rem 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(7,9,26,0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    gap: 0.2rem;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 0.8rem 1rem; width: 100%; }
  .nav-links .nav-cta { margin-top: 0.5rem; width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 3rem; }
  .legal-content { padding: 1.5rem; }
  .logo-row { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .steps { grid-template-columns: 1fr; }
  .dash-float { left: 0; }
}
