/* ═══════════════════════════════════════════════════════════════
   H.E. OMAR SULTAN AL OLAMA — OFFICIAL LEADERSHIP WEBSITE
   AI Intelligence Interface Design System
   Designed & Managed by Creaa Designs | Digant Sharma
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ─── ROOT VARIABLES ─── */
:root {
  --void: #020204;
  --deep: #05050d;
  --surface: #080814;
  --elevated: #0c0c1e;
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.1);
  --cyan-glow: rgba(0, 212, 255, 0.25);
  --blue: #0055ff;
  --purple: #6e2fff;
  --gold: #c4a03a;
  --gold-bright: #ffd700;
  --orange: #ff6b35;
  --red: #ff3355;
  --green: #00ff88;
  --text-1: #f0f0ff;
  --text-2: #9090b8;
  --text-3: #50507a;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-b: rgba(0, 212, 255, 0.1);
  --glass-bh: rgba(0, 212, 255, 0.25);
  --font-d: 'Orbitron', 'Courier New', monospace;
  --font-b: 'Rajdhani', sans-serif;
  --font-t: 'Inter', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --nav-h: 72px;
  --pad: clamp(60px, 9vw, 120px);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--void);
  color: var(--text-1);
  font-family: var(--font-b);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
body.loaded { opacity: 1; }

/* ─── CUSTOM CURSOR ─── */
.cursor { position: fixed; pointer-events: none; z-index: 9999; top: 0; left: 0; }
.c-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.c-ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid rgba(0, 212, 255, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, border-color 0.2s;
}
.cursor.hovered .c-dot { width: 10px; height: 10px; }
.cursor.hovered .c-ring { width: 56px; height: 56px; border-color: rgba(0,212,255,0.7); }

/* ─── CANVAS ─── */
#neural-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ─── PAGE WRAPPER ─── */
.pw { position: relative; z-index: 1; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: var(--font-d); letter-spacing: 0.04em; line-height: 1.15; }

.lbl {
  font-family: var(--font-d);
  font-size: 0.62rem; letter-spacing: 0.35em;
  color: var(--cyan); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.lbl::before {
  content: ''; width: 28px; height: 1px;
  background: var(--cyan); flex-shrink: 0;
}

.stitle { font-size: clamp(1.9rem, 4.5vw, 3.6rem); color: var(--text-1); margin: 14px 0 20px; }
.stitle em { font-style: normal; color: var(--cyan); }
.sdesc { font-size: 1.05rem; color: var(--text-2); line-height: 1.85; max-width: 660px; font-family: var(--font-t); }

/* ─── GLASS CARD ─── */
.gc {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 10px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.gc::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.gc:hover { border-color: var(--glass-bh); transform: translateY(-5px); box-shadow: 0 24px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0,212,255,0.06); }
.gc:hover::after { opacity: 1; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px 34px; text-decoration: none;
  cursor: none; transition: all 0.3s var(--ease);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-p { background: var(--cyan); color: var(--void); border: none; }
.btn-p:hover { background: #fff; box-shadow: 0 0 40px rgba(0,212,255,0.45); transform: translateY(-2px); }
.btn-o { background: transparent; color: var(--cyan); border: 1px solid var(--cyan); }
.btn-o:hover { background: var(--cyan-dim); box-shadow: 0 0 30px rgba(0,212,255,0.2); transform: translateY(-2px); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(5,5,13,0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--glass-b);
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; flex-shrink: 0; }
.nl-name { font-family: var(--font-d); font-size: 0.78rem; color: var(--text-1); letter-spacing: 0.1em; line-height: 1; }
.nl-title { font-size: 0.58rem; color: var(--cyan); letter-spacing: 0.22em; font-family: var(--font-d); margin-top: 4px; }

.nav-links {
  display: flex; align-items: center;
  gap: clamp(18px, 2.5vw, 30px);
  margin-left: auto; list-style: none;
}
.nav-links a {
  font-family: var(--font-d); font-size: 0.58rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-2); text-decoration: none;
  position: relative; transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px; background: var(--cyan); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-ham {
  display: none; flex-direction: column;
  gap: 5px; cursor: none; margin-left: auto;
  background: none; border: none; padding: 8px;
}
.nav-ham span { display: block; width: 22px; height: 1px; background: var(--text-1); transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) clamp(20px, 5vw, 48px) 60px;
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1360px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.hero-eye {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.hero-eye-dot {
  width: 7px; height: 7px; background: var(--cyan);
  border-radius: 50%; flex-shrink: 0;
  animation: pdot 2.5s ease-in-out infinite;
}
@keyframes pdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.6)} }
.hero-eye-txt { font-family: var(--font-d); font-size: 0.58rem; letter-spacing: 0.35em; color: var(--cyan); text-transform: uppercase; }

.hero-h1 { font-size: clamp(2.2rem, 5.5vw, 5.2rem); font-weight: 900; line-height: 1.05; margin-bottom: 20px; }
.hero-h1 .pre { display: block; font-size: 0.32em; letter-spacing: 0.35em; color: var(--text-3); margin-bottom: 10px; font-weight: 400; }
.hero-h1 .name {
  display: block;
  background: linear-gradient(135deg, var(--text-1) 30%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-role {
  font-size: clamp(0.75rem, 1.5vw, 0.92rem); color: var(--gold);
  letter-spacing: 0.12em; font-family: var(--font-d);
  margin-bottom: 22px; font-weight: 400;
}
.hero-p { font-size: 1.05rem; color: var(--text-2); line-height: 1.85; margin-bottom: 36px; max-width: 500px; font-family: var(--font-t); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-kpis {
  display: flex; gap: clamp(20px, 3vw, 48px);
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.kpi-n { font-family: var(--font-d); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--cyan); display: block; line-height: 1; font-weight: 700; }
.kpi-l { font-size: 0.72rem; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; display: block; font-family: var(--font-b); }

/* ─── HERO IMAGE ─── */
.hero-img-wrap { position: relative; }
.hero-img-outer {
  padding: 2px;
  background: linear-gradient(135deg, var(--cyan), rgba(110,47,255,0.3), transparent);
  border-radius: 6px;
  position: relative;
}
.hero-img-inner {
  background: var(--deep); border-radius: 5px;
  overflow: hidden;
  min-height: 480px; max-height: 620px;
  position: relative;
}
.hero-img-inner img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: top center; display: block; }
.hero-dec {
  position: absolute; border: 1px solid rgba(0,212,255,0.18);
  border-radius: 4px; pointer-events: none;
}
.hero-dec.a { top: -22px; right: -22px; width: 90px; height: 90px; animation: fdec 7s ease-in-out infinite; }
.hero-dec.b { bottom: -22px; left: -22px; width: 55px; height: 55px; animation: fdec 9s ease-in-out infinite reverse; }
.hero-dec.c { top: 50%; right: -40px; transform: translateY(-50%) rotate(45deg); width: 30px; height: 30px; animation: fdec 5s ease-in-out infinite 0.5s; }
@keyframes fdec { 0%,100%{transform:translate(0,0) rotate(0deg)} 50%{transform:translate(4px,-10px) rotate(8deg)} }
.hero-scan {
  position: absolute; left: 0; right: 0;
  height: 2px; top: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.6;
  animation: scan 4s ease-in-out infinite;
}
@keyframes scan { 0%{top:0;opacity:0} 10%{opacity:0.6} 90%{opacity:0.6} 100%{top:100%;opacity:0} }

/* ─── SECTIONS ─── */
.sec { padding: var(--pad) clamp(20px, 5vw, 48px); position: relative; }
.container { max-width: 1360px; margin: 0 auto; width: 100%; }
.sec-hdr { margin-bottom: 56px; }

/* ─── GRID LAYOUTS ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.auto-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ─── IMAGE PANEL ─── */
.img-panel { position: relative; }
.img-frame { padding: 1px; background: linear-gradient(135deg, var(--cyan), transparent 50%, var(--purple)); border-radius: 6px; }
.img-frame-inner {
  background: var(--deep); border-radius: 5px;
  overflow: hidden; position: relative;
  min-height: 380px;
}
.img-frame-inner img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: top center; display: block; }

/* ─── STAT CARDS ─── */
.stat-card { padding: clamp(24px, 3vw, 36px); text-align: center; }
.stat-num {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; display: block; line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: 0.78rem; color: var(--text-2); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 12px; display: block; }

/* ─── FEATURE CARDS ─── */
.feat-card { padding: clamp(28px, 3vw, 44px); }
.feat-icon {
  width: 54px; height: 54px;
  border: 1px solid var(--glass-b); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; background: var(--cyan-dim); color: var(--cyan);
  transition: all 0.35s;
}
.gc:hover .feat-icon { border-color: var(--cyan); box-shadow: 0 0 20px rgba(0,212,255,0.2); }
.feat-title { font-family: var(--font-d); font-size: 0.9rem; color: var(--text-1); margin-bottom: 12px; }
.feat-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; font-family: var(--font-t); }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--cyan) 15%, var(--cyan) 85%, transparent);
}
.tl-item { position: relative; padding: 0 0 44px 32px; }
.tl-dot {
  position: absolute; left: -4px; top: 7px;
  width: 9px; height: 9px; background: var(--cyan);
  border-radius: 50%; box-shadow: 0 0 10px var(--cyan);
}
.tl-year { font-family: var(--font-d); font-size: 0.62rem; color: var(--cyan); letter-spacing: 0.25em; margin-bottom: 8px; }
.tl-title { font-size: 1.05rem; color: var(--text-1); margin-bottom: 10px; font-family: var(--font-d); }
.tl-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; font-family: var(--font-t); }

/* ─── QUOTE ─── */
.quote-blk { padding: clamp(32px, 4vw, 52px); border-left: 3px solid var(--cyan); position: relative; }
.quote-blk::before {
  content: '"'; font-family: var(--font-d); font-size: 8rem;
  color: rgba(0,212,255,0.07); position: absolute;
  top: -20px; left: 28px; line-height: 1; pointer-events: none;
}
.quote-txt { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--text-1); line-height: 1.75; font-style: italic; font-family: var(--font-t); }
.quote-by { margin-top: 20px; font-family: var(--font-d); font-size: 0.62rem; letter-spacing: 0.25em; color: var(--cyan); }

/* ─── INFOGRAPHIC ROWS ─── */
.infrow-item {
  padding: 22px 28px; background: var(--glass);
  border: 1px solid var(--glass-b);
  display: grid; grid-template-columns: 56px 1fr 100px;
  align-items: center; gap: 20px;
  transition: all 0.3s var(--ease);
  margin-bottom: 2px;
}
.infrow-item:hover { background: rgba(255,255,255,0.05); border-color: var(--glass-bh); }
.inf-num { font-family: var(--font-d); font-size: 1.7rem; color: var(--cyan); font-weight: 700; }
.inf-title { font-family: var(--font-d); font-size: 0.82rem; color: var(--text-1); margin-bottom: 4px; }
.inf-desc { font-size: 0.82rem; color: var(--text-2); font-family: var(--font-t); }
.inf-bar-bg { height: 3px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; }
.inf-bar { height: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue)); border-radius: 2px; transform-origin: left; transform: scaleX(0); transition: transform 1.4s var(--ease); }
.infrow-item.on .inf-bar { transform: scaleX(1); }

/* ─── GALLERY ─── */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.gal-item {
  position: relative; border: 1px solid var(--glass-b);
  border-radius: 8px; overflow: hidden;
  background: var(--deep); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.35s, transform 0.35s;
}
.gal-item:hover { border-color: var(--glass-bh); transform: translateY(-4px); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; padding: 0; transition: transform 0.5s; }
.gal-item:hover img { transform: scale(1.03); }
.gal-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(2,2,4,0.96), transparent);
  font-size: 0.75rem; color: var(--text-2); font-family: var(--font-t);
  transform: translateY(100%); transition: transform 0.35s;
}
.gal-item:hover .gal-cap { transform: translateY(0); }

/* ─── INSIGHTS GRID ─── */
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.ins-card { display: flex; flex-direction: column; }
.ins-img {
  aspect-ratio: 16/9; overflow: hidden;
  border-radius: 8px 8px 0 0; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.ins-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s; }
.ins-card:hover .ins-img img { transform: scale(1.04); }
.ins-body { padding: 26px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.ins-tag { font-family: var(--font-d); font-size: 0.58rem; letter-spacing: 0.22em; color: var(--cyan); text-transform: uppercase; margin-bottom: 12px; }
.ins-title { font-family: var(--font-d); font-size: 0.92rem; color: var(--text-1); line-height: 1.45; margin-bottom: 12px; }
.ins-excerpt { font-size: 0.88rem; color: var(--text-2); line-height: 1.75; font-family: var(--font-t); flex: 1; }
.ins-meta { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.72rem; color: var(--text-3); font-family: var(--font-d); letter-spacing: 0.1em; }

/* ─── CONTACT FORM ─── */
.c-form { display: grid; gap: 22px; }
.f-group { display: flex; flex-direction: column; gap: 8px; }
.f-label { font-family: var(--font-d); font-size: 0.6rem; letter-spacing: 0.28em; color: var(--text-3); text-transform: uppercase; }
.f-input, .f-textarea {
  background: var(--glass); border: 1px solid var(--glass-b);
  border-radius: 4px; padding: 14px 16px;
  color: var(--text-1); font-family: var(--font-t);
  font-size: 0.95rem; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s; resize: none;
}
.f-input:focus, .f-textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 22px rgba(0,212,255,0.1);
}
.f-textarea { min-height: 140px; }
.f-two { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* ─── PASSWORD PAGE ─── */
.pass-page {
  min-height: 100vh; display: flex;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pass-panel { width: 460px; max-width: calc(100vw - 40px); position: relative; z-index: 10; }
.pass-logo-ring {
  width: 84px; height: 84px;
  border: 1px solid rgba(0,212,255,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative;
}
.pass-logo-ring::before {
  content: ''; position: absolute; inset: -10px;
  border-radius: 50%; border: 1px solid rgba(0,212,255,0.1);
  animation: ring-pulse 3s ease-out infinite;
}
.pass-logo-ring::after {
  content: ''; position: absolute; inset: -20px;
  border-radius: 50%; border: 1px solid rgba(0,212,255,0.05);
  animation: ring-pulse 3s ease-out 1s infinite;
}
@keyframes ring-pulse { 0%{transform:scale(1);opacity:0.8} 100%{transform:scale(1.5);opacity:0} }
.pass-header { text-align: center; margin-bottom: 40px; }
.pass-sys-id { font-family: var(--font-d); font-size: 0.55rem; letter-spacing: 0.45em; color: var(--text-3); margin-bottom: 10px; }
.pass-title { font-family: var(--font-d); font-size: 1rem; color: var(--text-1); letter-spacing: 0.15em; }
.pass-sub { font-size: 0.8rem; color: var(--text-3); margin-top: 8px; font-family: var(--font-t); }

.terminal {
  background: rgba(0,0,0,0.65); border: 1px solid rgba(0,212,255,0.18);
  border-radius: 8px; padding: 28px 28px 32px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.term-bar {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 18px; border-bottom: 1px solid rgba(0,212,255,0.08);
  margin-bottom: 22px;
}
.term-dot { width: 8px; height: 8px; border-radius: 50%; }
.td-r { background: #ff5f57; } .td-y { background: #ffbd2e; } .td-g { background: #28c840; }
.term-label { font-family: var(--font-d); font-size: 0.55rem; color: var(--text-3); letter-spacing: 0.2em; margin-left: 6px; }

.term-out {
  font-family: 'Courier New', monospace; font-size: 0.78rem;
  color: var(--cyan); margin-bottom: 22px; min-height: 64px;
}
.t-line { display: flex; gap: 8px; margin-bottom: 5px; opacity: 0; animation: tl-in 0.3s forwards; }
.t-line.err { color: #ff4466; } .t-line.ok { color: var(--green); }
.t-prompt { color: var(--text-3); flex-shrink: 0; }
@keyframes tl-in { from{opacity:0;transform:translateY(4px)} to{opacity:1;transform:translateY(0)} }

.pass-lbl { font-family: var(--font-d); font-size: 0.58rem; letter-spacing: 0.3em; color: var(--text-3); display: block; margin-bottom: 10px; text-transform: uppercase; }
.pass-inp-wrap { position: relative; margin-bottom: 20px; }
.pass-inp {
  width: 100%; background: rgba(0,0,0,0.5);
  border: 1px solid rgba(0,212,255,0.2); border-radius: 4px;
  padding: 14px 50px 14px 16px;
  color: var(--cyan); font-family: 'Courier New', monospace;
  font-size: 0.95rem; letter-spacing: 0.25em; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pass-inp:focus { border-color: var(--cyan); box-shadow: 0 0 22px rgba(0,212,255,0.18); }
.pass-inp.err { border-color: var(--red); box-shadow: 0 0 22px rgba(255,51,85,0.22); animation: shake 0.45s; }
.pass-inp.ok { border-color: var(--green); box-shadow: 0 0 30px rgba(0,255,136,0.25); }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-8px)} 40%,80%{transform:translateX(8px)} }

.pass-eye {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); background: none;
  border: none; color: var(--text-3); cursor: none;
  padding: 4px; transition: color 0.3s;
}
.pass-eye:hover { color: var(--cyan); }

.pass-btn {
  width: 100%; padding: 16px;
  background: transparent; border: 1px solid var(--cyan);
  color: var(--cyan); font-family: var(--font-d);
  font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; cursor: none;
  position: relative; overflow: hidden; transition: all 0.3s var(--ease);
}
.pass-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--cyan); transform: translateX(-100%);
  transition: transform 0.4s var(--ease); z-index: 0;
}
.pass-btn:hover::before { transform: translateX(0); }
.pass-btn:hover { color: var(--void); }
.pass-btn span { position: relative; z-index: 1; }
.pass-btn.loading { opacity: 0.6; pointer-events: none; }

/* ─── ERROR / SUCCESS OVERLAYS ─── */
body.err-flash { animation: err-flash 0.12s steps(1) 5; }
@keyframes err-flash { 0%,100%{filter:none} 50%{filter:brightness(0.6) sepia(1) saturate(8) hue-rotate(285deg)} }

.unlock-ov {
  position: fixed; inset: 0; background: var(--void);
  z-index: 9999; display: flex; align-items: center;
  justify-content: center; animation: fade-in 0.5s ease;
}
@keyframes fade-in { from{opacity:0} to{opacity:1} }
.unlock-inner { text-align: center; }
.unlock-ring {
  width: 100px; height: 100px;
  border: 2px solid var(--cyan); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 60px rgba(0,212,255,0.4);
  animation: u-ring 1s ease-in-out infinite alternate;
}
@keyframes u-ring { from{box-shadow:0 0 30px rgba(0,212,255,0.3)} to{box-shadow:0 0 80px rgba(0,212,255,0.7)} }
.unlock-txt { font-family: var(--font-d); font-size: 1.4rem; color: var(--cyan); letter-spacing: 0.45em; margin-bottom: 10px; }
.unlock-sub { font-family: var(--font-d); font-size: 0.58rem; color: var(--text-3); letter-spacing: 0.3em; }

/* ─── TYPED CURSOR ─── */
.typed::after { content: '|'; animation: blink 0.75s infinite; color: var(--cyan); margin-left: 1px; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ─── SCROLL ANIMATIONS ─── */
.fu, .fl, .fr, .tl-item, .infrow-item {
  opacity: 0; transition: all 0.75s var(--ease);
}
.fu { transform: translateY(28px); }
.fl { transform: translateX(-28px); }
.fr { transform: translateX(28px); }
.tl-item { transform: translateX(-20px); }
.fu.on, .fl.on, .fr.on, .tl-item.on, .infrow-item.on { opacity: 1; transform: none; }

/* ─── SECTION DIVIDER ─── */
.sdiv { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--glass-b), transparent); margin: 0; }

/* ─── GLOW ORBS ─── */
.orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.orb.c { background: rgba(0,212,255,0.06); }
.orb.p { background: rgba(110,47,255,0.06); }
.orb.g { background: rgba(196,160,58,0.05); }

/* ─── HEXGRID ─── */
.hgrid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.025;
  background-image: linear-gradient(rgba(0,212,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── TAG BADGE ─── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-d); font-size: 0.58rem; letter-spacing: 0.18em;
  color: var(--cyan); background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2); border-radius: 3px;
  padding: 5px 12px; text-transform: uppercase;
}
.badge.gold { color: var(--gold); background: rgba(196,160,58,0.1); border-color: rgba(196,160,58,0.25); }
.badge.purple { color: #a07fff; background: rgba(110,47,255,0.1); border-color: rgba(110,47,255,0.25); }

/* ─── BORDER GRADIENT ─── */
.border-top-grad { border-top: 1px solid; border-image: linear-gradient(90deg, transparent, var(--cyan), transparent) 1; }

/* ─── FOOTER ─── */
.footer { border-top: 1px solid var(--glass-b); padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 48px) 36px; position: relative; }
.footer-grid {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.f-brand-name { font-family: var(--font-d); font-size: 0.9rem; color: var(--text-1); margin-bottom: 6px; }
.f-brand-role { font-size: 0.7rem; color: var(--cyan); letter-spacing: 0.18em; margin-bottom: 16px; }
.f-brand-desc { font-size: 0.82rem; color: var(--text-2); line-height: 1.75; font-family: var(--font-t); }
.f-col-title { font-family: var(--font-d); font-size: 0.6rem; letter-spacing: 0.28em; color: var(--cyan); text-transform: uppercase; margin-bottom: 20px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-links a { font-size: 0.82rem; color: var(--text-2); text-decoration: none; transition: color 0.3s; font-family: var(--font-t); }
.f-links a:hover { color: var(--text-1); }
.footer-btm {
  max-width: 1360px; margin: 0 auto;
  padding-top: 28px; display: flex;
  align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.f-credits { font-size: 0.78rem; color: var(--text-2); font-family: var(--font-t); }
.f-credits a { color: var(--cyan); text-decoration: none; }
.f-credits a:hover { text-decoration: underline; }
.f-socials { display: flex; gap: 12px; }
.f-soc {
  width: 34px; height: 34px; border: 1px solid var(--glass-b);
  border-radius: 4px; display: flex; align-items: center;
  justify-content: center; color: var(--text-3);
  text-decoration: none; transition: all 0.3s var(--ease);
}
.f-soc:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 18px rgba(0,212,255,0.2); }
.f-soc svg { width: 14px; height: 14px; }

/* ─── PAGE TRANSITION ─── */
.pt-bar {
  position: fixed; inset: 0; z-index: 9990;
  background: var(--void); transform: scaleX(0); transform-origin: left;
  pointer-events: none;
}
.pt-bar.in { animation: pt-in 0.4s var(--ease) forwards; }
.pt-bar.out { transform-origin: right; animation: pt-out 0.4s var(--ease) forwards; }
@keyframes pt-in { from{transform:scaleX(0)} to{transform:scaleX(1)} }
@keyframes pt-out { from{transform:scaleX(1)} to{transform:scaleX(0)} }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-inner, .two-col { grid-template-columns: 1fr; gap: 48px; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-img-wrap { max-width: 520px; margin: 0 auto; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav { padding: 0 18px; }
  .nav-links {
    position: fixed; inset: 0; background: var(--void);
    flex-direction: column; justify-content: center;
    gap: 36px; display: none; z-index: 900;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }
  .nav-ham { display: flex; }
  .three-col, .four-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-btm { flex-direction: column; align-items: flex-start; }
  .f-two { grid-template-columns: 1fr; }
  .infrow-item { grid-template-columns: 40px 1fr; }
  .infrow-item .inf-bar-bg { display: none; }
}
@media (max-width: 480px) {
  .hero-kpis { flex-wrap: wrap; gap: 24px; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
