/* ============================================================
   RESET & BASE
   ============================================================ */
:root {
  --primary-color: #00ff88;
  --secondary-color: #6600ff;
  --bg-color: #050510;
  --card-glow-green: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 255, 136, 0.08), transparent 45%);
  --card-glow-purple: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(102, 0, 255, 0.1), transparent 45%);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html, body {
  width: 100%;
  overflow-x: hidden;
}
html{scroll-behavior:smooth;scroll-padding-top:80px}
body{
  font-family:'IBM Plex Mono',monospace;
  background:#050510;
  color:#c8c8d0;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,h5,h6{font-family:'Space Grotesk',sans-serif;color:#fff;line-height:1.2}
a{color:inherit;text-decoration:none}
ul{list-style:none}
img{max-width:100%;display:block}
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.section{padding:120px 0;position:relative;z-index:2;overflow:hidden}
.hero::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(102, 0, 255, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}
#about::before {
  content: '';
  position: absolute;
  top: 50%; left: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.04) 0%, transparent 75%);
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
}
#contact::before {
  content: '';
  position: absolute;
  bottom: 10%; right: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(102, 0, 255, 0.06) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}
.section-label{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  color:#00ff88;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:12px;
  display:inline-block;
  border:1px solid rgba(0,255,136,0.2);
  padding:4px 12px;
  border-radius:2px;
}

/* ============================================================
   CANVAS BACKGROUND
   ============================================================ */
#particleCanvas{
  position:fixed;
  top:0;left:0;
  width:100%;height:100%;
  z-index:0;
  pointer-events:none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  padding:20px 0;
  transition:background .4s,box-shadow .4s,padding .4s;
}
.nav.scrolled{
  background:rgba(5,5,16,.92);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 1px 0 rgba(0,255,136,.08);
  padding:12px 0;
}
.nav-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.nav-logo{
  font-family:'Space Grotesk',sans-serif;
  font-size:22px;
  font-weight:700;
  color:#fff;
  letter-spacing:-0.5px;
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-logo .logo-dot{
  display:inline-block;
  width:8px;height:8px;
  background:#00ff88;
  border-radius:50%;
  box-shadow:0 0 8px #00ff88;
  animation:pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot{0%,100%{opacity:1}50%{opacity:.3}}
.nav-links{display:flex;gap:32px;align-items:center}
.nav-links a{
  font-family:'IBM Plex Mono',monospace;
  font-size:14px;
  font-weight:500;
  color:#999;
  transition:color .3s;
  position:relative;
}
.nav-links a::after{
  content:'';
  position:absolute;
  bottom:-4px;left:0;
  width:0;height:1px;
  background:#00ff88;
  transition:width .3s;
}
.nav-links a:hover,
.nav-links a.active{color:#00ff88}
.nav-links a:hover::after,
.nav-links a.active::after{width:100%}
.nav-cta{
  font-family:'IBM Plex Mono',monospace;
  font-size:13px;
  font-weight:600;
  color:#050510 !important;
  background:#00ff88;
  padding:8px 20px;
  border-radius:4px;
  transition:background .3s,box-shadow .3s !important;
}
.nav-cta::after{display:none !important}
.nav-cta:hover{background:#00cc6a;box-shadow:0 0 20px rgba(0,255,136,.3)}

/* Button Shine Sweep Effect */
.btn-primary, .btn-outline {
  position: relative;
  overflow: hidden;
}
.btn-primary::before, .btn-outline::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 25%; height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  transition: all 0.65s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.btn-primary:hover::before, .btn-outline:hover::before {
  left: 130%;
  opacity: 1;
}

/* Hamburger */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  background:none;
  border:none;
  padding:4px;
  z-index:1001;
}
.hamburger span{
  display:block;
  width:24px;height:2px;
  background:#fff;
  transition:transform .3s,opacity .3s;
}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* Mobile menu */
.mobile-menu{
  display:none;
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  background:rgba(5,5,18,0.55);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  z-index:999;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:36px;
  opacity:0;
  pointer-events:none;
  transition:opacity .4s;
}
.mobile-menu.open{display:flex;opacity:1;pointer-events:auto}
.mobile-menu a{
  font-family:'Space Grotesk',sans-serif;
  font-size:16px;
  font-weight:500;
  color:rgba(255, 255, 255, 0.75);
  transition:all .3s;
  letter-spacing:2px;
  text-transform:uppercase;
}
.mobile-menu a:hover{
  color:#00ff88;
  text-shadow:0 0 8px rgba(0, 255, 136, 0.3);
  transform:scale(1.04);
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  z-index:1;
  padding-top:80px;
  overflow:hidden;
}
.hero-content{max-width:800px}
.hero-badge{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;
  color:#00ff88;
  border:1px solid rgba(0,255,136,.25);
  padding:6px 14px;
  border-radius:2px;
  display:inline-block;
  margin-bottom:32px;
  letter-spacing:1px;
}
.hero-title{
  font-size:clamp(36px,6vw,64px);
  font-weight:700;
  margin-bottom:8px;
  min-height:1.2em;
}
.hero-title .cursor{
  display:inline-block;
  width:3px;
  height:1em;
  background:#00ff88;
  margin-left:4px;
  vertical-align:text-bottom;
  animation:blink 1s step-end infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}
.hero-subtitle{
  font-size:18px;
  color:#888;
  max-width:600px;
  margin-bottom:40px;
  font-weight:300;
}
.hero-buttons{display:flex;gap:16px;flex-wrap:wrap}
.btn{
  font-family:'IBM Plex Mono',monospace;
  font-size:14px;
  font-weight:600;
  padding:14px 32px;
  border-radius:4px;
  cursor:pointer;
  transition:all .3s;
  border:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn-primary{
  background:#00ff88;
  color:#050510;
}
.btn-primary:hover{background:#00cc6a;box-shadow:0 0 30px rgba(0,255,136,.3);transform:translateY(-2px)}
.btn-outline{
  background:transparent;
  color:#00ff88;
  border:1px solid rgba(0,255,136,.4);
}
.btn-outline:hover{border-color:#00ff88;box-shadow:0 0 20px rgba(0,255,136,.15);transform:translateY(-2px)}
.hero-decoration{
  position:absolute;
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;
  color:rgba(102,0,255,.4);
  right:40px;
  bottom:40px;
  text-align:right;
}
.hero-decoration div{margin-bottom:2px}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.about-text h2{font-size:clamp(28px,4vw,40px);margin-bottom:24px}
.about-text h2 span{color:#00ff88}
.about-text p{color:#999;margin-bottom:20px;font-size:15px;font-weight:300}
.about-text .highlight{
  color:#fff;
  border-left:2px solid #00ff88;
  padding-left:16px;
  font-weight:500;
}
.about-stats,
.about-security-stack{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.stack-icon {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #00ff88;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: left;
}
.stat-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
  text-align: left;
  font-weight: 600;
}
.stat-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  text-align: left;
  font-weight: 300;
}
.case-report-link {
  color: #00ff88;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
}
.case-report-link:hover {
  color: #fff;
}
/* Card Spotlight and Glassmorphism General Rules */
.stat-card, .service-card, .case-card, .team-card, .contact-form {
  position: relative;
  overflow: hidden;
  background: rgba(10, 10, 28, 0.45) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 136, 0.12) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.stat-card:hover, .service-card:hover, .case-card:hover, .team-card:hover, .contact-form:hover {
  border-color: rgba(0, 255, 136, 0.35) !important;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.06), inset 0 0 30px rgba(0, 255, 136, 0.02);
  transform: translateY(-5px);
}
.stat-card * , .service-card *, .case-card *, .team-card *, .contact-form * {
  position: relative;
  z-index: 2;
}
.stat-card::after,
.service-card::after,
.case-card::after,
.team-card::after,
.contact-form::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  background: var(--card-glow-green);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.stat-card:hover::after,
.service-card:hover::after,
.case-card:hover::after,
.team-card:hover::after,
.contact-form:hover::after {
  opacity: 1;
}

.stat-card{
  padding:28px 24px;
  text-align:center;
}
.stat-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(0,255,136,.3),transparent);
  z-index: 2;
}
.stat-number{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(28px,4vw,40px);
  font-weight:700;
  color:#00ff88;
  margin-bottom:6px;
}
.stat-label{
  font-size:12px;
  color:#777;
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:500;
}
.stat-suffix{color:#00ff88;font-weight:500}

/* ============================================================
   SERVICES
   ============================================================ */
.section-header{
  text-align:center;
  margin-bottom:64px;
}
.section-header h2{
  font-size:clamp(28px,4vw,40px);
  margin-bottom:16px;
}
.section-header h2 span{color:#00ff88}
.section-header p{color:#888;max-width:500px;margin:0 auto;font-weight:300}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.service-card{
  padding:36px 28px;
  display:flex;
  flex-direction:column;
  height:100%;
}
.service-icon{
  width:48px;height:48px;
  border-radius:8px;
  background:rgba(0,255,136,.06);
  border:1px solid rgba(0,255,136,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  font-size:20px;
  color:#00ff88;
}
.service-card h3{font-size:18px;margin-bottom:10px;font-weight:600}
.service-card p{color:#888;font-size:14px;font-weight:300;line-height:1.6;flex:1}
.service-card .block-tag{
  font-family:'IBM Plex Mono',monospace;
  font-size:10px;
  color:rgba(102,0,255,.5);
  margin-top:16px;
  letter-spacing:1px;
}

/* ============================================================
   TECH STACK
   ============================================================ */
.tech-section{background:rgba(10,10,30,.3);border-top:1px solid rgba(0,255,136,.06);border-bottom:1px solid rgba(0,255,136,.06)}
.tech-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:16px;
}
.tech-item{
  background:rgba(10,10,28,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border:1px solid rgba(0,255,136,.08);
  border-radius:10px;
  padding:20px;
  text-align:center;
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.tech-item:hover{
  border-color:rgba(0,255,136,.35);
  box-shadow:0 0 25px rgba(0,255,136,.08);
  transform: translateY(-3px);
}
.tech-item .tech-icon{
  width: 28px;
  height: 28px;
  margin: 0 auto 12px;
  display: block;
  color: #00ff88;
  filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.tech-item .tech-icon svg {
  width: 100%;
  height: 100%;
}
.tech-item:hover .tech-icon {
  transform: scale(1.18) rotate(3deg);
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.7));
}
.tech-item .tech-name{
  font-family:'IBM Plex Mono',monospace;
  font-size:13px;
  color:#aaa;
  font-weight:500;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.case-card{
  display:flex;
  flex-direction:column;
  height:100%;
}
.case-image{
  aspect-ratio: 5 / 3;
  position:relative;
  overflow:hidden;
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
}
.case-svg, .case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-card:hover .case-svg,
.case-card:hover .case-img {
  transform: scale(1.06);
}
.case-image .case-tag{
  position:absolute;
  top:12px;left:12px;
  font-family:'IBM Plex Mono',monospace;
  font-size:10px;
  color:#00ff88;
  background:rgba(5,5,16,.8);
  padding:4px 10px;
  border-radius:2px;
  border:1px solid rgba(0,255,136,.2);
}
.case-body{padding:28px;flex:1;display:flex;flex-direction:column}
.case-body h3{font-size:18px;margin-bottom:10px}
.case-body p{color:#888;font-size:14px;line-height:1.6;flex:1;font-weight:300}
.case-metrics{
  display:flex;
  gap:24px;
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid rgba(0,255,136,.1);
}
.case-metric .metric-val{
  font-family:'Space Grotesk',sans-serif;
  font-size:18px;
  font-weight:700;
  color:#00ff88;
}
.case-metric .metric-lbl{
  font-size:11px;
  color:#666;
  text-transform:uppercase;
  letter-spacing:.5px;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.team-card{
  border:1px solid rgba(102,0,255,.15) !important;
  padding:32px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  height:100%;
}
.team-card:hover {
  border-color: rgba(102, 0, 255, 0.45) !important;
  box-shadow: 0 0 30px rgba(102, 0, 255, 0.08), inset 0 0 30px rgba(102, 0, 255, 0.02);
}
.team-card::after {
  background: var(--card-glow-purple) !important;
}
.team-avatar{
  width:80px;height:80px;
  border-radius:50%;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1.5px solid rgba(102,0,255,.3);
  position:relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-avatar svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.team-card:hover .team-avatar {
  transform: scale(1.08) rotate(-3deg);
  border-color: rgba(102, 0, 255, 0.6);
}
.team-avatar::after{
  content:'';
  position:absolute;
  bottom:-2px;right:-2px;
  width:12px;height:12px;
  background:#00ff88;
  border-radius:50%;
  border:2px solid #050510;
  z-index: 3;
}
.team-card h3{font-size:16px;margin-bottom:4px}
.team-role{
  font-size:13px;
  color:#00ff88;
  margin-bottom:12px;
  font-weight:500;
}
.team-bio{font-size:13px;color:#888;line-height:1.5;font-weight:300}
.team-addr{
  font-family:'IBM Plex Mono',monospace;
  font-size:10px;
  color:rgba(102,0,255,.4);
  margin-top:14px;
  letter-spacing:.5px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}
.contact-info h2{
  font-size:clamp(28px,4vw,36px);
  margin-bottom:20px;
}
.contact-info h2 span{color:#00ff88}
.contact-info p{color:#888;margin-bottom:32px;font-weight:300}
.contact-detail{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
  font-size:14px;
  color:#aaa;
}
.contact-detail .cd-icon{
  width:36px;height:36px;
  border-radius:6px;
  background:rgba(0,255,136,.06);
  border:1px solid rgba(0,255,136,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  flex-shrink:0;
}
.contact-form{
  padding:36px;
}

/* ============================================================
   HUD PANEL & TERMINAL STYLING
   ============================================================ */
.hud-panel {
  background: rgba(10, 10, 28, 0.65);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 10px;
  padding: 18px 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #c8c8d0;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 255, 136, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 250px;
}
.hud-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}
.hud-status-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  animation: pulse-dot-hud 1.5s ease-in-out infinite;
}
@keyframes pulse-dot-hud {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.15); }
}
.hud-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #888;
}
.hud-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.hud-row span:first-child {
  color: #666;
}
.hud-row span:last-child {
  color: #00ff88;
  font-weight: 500;
  text-shadow: 0 0 4px rgba(0, 255, 136, 0.3);
}

/* Scroll Progress Bar styling */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff88, #6600ff);
  z-index: 2000;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* Sync Animations */
@keyframes text-flash {
  0% { color: #00ff88; text-shadow: 0 0 10px rgba(0, 255, 136, 0.8); }
  50% { color: #00ff88; }
  100% { color: rgba(102, 0, 255, 0.35); text-shadow: none; }
}
.block-height.pulse-green {
  animation: text-flash 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Developer Console Terminal style */
.dev-console {
  background: rgba(5, 5, 18, 0.5) !important;
  border: 1px solid rgba(102, 0, 255, 0.25) !important;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(102, 0, 255, 0.05);
  font-family: 'IBM Plex Mono', monospace;
  overflow: hidden;
  text-align: left;
  position: relative;
  z-index: 2;
}
.dev-console::after {
  background: var(--card-glow-purple) !important;
}
.console-header {
  background: rgba(15, 15, 35, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.console-dot.red { background: #ff5f56; }
.console-dot.yellow { background: #ffbd2e; }
.console-dot.green { background: #27c93f; }
.console-title {
  color: #777;
  font-size: 11px;
  margin-left: 8px;
  font-weight: 500;
  letter-spacing: .5px;
}
.console-body {
  padding: 24px;
  font-size: 13px;
  color: #a9a9b3;
  line-height: 1.6;
}
.console-line {
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  font-weight: 500;
}
.console-line .c-prompt {
  color: #00ff88;
  user-select: none;
}
.console-line .c-cmd {
  color: #fff;
}
.console-output {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 20px;
  color: #00ff88;
  white-space: pre;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow-x: auto;
}
.console-output.text-success {
  color: #00ff88;
  text-shadow: 0 0 4px rgba(0, 255, 136, 0.3);
}
.copyable-text {
  border-bottom: 1px dashed rgba(0, 255, 136, 0.4);
  cursor: pointer;
  padding: 0 2px;
  transition: all 0.2s;
  display: inline-block;
}
.copyable-text:hover {
  background: rgba(0, 255, 136, 0.15);
  color: #fff;
  border-bottom-color: #fff;
}
.console-action {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.console-btn {
  font-size: 12px !important;
  padding: 10px 20px !important;
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(0, 255, 136, 0.08);
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
  background: rgba(3, 3, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  animation: pulse-dot-footer 2s ease-in-out infinite;
}
@keyframes pulse-dot-footer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.brand-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  max-width: 320px;
  font-weight: 300;
}
.network-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 10px;
  color: #00ff88;
  font-weight: 600;
  align-self: flex-start;
}
.status-pulse {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 6px #00ff88;
  animation: pulse-dot-footer 1.5s ease-in-out infinite;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.footer-links-col a {
  font-size: 13px;
  color: #888;
  transition: all 0.3s;
  font-weight: 400;
  align-self: flex-start;
}
.footer-links-col a:hover {
  color: #00ff88;
  transform: translateX(3px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy {
  font-size: 12px;
  color: #666;
}
.footer-meta {
  font-size: 11px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-meta .copyable-text {
  color: #777;
  font-weight: 500;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.2s;
}
.footer-meta .copyable-text:hover {
  color: #00ff88;
  border-bottom-color: #00ff88;
}
.meta-divider {
  color: rgba(255, 255, 255, 0.1);
}

/* Block height decoration */
.block-height{
  font-family:'IBM Plex Mono',monospace;
  font-size:10px;
  color:rgba(102,0,255,.35);
  position:absolute;
  pointer-events:none;
  letter-spacing:.5px;
  user-select:none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .cases-grid{grid-template-columns:repeat(2,1fr);gap:24px}
  .about-grid{grid-template-columns:1fr;gap:48px}
  .contact-grid{grid-template-columns:1fr;gap:40px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:36px}
}
@media (max-width:768px){
  .nav-links{display:none}
  .hamburger{display:flex}
  .mobile-menu{display:flex}
  .nav.scrolled{
    background:rgba(5,5,18,0.55) !important;
    backdrop-filter:blur(12px) !important;
    -webkit-backdrop-filter:blur(12px) !important;
    box-shadow:0 1px 0 rgba(255,255,255,0.05) !important;
  }
  .services-grid{grid-template-columns:1fr}
  .cases-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr 1fr}
  .about-stats,
  .about-security-stack{grid-template-columns:1fr 1fr}
  .tech-grid{grid-template-columns:repeat(3,1fr)}
  .section{padding:80px 0}
  .hero-content{text-align:center}
  .hero-buttons{justify-content:center}
  .hero-subtitle{margin-left:auto;margin-right:auto}
  .hero-decoration{display:none}
  .footer-grid{grid-template-columns:1fr;gap:32px}
  .footer-bottom{flex-direction:column;gap:16px;text-align:center}
}
@media (max-width:480px){
  .team-grid{grid-template-columns:1fr}
  .about-stats,
  .about-security-stack{grid-template-columns:1fr}
  .tech-grid{grid-template-columns:repeat(2,1fr)}
  .hero-buttons{flex-direction:column;align-items:center}
  .btn{width:100%;justify-content:center}
  .console-action{flex-direction:column;gap:8px}
  .console-btn{width:100%;justify-content:center}
  .console-body{padding:16px}
  .console-output{padding:12px;font-size:11px}
}
