* { box-sizing: border-box; margin: 0; padding: 0; }
:root { --navy:#071936; --navy-2:#0d2a55; --blue:#1d4f91; --steel:#d7dce3; --soft:#f5f7fb; --white:#fff; --charcoal:#101828; --muted:#667085; --line:rgba(15,23,42,.12); }
html { scroll-behavior: smooth; }
body { font-family: "Inter", Arial, sans-serif; background: var(--soft); color: var(--charcoal); overflow-x: hidden; }
body.loading { overflow: hidden; }
.intro { position: fixed; inset: 0; background:#000; z-index:10000; overflow:hidden; display:grid; place-items:center; }
#matrixCanvas { position:absolute; inset:0; width:100%; height:100%; }
.access-text { position:relative; z-index:2; color:#00ff41; font-family:"Anton", Impact, sans-serif; font-size:clamp(2.6rem,9vw,7.8rem); letter-spacing:.08em; text-transform:uppercase; text-shadow:0 0 12px rgba(0,255,65,.95),0 0 28px rgba(0,255,65,.75),0 0 55px rgba(0,255,65,.45); opacity:0; transform:scale(.92); transition:opacity .55s ease, transform .55s ease; }
.access-text.show { opacity:1; transform:scale(1); }
.intro.hide { animation:introFade .85s ease forwards; }
@keyframes introFade { to { opacity:0; visibility:hidden; } }
.site-header { position:fixed; inset:0 0 auto 0; z-index:100; height:76px; padding:0 clamp(18px,5vw,70px); display:flex; align-items:center; justify-content:space-between; background:rgba(7,25,54,.82); backdrop-filter:blur(18px); border-bottom:1px solid rgba(255,255,255,.12); }
.logo { color:var(--white); text-decoration:none; font-weight:900; letter-spacing:-.03em; font-size:1.15rem; }
.nav-links { display:flex; align-items:center; gap:24px; }
.nav-links a { color:rgba(255,255,255,.78); text-decoration:none; font-weight:800; font-size:.92rem; }
.nav-links a:hover { color:var(--white); }
.menu-button { display:none; background:transparent; color:white; border:1px solid rgba(255,255,255,.35); border-radius:10px; padding:5px 10px; font-size:1.4rem; }
.hero { min-height:100vh; padding:140px clamp(18px,6vw,90px) 80px; display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,6vw,90px); align-items:center; background:radial-gradient(circle at 74% 26%, rgba(215,220,227,.28), transparent 32%), linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 45%, #dfe3e8 60%, #f7f8fb 100%); }
.hero-copy { color:var(--white); }
.eyebrow { text-transform:uppercase; color:#9db7dc; font-weight:900; letter-spacing:.18em; font-size:.76rem; margin-bottom:16px; }
h1 { font-family:"Anton", Impact, sans-serif; font-size:clamp(3.6rem,8vw,8rem); line-height:.92; letter-spacing:-.02em; text-transform:uppercase; max-width:850px; }
.hero-text { color:rgba(255,255,255,.78); font-size:clamp(1rem,1.5vw,1.25rem); line-height:1.75; max-width:650px; margin:26px 0 28px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:0 20px; border-radius:999px; text-decoration:none; font-weight:900; transition:transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform:translateY(-3px); }
.button.primary { background:var(--white); color:var(--navy); box-shadow:0 20px 45px rgba(0,0,0,.2); }
.button.secondary { color:var(--white); border:1px solid rgba(255,255,255,.42); }
.hero-image-wrap { position:relative; justify-self:center; width:min(430px,88vw); }
.image-card { position:relative; border-radius:36px; overflow:hidden; background:var(--steel); box-shadow:0 35px 90px rgba(7,25,54,.38); border:10px solid rgba(255,255,255,.58); }
.image-card img { display:block; width:100%; aspect-ratio:4/5; object-fit:cover; object-position:center top; }
.image-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 55%, rgba(7,25,54,.18)); pointer-events:none; }
.status-card { position:absolute; left:-24px; bottom:28px; background:rgba(255,255,255,.92); color:var(--navy); padding:14px 18px; border-radius:18px; box-shadow:0 20px 50px rgba(7,25,54,.22); font-weight:900; max-width:260px; display:flex; gap:10px; align-items:center; }
.pulse { width:11px; height:11px; border-radius:50%; background:#16a34a; box-shadow:0 0 0 8px rgba(22,163,74,.14); flex:0 0 auto; }
.section { padding:105px clamp(18px,6vw,90px); background:var(--soft); }
.section.dark { background:var(--navy); color:white; }
.section-heading { max-width:900px; margin-bottom:38px; }
.section h2 { font-family:"Anton", Impact, sans-serif; font-size:clamp(2.5rem,6vw,5.5rem); line-height:.98; text-transform:uppercase; color:inherit; letter-spacing:-.02em; }
.about-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    background: #d7dce3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: 16px 0 24px;
    color: var(--charcoal);
    text-transform: none;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.about-content p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.contact p {
    color: var(--muted);
    font-size: 1.16rem;
    line-height: 1.8;
}
.dark .eyebrow { color:#b9c8df; }
.card-grid { display:grid; gap:20px; }
.card-grid.four { grid-template-columns:repeat(4,1fr); }
.card-grid.three { grid-template-columns:repeat(3,1fr); }
.card-grid article, .timeline-list div, .certs span { background:rgba(255,255,255,.86); border:1px solid var(--line); border-radius:24px; padding:26px; box-shadow:0 24px 60px rgba(7,25,54,.08); }
.dark .card-grid article, .dark .certs span { background:rgba(255,255,255,.065); border-color:rgba(255,255,255,.12); box-shadow:none; }
.card-grid h3 { color:inherit; font-size:1.25rem; margin-bottom:12px; }
.card-grid p { color:var(--muted); line-height:1.7; }
.dark .card-grid p { color:rgba(255,255,255,.72); }
.project-card span { display:inline-block; color:var(--blue); font-weight:900; text-transform:uppercase; font-size:.78rem; letter-spacing:.09em; margin-bottom:16px; }
.timeline { background:#fff; }
.timeline-list { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.timeline-list strong { display:block; color:var(--navy); margin-bottom:8px; font-size:1.1rem; }
.timeline-list p { color:var(--muted); line-height:1.7; }
.certs { display:flex; flex-wrap:wrap; gap:14px; }
.certs span { color:white; font-weight:900; text-transform:uppercase; min-height:auto; }
.contact { text-align:center; background:radial-gradient(circle at 50% 0%, rgba(29,79,145,.12), transparent 30%), var(--soft); }
.contact .section-heading { margin-left:auto; margin-right:auto; }
.contact p { max-width:720px; margin:0 auto 24px; }
.contact .hero-actions { justify-content:center; }
.contact .button.primary { background:var(--navy); color:white; }
.contact .button.secondary { color:var(--navy); border-color:rgba(7,25,54,.28); }
footer { background:var(--navy); color:rgba(255,255,255,.72); text-align:center; padding:28px 20px; font-weight:700; }
@media (max-width:1050px) { .hero { grid-template-columns:1fr; text-align:center; background:linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 56%, #f7f8fb 56%, #f7f8fb 100%); } .hero-text, .hero-copy h1 { margin-left:auto; margin-right:auto; } .hero-actions { justify-content:center; } .card-grid.four { grid-template-columns:repeat(2,1fr); } .card-grid.three,
.timeline-list,
.about-layout {
    grid-template-columns:1fr;
}

.about-image {
    height:400px;
}
@media (max-width:720px) { .site-header { height:68px; } .menu-button { display:block; } .nav-links { display:none; position:absolute; top:76px; left:18px; right:18px; flex-direction:column; align-items:flex-start; padding:18px; background:rgba(7,25,54,.96); border:1px solid rgba(255,255,255,.15); border-radius:18px; } .nav-links.open { display:flex; } .hero { padding-top:110px; } .card-grid.four, .card-grid.three { grid-template-columns:1fr; } .status-card { left:12px; right:12px; bottom:16px; max-width:none; } .section { padding-top:78px; padding-bottom:78px; } }
