:root {
  --bg: #0c0e16;
  --bg-elevated: #12141e;
  --bg-card: #161824;
  --bg-terminal: #0d0f17;
  --cyan: #00e5c7;
  --cyan-dim: rgba(0,229,199,0.07);
  --cyan-glow: rgba(0,229,199,0.25);
  --amber: #ffa726;
  --text: #c8cdd5;
  --text-dim: #6a7080;
  --text-bright: #f0f2f5;
  --border: rgba(255,255,255,0.05);
  --border-hover: rgba(0,229,199,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; cursor: crosshair; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a, button, input, textarea, .btn-main, .btn-outline, .nav-cta, .form-btn, .lang-btn {
  cursor: pointer;
}

body::before {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

#space-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.nebula { position: fixed; pointer-events: none; z-index: 0; }
.nebula-1 {
  width: 900px; height: 900px; top: -200px; left: -200px;
  background: radial-gradient(ellipse, rgba(0,229,199,0.06) 0%, rgba(0,100,180,0.03) 40%, transparent 70%);
  filter: blur(60px); animation: nebulaDrift 20s ease-in-out infinite;
}
.nebula-2 {
  width: 700px; height: 700px; top: 30%; right: -150px;
  background: radial-gradient(ellipse, rgba(100,60,200,0.05) 0%, rgba(0,229,199,0.025) 40%, transparent 70%);
  filter: blur(80px); animation: nebulaDrift 25s ease-in-out infinite reverse;
}
.nebula-3 {
  width: 600px; height: 600px; bottom: 10%; left: 20%;
  background: radial-gradient(ellipse, rgba(0,150,255,0.04) 0%, rgba(139,92,246,0.02) 50%, transparent 70%);
  filter: blur(70px); animation: nebulaDrift 18s ease-in-out infinite; animation-delay: -5s;
}
.nebula-4 {
  width: 500px; height: 500px; top: 60%; right: 30%;
  background: radial-gradient(ellipse, rgba(0,229,199,0.035) 0%, transparent 60%);
  filter: blur(90px); animation: nebulaDrift 22s ease-in-out infinite; animation-delay: -10s;
}
@keyframes nebulaDrift {
  0%, 100% { transform: translate(0,0) scale(1); opacity:1; }
  25% { transform: translate(40px,-30px) scale(1.08); opacity:0.8; }
  50% { transform: translate(-20px,40px) scale(0.95); opacity:1; }
  75% { transform: translate(30px,20px) scale(1.05); opacity:0.85; }
}
.scanline {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.012) 2px, rgba(0,0,0,0.012) 4px);
}


nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 48px; height: 72px;
  background: rgba(12,14,22,0.85);
  backdrop-filter: blur(30px) saturate(1.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(12,14,22,0.95);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
  border-bottom-color: rgba(0,229,199,0.12);
}
.logo-wrap {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-mark-svg {
  filter: drop-shadow(0 0 12px rgba(0,229,199,0.3));
  transition: filter 0.3s;
}
.logo-wrap:hover .logo-mark-svg {
  filter: drop-shadow(0 0 20px rgba(0,229,199,0.5));
}
.logo-text {
  font-size: 17px; font-weight: 700; letter-spacing: 3px;
  color: var(--text-bright); text-transform: uppercase;
}
.nav-center { display: flex; gap: 36px; }
.nav-center a {
  font-size: 13px; color: var(--text); text-decoration: none;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  transition: color 0.3s; position: relative;
}
.nav-center a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--cyan); transition: width 0.3s;
}
.nav-center a:hover { color: var(--cyan); }
.nav-center a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-btn {
  font-family: 'Space Mono', monospace; font-size: 11px;
  color: var(--text); letter-spacing: 1px; cursor: pointer;
  background: none; border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px; border-radius: 6px; transition: all 0.3s;
}
.lang-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.nav-cta {
  font-size: 13px; font-weight: 600; color: var(--bg);
  background: var(--cyan); padding: 10px 24px; border-radius: 8px;
  text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.3s; box-shadow: 0 0 20px var(--cyan-glow);
}
.nav-cta:hover { box-shadow: 0 0 40px var(--cyan-glow); transform: translateY(-1px); }

.tw {
  background: var(--bg-terminal); border-radius: 16px;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35); position: relative;
}
.tw::after {
  content: ''; position: absolute; inset: -1px; border-radius: 16px; padding: 1px;
  background: linear-gradient(135deg, rgba(0,229,199,0.12), transparent 40%, transparent 60%, rgba(255,167,38,0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.tw-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}
.tw-dot { width: 12px; height: 12px; border-radius: 50%; }
.tw-dot.r { background: #ff5f57; }
.tw-dot.y { background: #febc2e; }
.tw-dot.g { background: #28c840; }
.tw-title {
  flex: 1; text-align: center; font-family: 'Space Mono', monospace;
  font-size: 12px; color: var(--text-dim);
}
.tw-body {
  padding: 32px; font-family: 'Space Mono', monospace;
  font-size: 14px; line-height: 2.1; color: var(--text-dim);
}
.tw-body .cmd { color: var(--cyan); }
.tw-body .flag { color: var(--amber); }
.tw-body .ok { color: #4caf50; }
.tw-body .err { color: #ef5350; }
.tw-body .comment { color: #4a5060; font-style: italic; }
.tw-body .str { color: #81c784; }
.tw-body .kw { color: #ce93d8; }
.tw-body .fn { color: #64b5f6; }
.tw-body .num { color: var(--amber); }

/* Hero terminal animation */
.hero .tw .ln { opacity: 0; animation: typeIn 0.4s ease forwards; }
.hero .tw .ln:nth-child(1) { animation-delay: 0.3s; }
.hero .tw .ln:nth-child(2) { animation-delay: 0.8s; }
.hero .tw .ln:nth-child(3) { animation-delay: 1.3s; }
.hero .tw .ln:nth-child(4) { animation-delay: 1.8s; }
.hero .tw .ln:nth-child(5) { animation-delay: 2.3s; }
.hero .tw .ln:nth-child(6) { animation-delay: 2.8s; }
.hero .tw .ln:nth-child(7) { animation-delay: 3.3s; }
.hero .tw .ln:nth-child(8) { animation-delay: 3.5s; }
@keyframes typeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 48px 100px; position: relative;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Mono', monospace; font-size: 11px;
  color: var(--cyan); letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 6px;
  background: var(--cyan-dim); border: 1px solid rgba(0,229,199,0.12);
  margin-bottom: 32px;
}
.hero-badge .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 {
  font-size: 62px; font-weight: 800; line-height: 1.05;
  color: var(--text-bright); letter-spacing: -2px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--cyan), #4dd0e1, var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%; animation: gradShift 6s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-desc {
  font-size: 17px; color: var(--text-dim); line-height: 1.8;
  margin-top: 28px; max-width: 480px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; margin-top: 44px; }
.btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--bg);
  background: linear-gradient(135deg, var(--cyan), #00b89c);
  padding: 16px 32px; border-radius: 12px; border: none; cursor: pointer;
  box-shadow: 0 4px 30px var(--cyan-glow);
  transition: all 0.3s; letter-spacing: 0.5px; font-family: 'Outfit', sans-serif;
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--cyan-glow); }
.btn-main svg { width: 16px; height: 16px; }
.btn-outline {
  font-size: 14px; font-weight: 500; color: var(--text);
  background: transparent; padding: 16px 32px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08); cursor: pointer;
  transition: all 0.3s; font-family: 'Outfit', sans-serif;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.hero-macbook {
  position: relative;
  animation: macFloat 6s ease-in-out infinite;
}
@keyframes macFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mac-lid {
  background: #1a1c24;
  border-radius: 12px;
  padding: 12px 12px 16px;
  position: relative;
  border: 2px solid #2e313a;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(0,229,199,0.05);
}
/* Camera notch */
.mac-lid::before {
  content: '';
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: #111318;
  border: 1px solid #2e313a;
  z-index: 2;
}

.mac-screen {
  background: #0a0c10;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.03);
}
.mac-titlebar {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px;
  background: #161820;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mac-dot { width: 8px; height: 8px; border-radius: 50%; }
.mac-dot-r { background: #ff5f57; }
.mac-dot-y { background: #febc2e; }
.mac-dot-g { background: #28c840; }
.mac-title {
  font-family: 'Space Mono', monospace; font-size: 10px;
  color: rgba(255,255,255,0.2); margin-left: 8px;
}
.mac-terminal {
  padding: 14px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  line-height: 1.7;
}
.mac-line { white-space: nowrap; }
.mc { color: #555; }
.mw { color: #00e5c7; }
.mf { color: #4dd0e1; }
.mn { color: #ffa726; }
.mg { color: #28c840; }
.mr { color: #ff5f57; font-weight: 700; }
.my { color: #febc2e; }
.mac-cursor {
  display: inline-block; width: 7px; height: 14px;
  background: #00e5c7;
  animation: cursorBlink 1s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.mac-stand-neck {
  width: 20%; height: 28px; margin: 0 auto;
  background: linear-gradient(90deg, #24262e, #2e313a, #24262e);
  border-left: 1px solid #35383f;
  border-right: 1px solid #35383f;
}
.mac-stand-base {
  width: 45%; height: 6px; margin: 0 auto;
  background: linear-gradient(180deg, #2e313a, #22242c);
  border-radius: 0 0 6px 6px;
  border: 1px solid #35383f;
  border-top: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.mac-reflection {
  width: 60%; height: 40px; margin: 8px auto 0;
  background: radial-gradient(ellipse, rgba(0,229,199,0.035) 0%, transparent 70%);
  filter: blur(12px);
}

/* Hide keyboard parts */
.mac-body { transform-style: flat; }
.mac-hinge, .mac-base, .mac-shadow, .mac-notch { display: none; }

.section { padding: 140px 48px; position: relative; z-index: 1; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.sec-label {
  font-family: 'Space Mono', monospace; font-size: 11px;
  color: var(--cyan); letter-spacing: 3px; text-transform: uppercase;
}
.sec-title {
  font-size: 42px; font-weight: 800; color: var(--text-bright);
  margin-top: 12px; letter-spacing: -1px;
}
.sec-line {
  width: 48px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  margin-top: 20px;
}

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 64px;
}
.svc {
  background: var(--bg-card); border-radius: 16px;
  border: 1px solid var(--border); padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.svc:hover { border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  border: 1px solid var(--border); background: var(--bg-elevated);
}
.svc h3 { font-size: 18px; font-weight: 700; color: var(--text-bright); margin-bottom: 10px; }
.svc p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.svc-tag {
  font-family: 'Space Mono', monospace; font-size: 10px;
  color: var(--cyan); background: var(--cyan-dim);
  padding: 4px 10px; border-radius: 4px; letter-spacing: 0.5px;
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text h3 {
  font-size: 36px; font-weight: 800; color: var(--text-bright);
  line-height: 1.2; letter-spacing: -1px; margin-top: 16px;
}
.about-text h3 span { color: var(--cyan); }
.about-text p {
  font-size: 15px; color: var(--text-dim); line-height: 1.9;
  margin-top: 20px; font-weight: 300;
}
.about-features { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.about-feat {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--text); font-weight: 400;
}
.about-feat .check {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--cyan-dim); border: 1px solid rgba(0,229,199,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 14px; flex-shrink: 0;
}

.stats-section {
  padding: 100px 48px; position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: ''; position: absolute; right: -20px; top: 15%;
  height: 70%; width: 1px; background: var(--border);
}
.stat-num {
  font-size: 56px; font-weight: 900; letter-spacing: -3px;
  color: var(--text-bright);
}
.stat-num .accent { color: var(--cyan); }
.stat-desc {
  font-size: 13px; color: var(--text-dim); margin-top: 8px;
  letter-spacing: 1px; text-transform: uppercase; font-weight: 400;
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info h3 {
  font-size: 36px; font-weight: 800; color: var(--text-bright);
  letter-spacing: -1px; margin-top: 16px; line-height: 1.2;
}
.contact-info h3 span { color: var(--cyan); }
.contact-info > p {
  font-size: 15px; color: var(--text-dim); line-height: 1.8;
  margin-top: 16px; font-weight: 300;
}
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: center; gap: 16px; }
.cd-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cyan-dim); border: 1px solid rgba(0,229,199,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 18px;
}
.cd-label {
  font-size: 11px; color: var(--text-dim); letter-spacing: 1px;
  text-transform: uppercase;
}
.cd-val { font-size: 14px; color: var(--text); margin-top: 2px; }

.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 44px; position: relative;
}
.contact-form::after {
  content: ''; position: absolute; inset: -1px; border-radius: 20px; padding: 1px;
  background: linear-gradient(180deg, rgba(0,229,199,0.1), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 20px; }
.fg label {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--text-dim); margin-bottom: 8px; letter-spacing: 0.5px;
}
.fg input, .fg textarea {
  width: 100%; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px; color: var(--text-bright); font-size: 14px;
  font-family: 'Outfit', sans-serif; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.fg input:focus, .fg textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-dim);
}
.fg textarea { height: 130px; resize: none; }
.form-btn {
  width: 100%; padding: 16px; border: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), #00b89c);
  color: var(--bg); font-size: 15px; font-weight: 700;
  font-family: 'Outfit', sans-serif; cursor: pointer;
  letter-spacing: 0.5px; transition: all 0.3s;
  box-shadow: 0 4px 24px var(--cyan-glow);
}
.form-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--cyan-glow); }

footer {
  padding: 40px 48px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 1;
}
.footer-left { font-size: 13px; color: var(--text-dim); font-weight: 300; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 12px; color: var(--text-dim); text-decoration: none;
  transition: color 0.3s; letter-spacing: 1px; text-transform: uppercase;
}
.footer-links a:hover { color: var(--cyan); }

.glitch {
  position: relative;
  display: inline-block;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}
.glitch::before {
  animation: glitch1 8s infinite;
  color: var(--cyan);
  z-index: -1;
}
.glitch::after {
  animation: glitch2 8s infinite;
  color: var(--amber);
  z-index: -1;
}
@keyframes glitch1 {
  0%, 90%, 100% { opacity: 0; transform: none; clip-path: none; }
  91% { opacity: 0.8; transform: translateX(-3px); clip-path: inset(20% 0 40% 0); }
  92% { opacity: 0; }
  95% { opacity: 0.6; transform: translateX(2px); clip-path: inset(60% 0 10% 0); }
  96% { opacity: 0; }
}
@keyframes glitch2 {
  0%, 90%, 100% { opacity: 0; transform: none; clip-path: none; }
  91.5% { opacity: 0.8; transform: translateX(3px); clip-path: inset(50% 0 20% 0); }
  92.5% { opacity: 0; }
  95.5% { opacity: 0.6; transform: translateX(-2px); clip-path: inset(10% 0 70% 0); }
  96.5% { opacity: 0; }
}

#matrix-rain {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.06;
}

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 110;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text-bright); border-radius: 2px;
  position: absolute; left: 0;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(12,14,22,0.95);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 20px; color: var(--text); text-decoration: none;
  letter-spacing: 3px; text-transform: uppercase; font-weight: 500;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--cyan); }

.svc::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(0,229,199,0.03) 50%, transparent 60%);
  pointer-events: none;
  transition: none;
}
.svc:hover::after {
  animation: cardScan 1.2s ease-in-out;
}
@keyframes cardScan {
  0% { top: -100%; }
  100% { top: 200%; }
}

.status-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  height: 32px;
  background: rgba(12,14,22,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 1px; color: var(--text-dim);
}
.status-bar .sb-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4caf50; box-shadow: 0 0 6px #4caf50;
  display: inline-block;
}
.status-bar .sb-sep {
  color: rgba(255,255,255,0.08);
}
.status-bar .sb-val { color: var(--cyan); }

.tw-cursor {
  display: inline-block; width: 8px; height: 16px;
  background: var(--cyan); margin-left: 4px;
  vertical-align: middle;
  animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-badge, .hero h1, .hero-desc, .hero-actions, .hero .tw {
  opacity: 0; transform: translateY(30px);
  animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-badge { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.3s; }
.hero-desc { animation-delay: 0.5s; }
.hero-actions { animation-delay: 0.7s; }
.hero .tw { animation-delay: 0.4s; }
@keyframes heroEntrance {
  to { opacity: 1; transform: translateY(0); }
}

.stat {
  transition: transform 0.3s;
  padding: 20px 0; border-radius: 12px;
}
.stat:hover {
  transform: translateY(-4px);
}
.stat:hover .stat-num {
  text-shadow: 0 0 30px var(--cyan-glow), 0 0 60px rgba(0,229,199,0.1);
}
.stat-num { transition: text-shadow 0.3s; }

.security-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 64px;
}
.sec-item {
  display: flex; gap: 16px; padding: 28px 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; transition: all 0.3s;
}
.sec-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.sec-item-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: var(--cyan-dim); border: 1px solid rgba(0,229,199,0.1);
  display: flex; align-items: center; justify-content: center;
}
.sec-item h4 {
  font-size: 15px; font-weight: 700; color: var(--text-bright);
  margin-bottom: 6px;
}
.sec-item p {
  font-size: 13px; color: var(--text-dim); line-height: 1.6;
}

.method-flow {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; margin-top: 64px; flex-wrap: wrap;
}
.method-step {
  flex: 1; min-width: 130px; max-width: 180px;
  text-align: center; padding: 24px 12px;
  position: relative;
}
.method-num {
  font-family: 'Space Mono', monospace; font-size: 28px;
  font-weight: 700; color: var(--cyan); opacity: 0.3;
  margin-bottom: 8px;
}
.method-name {
  font-size: 14px; font-weight: 700; color: var(--text-bright);
  letter-spacing: 0.5px; margin-bottom: 8px;
}
.method-step p {
  font-size: 12px; color: var(--text-dim); line-height: 1.5;
}
.method-arrow {
  font-size: 20px; color: var(--cyan); opacity: 0.3;
  display: flex; align-items: center;
  padding-top: 32px; font-family: 'Space Mono', monospace;
}

.tools-strip {
  margin-top: 64px; padding: 32px 0;
  border-top: 1px solid var(--border);
}
.tools-label {
  font-family: 'Space Mono', monospace; font-size: 11px;
  color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; text-align: center;
}
.tools-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.tool-badge {
  font-family: 'Space Mono', monospace; font-size: 11px;
  color: var(--text-dim); background: var(--bg-card);
  border: 1px solid var(--border); padding: 8px 16px;
  border-radius: 8px; letter-spacing: 0.5px;
  transition: all 0.3s;
}
.tool-badge:hover {
  border-color: var(--cyan); color: var(--cyan);
  box-shadow: 0 0 16px rgba(0,229,199,0.1);
}

.case-tabs {
  display: flex; gap: 8px; margin-top: 40px; margin-bottom: 40px; flex-wrap: wrap;
}
.case-tab {
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text-dim);
  padding: 10px 20px; border-radius: 6px; font-size: 13px; font-family: 'Space Mono', monospace;
  transition: all .3s;
}
.case-tab:hover { border-color: var(--border-hover); color: var(--text); }
.case-tab.active {
  background: var(--cyan-dim); border-color: var(--cyan); color: var(--cyan);
}
.case-panel { display: none; animation: fadeIn .4s ease; }
.case-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.case-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.case-text > p {
  font-size: 15px; color: var(--text-dim); line-height: 1.8;
  font-weight: 300;
}
.case-stats {
  display: flex; gap: 32px; margin-top: 36px;
}
.case-stat { text-align: center; }
.case-stat-num {
  font-size: 42px; font-weight: 900; color: var(--text-bright);
  letter-spacing: -2px;
}
.case-stat-num.case-critical { color: #ef5350; }
.case-stat-label {
  font-size: 11px; color: var(--text-dim); margin-top: 4px;
  letter-spacing: 1px; text-transform: uppercase;
}

.certs-section {
  padding: 80px 48px; position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.certs-inner { max-width: 1200px; margin: 0 auto; }
.certs-grid {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 20px; margin-top: 40px;
}
.cert-badge {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 12px;
  transition: all 0.3s;
}
.cert-badge:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.cert-icon {
  font-family: 'Space Mono', monospace; font-size: 14px;
  font-weight: 700; color: var(--cyan);
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--cyan-dim); border: 1px solid rgba(0,229,199,0.12);
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.5px;
}
.cert-name {
  font-size: 12px; color: var(--text-dim); line-height: 1.4;
}

.incident-banner {
  padding: 0 48px; position: relative; z-index: 1;
}
.incident-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 32px 40px;
  background: rgba(239,83,80,0.06);
  border: 1px solid rgba(239,83,80,0.2);
  border-radius: 16px;
}
.incident-icon { color: #ef5350; flex-shrink: 0; }
.incident-text { flex: 1; }
.incident-text h3 {
  font-size: 18px; font-weight: 700; color: #ef5350;
  margin-bottom: 4px;
}
.incident-text p {
  font-size: 14px; color: var(--text-dim); line-height: 1.6;
}
.incident-btn {
  font-size: 13px; font-weight: 700; color: #fff;
  background: #ef5350; padding: 14px 28px; border-radius: 10px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(239,83,80,0.25);
}
.incident-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(239,83,80,0.35);
}

.free-audit-section {
  padding: 60px 48px; position: relative; z-index: 1;
}
.free-audit-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative; overflow: hidden;
}
.free-audit-text h3 {
  font-size: 24px; font-weight: 800; color: var(--text-bright);
  margin-bottom: 8px;
}
.free-audit-text p {
  font-size: 14px; color: var(--text-dim); line-height: 1.6;
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 48px; }
  .hero-macbook { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .case-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat:not(:last-child)::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .incident-inner { flex-direction: column; text-align: center; }
  .free-audit-inner { flex-direction: column; text-align: center; }
  .method-arrow { display: none; }
  .method-flow { gap: 8px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-center { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .section { padding: 80px 20px; }
  .hero { padding: 120px 20px 60px; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .btn-main, .btn-outline { width: 100%; justify-content: center; }
  .sec-title { font-size: 32px; }
  .stats-section { padding: 60px 20px; }
  .stat-num { font-size: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .about-text h3, .contact-info h3 { font-size: 28px; }
  .contact-form { padding: 28px; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 20px; }
  .tw-body { padding: 16px; font-size: 11px; }
  .security-grid { grid-template-columns: 1fr; }
  .case-stats { flex-direction: row; gap: 20px; }
  .case-stat-num { font-size: 32px; }
  .case-tabs { gap: 6px; }
  .case-tab { padding: 8px 14px; font-size: 11px; }
  .certs-section { padding: 60px 20px; }
  .incident-banner { padding: 0 20px; }
  .incident-inner { padding: 24px; }
  .free-audit-section { padding: 40px 20px; }
  .free-audit-inner { padding: 28px; }
  .free-audit-text h3 { font-size: 20px; }
  .method-step { min-width: 100px; padding: 16px 8px; }
  .method-step p { display: none; }
}

.kubis-teaser { position: relative; overflow: hidden; }
.kubis-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,255,65,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.kubis-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.kubis-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.kubis-logo { width: 52px; height: 52px; }
.kubis-name {
  font-family: 'Space Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: #00ff41;
  letter-spacing: 2px;
}

.kubis-teaser .badge {
  background: rgba(0,255,65,0.1);
  border: 1px solid rgba(0,255,65,0.3);
  color: #00ff41;
}

.kubis-teaser h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin: 16px 0;
  line-height: 1.2;
}

.kubis-desc {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.kubis-features-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.kubis-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0,255,65,0.05);
  border: 1px solid rgba(0,255,65,0.12);
  border-radius: 8px;
  transition: border-color 0.3s, background 0.3s;
}
.kubis-feat:hover {
  border-color: rgba(0,255,65,0.35);
  background: rgba(0,255,65,0.1);
}
.kubis-feat svg { width: 22px; height: 22px; flex-shrink: 0; }
.kubis-feat span {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.kubis-btn {
  background: linear-gradient(135deg, #00ff41, #00cc33);
  color: #0c0e16;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.3s;
}
.kubis-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,255,65,0.3);
}

.kubis-teaser-terminal .terminal {
  border-color: rgba(0,255,65,0.2);
  box-shadow: 0 0 40px rgba(0,255,65,0.08);
}
.kubis-teaser-terminal .terminal-header {
  border-bottom-color: rgba(0,255,65,0.15);
}
.kubis-teaser-terminal .terminal-title { color: #00ff41; }
.kubis-teaser-terminal .line.green { color: #00ff41; }
.kubis-teaser-terminal .line.dim { color: rgba(255,255,255,0.4); }
.kubis-teaser-terminal .prompt { color: #00ff41; margin-right: 8px; }

@media (max-width: 768px) {
  .kubis-teaser-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .kubis-features-mini {
    grid-template-columns: 1fr;
  }
}
