
/* === assets\css\variables.css === */
/* ═══════════════════════════════════════════════════════
   SafeHouse Studios — Design Tokens & Visual Variables
   Inspired by engineering-grade technical authority (BPDoxS)
═══════════════════════════════════════════════════════ */

:root {
  /* Canvas & Backgrounds */
  --sh-bg:          #050817; /* Deep technical navy-black */
  --sh-surface:     #0B0F24; /* Elevated container surface */
  --sh-surface-2:   #12183A; /* Hover / Secondary surface */
  --sh-card-grad:   linear-gradient(180deg, rgba(20, 26, 58, 0.92) 0%, rgba(8, 11, 25, 0.98) 100%);

  /* Primary Electric Blues */
  --sh-primary:     #4462EE; /* Primary button / active state */
  --sh-primary-2:   #6E86FF; /* Highlight phrase / gradient start */
  --sh-periwinkle:  #AEBCFF; /* Gradient end / stat accent */

  /* Semantic Accents */
  --sh-status-on:   #7FE3B4; /* Live status green / active terminal caret */
  --sh-comment:     #E0A24A; /* Amber for code comments (//) */
  --sh-gold:        #F5C45E; /* Secondary highlight variant */
  --sh-cyan:        #5BB8E0; /* Telemetry / secondary metric accent */

  /* Text & Hierarchy */
  --sh-text:        #EAF0FF; /* High contrast headings (White/Ice) */
  --sh-body:        #BAC4DE; /* Readable body copy */
  --sh-muted:       #8A96B8; /* Secondary captions & labels */
  --sh-dim:         #535F82; /* Watermarks & subtle metadata */

  /* Structural Borders */
  --sh-border:      rgba(90, 115, 255, 0.18);
  --sh-border-hover:rgba(90, 115, 255, 0.42);
  --sh-border-hair: rgba(90, 115, 255, 0.08);

  /* Elevation Shadows */
  --sh-shadow-card: inset 0 1px 0 rgba(255, 255, 255, 0.08), 
                    0 0 0 1px rgba(68, 98, 238, 0.06),
                    0 16px 40px rgba(0, 0, 0, 0.52), 
                    0 0 40px rgba(68, 98, 238, 0.06);
  --sh-shadow-btn:  0 6px 20px rgba(68, 98, 238, 0.35);
  --sh-shadow-btn-hover: 0 10px 30px rgba(68, 98, 238, 0.5);

  /* Typography */
  --font-h: 'Red Hat Display', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --font-m: 'DM Mono', monospace;

  /* Layout */
  --max:  1180px;
  --pad:  clamp(18px, 5vw, 48px);
  --gap:  clamp(72px, 10vw, 120px);
}


/* === assets\css\base.css === */
/* ═══════════════════════════════════════════════════════
   Base — Reset, Typography, Structure
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,400;0,500;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Red+Hat+Display:wght@500;600;700;800;900&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--sh-bg);
}

body {
  background: var(--sh-bg);
  color: var(--sh-body);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Subtle engineering background grid */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(90, 115, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(90, 115, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

/* ── Container ─────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}

/* ── Sections ──────────────────────────────────────── */
.section {
  padding: var(--gap) 0;
  position: relative;
  z-index: 1;
}

.section--alt {
  background: var(--sh-surface);
  border-top: 1px solid var(--sh-border);
  border-bottom: 1px solid var(--sh-border);
}

/* ── Typographic Hierarchy ─────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h);
  color: var(--sh-text);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

/* Two-Tone Headline Utility */
.highlight-text {
  color: var(--sh-primary-2);
}

.gradient-text {
  background: linear-gradient(135deg, var(--sh-primary-2) 0%, var(--sh-periwinkle) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.comment-text {
  font-family: var(--font-m);
  color: var(--sh-comment);
  font-size: 0.9em;
}

/* ── Section Header ────────────────────────────────── */
.section-head {
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 16px;
  color: var(--sh-muted);
  max-width: 580px;
  line-height: 1.75;
}

/* ── Horizontal Rule ───────────────────────────────── */
hr {
  border: none;
  border-top: 1px solid var(--sh-border);
}

/* ── Scroll Reveal ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* === assets\css\components.css === */
/* ═══════════════════════════════════════════════════════
   Components — Eyebrows, Buttons, Cards, Terminal Prompt
═══════════════════════════════════════════════════════ */

/* ── Eyebrow / Terminal Tag ────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-m);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-muted);
  margin-bottom: 18px;
}

.eyebrow .code-tag {
  color: var(--sh-status-on);
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: var(--sh-status-on);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(127, 227, 180, 0.6);
  display: inline-block;
  animation: pulse-dot 2.4s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
}

/* Primary Pill CTA */
.btn-primary {
  background: linear-gradient(135deg, var(--sh-primary) 0%, var(--sh-primary-2) 100%);
  color: #ffffff;
  padding: 10px 22px;
  box-shadow: var(--sh-shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-shadow-btn-hover);
  color: #ffffff;
}

.btn-primary .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

/* Outline Button */
.btn-outline {
  background: rgba(20, 26, 58, 0.4);
  color: var(--sh-text);
  border: 1px solid var(--sh-border);
  padding: 12px 24px;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(68, 98, 238, 0.12);
  border-color: var(--sh-border-hover);
  color: #ffffff;
}

/* Ghost Link */
.btn-ghost {
  background: transparent;
  color: var(--sh-muted);
  font-size: 14px;
  padding: 8px 12px;
}

.btn-ghost:hover {
  color: var(--sh-text);
}

.btn-full {
  width: 100%;
}

/* Text Link */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  color: var(--sh-text);
  transition: gap 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  color: var(--sh-primary-2);
  gap: 10px;
}

/* ── Bracket Chips / Tags ──────────────────────────── */
.bracket-tag {
  font-family: var(--font-m);
  font-size: 11.5px;
  color: var(--sh-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bracket-tag::before { content: '['; color: var(--sh-dim); }
.bracket-tag::after { content: ']'; color: var(--sh-dim); }

.tag-pill {
  font-family: var(--font-m);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(68, 98, 238, 0.08);
  border: 1px solid var(--sh-border);
  color: var(--sh-periwinkle);
}

/* ── Glassmorphic Elevated Cards ───────────────────── */
.card {
  background: var(--sh-card-grad);
  border: 1px solid var(--sh-border);
  border-radius: 18px;
  box-shadow: var(--sh-shadow-card);
  padding: clamp(24px, 4vw, 36px);
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  border-color: var(--sh-border-hover);
  transform: translateY(-3px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 20px 48px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(68, 98, 238, 0.12);
}

/* ── Terminal Shell Prompt (Footer & Mid-page) ─────── */
.terminal-box {
  background: #02040D;
  border: 1px solid var(--sh-border);
  border-radius: 14px;
  padding: 24px 28px;
  font-family: var(--font-m);
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 36px rgba(0, 0, 0, 0.7);
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--sh-border-hair);
  padding-bottom: 12px;
  margin-bottom: 16px;
  font-size: 11px;
  color: var(--sh-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.terminal-line {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--sh-text);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.terminal-prompt {
  color: var(--sh-primary-2);
  user-select: none;
}

.terminal-command {
  color: var(--sh-text);
  font-weight: 500;
}

.terminal-caret {
  display: inline-block;
  width: 8px;
  height: 18px;
  background-color: var(--sh-status-on);
  animation: step-caret 1.1s steps(1) infinite;
  vertical-align: middle;
}

@keyframes step-caret {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.terminal-sub {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--sh-muted);
}

/* ── WhatsApp Sticky Float ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

/* ── Infinite Marquee Component ────────────────────── */
.marquee-container {
  overflow: hidden;
  user-select: none;
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--sh-border-hair);
  border-bottom: 1px solid var(--sh-border-hair);
  position: relative;
  background: rgba(5, 8, 23, 0.4);
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--sh-bg) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(-90deg, var(--sh-bg) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee-scroll 32s linear infinite;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.marquee-item {
  font-family: var(--font-m);
  font-size: 13px;
  color: var(--sh-muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}

.marquee-item:hover {
  color: var(--sh-text);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sh-border);
}


/* === assets\css\nav.css === */
/* ═══════════════════════════════════════════════════════
   Navigation — Glassmorphic Sticky Header
═══════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(5, 8, 23, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sh-border-hair);
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(5, 8, 23, 0.94);
  border-bottom-color: var(--sh-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav__bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo img {
  height: 28px;
  width: auto;
  filter: brightness(1.05);
}

/* Desktop Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-family: var(--font-m);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--sh-muted);
  display: inline-flex;
  align-items: center;
  padding: 6px 4px;
  transition: color 0.2s ease;
}

.nav__links a .nav-bracket {
  color: var(--sh-dim);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--sh-text);
}

.nav__links a:hover .nav-bracket {
  color: var(--sh-primary-2);
}

/* Active State */
.nav__links a.active {
  color: var(--sh-text);
}

.nav__links a.active .nav-bracket {
  color: var(--sh-status-on);
}

/* Action Group */
.nav__action {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__cta {
  padding: 8px 18px;
  font-size: 13px;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sh-text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Mobile Drawer ─────────────────────────────────── */
.nav__drawer {
  display: none;
  background: var(--sh-surface);
  border-top: 1px solid var(--sh-border);
  padding: 24px var(--pad);
  max-height: calc(100vh - 76px);
  overflow-y: auto;
}

.nav__drawer.open {
  display: block;
}

.drawer-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sh-border-hair);
  margin-bottom: 16px;
}

.nav__drawer a {
  display: block;
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  color: var(--sh-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--sh-border-hair);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav__drawer a:hover,
.nav__drawer a.active {
  color: var(--sh-text);
  padding-left: 8px;
}

.drawer-cta-wrapper {
  margin-top: 24px;
}


/* === assets\css\hero.css === */
/* ═══════════════════════════════════════════════════════
   Hero Section — Modern Dark Technical Authority
═══════════════════════════════════════════════════════ */

.hero {
  padding-top: calc(76px + clamp(48px, 8vw, 84px));
  padding-bottom: clamp(48px, 8vw, 84px);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.hero__text {
  max-width: 680px;
}

.hero__pre {
  font-family: var(--font-m);
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--sh-comment);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hero__h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.038em;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--sh-body);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Hero Watermark / Telemetry */
.hero__telemetry {
  display: flex;
  justify-content: flex-end;
}

.telemetry-block {
  border-left: 2px solid var(--sh-border);
  padding: 16px 20px;
  background: rgba(11, 15, 36, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 0 12px 12px 0;
  max-width: 280px;
}

.telemetry-block .comment-text {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.telemetry-block p {
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--sh-muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

.telemetry-block p:last-child {
  margin-bottom: 0;
}

/* ── Hero 3-Column KPI Bar ─────────────────────────── */
.hero__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--sh-border-hair);
}

.kpi-card {
  background: var(--sh-card-grad);
  border: 1px solid var(--sh-border);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: var(--sh-shadow-card);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.kpi-card:hover {
  border-color: var(--sh-border-hover);
  transform: translateY(-2px);
}

.kpi-number {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.kpi-label {
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--sh-text);
  margin-bottom: 8px;
}

.kpi-desc {
  font-size: 12.5px;
  color: var(--sh-muted);
  line-height: 1.55;
}

/* ── Page Hero for Inner Pages ─────────────────────── */
.page-hero {
  padding-top: calc(76px + clamp(48px, 7vw, 76px));
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--sh-border);
  background: linear-gradient(180deg, rgba(11, 15, 36, 0.6) 0%, var(--sh-bg) 100%);
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  max-width: 20ch;
}

.page-hero p {
  font-size: 16px;
  color: var(--sh-body);
  max-width: 580px;
  line-height: 1.75;
}


/* === assets\css\home.css === */
/* ═══════════════════════════════════════════════════════
   Homepage Specific Components & Layouts
═══════════════════════════════════════════════════════ */

/* ── Capabilities Matrix (Problem → Solution) ──────── */
.matrix-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.matrix-row {
  display: grid;
  grid-template-columns: 56px 1fr auto 1.3fr;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
}

.matrix-num {
  font-family: var(--font-m);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--sh-primary-2);
  opacity: 0.85;
}

.matrix-problem .comment-text {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.matrix-problem h3 {
  font-size: clamp(17px, 1.8vw, 21px);
  margin-bottom: 10px;
  color: var(--sh-text);
}

.matrix-problem p {
  font-size: 13.5px;
  color: var(--sh-muted);
  line-height: 1.65;
}

.matrix-arrow {
  font-size: 28px;
  color: var(--sh-primary-2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.matrix-track-tag {
  font-family: var(--font-m);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--sh-status-on);
  margin-bottom: 8px;
}

.matrix-solution h3 {
  font-size: clamp(18px, 2vw, 23px);
  margin-bottom: 10px;
  color: #ffffff;
}

.matrix-solution p {
  font-size: 14px;
  color: var(--sh-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.matrix-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--sh-border-hair);
  margin-bottom: 12px;
}

.matrix-price {
  font-family: var(--font-m);
  font-size: 14px;
  font-weight: 700;
  color: var(--sh-periwinkle);
}

/* ── Architecture Pillars Grid ─────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pillar-num {
  font-family: var(--font-m);
  font-size: 13px;
  font-weight: 700;
  color: var(--sh-primary-2);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.pillar-card h3 {
  font-size: clamp(18px, 1.9vw, 22px);
  margin-bottom: 12px;
  color: #ffffff;
}

.pillar-card p {
  font-size: 14px;
  color: var(--sh-body);
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pillar-tag {
  padding-top: 16px;
  border-top: 1px solid var(--sh-border-hair);
}

/* ── Process Telemetry (01-06 List) ────────────────── */
.process-telemetry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.process-item {
  background: var(--sh-card-grad);
  border: 1px solid var(--sh-border);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.25s ease;
}

.process-item:hover {
  border-color: var(--sh-border-hover);
}

.process-badge {
  font-family: var(--font-m);
  font-size: 13px;
  font-weight: 700;
  color: var(--sh-status-on);
  background: rgba(127, 227, 180, 0.08);
  border: 1px solid rgba(127, 227, 180, 0.25);
  border-radius: 8px;
  padding: 6px 10px;
  flex-shrink: 0;
}

.process-content {
  flex-grow: 1;
}

.process-title {
  font-family: var(--font-h);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--sh-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.process-content p {
  font-size: 13.5px;
  color: var(--sh-muted);
  line-height: 1.65;
}

/* ── CTA Banner Card ───────────────────────────────── */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: clamp(36px, 5vw, 56px);
  background: linear-gradient(135deg, rgba(20, 26, 58, 0.96) 0%, rgba(8, 11, 25, 0.98) 100%);
  border-color: var(--sh-border-hover);
}

.cta-banner__text {
  max-width: 580px;
}

.cta-banner__text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 12px;
}

.cta-banner__text p {
  font-size: 15px;
  color: var(--sh-body);
  line-height: 1.7;
}

.cta-banner__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}


/* === assets\css\services.css === */
/* ═══════════════════════════════════════════════════════
   Services & Pricing Matrix Styling
═══════════════════════════════════════════════════════ */

/* ── Interactive Terminal Tabs ─────────────────────── */
.tabs__nav {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--sh-border);
  padding-bottom: 16px;
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs__nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  font-family: var(--font-m);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--sh-muted);
  background: rgba(11, 15, 36, 0.4);
  border: 1px solid var(--sh-border-hair);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  border-color: var(--sh-border-hover);
  color: var(--sh-text);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(68, 98, 238, 0.25) 0%, rgba(110, 134, 255, 0.15) 100%);
  border-color: var(--sh-primary-2);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(68, 98, 238, 0.2);
}

.tab-btn.active .tab-indicator {
  color: var(--sh-status-on);
  font-weight: 700;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ── Pricing Matrix Rows ───────────────────────────── */
.pricing-head {
  margin-bottom: 36px;
}

.pricing-head h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 10px;
}

.pricing-head p {
  font-size: 15px;
  color: var(--sh-muted);
  max-width: 680px;
}

.pricing-matrix {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.matrix-tier {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  background: var(--sh-card-grad);
  border: 1px solid var(--sh-border);
  border-radius: 14px;
}

.matrix-tier--highlight {
  border-color: var(--sh-primary-2);
  background: linear-gradient(180deg, rgba(30, 40, 90, 0.85) 0%, rgba(10, 14, 34, 0.98) 100%);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 30px rgba(68, 98, 238, 0.15);
}

.tier-highlight-badge {
  position: absolute;
  top: -10px;
  right: 28px;
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--sh-primary);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(68, 98, 238, 0.4);
}

.tier-name {
  font-family: var(--font-h);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--sh-text);
  margin-bottom: 6px;
}

.tier-desc {
  font-size: 13.5px;
  color: var(--sh-body);
  line-height: 1.6;
}

.tier-time {
  white-space: nowrap;
}

.tier-price {
  font-family: var(--font-m);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--sh-text);
  white-space: nowrap;
  text-align: right;
}

.matrix-footnote {
  margin-top: 24px;
  font-size: 12.5px;
}

/* ── Add-ons Grid ──────────────────────────────────── */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.addon-card {
  padding: 24px 22px;
}

.addon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.addon-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--sh-text);
  line-height: 1.35;
}

.addon-price {
  font-family: var(--font-m);
  font-size: 14px;
  font-weight: 700;
  color: var(--sh-periwinkle);
  white-space: nowrap;
}

.addon-card p {
  font-size: 13px;
  color: var(--sh-muted);
  line-height: 1.6;
}

/* ── Standard Terms Grid ───────────────────────────── */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.term-box .comment-text {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
}

.term-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sh-text);
  margin-bottom: 12px;
}

.term-box p {
  font-size: 13.5px;
  color: var(--sh-body);
  line-height: 1.75;
}

/* ── Verified Stack Table ──────────────────────────── */
.stack-table {
  padding: 0;
  overflow: hidden;
}

.stack-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--sh-border-hair);
}

.stack-row:last-child {
  border-bottom: none;
}

.stack-key {
  font-family: var(--font-m);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--sh-comment);
}

.stack-val {
  font-size: 14px;
  color: var(--sh-body);
  line-height: 1.6;
}


/* === assets\css\portfolio.css === */
/* ═══════════════════════════════════════════════════════
   Portfolio & Capabilities Styling
═══════════════════════════════════════════════════════ */

/* ── Manifesto Card ────────────────────────────────── */
.manifesto-card {
  padding: clamp(32px, 5vw, 48px);
  border-left: 3px solid var(--sh-status-on);
  background: linear-gradient(135deg, rgba(20, 26, 58, 0.7) 0%, rgba(8, 11, 25, 0.95) 100%);
}

.manifesto-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.manifesto-quote {
  font-family: var(--font-b);
  font-size: clamp(16px, 2vw, 19px);
  color: var(--sh-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.manifesto-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Capabilities Grid (01–08) ─────────────────────── */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cap-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px;
}

.cap-badge {
  font-family: var(--font-m);
  font-size: 13px;
  font-weight: 700;
  color: var(--sh-primary-2);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}

.cap-card h3 {
  font-size: clamp(18px, 1.8vw, 21px);
  margin-bottom: 12px;
  color: #ffffff;
}

.cap-card p {
  font-size: 14px;
  color: var(--sh-body);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.cap-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--sh-border-hair);
}

/* ── NDA Case Grid ─────────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card {
  padding: 32px 28px;
}

.case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.case-card h3 {
  font-size: clamp(19px, 2vw, 23px);
  margin-bottom: 12px;
  color: #ffffff;
}

.case-card p {
  font-size: 14px;
  color: var(--sh-body);
  line-height: 1.7;
  margin-bottom: 24px;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(5, 8, 23, 0.6);
  border: 1px solid var(--sh-border-hair);
  border-radius: 10px;
  margin-bottom: 20px;
}

.case-metric-val {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.case-metric-label {
  font-family: var(--font-m);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--sh-muted);
}

.case-stack {
  padding-top: 12px;
  border-top: 1px solid var(--sh-border-hair);
}


/* === assets\css\contact.css === */
/* ═══════════════════════════════════════════════════════
   Contact Page & FAQ Accordion Styling
═══════════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}

/* ── Telemetry Side ────────────────────────────────── */
.telemetry-card {
  padding: 32px 28px;
}

.telemetry-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.comms-item {
  margin-bottom: 20px;
}

.comms-item:last-of-type {
  margin-bottom: 0;
}

.comms-label {
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--sh-comment);
  margin-bottom: 4px;
}

.comms-val {
  font-size: 15px;
  color: var(--sh-text);
}

.comms-val a {
  color: var(--sh-text);
  transition: color 0.2s ease;
}

.comms-val a:hover {
  color: var(--sh-primary-2);
}

/* ── Protocol Box ──────────────────────────────────── */
.protocol-box {
  padding: 28px 24px;
}

.protocol-header {
  margin-bottom: 18px;
}

.protocol-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.protocol-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.protocol-num {
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 700;
  color: var(--sh-status-on);
  background: rgba(127, 227, 180, 0.1);
  border: 1px solid rgba(127, 227, 180, 0.2);
  border-radius: 6px;
  padding: 3px 6px;
  flex-shrink: 0;
}

.protocol-step strong {
  display: block;
  font-size: 13.5px;
  color: var(--sh-text);
  margin-bottom: 2px;
}

.protocol-step p {
  font-size: 12.5px;
  color: var(--sh-muted);
  line-height: 1.5;
}

/* ── Technical Intake Form ─────────────────────────── */
.form-card {
  padding: clamp(28px, 4vw, 40px);
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sh-border-hair);
  margin-bottom: 24px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--sh-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(5, 8, 23, 0.7);
  border: 1px solid var(--sh-border);
  border-radius: 8px;
  color: var(--sh-text);
  font-family: var(--font-b);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--sh-dim);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sh-primary-2);
  box-shadow: 0 0 16px rgba(110, 134, 255, 0.2);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-field 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'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-field select option {
  background: #0B0F24;
  color: #ffffff;
}

.form-field.error label {
  color: #ff6b6b;
}

.form-field.error input,
.form-field.error select,
.form-field.error textarea {
  border-color: #ff6b6b;
}

.field-error {
  font-family: var(--font-m);
  font-size: 11px;
  color: #ff6b6b;
  display: none;
}

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

.form-success {
  background: rgba(127, 227, 180, 0.06);
  border: 1px solid var(--sh-status-on);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.success-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sh-status-on);
  color: #050817;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.form-success h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 13.5px;
  color: var(--sh-body);
  line-height: 1.6;
}

/* ── FAQ Accordion ─────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.faq-toggle:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-q {
  font-family: var(--font-h);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  color: var(--sh-text);
}

.faq-icon {
  font-family: var(--font-m);
  font-size: 20px;
  font-weight: 700;
  color: var(--sh-primary-2);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--sh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(68, 98, 238, 0.2);
  border-color: var(--sh-primary-2);
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 14.5px;
  color: var(--sh-body);
  line-height: 1.75;
}


/* === assets\css\footer.css === */
/* ═══════════════════════════════════════════════════════
   Footer — Terminal Prompt, Bracket Columns, Telemetry
═══════════════════════════════════════════════════════ */

.footer {
  background: #020512;
  border-top: 1px solid var(--sh-border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-terminal-link {
  display: block;
  text-decoration: none;
  margin-bottom: 56px;
  transition: transform 0.25s ease;
}

.footer-terminal-link:hover {
  transform: translateY(-3px);
}

.footer__terminal {
  border-color: var(--sh-border);
  background: rgba(11, 15, 36, 0.6);
  cursor: pointer;
}

.footer-terminal-link:hover .footer__terminal {
  border-color: var(--sh-border-hover);
  box-shadow: 0 16px 40px rgba(68, 98, 238, 0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo {
  height: 26px;
  width: auto;
  margin-bottom: 16px;
}

.footer__bio {
  font-size: 13.5px;
  color: var(--sh-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 16px;
}

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

.footer__status-text {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--sh-status-on);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer__col h4 {
  font-family: var(--font-m);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--sh-comment);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul a {
  transition: transform 0.2s ease;
  display: inline-block;
}

.footer__col ul a:hover {
  transform: translateX(4px);
}

.footer__col ul a:hover .bracket-tag {
  color: var(--sh-text);
}

.footer__location {
  font-family: var(--font-m);
  font-size: 11.5px;
  color: var(--sh-dim);
}

.footer__bottom {
  border-top: 1px solid var(--sh-border-hair);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy p {
  font-family: var(--font-m);
  font-size: 11.5px;
  color: var(--sh-dim);
}

.footer__tagline {
  font-size: 11px;
  letter-spacing: 0.08em;
}


/* === assets\css\responsive.css === */
/* ═══════════════════════════════════════════════════════
   Responsive System — Breakpoints & Layout Adaptations
═══════════════════════════════════════════════════════ */

/* ── 1024px Breakpoint ─────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .terms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ── 860px Breakpoint ──────────────────────────────── */
@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__telemetry {
    justify-content: flex-start;
  }

  .hero__kpis {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .matrix-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .matrix-arrow {
    display: none;
  }

  .process-telemetry {
    grid-template-columns: 1fr;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .matrix-tier {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tier-price {
    text-align: left;
  }

  .stack-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ── 640px Mobile Navigation & Touch ───────────────── */
@media (max-width: 640px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

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

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

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }
}

/* ── 420px Small Screens ───────────────────────────── */
@media (max-width: 420px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .tabs__nav {
    flex-direction: column;
  }

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

/* ── Reduced Motion Accessibility ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track {
    animation: none;
  }

  * {
    transition-duration: 0.001ms !important;
  }
}


