/* ============================================================
   Visual Data Software — dark, modern, gradient-forward
   Inspired by Stripe (animated mesh gradients, subtle motion)
   and Linear (typography, density, dark palette)
   ============================================================ */

:root {
  --bg:           #07070b;
  --bg-elevated:  #0e0e15;
  --bg-card:      #11111a;
  --bg-card-hi:   #161622;

  --border:       rgba(255, 255, 255, 0.06);
  --border-hi:    rgba(255, 255, 255, 0.12);

  --text:         #e9e9ef;
  --text-2:       #b4b4c2;
  --text-3:       #7a7a8a;

  --brand:        #6366f1;   /* indigo */
  --brand-2:      #8b5cf6;   /* violet */
  --brand-3:      #22d3ee;   /* cyan */
  --brand-grad:   linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #22d3ee 100%);
  --brand-grad-t: linear-gradient(135deg, #818cf8 0%, #c4b5fd 50%, #67e8f9 100%);

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;

  --shadow-sm:    0 1px 2px rgba(0,0,0,0.4);
  --shadow:       0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow:  0 0 40px rgba(99,102,241,0.25);

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Global subtle ambient gradient — a single fixed-position layer
   behind everything so the page never feels flat */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99,102,241,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(34,211,238,0.05) 0%, transparent 60%);
  pointer-events: none;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}
a:hover { color: var(--brand-3); }

h1, h2, h3, h4, h5 {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem);   letter-spacing: -0.03em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p { color: var(--text-2); margin: 0; }

.text-muted    { color: var(--text-3) !important; }
.text-soft     { color: var(--text-2); }
.text-gradient {
  background: var(--brand-grad-t);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Layout
   ============================================================ */

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; position: relative; }
.section-tight { padding: 60px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  text-transform: uppercase;
  background: rgba(255,255,255,0.02);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 8px var(--brand-3);
}

/* ============================================================
   Navigation — glassmorphic, sticky
   ============================================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(7, 7, 11, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: background 0.2s var(--ease);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.nav-brand img { height: 28px; filter: brightness(0) invert(1); opacity: 0.95; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.15s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: var(--brand-grad);
  border: none;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 1px 2px rgba(0,0,0,0.4);
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
}
.nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset, 0 4px 12px rgba(99,102,241,0.4);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(7, 7, 11, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 24px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), background 0.15s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 4px 16px rgba(99,102,241,0.25);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset, 0 6px 24px rgba(99,102,241,0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

.btn-lg { padding: 0.95rem 1.6rem; font-size: 1rem; }

/* ============================================================
   Hero — animated mesh gradient
   ============================================================ */

.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: -10%;
  z-index: -1;
  filter: blur(60px);
  opacity: 0.7;
  background:
    radial-gradient(circle at 15% 25%, rgba(99,102,241,0.55) 0%, transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(139,92,246,0.5)  0%, transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(34,211,238,0.4)  0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(99,102,241,0.35) 0%, transparent 35%),
    radial-gradient(circle at 90% 70%, rgba(168,85,247,0.3)  0%, transparent 35%);
  animation: meshShift 22s ease-in-out infinite;
}

@keyframes meshShift {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25%      { transform: translate(-3%, 2%) scale(1.05) rotate(2deg); }
  50%      { transform: translate(2%, -1%) scale(0.98) rotate(-1deg); }
  75%      { transform: translate(1%, 3%) scale(1.02) rotate(1deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.hero h1 { margin: 1.25rem 0 1.5rem; }
.hero h1 .accent {
  background: var(--brand-grad-t);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 32rem;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Hero product mockup (browser frame) ---------- */

.mockup {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #16161f 0%, #0e0e15 100%);
  border: 1px solid var(--border-hi);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 30px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(99,102,241,0.2);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}
.mockup:hover { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; margin-right: 12px; }
.mockup-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #2a2a36;
}
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-url {
  flex: 1;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 0.78rem;
  color: var(--text-3);
  background: rgba(0,0,0,0.3);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.mockup-body { padding: 18px 20px 22px; }
.mockup-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.mockup-h h4 { font-size: 0.95rem; font-weight: 600; }
.mockup-h .chip {
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(99,102,241,0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,0.3);
}

.mockup-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mockup-list li {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.15s var(--ease);
  font-size: 0.83rem;
}
.mockup-list li:hover { background: rgba(255,255,255,0.03); }
.mockup-list .ic {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(99,102,241,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
}
.mockup-list .ic svg { width: 14px; height: 14px; }
.mockup-list .name {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-list .tag {
  font-size: 0.72rem;
  color: var(--text-3);
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.mockup-list .time { font-size: 0.75rem; color: var(--text-3); white-space: nowrap; }

.mockup-body { transition: opacity 0.28s var(--ease); }

/* ---------- Mockup carousel meta (platform name + count + progress) ---------- */

.mockup-wrap { position: relative; }

.mockup-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0 0.25rem;
  font-size: 0.82rem;
  color: var(--text-3);
  letter-spacing: 0.01em;
}
.mockup-meta .platform-name {
  color: var(--text-2);
  font-weight: 500;
}
.mockup-meta .count {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 0.75rem;
}

.mockup-progress {
  margin-top: 0.6rem;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.mockup-progress-bar {
  height: 100%;
  width: 0;
  background: var(--brand-grad);
  animation: progressFill 4.5s linear infinite;
  border-radius: 2px;
}
.mockup-wrap.paused .mockup-progress-bar { animation-play-state: paused; }

@keyframes progressFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* ============================================================
   Stats strip
   ============================================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.stat {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  text-align: center;
}
.stat .num {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--brand-grad-t);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat .label {
  font-size: 0.85rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   DocWarehouse → AlohaDocument migration banner
   ============================================================ */

.dw-migration {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(251,191,36,0.18);
  background:
    radial-gradient(ellipse at top left, rgba(251,191,36,0.08), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(249,115,22,0.06), transparent 50%),
    var(--bg-card);
}
.dw-migration .dw-mark {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a23;
  flex-shrink: 0;
}
.dw-migration h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.dw-migration p {
  color: var(--text-2);
  font-size: 0.95rem;
  margin: 0;
  max-width: 56ch;
}
.dw-migration .dw-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}
.dw-migration .dw-actions .btn { justify-content: center; }

@media (max-width: 820px) {
  .dw-migration { grid-template-columns: 1fr; gap: 1.25rem; text-align: left; }
  .dw-migration .dw-actions { flex-direction: row; flex-wrap: wrap; }
}

/* External-link arrow in nav */
.nav-links a .ext {
  display: inline-block;
  font-size: 0.7em;
  margin-left: 0.15em;
  opacity: 0.6;
  transform: translateY(-1px);
}

/* ============================================================
   Section header
   ============================================================ */

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3.5rem;
}
.section-head h2 { margin: 1rem 0 0.85rem; }
.section-head p { font-size: 1.05rem; color: var(--text-2); }

/* ============================================================
   Cards (Solutions & Capabilities)
   ============================================================ */

.grid {
  display: grid;
  gap: 1.25rem;
}
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .grid.cols-3 { grid-template-columns: 1fr; }
  .grid.cols-2 { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(99,102,241,0), rgba(34,211,238,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: background 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hi);
  background: var(--bg-card-hi);
}
.card:hover::before {
  background: linear-gradient(135deg, rgba(99,102,241,0.7), rgba(34,211,238,0.5));
}

.card .icon-tile {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(99,102,241,0.12);
  color: #a5b4fc;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(99,102,241,0.2);
}
.card .icon-tile svg { width: 20px; height: 20px; }

.card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.card p  { font-size: 0.95rem; color: var(--text-2); line-height: 1.6; }

.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-3);
  margin-bottom: 0.75rem;
}

/* ============================================================
   Customer logo strip
   ============================================================ */

.logos-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem 1rem;
  align-items: start;
}
.logos-strip .logo-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  transition: transform 0.2s var(--ease);
}
.logos-strip .logo-chip:hover { transform: translateY(-2px); }
.logos-strip .logo-chip img {
  max-height: 88px;
  max-width: 100%;
  object-fit: contain;
  /* Bleed white JPG backgrounds into the dark page.
     Invert flips luminosity (white -> black);
     hue-rotate(180deg) flips it back so reds stay red, blues stay blue;
     screen blend then makes the now-black background invisible. */
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
}
.logos-strip .logo-chip .logo-name {
  font-size: 0.78rem;
  color: var(--text-3);
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .logos-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .logos-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CTA section
   ============================================================ */

.cta {
  position: relative;
  padding: 5rem 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-hi);
  background:
    radial-gradient(circle at 20% 0%, rgba(99,102,241,0.18), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(34,211,238,0.12), transparent 50%),
    var(--bg-elevated);
  overflow: hidden;
  text-align: center;
}
.cta h2 { margin-bottom: 1rem; }
.cta p { font-size: 1.05rem; max-width: 36rem; margin: 0 auto 2rem; }

/* ============================================================
   Projects page
   ============================================================ */

.page-header {
  padding: 140px 0 60px;
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(99,102,241,0.18), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.page-header h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); margin: 1rem 0 1rem; }
.page-header p  { font-size: 1.1rem; color: var(--text-2); max-width: 44rem; }

.project {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  margin-bottom: 1.25rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.project:hover {
  border-color: var(--border-hi);
  background: var(--bg-card-hi);
}
.project .logo-chip {
  background: #fff;
  border-radius: 10px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.project .logo-chip img { max-width: 100%; max-height: 100%; object-fit: contain; }
.project h3 { font-size: 1.25rem; margin-bottom: 0.6rem; color: var(--text); }
.project p  { color: var(--text-2); line-height: 1.65; }
.project p strong { color: var(--text); font-weight: 600; }

@media (max-width: 720px) {
  .project { grid-template-columns: 1fr; }
  .project .logo-chip { max-width: 220px; }
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  background: var(--bg-elevated);
}
.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 760px) {
  .site-footer .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.site-footer img.foot-logo { height: 32px; filter: brightness(0) invert(1); opacity: 0.95; margin-bottom: 1rem; }
.site-footer h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer a { color: var(--text-2); font-size: 0.92rem; }
.site-footer a:hover { color: var(--text); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-3);
}

.vbe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-3);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.vbe-badge .star {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 6px var(--brand-3);
}

/* ============================================================
   Scroll-reveal animation
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-mesh, .mockup { animation: none; transform: none; }
}
