/* ---- @font-face: Deltha (user-supplied) ---- */
@font-face {
  font-family: 'Deltha';
  src: url('../fonts/deltha.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   LINXPLOIT — Core Stylesheet
   Theme: Dark + Red + Gold | Elite Cybersecurity Aesthetic
   ============================================================ */

:root {
  --bg-primary: #080a0d;
  --bg-secondary: #0d1117;
  --bg-card: #0f1520;
  --bg-card-hover: #141d2e;
  --red: #c0392b;
  --red-bright: #e74c3c;
  --red-glow: rgba(192, 57, 43, 0.3);
  --gold: #c9a227;
  --gold-bright: #f0c040;
  --gold-glow: rgba(201, 162, 39, 0.3);
  --text-primary: #e8eaf0;
  --text-secondary: #8892a4;
  --text-dim: #4a5568;
  --border: rgba(255, 255, 255, 0.06);
  --border-red: rgba(192, 57, 43, 0.4);
  --border-gold: rgba(201, 162, 39, 0.4);
  --mono: 'Share Tech Mono', monospace;
  --display: 'Syne', sans-serif;
  --body: 'Inter', sans-serif;
  --hero-font: 'Deltha', 'Syne', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--red-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-trail {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.6;
}

/* ---- NOISE + SCANLINES ---- */
.noise-overlay {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}
.scanlines {
  position: fixed; inset: 0;
  background: repeating-linear-gradient(to bottom, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px);
  pointer-events: none;
  z-index: 999;
}

/* ---- UTILS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.red { color: var(--red-bright); }
.gold { color: var(--gold); }
.accent { color: var(--red-bright); }
.highlight { color: var(--gold); font-weight: 600; }
.section-label { font-family: var(--mono); font-size: 0.75rem; color: var(--red); letter-spacing: 0.15em; margin-bottom: 1rem; }
.section-title { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.section-title.center { text-align: center; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--red);
  color: #fff;
  padding: 0.75rem 2rem;
  font-family: var(--body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; border-radius: 2px;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.btn-primary:hover { background: var(--red-bright); box-shadow: 0 0 24px var(--red-glow); transform: translateY(-2px); }
.btn-primary:hover::after { transform: translateX(100%); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  padding: 0.75rem 2rem;
  font-family: var(--body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 20px var(--gold-glow); }

.full-width { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(8, 10, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.navbar.scrolled { border-color: var(--border-red); }
.nav-logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.logo-placeholder {
  width: 44px; height: 44px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.logo-box { font-family: var(--mono); font-size: 0.55rem; color: var(--text-dim); letter-spacing: 0.05em; }
.brand-name { font-family: var(--hero-font); font-size: 1.25rem; font-weight: normal; letter-spacing: 0.08em; color: var(--text-primary); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-link {
  font-family: var(--body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  color: var(--text-secondary); text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--red-bright); transform: scaleX(0); transition: transform 0.2s;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { transform: scaleX(1); }
.cta-link { color: var(--gold) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-secondary); transition: all 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2.5rem 4rem;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(192,57,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,57,43,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-80vh) scale(1.5); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 650px;
  animation: fadeSlideUp 0.8s ease both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(192,57,43,0.08);
  border: 1px solid var(--border-red);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-family: var(--mono); font-size: 0.7rem; color: var(--red-bright);
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s 0.1s ease both;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--red-bright); border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  margin-bottom: 1.8rem;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}
.hero-main-name {
  display: block;
  font-family: var(--hero-font);
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: normal;
  line-height: 0.9;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  /* Subtle red glow on the big name */
  filter: drop-shadow(0 0 32px rgba(192, 57, 43, 0.25));
}
.hero-sub-tagline {
  display: block;
  font-family: var(--display);
  font-size: clamp(0.75rem, 2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-top: 0.5rem;
  padding-left: 0.1em; /* optical align under Deltha baseline */
  opacity: 0.9;
}
.hero-sub {
  font-size: 1rem; color: var(--text-secondary); font-family: var(--body); font-weight: 400;
  margin-bottom: 2.5rem; line-height: 1.85;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeSlideUp 0.8s 0.4s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  animation: fadeSlideUp 0.8s 0.5s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--display); font-size: 1.9rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-family: var(--body); font-size: 0.62rem; font-weight: 500; color: var(--text-dim); letter-spacing: 0.12em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* HERO VISUAL */
.hero-visual {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.hex-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: rotate linear infinite;
}
.ring-1 { width: 100%; height: 100%; border-color: rgba(192,57,43,0.12); animation-duration: 30s; }
.ring-2 { width: 75%; height: 75%; border-color: rgba(201,162,39,0.15); animation-duration: 20s; animation-direction: reverse; }
.ring-3 { width: 50%; height: 50%; border-color: rgba(192,57,43,0.2); animation-duration: 12s; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.terminal-window {
  position: relative; z-index: 2;
  width: 340px;
  background: rgba(8,10,13,0.92);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(192,57,43,0.15), 0 20px 60px rgba(0,0,0,0.5);
  animation: fadeSlideUp 0.8s 0.6s ease both;
}
.terminal-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.terminal-title { font-family: var(--mono); font-size: 0.6rem; color: var(--text-dim); margin-left: 0.5rem; }
.terminal-body { padding: 1rem; min-height: 200px; font-family: var(--mono); font-size: 0.7rem; line-height: 1.8; }
.terminal-body .cmd { color: var(--gold); }
.terminal-body .out { color: var(--text-secondary); }
.terminal-body .success { color: #28c840; }
.terminal-body .warn { color: var(--red-bright); }
.terminal-body .cursor-blink { display: inline-block; width: 8px; height: 12px; background: var(--gold); animation: blink 1s step-end infinite; vertical-align: middle; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.55rem; color: var(--text-dim); letter-spacing: 0.15em;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--red)); animation: scrollPulse 1.5s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 8rem 0;
  position: relative;
}
.about::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-desc { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.about-quote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  font-family: var(--display); font-size: 0.8rem; font-style: italic; color: var(--text-secondary);
  line-height: 1.8;
}
.quote-mark { color: var(--gold); font-size: 1.5rem; font-style: normal; }
.about-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.mini-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.2rem;
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateX(20px);
}
.mini-card.visible { opacity: 1; transform: translateX(0); transition-delay: calc(var(--delay, 0) * 1ms); }
.mini-card:hover { border-color: var(--border-red); transform: translateX(4px); }
.mini-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.2rem; }
.mini-text strong { font-family: var(--display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; color: var(--gold); display: block; margin-bottom: 0.3rem; }
.mini-text p { font-size: 0.9rem; color: var(--text-secondary); }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { padding: 8rem 0; background: var(--bg-secondary); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.pillar-card:hover { border-color: var(--border-red); transform: translateY(-6px); }
.pillar-card.featured { border-color: var(--border-gold); }
.pillar-card.featured:hover { border-color: var(--gold); box-shadow: 0 0 40px var(--gold-glow); }
.pillar-number {
  font-family: var(--display); font-size: 4rem; font-weight: 900;
  color: rgba(255,255,255,0.03);
  position: absolute; top: 1rem; right: 1rem;
  line-height: 1;
}
.pillar-icon { width: 56px; height: 56px; color: var(--red-bright); margin-bottom: 1.5rem; }
.pillar-card.featured .pillar-icon { color: var(--gold); }
.pillar-card h3 { font-family: var(--display); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 1.2rem; color: var(--text-primary); }
.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pillar-list li {
  font-size: 0.85rem; color: var(--text-secondary);
  padding-left: 1rem; position: relative;
}
.pillar-list li::before {
  content: '▸'; position: absolute; left: 0;
  color: var(--red-bright); font-size: 0.65rem;
}
.pillar-card.featured .pillar-list li::before { color: var(--gold); }
.pillar-glow {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 40px;
  background: radial-gradient(ellipse, var(--red-glow), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.pillar-card.featured .pillar-glow { background: radial-gradient(ellipse, var(--gold-glow), transparent); }
.pillar-card:hover .pillar-glow { opacity: 1; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { padding: 8rem 0; }
.zari-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(192,57,43,0.05) 100%);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  padding: 3rem;
  display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: center;
  margin: 3rem 0;
  position: relative; overflow: hidden;
}
.zari-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.zari-badge {
  display: inline-block;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.15em;
  color: var(--gold); border: 1px solid var(--border-gold);
  padding: 0.25rem 0.75rem; border-radius: 2px; margin-bottom: 1rem;
}
.zari-title { font-family: var(--display); font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; }
.zari-card p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.zari-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.zari-tags span {
  font-family: var(--mono); font-size: 0.65rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem; border-radius: 2px;
  color: var(--text-secondary);
}
.zari-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  height: 240px;
}
.os-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.os-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: rotate linear infinite;
}
.or1 { width: 200px; height: 200px; border-color: rgba(192,57,43,0.25); animation-duration: 12s; }
.or2 { width: 150px; height: 150px; border-color: rgba(201,162,39,0.2); animation-duration: 8s; animation-direction: reverse; }
.or3 { width: 100px; height: 100px; border-color: rgba(192,57,43,0.3); animation-duration: 5s; }
.os-core {
  position: relative; z-index: 2;
  font-family: var(--display); font-size: 1.4rem; font-weight: 900;
  color: var(--red-bright); text-shadow: 0 0 20px var(--red-glow);
}
.tools-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem;
}
.tool-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px;
  padding: 1.5rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  text-align: center; transition: all 0.3s; cursor: default;
}
.tool-card:hover { border-color: var(--border-red); transform: translateY(-3px); background: var(--bg-card-hover); }
.tool-card.featured-tool { border-color: var(--border-gold); }
.tool-card.featured-tool:hover { border-color: var(--gold); box-shadow: 0 0 20px var(--gold-glow); }
.tool-icon { font-size: 1.8rem; }
.tool-card span { font-family: var(--display); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em; color: var(--text-secondary); }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder { padding: 8rem 0; background: var(--bg-secondary); }
.founder-card {
  display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: center;
  max-width: 900px; margin: 3rem auto 0;
}
.founder-logo-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.founder-logo-placeholder {
  width: 160px; height: 160px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  font-family: var(--mono); font-size: 0.65rem; color: var(--text-dim);
  position: relative; z-index: 2;
}
.founder-ring {
  position: absolute; inset: -12px;
  border: 1px solid rgba(201,162,39,0.2); border-radius: 50%;
  animation: rotate 15s linear infinite;
}
.founder-handle { font-family: var(--mono); font-size: 0.7rem; color: var(--red-bright); margin-bottom: 0.5rem; }
.founder-info h3 { font-family: var(--display); font-size: 2rem; font-weight: 900; margin-bottom: 0.5rem; }
.founder-title { font-family: var(--mono); font-size: 0.75rem; color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.08em; }
.founder-bio { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; }
.founder-roles { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.founder-roles span {
  font-family: var(--mono); font-size: 0.6rem;
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem; border-radius: 2px;
  color: var(--text-dim);
}
.founder-btn { margin-top: 0; }

/* ============================================================
   TEAM
   ============================================================ */
.team { padding: 8rem 0; }
.team-intro { text-align: center; color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 3rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px;
  padding: 2rem 1.5rem; text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.team-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.member-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 0.85rem; font-weight: 700; color: #fff;
  margin: 0 auto 1rem;
}
.member-role-badge {
  display: inline-block;
  font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.15em;
  color: var(--red-bright); border: 1px solid var(--border-red);
  padding: 0.2rem 0.6rem; border-radius: 2px; margin-bottom: 0.75rem;
}
.team-card h4 { font-family: var(--display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.team-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap { padding: 8rem 0; background: var(--bg-secondary); }
.timeline { position: relative; max-width: 700px; margin: 3rem auto 0; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { position: relative; padding: 0 0 3rem 2rem; }
.tl-dot {
  position: absolute; left: -0.5rem; top: 0.2rem;
  width: 1rem; height: 1rem; border-radius: 50%;
  background: var(--bg-secondary); border: 1px solid var(--text-dim);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.tl-dot.active { border-color: var(--red-bright); box-shadow: 0 0 12px var(--red-glow); background: var(--red-bright); }
.tl-phase { font-family: var(--mono); font-size: 0.6rem; color: var(--red-bright); letter-spacing: 0.15em; }
.tl-content h4 { font-family: var(--display); font-size: 0.9rem; font-weight: 700; margin: 0.3rem 0; letter-spacing: 0.06em; }
.tl-content p { font-size: 0.9rem; color: var(--text-secondary); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 8rem 0; }
.contact-sub { text-align: center; color: var(--text-secondary); margin-bottom: 3rem; font-size: 1.05rem; }
.contact-form { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--mono); font-size: 0.65rem; color: var(--text-dim); letter-spacing: 0.1em; }
.form-group input, .form-group textarea {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); font-family: var(--body); font-size: 0.95rem;
  padding: 0.75rem 1rem; border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--border-red);
  box-shadow: 0 0 12px rgba(192,57,43,0.15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border); padding: 4rem 0 2rem;
  background: var(--bg-secondary);
}
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: start; margin-bottom: 3rem; }
.footer-brand { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.logo-placeholder.small { width: 32px; height: 32px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }
.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h5 { font-family: var(--display); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.25rem; }
.footer-col a { font-size: 0.85rem; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 0.65rem; color: var(--text-dim);
}
.footer-tag { color: var(--red-bright); letter-spacing: 0.1em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .zari-card { grid-template-columns: 1fr; }
  .zari-visual { height: 160px; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-logo-wrap { margin: 0 auto; }
  .founder-roles { justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; gap: 1.5rem; position: fixed; inset: 0; background: var(--bg-primary); align-items: center; justify-content: center; z-index: 700; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; z-index: 900; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .container { padding: 0 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cursor, .cursor-trail { display: none; }
  body { cursor: auto; }
}
