:root {
  --bg: #090a0e;
  --surface: #11131a;
  --surface-light: #181b24;
  --text: #f2f1ec;
  --muted: #989aa4;
  --line: rgba(255,255,255,.11);
  --accent: #c7f464;
  --accent-dark: #a4d43e;
  --purple: #9381ff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text); font-family: "Outfit", sans-serif;
  overflow-x: hidden; line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
.noise { position: fixed; inset: 0; pointer-events: none; opacity: .025; z-index: 20; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
.cursor-glow { width: 420px; height: 420px; border-radius: 50%; background: rgba(147,129,255,.08); filter: blur(80px); position: fixed; pointer-events: none; transform: translate(-50%,-50%); z-index: -1; transition: opacity .2s; }
.nav { height: 80px; padding: 0 clamp(24px, 5vw, 80px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); position: absolute; top: 0; width: 100%; z-index: 10; }
.logo { font-size: 25px; font-weight: 800; letter-spacing: -1px; }.logo span { color: var(--accent); }
.nav nav { display: flex; gap: 32px; color: var(--muted); font-size: 14px; }.nav nav a { transition: color .2s; }.nav nav a:hover { color: var(--text); }
.nav-button { border: 1px solid var(--line); padding: 10px 16px; border-radius: 99px; font-size: 13px; transition: all .25s; }.nav-button:hover { background: var(--accent); color: #111; border-color: var(--accent); }
.section { padding-left: clamp(24px, 9vw, 140px); padding-right: clamp(24px, 9vw, 140px); }
.hero { min-height: 100vh; padding-top: 150px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 50px; position: relative; }
.eyebrow, .section-label { font-family: "DM Mono", monospace; color: var(--muted); font-size: 11px; letter-spacing: 1.4px; }
.status-dot { width: 8px; height: 8px; display: inline-block; background: var(--accent); border-radius: 50%; margin-right: 8px; box-shadow: 0 0 0 5px rgba(199,244,100,.1); }
.hero h1 { font-size: clamp(54px, 7vw, 108px); line-height: .95; letter-spacing: -5px; margin: 22px 0; font-weight: 700; }
.gradient-text { background: linear-gradient(90deg, var(--accent), #d9ff93, var(--purple)); -webkit-background-clip: text; color: transparent; }
.hero-description { max-width: 520px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; gap: 12px; margin: 34px 0 48px; }.primary-button, .secondary-button { padding: 14px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: transform .2s, background .2s; }.primary-button:hover,.secondary-button:hover { transform: translateY(-3px); }.primary-button { background: var(--accent); color: #10120d; }.primary-button span { margin-left: 10px; }.secondary-button { border: 1px solid var(--line); }
.hero-stats { display: flex; gap: clamp(20px, 4vw, 52px); border-top: 1px solid var(--line); padding-top: 22px; }.hero-stats div { display: flex; gap: 10px; align-items: center; }.hero-stats strong { font-size: 23px; }.hero-stats span { color: var(--muted); font-size: 10px; line-height: 1.25; }
.hero-visual { height: min(660px, 72vh); position: relative; display: grid; place-items: center; }.image-frame { width: min(370px, 75vw); height: min(510px, 65vh); position: relative; overflow: hidden; border-radius: 190px 190px 16px 16px; background: #20222b; border: 1px solid var(--line); }.image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.85) contrast(1.05); transition: transform .8s; }.image-frame:hover img { transform: scale(1.04); }.image-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(9,10,14,.3)); }
.orbit { position: absolute; border: 1px solid rgba(199,244,100,.12); border-radius: 50%; animation: spin 16s linear infinite; }.orbit-one { width: 500px; height: 500px; }.orbit-two { width: 620px; height: 620px; border-style: dashed; animation-duration: 28s; animation-direction: reverse; }
.floating-card { position: absolute; background: rgba(20,22,29,.86); border: 1px solid var(--line); backdrop-filter: blur(14px); padding: 13px 16px; border-radius: 10px; display: flex; gap: 11px; align-items: center; box-shadow: 0 20px 40px rgba(0,0,0,.3); }.floating-card small { display: block; color: var(--muted); font-family: "DM Mono"; font-size: 8px; letter-spacing: 1px; }.floating-card strong { font-size: 13px; }.card-icon,.shield { color: var(--accent); font-size: 20px; }.card-top { top: 16%; left: 0; }.card-bottom { bottom: 15%; right: -3%; }
.scroll-indicator { position: absolute; bottom: 28px; left: clamp(24px, 9vw, 140px); color: var(--muted); font: 9px "DM Mono"; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }.scroll-indicator i { display: block; width: 50px; height: 1px; background: var(--accent); animation: pulse 2s infinite; }
.about { padding-top: 140px; padding-bottom: 140px; border-top: 1px solid var(--line); }.section-label span { color: var(--accent); margin-right: 15px; }.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12vw; margin-top: 60px; }.about h2,.section-heading h2,.cert-header h2,.contact h2 { font-size: clamp(42px, 5vw, 76px); line-height: 1; letter-spacing: -3px; }.about h2 em,.section-heading em,.cert-header em,.contact h2 em { font-family: Georgia, serif; font-weight: 400; color: var(--accent); }.about-text p { color: var(--muted); font-size: 18px; margin-bottom: 20px; }.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 35px; }.about-tags span,.tech-list span { border: 1px solid var(--line); padding: 8px 10px; border-radius: 99px; color: #c4c5ca; font: 10px "DM Mono"; }
.projects { padding-top: 120px; padding-bottom: 120px; background: #0d0f15; }.section-heading { max-width: 780px; }.section-heading h2 { margin-top: 30px; }.project-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 70px; }.project-card { min-height: 390px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 30px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; transition: transform .35s, border-color .35s; }.project-card:hover { transform: translateY(-7px); border-color: rgba(199,244,100,.4); }.project-card.featured { grid-column: span 2; min-height: 420px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; }.project-number { position: absolute; right: 22px; top: 18px; color: #353844; font: 12px "DM Mono"; }.project-type { color: var(--accent); font: 10px "DM Mono"; letter-spacing: 1.5px; margin-bottom: 14px; }.project-card h3 { font-size: 32px; letter-spacing: -1px; margin-bottom: 14px; }.project-card p:not(.project-type) { color: var(--muted); max-width: 580px; }.tech-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }.project-links { display: flex; gap: 20px; margin-top: 22px; color: var(--accent); font-size: 13px; }.project-art { min-height: 120px; display: grid; place-items: center; color: var(--accent); }.art-cards { font-size: 60px; grid-template-columns: repeat(3, 1fr); gap: 5px; opacity: .75; }.art-cards span { border: 1px solid var(--line); padding: 22px; border-radius: 8px; background: #151821; }.art-network { position: absolute; right: 0; bottom: 0; width: 42%; height: 45%; }.art-network i,.art-network b { width: 12px; height: 12px; background: var(--accent); border-radius: 50%; position: absolute; }.art-network b { width: 24px; height: 24px; left: 48%; top: 43%; box-shadow: 0 0 40px var(--accent); }.art-network i:nth-child(1){left:10%;top:20%}.art-network i:nth-child(2){right:12%;top:16%}.art-network i:nth-child(3){left:15%;bottom:15%}.art-network i:nth-child(4){right:12%;bottom:15%}.art-terminal { font: 60px "DM Mono"; color: var(--purple); }.art-shield { font-size: 80px; color: var(--accent); }
.certifications { padding-top: 130px; padding-bottom: 130px; }.cert-header { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin: 45px 0 60px; }.cert-header p { color: var(--muted); max-width: 340px; }.cert-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); }.cert-card { padding: 25px 15px; display: flex; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); transition: background .25s; }.cert-card:nth-child(odd){border-right:1px solid var(--line)}.cert-card:hover { background: var(--surface); }.cert-badge { width: 60px; height: 60px; flex: 0 0 60px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; font: 13px "DM Mono"; }.cert-badge span { color: var(--accent); }.cert-card h3 { font-size: 16px; }.cert-card p { font-size: 12px; color: var(--muted); }.check { margin-left: auto; color: var(--accent); }
.contact { padding-top: 160px; padding-bottom: 160px; background: #11141a; position: relative; overflow: hidden; }.contact-orbit { position: absolute; width: 900px; height: 900px; border: 1px solid rgba(199,244,100,.09); border-radius: 50%; right: -300px; top: -350px; }.contact-content { max-width: 900px; position: relative; }.contact h2 { margin: 24px 0; }.contact-content > p:not(.eyebrow) { color: var(--muted); font-size: 17px; max-width: 600px; }.contact-links { margin-top: 55px; border-top: 1px solid var(--line); }.contact-link { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); transition: padding .25s; }.contact-link:hover { padding-left: 10px; }.link-label { color: var(--muted); font: 10px "DM Mono"; }.contact-link strong { font-size: clamp(16px, 2vw, 24px); }.arrow { color: var(--accent); font-size: 24px; }
footer { padding: 30px clamp(24px, 9vw, 140px); display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }footer div{display:flex;gap:20px}footer a:hover{color:var(--accent)}
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes spin { to { transform: rotate(360deg); } } @keyframes pulse { 50% { transform: scaleX(.5); transform-origin:left; opacity:.4; } }
@media (max-width: 800px) {
  .nav nav { display: none; }.nav-button { display:none; }.hero { grid-template-columns: 1fr; padding-top: 125px; padding-bottom: 90px; }.hero-visual { height: 560px; }.orbit-two { width: 500px; height: 500px; }.about-grid,.cert-header { grid-template-columns: 1fr; display: grid; }.project-grid { grid-template-columns: 1fr; }.project-card.featured { grid-column: auto; grid-template-columns: 1fr; }.cert-grid { grid-template-columns: 1fr; }.cert-card:nth-child(odd) { border-right: none; }.contact-link { grid-template-columns: 90px 1fr auto; }.contact-link strong { font-size: 16px; }.scroll-indicator { display:none; }
}
@media (max-width: 480px) { .hero h1 { letter-spacing:-3px; }.hero-stats { gap:15px; }.hero-stats strong{font-size:18px}.hero-stats span{font-size:8px}.image-frame{height:470px}.card-top{left:-5px}.card-bottom{right:-8px}.hero-visual{height:520px}.orbit-one{width:400px;height:400px}.orbit-two{width:480px;height:480px}footer{flex-direction:column;text-align:center}.section{padding-left:22px;padding-right:22px} }


.research { padding-top: 130px; padding-bottom: 130px; background: #0b0d12; }
.research-intro { color: var(--muted); max-width: 650px; font-size: 17px; margin-top: 25px; }
.research-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 65px; }
.research-card { min-height: 390px; padding: 30px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); transition: transform .35s, border-color .35s, background .35s; }
.research-card:hover { transform: translateY(-7px); border-color: rgba(147,129,255,.5); background: #151822; }
.research-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line); color: var(--accent); font-size: 24px; margin-bottom: 35px; }
.research-card h3 { font-size: 28px; letter-spacing: -1px; margin-bottom: 14px; }
.research-card p:not(.project-type) { color: var(--muted); }
@media (max-width: 800px) { .research-grid { grid-template-columns: 1fr; } }
