/* 3rd Eye Technologies — original premium dark site */

:root {
  --bg-primary: #050508;
  --bg-secondary: #0B0614;
  --purple-core: #6D3BFF;
  --violet-soft: #9B7CFF;
  --blue-accent: #4DA3FF;
  --cyan-accent: #7DD8FF;
  --text-primary: #FFFFFF;
  --text-secondary: #A8A8B3;
  --text-tertiary: #6E6E7A;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-bg-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --glass: rgba(12, 8, 22, 0.55);
  --grid-line: rgba(255, 255, 255, 0.045);
}

[data-theme="light"] {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F5F8;
  --purple-core: #5B35E6;
  --violet-soft: #7B61FF;
  --blue-accent: #2563EB;
  --cyan-accent: #0EA5E9;
  --text-primary: #0B0B12;
  --text-secondary: #5A5A6A;
  --text-tertiary: #8A8A98;
  --card-bg: rgba(255, 255, 255, 0.65);
  --card-bg-hover: rgba(255, 255, 255, 0.85);
  --border: rgba(20, 20, 30, 0.10);
  --border-strong: rgba(20, 20, 30, 0.18);
  --glass: rgba(255, 255, 255, 0.7);
  --grid-line: rgba(20, 20, 30, 0.05);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Geist", "Inter", "Manrope", -apple-system, system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(109, 59, 255, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(77, 163, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(125, 90, 255, 0.10), transparent 55%),
    linear-gradient(180deg, #050508 0%, #090512 45%, #020203 100%);
  pointer-events: none;
}

[data-theme="light"] body::before,
body[data-theme="light"]::before {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(130, 90, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(70, 130, 255, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(120, 90, 255, 0.06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6f6f8 45%, #eeeef2 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}

/* --- Typography --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 12px var(--purple-core);
}

h1, h2, h3 { font-weight: 500; letter-spacing: -0.04em; line-height: 1.02; }

h2.section-title {
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  max-width: 18ch;
}

.lede {
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 56ch;
  letter-spacing: -0.01em;
}

.section {
  position: relative;
  padding: 140px 6vw;
  max-width: 1440px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 80px;
  max-width: 900px;
}

/* --- HEADER / NAV --- */
.site-header {
  position: fixed;
  top: 18px;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.brand-mark {
  width: 22px; height: 22px;
  position: relative;
  display: grid; place-items: center;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }

/* --- EquipTech.in Wordmark --- */
.wordmark {
  font-family: "Bricolage Grotesque", "Geist", system-ui, sans-serif;
  font-stretch: 90%;
  letter-spacing: -0.05em;
  line-height: 1;
  font-feature-settings: "ss01" on;
  white-space: nowrap;
}
.wordmark .wm-main {
  font-weight: 700;
  font-style: normal;
}
.wordmark .wm-tld {
  font-weight: 500;
  font-style: italic;
  opacity: 0.58;
  font-size: 0.9em;
  /* nudge optical alignment of the descender-less ".in" against the cap-height mark */
  margin-left: 0.01em;
  margin-top: 0.12em;
}
.site-header .brand.wordmark {
  font-size: 19px;
  gap: 0;
  padding-left: 4px;
}
.site-footer .brand-block .name.wordmark {
  font-size: 32px;
  letter-spacing: -0.05em;
  color: var(--text-primary, #FBFAF7);
  text-decoration: none;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-pill a {
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-pill a:hover {
  color: var(--text-primary);
  background: var(--card-bg);
}

.cta-bubble {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px 11px 22px;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid var(--text-primary);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-bubble:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(155, 124, 255, 0.35);
}
.cta-bubble .arrow {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}
.cta-bubble:hover .arrow { transform: translateX(2px); }

.mobile-menu-btn { display: none; }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  padding: 160px 6vw 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-eyebrow { margin-bottom: 36px; }

.hero h1 {
  font-size: clamp(48px, 8vw, 132px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
  max-width: 18ch;
}

.hero h1 .line { display: block; }

.ticker {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  overflow: hidden;
  height: 1em;
  min-width: 9ch;
  text-align: center;
  line-height: 1;
}
.ticker::after {
  content: "";
  position: absolute;
  inset: -10% -8% -10% -8%;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(155, 124, 255, 0.45), transparent 70%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}
.ticker-track {
  display: block;
  transition: transform 0.65s cubic-bezier(0.7, 0, 0.2, 1), filter 0.35s ease;
  will-change: transform;
}
.ticker-track span {
  display: block;
  height: 1em;
  line-height: 1;
  white-space: nowrap;
  background-image: linear-gradient(180deg, #C4B0FF 0%, #7DB6FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #9B7CFF; /* fallback if background-clip:text unsupported */
}
.ticker.is-blurring .ticker-track { filter: blur(8px); }

/* --- Tweaks panel --- */
.tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 320px;
  z-index: 1000;
  background: rgba(12, 8, 22, 0.85);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(155, 124, 255, 0.1);
  display: none;
  flex-direction: column;
  gap: 16px;
  color: var(--text-primary);
  font-family: inherit;
}
.tweaks-panel.is-open { display: flex; }
[data-theme="light"] .tweaks-panel {
  background: rgba(255, 255, 255, 0.85);
}
.tweaks-head {
  display: flex; align-items: center; justify-content: space-between;
}
.tweaks-head .title {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.tweaks-head .close {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 14px;
  padding: 0;
  font-family: inherit;
}
.tweaks-head .close:hover { color: var(--text-primary); border-color: var(--border-strong); }

.tweaks-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tweaks-row .row-head {
  display: flex; justify-content: space-between; align-items: baseline;
}
.tweaks-row label {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: -0.005em;
}
.tweaks-row .value {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--violet-soft);
}

.seg {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
}
.seg button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  letter-spacing: -0.005em;
  cursor: pointer;
  font-family: inherit;
}
.seg button.active {
  background: rgba(155, 124, 255, 0.18);
  color: var(--text-primary);
  box-shadow: inset 0 0 0 1px rgba(155, 124, 255, 0.3);
}

.swatches {
  display: flex;
  gap: 8px;
}
.swatches button {
  flex: 1;
  height: 36px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  background: var(--sw, #6D3BFF);
  transition: transform 0.15s;
}
.swatches button.active {
  border-color: var(--text-primary);
}
.swatches button:hover { transform: translateY(-1px); }

input[type="range"].tweak-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  outline: none;
}
input[type="range"].tweak-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 10px var(--purple-core);
  cursor: pointer;
}
input[type="range"].tweak-slider::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--violet-soft);
  border: none;
  cursor: pointer;
}

.toggle {
  position: relative;
  width: 40px; height: 22px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: var(--text-secondary);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.toggle.on { background: rgba(155, 124, 255, 0.25); border-color: rgba(155, 124, 255, 0.5); }
.toggle.on::after { background: var(--violet-soft); transform: translateX(18px); }

.tweaks-row.inline {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.hero-tagline {
  margin-top: 32px;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--violet-soft);
  letter-spacing: 0.005em;
  font-weight: 200;
  font-style: italic;
}

.hero-desc {
  margin-top: 18px;
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 58ch;
  letter-spacing: -0.005em;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn .arrow { width: 14px; height: 14px; transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(2px); }

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(155, 124, 255, 0.45);
}
.btn-secondary {
  background: var(--card-bg);
  color: var(--text-primary);
  border-color: var(--border-strong);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover { background: var(--card-bg-hover); border-color: var(--text-secondary); }

/* --- HERO VISUAL: Vision Lens --- */
.hero-visual {
  margin-top: 64px;
  width: min(640px, 90vw);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}
.lens {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.lens-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
}
.lens-r1 { width: 100%; height: 100%; opacity: 0.4; animation: spin 60s linear infinite; }
.lens-r2 { width: 78%; height: 78%; opacity: 0.55; animation: spin 90s linear infinite reverse; border-style: dashed; }
.lens-r3 { width: 56%; height: 56%; opacity: 0.7; animation: spin 40s linear infinite; }
.lens-r4 { width: 36%; height: 36%; opacity: 0.85; }

.lens-tick {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      transparent 0deg, transparent 8deg,
      var(--border-strong) 8deg, var(--border-strong) 9deg,
      transparent 9deg, transparent 27deg,
      var(--border-strong) 27deg, var(--border-strong) 28deg,
      transparent 28deg);
  -webkit-mask: radial-gradient(circle, transparent 49%, #000 49.5%, #000 50%, transparent 50.5%);
          mask: radial-gradient(circle, transparent 49%, #000 49.5%, #000 50%, transparent 50.5%);
  opacity: 0.5;
}

.lens-core {
  width: 22%; height: 22%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, var(--violet-soft) 38%, var(--purple-core) 70%, #1A0B3A 100%);
  box-shadow:
    0 0 40px 4px rgba(155, 124, 255, 0.6),
    0 0 120px 20px rgba(109, 59, 255, 0.5),
    inset 0 -8px 24px rgba(0,0,0,0.4);
  position: relative;
  animation: pulse 4s ease-in-out infinite;
}
.lens-core::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, var(--cyan-accent) 30%, transparent 70%);
  filter: blur(2px);
  opacity: 0.85;
}
.lens-core::after {
  content: "";
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: #050508;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.lens-aura {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(109, 59, 255, 0.45) 0%, transparent 55%);
  filter: blur(40px);
  z-index: -1;
}

.lens-spokes {
  position: absolute;
  width: 100%; height: 100%;
}
.lens-spokes .spoke {
  position: absolute;
  left: 50%; top: 50%;
  width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-strong) 30%, var(--violet-soft) 75%, transparent 100%);
  transform-origin: 0 50%;
  opacity: 0.6;
}

/* particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.particles span {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--violet-soft);
  opacity: 0.5;
  animation: float linear infinite;
}
@keyframes float {
  from { transform: translateY(20px); opacity: 0; }
  10%, 90% { opacity: 0.6; }
  to { transform: translateY(-60px); opacity: 0; }
}

/* --- PROBLEM SECTION --- */
.problem-stream {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
/* 7 items in 4 cols → last row has 3 items; let the last one fill the empty cell */
.problem-stream .problem-item:last-child { grid-column: span 2; }
.problem-item {
  background: var(--bg-primary);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 0.3s;
}
.problem-item:hover { background: var(--bg-secondary); }
.problem-item .num {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}
.problem-item .label {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.problem-item .strike {
  height: 1px;
  background: linear-gradient(90deg, var(--violet-soft), transparent);
  width: 40%;
  opacity: 0.7;
}

/* --- TRANSFORMATION --- */
.transform-grid {
  margin-top: 64px;
  display: grid;
  gap: 20px;
}
.transform-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s, background 0.3s;
}
.transform-row:hover { border-color: var(--border-strong); background: var(--card-bg-hover); }
.transform-from {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-tertiary);
  letter-spacing: -0.02em;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.25);
}
.transform-arrow {
  width: 60px;
  display: flex;
  justify-content: center;
  color: var(--violet-soft);
}
.transform-arrow svg { width: 28px; height: 28px; }
.transform-to {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

/* --- SOLUTIONS --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.solution-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  min-height: 280px;
}
.solution-card:hover {
  border-color: var(--violet-soft);
  background: var(--card-bg-hover);
  transform: translateY(-2px);
}
.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% -10%, rgba(109, 59, 255, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.solution-card:hover::after { opacity: 1; }

.solution-card.span-5 { grid-column: span 5; }
.solution-card.span-7 { grid-column: span 7; }
.solution-card.span-4 { grid-column: span 4; }
.solution-card.span-6 { grid-column: span 6; }

.solution-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(109, 59, 255, 0.25), rgba(77, 163, 255, 0.18));
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--violet-soft);
}
.solution-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.solution-card .num-tag {
  position: absolute;
  top: 28px; right: 32px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
}
.solution-card h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.solution-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  letter-spacing: -0.005em;
}

/* --- INDUSTRIES --- */
.industries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.industries-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.industry-item {
  padding: 24px 8px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: padding 0.3s, background 0.3s;
}
.industry-item:hover {
  padding-left: 20px;
}
.industry-item.active {
  padding-left: 20px;
}
.industry-item .idx {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}
.industry-item .name {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text-secondary);
  transition: color 0.25s;
}
.industry-item.active .name,
.industry-item:hover .name {
  color: var(--text-primary);
}
.industry-item .chev {
  color: var(--text-tertiary);
  font-size: 18px;
  opacity: 0.5;
  transition: transform 0.25s, opacity 0.25s, color 0.25s;
}
.industry-item.active .chev,
.industry-item:hover .chev {
  color: var(--violet-soft);
  opacity: 1;
  transform: translateX(4px);
}

.industry-detail {
  position: sticky;
  top: 120px;
  padding: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.industry-detail .tag {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--violet-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.industry-detail h3 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.industry-detail p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.industry-detail .module-list {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.industry-detail .chip {
  padding: 8px 14px;
  background: rgba(155, 124, 255, 0.08);
  border: 1px solid rgba(155, 124, 255, 0.25);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

/* --- PROCESS --- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
}
.process-step {
  padding: 40px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
  position: relative;
  transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(155, 124, 255, 0.06); }

.process-step .step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.process-step .step-num {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--violet-soft);
  letter-spacing: 0.08em;
}
.process-step .step-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 12px var(--purple-core);
}
.process-step h3 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.process-step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-top: auto;
}

/* --- WHAT WE BUILD --- */
.builds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.build-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.build-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.build-card .preview {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0E0820 0%, #06030E 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.build-card .preview .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155, 124, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 124, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.build-card .body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.build-card .body .label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--violet-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.build-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.build-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Preview mockups (geometric only) */
.mock {
  position: absolute;
  inset: 16px;
  display: grid;
  gap: 8px;
}

.mock-crm {
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 24px 1fr;
}
.mock-crm .bar { background: rgba(255,255,255,0.06); border-radius: 4px; }
.mock-crm .bar.full { grid-column: 1 / 3; }
.mock-crm .side, .mock-crm .main {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.mock-crm .side div, .mock-crm .main div {
  height: 8px; background: rgba(255,255,255,0.07); border-radius: 2px;
}
.mock-crm .main div:nth-child(odd) { background: linear-gradient(90deg, rgba(155,124,255,0.5), rgba(155,124,255,0.1)); width: 70%; }

.mock-dispatch {
  grid-template-rows: 1fr 1fr 1fr;
}
.mock-dispatch .row {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 40px 1fr 60px;
  gap: 10px;
  align-items: center;
  padding: 0 12px;
}
.mock-dispatch .row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--violet-soft); justify-self: end; }
.mock-dispatch .row .line { height: 6px; background: rgba(255,255,255,0.10); border-radius: 2px; }
.mock-dispatch .row .tag { height: 14px; background: rgba(155,124,255,0.2); border-radius: 4px; }

.mock-ai {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}
.mock-ai .doc {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.mock-ai .doc .l { height: 6px; border-radius: 2px; background: rgba(255,255,255,0.10); }
.mock-ai .doc .l.h { background: rgba(255,255,255,0.25); width: 50%; height: 8px; }
.mock-ai .doc .l.tag { background: linear-gradient(90deg, var(--violet-soft), var(--blue-accent)); width: 35%; }
.mock-ai .flow {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items: center;
  gap: 4px;
}
.mock-ai .flow .node {
  background: rgba(155, 124, 255, 0.15);
  border: 1px solid rgba(155, 124, 255, 0.35);
  border-radius: 6px;
  height: 28px;
}
.mock-ai .flow .arr {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-soft), transparent);
}

.mock-dash {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 56px 1fr;
}
.mock-dash .kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.mock-dash .kpi .a { height: 6px; width: 40%; background: rgba(255,255,255,0.2); border-radius: 2px; }
.mock-dash .kpi .b { height: 10px; width: 70%; background: linear-gradient(90deg, var(--violet-soft), var(--blue-accent)); border-radius: 2px; }
.mock-dash .chart {
  grid-column: 1 / 4;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.mock-dash .chart svg { width: 100%; height: 100%; }

.mock-portal {
  grid-template-columns: 1fr;
  grid-template-rows: 32px 1fr 1fr;
}
.mock-portal .head {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; padding: 0 12px; gap: 8px;
}
.mock-portal .head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--violet-soft); }
.mock-portal .head .l { height: 6px; flex: 1; background: rgba(255,255,255,0.10); border-radius: 2px; max-width: 100px; }
.mock-portal .card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.mock-portal .card .l { height: 6px; background: rgba(255,255,255,0.10); border-radius: 2px; }
.mock-portal .card .l.h { width: 50%; height: 8px; background: rgba(255,255,255,0.25); }
.mock-portal .card .l.g { background: linear-gradient(90deg, rgba(77, 163, 255, 0.5), rgba(155, 124, 255, 0.5)); width: 30%; }

.mock-health {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.mock-health .panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.mock-health .panel .l { height: 5px; background: rgba(255,255,255,0.10); border-radius: 2px; }
.mock-health .panel .l.h { width: 60%; height: 7px; background: rgba(255,255,255,0.25); }
.mock-health .panel .pulse {
  height: 18px;
  background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
  margin-top: auto;
  border-radius: 2px;
  opacity: 0.6;
}

/* --- SECURITY --- */
.security {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.security-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.security-item {
  background: var(--bg-primary);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.3s;
}
.security-item:hover { background: var(--bg-secondary); }
.security-item .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(155, 124, 255, 0.15);
  border: 1px solid rgba(155, 124, 255, 0.4);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--violet-soft);
}
.security-item .check svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.security-item span { font-size: 15px; letter-spacing: -0.01em; }

.security-visual {
  aspect-ratio: 1;
  position: relative;
  display: grid; place-items: center;
  max-width: 480px;
  margin: 0 auto;
}

.shield {
  position: relative;
  width: 64%; height: 64%;
  border-radius: 28% 28% 50% 50% / 22% 22% 60% 60%;
  background: linear-gradient(180deg, rgba(109, 59, 255, 0.18), rgba(15, 8, 30, 0.6));
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  box-shadow: 0 0 80px rgba(109, 59, 255, 0.25);
}
.shield::before {
  content: "";
  position: absolute; inset: 8%;
  border-radius: inherit;
  border: 1px dashed var(--border-strong);
  opacity: 0.6;
}
.shield-core {
  width: 30%; height: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, var(--violet-soft) 50%, var(--purple-core) 90%);
  box-shadow: 0 0 40px rgba(155, 124, 255, 0.6);
}
.sec-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
}
.sec-ring.r1 { width: 100%; height: 100%; opacity: 0.3; animation: spin 80s linear infinite; }
.sec-ring.r2 { width: 80%; height: 80%; border-style: dashed; opacity: 0.4; animation: spin 50s linear infinite reverse; }

/* --- FINAL CTA --- */
.final-cta {
  text-align: center;
  padding: 140px 6vw 140px;
  position: relative;
}
.final-cta-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.final-cta h2 {
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
  max-width: 14ch;
}
.final-cta .sub {
  font-size: clamp(18px, 1.5vw, 24px);
  color: var(--violet-soft);
  letter-spacing: -0.01em;
  font-weight: 400;
}
.final-cta .actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.final-cta-visual {
  margin-top: 60px;
  width: min(420px, 80vw);
  aspect-ratio: 1;
  margin-left: auto; margin-right: auto;
  position: relative;
}

/* --- FOOTER --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 6vw 40px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.site-footer h4 {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.site-footer .brand-block {
  display: flex; flex-direction: column; gap: 16px;
}
.site-footer .brand-block .name {
  font-size: 18px; font-weight: 500; letter-spacing: -0.02em;
}
.site-footer .brand-block p {
  font-size: 14px; line-height: 1.55; color: var(--text-secondary);
  max-width: 36ch;
}
.site-footer .col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer .col a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .col a:hover { color: var(--text-primary); }

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
  border-top: 1px solid var(--border);
}

/* --- Reveals --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* --- CONTACT MODAL --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 5, 8, 0.72);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 48px 44px;
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(109,59,255,0.12);
  transform: translateY(12px);
  transition: transform 0.28s ease;
}
.modal-backdrop.open .modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  background: var(--card-bg-hover);
  color: var(--text-primary);
}
.modal-tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--violet-soft);
  text-transform: uppercase;
}
.modal-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
}
.modal-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.modal-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 18px;
  background: #0B0B0F;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.modal-email .tld {
  color: var(--violet-soft);
}
.modal-email:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .nav-pill { display: none; }
  .solutions-grid { grid-template-columns: repeat(6, 1fr); }
  .solution-card.span-5, .solution-card.span-7,
  .solution-card.span-4, .solution-card.span-6 { grid-column: span 6; }
  .industries { grid-template-columns: 1fr; }
  .industry-detail { display: none; }
  .industry-inline-detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 36px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    margin: 0 0 1px;
    animation: accordionOpen 0.28s ease;
  }
  .industry-inline-detail .tag {
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    color: var(--violet-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .industry-inline-detail h4 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: var(--text-primary);
    margin: 0;
  }
  .industry-inline-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
  }
  .industry-inline-detail .module-list {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
  }
  .industry-inline-detail .chip {
    flex: 0 0 auto;
  }
  .industry-inline-detail .chip {
    padding: 8px 14px;
    background: rgba(155, 124, 255, 0.08);
    border: 1px solid rgba(155, 124, 255, 0.25);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-primary);
    letter-spacing: -0.005em;
  }
  .industry-item.accordion-open .chev { color: var(--violet-soft); opacity: 1; }
  @keyframes accordionOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .process { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .builds-grid { grid-template-columns: 1fr 1fr; }
  /* 7 items in 3 cols → last item alone on row, fill the row */
  .problem-stream { grid-template-columns: repeat(3, 1fr); }
  .problem-stream .problem-item:last-child { grid-column: 1 / -1; }
  .security { grid-template-columns: 1fr; }
  .security-list { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 100px 5vw; }
  .hero { padding: 130px 5vw 80px; }
  .hero h1 { font-size: clamp(38px, 11vw, 64px); }
  h2.section-title { font-size: clamp(34px, 9vw, 52px); }
  .brand { padding: 8px 14px 8px 10px; font-size: 13px; }
  .cta-bubble { padding: 9px 14px; font-size: 12.5px; }
  .transform-row { grid-template-columns: 1fr; padding: 22px 22px; }
  .transform-arrow { transform: rotate(90deg); }
  .builds-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; }
  .problem-stream { grid-template-columns: 1fr 1fr; }
  /* 7 items in 2 cols → last item alone on row, fill the row */
  .problem-stream .problem-item:last-child { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .industry-detail h3 { font-size: 30px; }
  .industry-item .name { font-size: 22px; }
}
