/* Harrow Defense · site.css · 2026-08-28 investor build */

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

:root {
  --red: #C41E3A;
  --red-bright: #e0304f;
  --red-dim: #8a1528;
  --red-glow: rgba(196, 30, 58, 0.12);
  --bg-deep: #060a12;
  --bg-surface: #0a0f1a;
  --bg-card: #0d1322;
  --bg-card-2: #101829;
  --text-primary: #d8dee8;
  --text-secondary: #a0aec0;
  --text-muted: #6b7a94;
  --text-dim: #3a4860;
  --border: #1a2438;
  --border-subtle: #131d2e;
  --max: 1080px;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Outfit', 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 500; color: var(--text-primary); }

/* ========== BACKGROUND ========== */
#mesh-bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  background: rgba(6, 10, 18, 0.82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; height: 100%;
  padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-secondary); text-decoration: none;
  padding: 6px 0; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text-primary); border-bottom-color: var(--red); }
.nav-links a.nav-cta { color: var(--red-bright); }
.nav-links a.nav-cta:hover { border-bottom-color: var(--red-bright); }

/* ========== LAYOUT ========== */
.wrap { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { position: relative; z-index: 1; padding: 96px 0; }
section.tight { padding: 64px 0; }
.divider { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.divider-line { height: 1px; background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent); }

.section-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 22px; position: relative; padding-left: 20px;
}
.section-label::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 6px; height: 6px;
  border: 1.5px solid var(--red-dim); border-radius: 1px; transform: translateY(-50%) rotate(45deg);
}
h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; font-weight: 600; line-height: 1.15; color: var(--text-primary); }
h2.section-title { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: 0.5px; margin-bottom: 20px; max-width: 760px; }
h3 { font-size: 20px; letter-spacing: 1px; }
.lead { font-size: 18px; color: var(--text-primary); line-height: 1.8; max-width: 720px; }
.lead + .lead { margin-top: 18px; }
.body { font-size: 16px; color: var(--text-secondary); line-height: 1.8; max-width: 720px; }
.body + .body { margin-top: 16px; }
.muted { color: var(--text-muted); }
.small { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ========== BUTTONS ========== */
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 26px; border-radius: 3px; text-decoration: none; transition: background .2s, border-color .2s, color .2s;
}
.btn-primary { background: var(--red); color: #fff; border: 1px solid var(--red); }
.btn-primary:hover { background: var(--red-bright); border-color: var(--red-bright); }
.btn-ghost { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--text-muted); }
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ========== HERO ========== */
.hero { position: relative; z-index: 1; padding: calc(var(--nav-h) + 96px) 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.eyebrow {
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 22px;
}
.eyebrow .pip { color: var(--red); margin: 0 10px; }
.hero h1 { font-size: clamp(38px, 5.6vw, 64px); font-weight: 700; letter-spacing: 0.5px; margin-bottom: 24px; }
.hero h1 .accent { color: var(--red-bright); }
.hero:not(.hero-home) h1 { font-size: clamp(34px, 4.4vw, 52px); max-width: 820px; }
.hero-status { margin-top: 28px; font-family: 'Rajdhani', sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); }
.hero-status .pip { color: var(--red); margin: 0 10px; }
.hero-logo { max-width: 520px; width: 100%; }
.hero-visual { display: flex; justify-content: center; }
.hero-home { min-height: calc(100vh - 0px); display: flex; align-items: center; }
.hero-home .hero-grid { grid-template-columns: 1.05fr 0.95fr; }

/* ========== PROOF STRIP ========== */
.proof { border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); background: rgba(10, 15, 26, 0.6); }
.proof-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.proof-item { padding: 30px 22px; border-left: 1px solid var(--border-subtle); min-width: 0; }
.proof-item:first-child { border-left: none; }
.proof-num { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 34px; line-height: 1.1; color: var(--text-primary); letter-spacing: 1px; }
.proof-num .unit { white-space: nowrap; display: inline-block; font-size: 19px; color: var(--red-bright); margin-left: 4px; }
.proof-num .unit.stack { display: block; margin-left: 0; margin-top: 2px; letter-spacing: 3px; text-transform: uppercase; }
.proof-cap { margin-top: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ========== CARDS ========== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.card {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 6px; padding: 28px 24px;
  transition: border-color .3s ease;
}
.card:hover { border-color: var(--border); }
.card.featured { border-color: var(--red-dim); background: linear-gradient(180deg, rgba(196,30,58,0.08), rgba(13,19,34,1) 60%); }
.card-kicker { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--red-bright); margin-bottom: 8px; }
.card-title { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-primary); margin-bottom: 10px; }
.card-text { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }
.card-num { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 30px; color: var(--red-dim); line-height: 1; margin-bottom: 14px; }
.card-tag { display: inline-block; margin-top: 14px; font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); }

/* ========== STEPS ========== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 40px; border-top: 1px solid var(--border-subtle); }
.step { padding: 28px 22px 28px 0; border-right: 1px solid var(--border-subtle); padding-left: 22px; }
.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; }
.step-num { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 3px; color: var(--red); margin-bottom: 14px; }
.step-title { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 22px; letter-spacing: 1px; color: var(--text-primary); margin-bottom: 10px; }
.step-text { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }

/* ========== PULL QUOTE ========== */
.pull { margin-top: 44px; padding: 28px 32px; border-left: 2px solid var(--red); background: rgba(196, 30, 58, 0.05); max-width: 820px; }
.pull p { font-family: 'Rajdhani', sans-serif; font-weight: 500; font-size: 22px; line-height: 1.4; color: var(--text-primary); letter-spacing: 0.3px; }
.pull .small { margin-top: 10px; }

/* ========== PILLARS (label + desc rows) ========== */
.rows { margin-top: 36px; border-top: 1px solid var(--border-subtle); }
.row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--border-subtle); }
.row-label { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-primary); }
.row-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }

/* ========== TIMELINE ========== */
.timeline { margin-top: 40px; position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 1px; background: var(--border); }
.tl-item { position: relative; padding: 0 0 30px 0; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -26px; top: 8px; width: 9px; height: 9px;
  background: var(--bg-deep); border: 1.5px solid var(--red); border-radius: 1px; transform: rotate(45deg);
}
.tl-item.now::before { background: var(--red); box-shadow: 0 0 0 4px var(--red-glow); }
.tl-date { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--red-bright); margin-bottom: 4px; }
.tl-title { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 19px; letter-spacing: 0.5px; color: var(--text-primary); }
.tl-text { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin-top: 4px; max-width: 720px; }

/* ========== FOUNDER ========== */
.founder { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; margin-top: 36px; }
.portrait { width: 100%; aspect-ratio: 4 / 5; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-card); position: relative; }
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.9); }
.portrait-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: radial-gradient(120% 90% at 50% 100%, rgba(196,30,58,0.14), transparent 60%), var(--bg-card); }
.portrait-fallback .initials { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 72px; letter-spacing: 6px; color: var(--text-dim); }
.portrait-fallback .cap { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); }
.founder-name { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 30px; letter-spacing: 0.5px; color: var(--text-primary); }
.founder-role { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--red-bright); margin: 6px 0 22px; }
.founder-facts { list-style: none; margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.founder-facts li { font-size: 14px; color: var(--text-secondary); padding-left: 16px; position: relative; line-height: 1.5; }
.founder-facts li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border: 1px solid var(--red-dim); transform: rotate(45deg); }
.founder-mini { display: grid; grid-template-columns: 180px 1fr; gap: 32px; align-items: center; margin-top: 36px; }
.founder-mini .portrait { aspect-ratio: 1 / 1; }
.founder-mini .portrait-fallback .initials { font-size: 44px; }

/* ========== SPEC TABLE ========== */
.table-wrap { margin-top: 36px; overflow-x: auto; border: 1px solid var(--border-subtle); border-radius: 6px; background: var(--bg-card); }
table.spec { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 14px; }
table.spec th, table.spec td { text-align: left; vertical-align: top; padding: 14px 18px; border-bottom: 1px solid var(--border-subtle); }
table.spec th { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); background: rgba(6,10,18,0.5); }
table.spec td:first-child { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-primary); width: 180px; }
table.spec td { color: var(--text-secondary); line-height: 1.6; }
table.spec tr:last-child td { border-bottom: none; }
table.spec td.target { color: var(--text-muted); }

/* ========== DIAGRAM ========== */
.diagram { margin-top: 40px; border: 1px solid var(--border-subtle); border-radius: 6px; background: var(--bg-card); padding: 28px 20px; overflow-x: auto; }
.diagram svg { display: block; width: 100%; height: auto; min-width: 860px; }
.diagram .n-box { fill: #101829; stroke: #1a2438; stroke-width: 1; }
.diagram .n-box.hot { fill: #1a0f18; stroke: #C41E3A; }
.diagram .n-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 2px; fill: #d8dee8; text-transform: uppercase; }
.diagram .n-sub { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 12.5px; fill: #a0aec0; }
.diagram .n-hop { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 3px; fill: #e0304f; }
.diagram .n-hop.dim { fill: #6b7a94; }
.diagram .arrow { stroke: #3a4860; stroke-width: 1.5; fill: none; }
.diagram .arrow.hot { stroke: #C41E3A; }
.diagram .n-note { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 12px; fill: #6b7a94; }

/* ========== IS / IS NOT ========== */
.isnot { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.isnot ul { list-style: none; }
.isnot li { font-size: 14.5px; color: var(--text-secondary); padding: 10px 0 10px 24px; border-bottom: 1px solid var(--border-subtle); position: relative; line-height: 1.6; }
.isnot li:last-child { border-bottom: none; }
.isnot li::before { position: absolute; left: 0; top: 10px; font-family: 'Rajdhani', sans-serif; font-weight: 700; }
.isnot .yes li::before { content: '+'; color: var(--red-bright); }
.isnot .no li::before { content: '\2013'; color: var(--text-dim); }

/* ========== PRODUCT IMAGE ========== */
.product-visual { position: relative; }
.product-visual img { width: 100%; border-radius: 6px; }
.product-caption { margin-top: 12px; font-size: 12.5px; color: var(--text-muted); letter-spacing: 0.3px; }

/* ========== CONTACT / INVESTOR ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.contact-email {
  display: inline-block; margin-top: 16px; font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: 1px;
  color: var(--red-bright); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s ease;
}
.contact-email:hover { border-bottom-color: var(--red-bright); }
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.cred { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 6px; padding: 18px 20px; }
.cred-k { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
.cred-v { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 20px; letter-spacing: 0.5px; color: var(--text-primary); margin-top: 4px; }
.cred-s { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; line-height: 1.5; }

/* ========== FOOTER ========== */
footer { position: relative; z-index: 1; border-top: 1px solid var(--border-subtle); padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; align-items: start; }
.footer-shield { width: 34px; opacity: 0.35; margin-bottom: 16px; }
.footer-text { font-size: 12.5px; color: var(--text-dim); letter-spacing: 0.8px; line-height: 1.8; }
.footer-h { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13.5px; color: var(--text-secondary); text-decoration: none; border-bottom: 1px solid transparent; }
.footer-links a:hover { color: var(--text-primary); border-bottom-color: var(--red-dim); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border-subtle); display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; }

/* ========== REVEAL ========== */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease-out, transform .8s ease-out; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .hero-grid, .hero-home .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-visual .hero-logo { max-width: 300px; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-item:nth-child(4) { border-left: none; }
  .proof-item { border-top: 1px solid var(--border-subtle); }
  .proof-item:nth-child(-n+3) { border-top: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border-subtle); padding-left: 0; }
  .founder { grid-template-columns: 240px 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-inner { padding: 0 16px; gap: 12px; }
  .nav-logo img { height: 28px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 11px; letter-spacing: 2px; }
  .wrap, .divider { padding: 0 18px; }
  section { padding: 64px 0; }
  .hero { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 56px; }
  .hero-home { min-height: 0; }
  .lead { font-size: 16px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item { padding: 22px 16px; }
  .proof-item:nth-child(odd) { border-left: none; }
  .proof-item:nth-child(even) { border-left: 1px solid var(--border-subtle); }
  .proof-item:nth-child(-n+3) { border-top: 1px solid var(--border-subtle); }
  .proof-item:nth-child(-n+2) { border-top: none; }
  .proof-num { font-size: 32px; }
  .grid-2, .grid-3, .grid-4, .isnot, .contact-grid, .cred-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; gap: 6px; }
  .founder { grid-template-columns: 1fr; }
  .portrait { max-width: 260px; }
  .founder-facts { grid-template-columns: 1fr; }
  .founder-mini { grid-template-columns: 120px 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .pull { padding: 22px 20px; }
  .pull p { font-size: 19px; }
}
