/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --green: #00d4aa;
  --green-dim: #00a884;
  --bg: #0b0c0e;
  --bg-card: #131518;
  --bg-dark: #0d0e10;
  --border: rgba(255,255,255,0.08);
  --text: #e8eaed;
  --text-muted: #8b949e;
  --font: 'Helvetica Neue', Arial, sans-serif;
  --radius: 6px;
  --nav-h: 88px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font);
  background: transparent;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== PARTICLE CANVAS ===== */
#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }
input, textarea, select, button { font-family: inherit; }

/* All direct content above canvas */
nav, section, div.statbar, footer, .page-hero {
  position: relative;
  z-index: 1;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(11,12,14,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #fff;
}

.logo-svg { width: 32px; height: 32px; }
.logo-svg--sm { width: 24px; height: 24px; }
.logo-img { height: 40px; width: auto; }
.logo-img--sm { height: 32px; }
.logo-icon { height: 36px; width: auto; }
.logo-horizontal { height: 64px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active { color: #fff; }

.nav__cta {
  background: var(--green) !important;
  color: #000 !important;
  font-weight: 600 !important;
  padding: 7px 16px !important;
  border-radius: 20px !important;
}

.nav__cta:hover { background: var(--green-dim) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 16px) 24px 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,170,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(0,212,170,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,170,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-hint span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  position: relative;
}

.hero__scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  80%  { opacity: 0; transform: translateX(-50%) translateY(10px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: #000;
}

.btn--primary:hover { background: var(--green-dim); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn--ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

.btn--full { width: 100%; justify-content: center; }

.btn__loading {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn.loading .btn__text { opacity: 0.7; }
.btn.loading .btn__loading { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== STAT BAR ===== */
.statbar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(19, 21, 24, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.statbar__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat__num {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.5px;
}

.stat__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  background: rgba(11, 12, 14, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.section--dark {
  background: rgba(8, 9, 11, 0.7);
}

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

.section__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ===== TECH GRID ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.tech-card:hover {
  border-color: rgba(0,212,170,0.3);
  transform: translateY(-2px);
}

.tech-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.tech-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.tech-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== TECH STRIP ===== */
.tech-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.tech-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  transition: color var(--transition), border-color var(--transition);
}

.tech-pill:hover {
  color: var(--green);
  border-color: rgba(0,212,170,0.35);
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.process-card:hover {
  border-color: rgba(0,212,170,0.35);
  transform: translateY(-2px);
}

.process-card__num {
  position: absolute;
  top: -12px;
  right: 16px;
  font-size: 96px;
  font-weight: 800;
  color: rgba(0,212,170,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

.process-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.process-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-grid--three {
  max-width: 900px;
  margin: 0 auto;
}

.team-note {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  padding: 24px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  transition: border-color var(--transition);
}

.team-card:hover { border-color: rgba(0,212,170,0.3); }

.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 2px solid var(--border);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Unique avatar colors per member */
.team-card__avatar--richard  { background: linear-gradient(135deg, #1e3a5f 0%, #2d6a4f 100%); }
.team-card__avatar--gilfoyle { background: linear-gradient(135deg, #2d2d2d 0%, #4a1942 100%); }
.team-card__avatar--dinesh   { background: linear-gradient(135deg, #1a3a2a 0%, #0d3b6e 100%); }
.team-card__avatar--jared    { background: linear-gradient(135deg, #1e3a5f 0%, #3a5f3a 100%); }
.team-card__avatar--monica   { background: linear-gradient(135deg, #5f1e3a 0%, #3a1e5f 100%); }
.team-card__avatar--big      { background: linear-gradient(135deg, #3a3a1e 0%, #5f5f1e 100%); }

.team-card__avatar::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 0 0;
  background: rgba(255,255,255,0.08);
}

.team-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.team-card__bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== CTA SECTION ===== */
/* ===== HYPER CARE ===== */
.hypercare-section { padding: 80px 0; }

.hypercare {
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 12px;
  padding: 56px 56px 48px;
  background: linear-gradient(135deg, rgba(0,212,170,0.04) 0%, rgba(11,12,14,0) 60%);
  position: relative;
  overflow: hidden;
}

.hypercare::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4aa 0%, transparent 70%);
}

.hypercare__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,212,170,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.hypercare__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.hypercare__lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hypercare__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}

.hypercare__item {
  display: flex;
  gap: 16px;
}

.hypercare__item-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.hypercare__item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.hypercare__item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.hypercare__closing {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  opacity: 0.85;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0,212,170,0.06) 0%, rgba(11,12,14,0.5) 60%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 12, 14, 0.45);
}

.page-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-story__text h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-story__text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item:first-child { padding-top: 0; }
.timeline-item:last-child { border-bottom: none; }

.timeline-item__year {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1px;
  min-width: 38px;
  padding-top: 2px;
}

.timeline-item__body strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.timeline-item__body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.value-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* INVESTORS */
.investors {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.investor {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 32px;
}

.investor__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.2px;
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap { position: relative; }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.req { color: var(--green); }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b949e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option { background: #1a1d21; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(139,148,158,0.5); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,212,170,0.12);
}

.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
  border-color: #f85149;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-error {
  font-size: 12px;
  color: #f85149;
  display: none;
}

.form-error.visible { display: block; }

/* Checkbox */
.form-group--checkbox { gap: 8px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkbox-custom {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-card);
  margin-top: 2px;
  position: relative;
  transition: all var(--transition);
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--green);
  border-color: var(--green);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px; left: 4px;
  width: 5px; height: 8px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.checkbox-label a { color: var(--green); text-decoration: underline; }

/* SUCCESS */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 32px;
  gap: 16px;
}

.form-success__icon { width: 56px; height: 56px; }

.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.form-success p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.7;
}

.form-error-global {
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 60, 60, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 60, 60, 0.06);
  color: #ff6b6b;
  font-size: 14px;
  line-height: 1.6;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-info__block h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.contact-info__block address,
.contact-info__block p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.7;
}

.contact-info__block a {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
  transition: color var(--transition);
}

.contact-info__block a:hover { color: var(--green); }

.contact-info__block--note {
  background: rgba(0,212,170,0.06);
  border: 1px solid rgba(0,212,170,0.15);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.contact-info__block--note p { color: var(--text-muted); }

/* ===== PRIVACY PAGE ===== */
.privacy-content { padding: 0; }
.section:has(.privacy-content) { padding: 48px 0 80px; }

.privacy-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 40px 0 12px;
  letter-spacing: -0.3px;
}

.privacy-content h2:first-child { margin-top: 0; }

.privacy-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.privacy-content ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 4px;
}

.privacy-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: rgba(8, 9, 11, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 4px;
}

.footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: var(--radius);
  transition: color var(--transition);
}

.footer__links a:hover { color: #fff; }

.footer__copy {
  font-size: 12px;
  color: rgba(139,148,158,0.5);
}

/* ===== GLITCH & SCANLINES ===== */

/* Scan lines overlay */
.hero__scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.18) 3px,
    rgba(0,0,0,0.18) 4px
  );
  animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
  from { background-position: 0 0; }
  to   { background-position: 0 100px; }
}

/* Noise canvas */
.hero__noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: screen;
}

/* Make hero content sit above overlays */
.hero__content { z-index: 3; }
.hero__scroll-hint { z-index: 3; }

/* Glitch title */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
}

.glitch::before {
  left: 2px;
  color: #00ffcc;
  animation: glitchTop 4.5s steps(1) infinite;
  text-shadow: -2px 0 #ff003c;
}

.glitch::after {
  left: -2px;
  color: #ff003c;
  animation: glitchBot 4.5s steps(1) infinite;
  text-shadow: 2px 0 #00ffcc;
}

@keyframes glitchTop {
  0%  { clip-path: inset(0 0 100% 0); transform: none; opacity: 0; }
  /* burst 1 */
  48% { clip-path: inset(0 0 100% 0); transform: none;         opacity: 0; }
  49% { clip-path: inset(8% 0 72% 0); transform: translateX(-3px); opacity: 1; }
  50% { clip-path: inset(35% 0 42% 0); transform: translateX(3px);  opacity: 1; }
  51% { clip-path: inset(60% 0 20% 0); transform: translateX(-4px); opacity: 1; }
  52% { clip-path: inset(0 0 100% 0); transform: none;         opacity: 0; }
  /* burst 2 */
  76% { clip-path: inset(0 0 100% 0); transform: none;         opacity: 0; }
  77% { clip-path: inset(15% 0 55% 0); transform: translateX(4px);  opacity: 1; }
  78% { clip-path: inset(45% 0 30% 0); transform: translateX(-2px); opacity: 1; }
  79% { clip-path: inset(70% 0 5% 0);  transform: translateX(3px);  opacity: 1; }
  80% { clip-path: inset(0 0 100% 0); transform: none;         opacity: 0; }
  100%{ clip-path: inset(0 0 100% 0); transform: none;         opacity: 0; }
}

@keyframes glitchBot {
  0%  { clip-path: inset(100% 0 0% 0); transform: none; opacity: 0; }
  /* burst 1 */
  49% { clip-path: inset(100% 0 0% 0); transform: none;         opacity: 0; }
  50% { clip-path: inset(55% 0 0 0);   transform: translateX(3px);  opacity: 1; }
  51% { clip-path: inset(25% 0 40% 0); transform: translateX(-4px); opacity: 1; }
  52% { clip-path: inset(80% 0 0 0);   transform: translateX(2px);  opacity: 1; }
  53% { clip-path: inset(100% 0 0% 0); transform: none;         opacity: 0; }
  /* burst 2 */
  77% { clip-path: inset(100% 0 0% 0); transform: none;         opacity: 0; }
  78% { clip-path: inset(60% 0 0 0);   transform: translateX(-3px); opacity: 1; }
  79% { clip-path: inset(30% 0 35% 0); transform: translateX(4px);  opacity: 1; }
  80% { clip-path: inset(85% 0 0 0);   transform: translateX(-2px); opacity: 1; }
  81% { clip-path: inset(100% 0 0% 0); transform: none;         opacity: 0; }
  100%{ clip-path: inset(100% 0 0% 0); transform: none;         opacity: 0; }
}

/* Whole-hero RGB flicker on glitch burst */
.hero.glitch-active {
  animation: rgbFlicker 0.18s steps(1) forwards;
}

@keyframes rgbFlicker {
  0%   { filter: none; }
  20%  { filter: hue-rotate(180deg) saturate(2) brightness(1.1); }
  40%  { filter: none; }
  60%  { filter: hue-rotate(-90deg) saturate(3) brightness(0.9); }
  80%  { filter: none; }
  100% { filter: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .tech-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hypercare { padding: 32px 24px; }
  .hypercare__grid { grid-template-columns: 1fr; gap: 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .statbar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(2n) { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(11,12,14,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav__links.open { display: flex; }

  .nav__links a {
    padding: 12px 16px;
    font-size: 16px;
  }

  .nav__toggle { display: flex; }

  .logo-horizontal { height: 36px; }

  .hero__title { letter-spacing: -1px; }

  .team-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .statbar__inner { grid-template-columns: repeat(2, 1fr); }

  .hero__actions { flex-direction: column; align-items: center; }

  .hero { padding: calc(var(--nav-h) + 8px) 16px 60px; }
}
