@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap";*{margin:0;padding:0;box-sizing:border-box}:root{--primary-color: #3b82f6;--secondary-color: #8b5cf6;--accent-color: #06b6d4;--dark-bg: #0f172a;--dark-secondary: #1e293b;--text-primary: #f1f5f9;--text-secondary: #cbd5e1;--surface: #ffffff;--surface-alt: #f4f3f0;--border: rgba(0, 0, 0, .08);--border-strong: #111;--shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);--shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);--shadow-lift: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08)}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:#f8f7f4;color:#111;overflow-x:hidden}code{font-family:Courier New,source-code-pro,Menlo,Monaco,Consolas,monospace}html{scroll-behavior:smooth}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:#f4f3f0}::-webkit-scrollbar-thumb{background:#333;border-radius:8px;border:2px solid #f4f3f0}::-webkit-scrollbar-thumb:hover{background:#111}::selection{background:#00000026;color:#000}::-moz-selection{background:#00000026;color:#000}@keyframes shimmer{0%{background-position:-1000px 0}to{background-position:1000px 0}}.container{max-width:1200px;margin:0 auto;padding:0 2rem}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-30px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeInLeft{0%{opacity:0;transform:translate(-30px)}to{opacity:1;transform:translate(0)}}@keyframes fadeInRight{0%{opacity:0;transform:translate(30px)}to{opacity:1;transform:translate(0)}}@keyframes glow{0%,to{text-shadow:0 0 20px rgba(59,130,246,.3)}50%{text-shadow:0 0 30px rgba(59,130,246,.5)}}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}@media(max-width:768px){.container{padding:0 1rem}}#root{width:100%;min-height:100vh}.App{width:100%;min-height:100vh;position:relative}.navbar{position:fixed;top:0;left:0;right:0;z-index:1000;background:#f8f7f4bf;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid rgba(0,0,0,.06);transition:all .3s ease}.navbar.scrolled{background:#000000eb;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid rgba(255,255,255,.06);box-shadow:0 4px 24px #0003}.navbar-container{max-width:1400px;margin:0 auto;padding:1rem 3rem;display:flex;justify-content:space-between;align-items:center}.navbar-logo{display:flex;align-items:center;text-decoration:none;cursor:pointer}.logo-text{font-size:1.4rem;font-weight:900;letter-spacing:-1px;color:#111;background:linear-gradient(135deg,#111,#444);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;transition:opacity .3s ease;font-style:italic;padding-right:3px}.navbar-logo:hover .logo-text{opacity:.7}.navbar.scrolled .logo-text{background:linear-gradient(135deg,#fff,#aaa);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.navbar-menu{display:flex;gap:2.5rem;align-items:center;margin-left:auto}.nav-link{color:#111;text-decoration:none;font-size:.88rem;font-weight:500;cursor:pointer;transition:all .3s ease;letter-spacing:.02em;padding:.5rem 0;position:relative}.nav-link:after{content:"";position:absolute;bottom:0;left:0;width:0;height:1.5px;background:#3b82f6;transition:width .3s ease}.nav-link:hover:after{width:100%}.nav-link:hover{color:#3b82f6;opacity:1}.navbar.scrolled .nav-link{color:#fffc}.navbar.scrolled .nav-link:hover{color:#fff}.navbar.scrolled .nav-link:after{background:#fff}.nav-link.nav-resume{color:#3b82f6;border:1px solid rgba(59,130,246,.35);padding:.5rem 1.2rem;border-radius:8px;font-weight:600;font-size:.85rem;transition:all .25s ease}.nav-link.nav-resume:after{display:none}.nav-link.nav-resume:hover{background:#3b82f614;border-color:#3b82f6;color:#3b82f6;transform:translateY(-1px)}.navbar.scrolled .nav-link.nav-resume{color:#60a5fa;border-color:#60a5fa59}.navbar.scrolled .nav-link.nav-resume:hover{background:#60a5fa1a;color:#60a5fa}.nav-link.nav-cta{background:linear-gradient(135deg,#111,#333);color:#fff;padding:.55rem 1.5rem;border-radius:8px;font-weight:600;font-size:.85rem;letter-spacing:.03em;transition:all .3s ease}.nav-link.nav-cta:after{display:none}.nav-link.nav-cta:hover{color:#fff;transform:translateY(-2px);box-shadow:0 8px 20px #0003;background:linear-gradient(135deg,#000,#222);opacity:1}.navbar.scrolled .nav-link.nav-cta{background:#fff;color:#000}.navbar.scrolled .nav-link.nav-cta:hover{background:#f0f0f0;color:#000;box-shadow:0 8px 20px #ffffff26}.navbar-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.5rem}.navbar-toggle:focus{outline:none}.navbar-toggle span{width:24px;height:2px;background:#111;border-radius:2px;transition:all .3s ease}.navbar.scrolled .navbar-toggle span{background:#fff}.navbar-toggle.active span:nth-child(1){transform:rotate(45deg) translate(8px,8px)}.navbar-toggle.active span:nth-child(2){opacity:0}.navbar-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(7px,-7px)}@media(max-width:768px){.navbar-container{padding:1rem 1.5rem}.navbar-toggle{display:flex}.navbar-menu{position:fixed;top:60px;left:0;right:0;flex-direction:column;background:#000000f7;backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);padding:2rem 1.5rem;gap:1.5rem;transform:translateY(-100%);transition:transform .3s ease;border-bottom:1px solid rgba(255,255,255,.1);opacity:0;visibility:hidden}.navbar-menu.active{transform:translateY(0);opacity:1;visibility:visible}.nav-link{font-size:1rem;text-align:center;color:#fff}.nav-link.nav-cta{width:100%;text-align:center;margin-top:.5rem;background:#fff;color:#000}.navbar-toggle span{background:#111}.navbar.scrolled .navbar-toggle span{background:#fff}}@media(max-width:480px){.navbar-container{padding:.8rem 1rem}.nav-link{font-size:.95rem}.nav-link.nav-cta{padding:.5rem 1.2rem;font-size:.85rem}}*,*:before,*:after{cursor:none!important}.cursor-dot{position:fixed;top:0;left:0;width:8px;height:8px;background:#111;border-radius:50%;pointer-events:none;z-index:99999;margin-left:-4px;margin-top:-4px;transition:width .2s ease,height .2s ease,background .2s ease,margin .2s ease;will-change:transform}.cursor-ring{position:fixed;top:0;left:0;width:36px;height:36px;border:1.5px solid rgba(0,0,0,.35);border-radius:50%;pointer-events:none;z-index:99998;margin-left:-18px;margin-top:-18px;transition:width .3s ease,height .3s ease,border-color .3s ease,margin .3s ease,background .3s ease;will-change:transform}.cursor-dot.dot-hover{width:12px;height:12px;margin-left:-6px;margin-top:-6px;background:#3b82f6}.cursor-ring.ring-hover{width:52px;height:52px;margin-left:-26px;margin-top:-26px;border-color:#3b82f680;background:#3b82f60f}@media(hover:none)and (pointer:coarse){.cursor-dot,.cursor-ring{display:none}*,*:before,*:after{cursor:auto!important}}.hero{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;background:#f8f7f4;overflow:hidden}.hero:before{content:"";position:absolute;inset:0;background-image:radial-gradient(rgba(0,0,0,.06) 1px,transparent 1px);background-size:32px 32px;pointer-events:none;z-index:0}.hero:after{content:"";position:absolute;right:10%;top:30%;width:400px;height:400px;background:radial-gradient(circle,rgba(59,130,246,.07),transparent 70%);pointer-events:none;z-index:0}.hero-content{position:relative;z-index:2;display:flex;align-items:center;justify-content:center;text-align:center;padding:8rem 2rem 4rem;width:100%}.hero-text{max-width:480px}.hero-greeting{font-size:.85rem;color:#3b82f6;font-weight:600;letter-spacing:.15em;text-transform:uppercase;margin-bottom:1rem;display:block}.hero-title{font-size:3.8rem;font-weight:900;color:#111;margin:0 0 1rem;line-height:1.05;letter-spacing:-2px}.hero-subtitle{font-size:1.3rem;font-weight:500;color:#555;margin:0 0 2.5rem;height:2rem;display:flex;align-items:center;justify-content:center;gap:2px}.typed-text{color:#3b82f6}.cursor{color:#3b82f6;animation:blink 1s step-end infinite;font-weight:300}@keyframes blink{0%,to{opacity:1}50%{opacity:0}}.hero-cta{display:flex;gap:1rem;margin-bottom:2.5rem;flex-wrap:wrap;justify-content:center}.btn-primary{padding:.75rem 1.8rem;background:#3b82f6;color:#fff;border-radius:10px;text-decoration:none;font-weight:700;font-size:.9rem;letter-spacing:.02em;transition:all .25s ease;border:1px solid #3b82f6}.btn-primary:hover{background:#2563eb;border-color:#2563eb;transform:translateY(-2px);box-shadow:0 8px 24px #3b82f659}.btn-secondary{padding:.75rem 1.8rem;background:transparent;color:#111;border-radius:10px;text-decoration:none;font-weight:600;font-size:.9rem;letter-spacing:.02em;border:1px solid rgba(0,0,0,.2);transition:all .25s ease}.btn-secondary:hover{border-color:#111;background:#111;color:#fff;transform:translateY(-2px)}.hero-stats{display:flex;align-items:center;justify-content:center;gap:3.5rem;margin-top:4rem}.stat-item{display:flex;flex-direction:column;align-items:center;gap:.35rem}.stat-number{font-size:2.4rem;font-weight:900;color:#111;letter-spacing:-1.5px;line-height:1}.stat-label{font-size:.78rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:#999}.stat-divider{width:1px;height:44px;background:#0000001f}.btn-resume{padding:.75rem 1.8rem;background:transparent;color:#3b82f6;border-radius:10px;text-decoration:none;font-weight:600;font-size:.9rem;letter-spacing:.02em;border:1px solid rgba(59,130,246,.4);transition:all .25s ease}.btn-resume:hover{background:#3b82f614;border-color:#3b82f6;transform:translateY(-2px)}.hero-social{display:flex;gap:.75rem;justify-content:center}.social-link{width:40px;height:40px;border-radius:10px;background:#fff;border:1px solid rgba(0,0,0,.1);display:flex;align-items:center;justify-content:center;color:#555;transition:all .25s ease;text-decoration:none;box-shadow:0 1px 4px #0000000f}.social-link:hover{background:#3b82f6;border-color:#3b82f6;color:#fff;transform:translateY(-3px)}.hero-image{position:relative;z-index:2;display:flex;align-items:center;justify-content:center;padding:6rem 3rem 4rem 0}.code-window{width:100%;max-width:480px;background:#161b22;border:1px solid rgba(255,255,255,.08);border-radius:14px;overflow:hidden;box-shadow:0 24px 60px #00000080,0 0 0 1px #3b82f61a;animation:fadeInUp .8s ease-out .3s both}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}.code-titlebar{display:flex;align-items:center;gap:.5rem;padding:.85rem 1.2rem;background:#1c2128;border-bottom:1px solid rgba(255,255,255,.06)}.dot{width:12px;height:12px;border-radius:50%}.dot.red{background:#ff5f57}.dot.yellow{background:#febc2e}.dot.green{background:#28c840}.code-filename{margin-left:.75rem;font-size:.78rem;color:#666;letter-spacing:.05em;font-family:Courier New,monospace}.code-body{padding:1.25rem .5rem 1.5rem;font-family:Courier New,Courier,monospace;font-size:.85rem;line-height:1.8}.code-line{display:flex;gap:1rem;padding:0 1rem;animation:lineIn .15s ease-out both}@keyframes lineIn{0%{opacity:0;transform:translate(-8px)}to{opacity:1;transform:translate(0)}}.line-num{color:#3d444d;min-width:1.5rem;text-align:right;-webkit-user-select:none;user-select:none;font-size:.78rem}.line-content{color:#e6edf3}.tok-keyword{color:#ff7b72}.tok-var{color:#79c0ff}.tok-fn{color:#d2a8ff}.tok-key{color:#79c0ff}.tok-string{color:#a5d6ff}.tok-bool{color:#ff7b72}.tok-plain{color:#e6edf3}.code-cursor{display:inline-block;width:8px;height:1em;background:#3b82f6;margin-left:1px;vertical-align:text-bottom;animation:blink 1s step-end infinite;border-radius:1px}@media(max-width:768px){.hero-content{padding:7rem 1.5rem 3rem}.hero-title{font-size:2.4rem;letter-spacing:-1px}.hero-subtitle{font-size:1.1rem}.hero-text{max-width:100%}.stat-number{font-size:2rem}.hero-stats{gap:1.5rem}}@media(max-width:480px){.hero-content{padding:6rem 1.25rem 2.5rem}.hero-title{font-size:1.9rem;letter-spacing:-.5px}.hero-subtitle{font-size:.95rem}.btn-primary,.btn-secondary,.btn-resume{width:100%;text-align:center;box-sizing:border-box}.hero-cta{flex-direction:column}.hero-stats{gap:1.25rem}.stat-number{font-size:1.7rem}.stat-label{font-size:.68rem}.stat-divider{height:32px}}.about{min-height:81vh;padding:5rem 2rem;background:#f8f7f4;color:#111}.about-container{max-width:1100px;margin:0 auto;text-align:center}.about-header{margin-bottom:2.5rem}.about-label{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.5em;text-transform:uppercase;color:#3b82f6;margin-bottom:.75rem}.about-title{font-size:3rem;font-weight:900;letter-spacing:-1.5px;color:#111;line-height:1;margin:0}.about-intro{max-width:760px;margin:0 auto 2.2rem;color:#444;line-height:1.9;font-size:1rem}.about-explore{display:inline-flex;align-items:center;gap:1.2rem;margin-bottom:2rem}.about-explore .separator{width:22px;height:1px;background:#111;display:inline-block}.explore-link{color:#111;text-decoration:none;font-weight:600;letter-spacing:.2em;font-size:.82rem;transition:color .2s ease}.explore-link:hover{color:#3b82f6}.about-divider{display:flex;justify-content:center;gap:8px;margin:1.2rem 0 3rem}.about-divider span{display:inline-block;width:40px;height:2px;background:#00000026;border-radius:2px}.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;align-items:start}.feature-card{text-align:left;background:var(--surface);padding:2rem;border-radius:16px;border:1px solid var(--border);box-shadow:var(--shadow-sm);transition:all .3s ease}.feature-card:hover{box-shadow:var(--shadow-lift);transform:translateY(-4px)}.feature-icon{color:#888}.feature-title{margin-top:1rem;font-size:.85rem;letter-spacing:.3em;font-weight:800;color:#111}.feature-text{margin-top:.7rem;color:#555;font-size:.9rem;line-height:1.75}@media(max-width:1024px){.feature-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}.about-title{font-size:2.5rem}}@media(max-width:768px){.about{padding:4rem 1.5rem 3rem}.about-title{font-size:2rem;letter-spacing:-1px}.about-intro{font-size:.95rem}.feature-grid{grid-template-columns:1fr 1fr;gap:1rem}.feature-card{padding:1.5rem}}@media(max-width:480px){.about{padding:3.5rem 1rem 2.5rem}.about-title{font-size:1.75rem}.feature-grid{grid-template-columns:1fr}.feature-card{padding:1.25rem}.feature-text{font-size:.85rem}}.skills{min-height:100vh;padding:5rem 2rem;background:#f8f7f4;color:#111}.skills-container{max-width:1100px;margin:0 auto;text-align:center}.skills-header{margin-bottom:2.5rem}.skills-label{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.5em;text-transform:uppercase;color:#3b82f6;margin-bottom:.75rem}.skills-title{font-size:3rem;font-weight:900;letter-spacing:-1.5px;color:#111;line-height:1;margin:0}.skills-section{margin-top:3rem}.skills-heading{text-align:left;font-size:.72rem;letter-spacing:.4em;font-weight:800;margin:0 0 1.5rem;color:#999;text-transform:uppercase}.skills-grid.minimal-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem 2.5rem;align-items:start}.skill-item{text-align:center;cursor:default}.skill-icon{width:72px;height:72px;border:1px solid var(--border);border-radius:16px;display:inline-flex;align-items:center;justify-content:center;background:var(--surface);box-shadow:var(--shadow-sm);padding:10px;overflow:hidden;transition:all .3s ease}.skill-icon img{width:100%;height:100%;object-fit:contain}.skill-item:hover .skill-icon{box-shadow:var(--shadow-lift);transform:translateY(-4px) scale(1.05);border-color:#0003}.skill-name-minimal{display:block;margin-top:.6rem;font-size:.72rem;letter-spacing:.15em;color:#555;transition:color .2s ease}.skill-item:hover .skill-name-minimal{color:#111}@media(max-width:1024px){.skills-grid.minimal-grid{grid-template-columns:repeat(3,1fr)}.skills-title{font-size:2.5rem}}@media(max-width:768px){.skills{padding:6rem 1.5rem 4rem}.skills-title{font-size:2rem;letter-spacing:-1px}.skills-grid.minimal-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}.skills-heading{text-align:center}}@media(max-width:480px){.skills-grid.minimal-grid{gap:1.2rem}.skill-icon{width:60px;height:60px}.skill-name-minimal{font-size:.65rem}}.experience{min-height:75vh;padding:5rem 2rem;background:#f8f7f4;color:#111}.experience-container{max-width:900px;margin:0 auto;text-align:center}.experience-header{margin-bottom:3rem}.experience-label{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.5em;text-transform:uppercase;color:#3b82f6;margin-bottom:.75rem}.experience-title{font-size:3rem;font-weight:900;letter-spacing:-1.5px;color:#111;line-height:1;margin:0}.experience-content{text-align:left;display:flex;flex-direction:column;gap:2rem}.experience-block{background:var(--surface);padding:2.5rem;border-radius:16px;border:1px solid var(--border);box-shadow:var(--shadow-sm)}.company-name{font-size:1.6rem;font-weight:800;margin-bottom:.5rem;letter-spacing:-.5px;background:linear-gradient(135deg,#000,#333);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;color:#000}.position-info{display:flex;align-items:center;gap:.8rem;margin-bottom:1rem;font-size:.9rem;color:#666}.position-text{font-weight:600;color:#333}.separator{color:#ccc}.location-text{font-style:italic}.company-description{color:#555;line-height:1.75;margin-bottom:2rem;font-size:.95rem}.timeline{display:flex;flex-direction:column;gap:2rem;margin-left:.5rem}.timeline-item{display:flex;gap:2rem}.timeline-marker{display:flex;flex-direction:column;align-items:center;flex-shrink:0}.timeline-dot{width:12px;height:12px;border:2px solid #111;border-radius:50%;background:#111;box-shadow:none;position:relative;z-index:1}.timeline-line{width:2px;flex:1;background:linear-gradient(to bottom,#ddd,#f0f0f0);margin-top:.5rem;border-radius:2px}.milestone-content{flex:1;padding-top:0}.milestone-date{display:inline-block;font-size:.78rem;color:#888;font-weight:700;letter-spacing:.08em;margin-bottom:.4rem;text-transform:uppercase}.milestone-title{font-size:1.05rem;font-weight:700;margin:.2rem 0 .4rem;color:#111}.milestone-event{color:#666;line-height:1.65;font-size:.9rem;margin:0}@media(max-width:768px){.experience{padding:6rem 1.5rem 4rem}.experience-title{font-size:2rem;letter-spacing:-1px}.experience-block{padding:1.8rem}.company-name{font-size:1.3rem}.position-info{flex-direction:column;gap:.3rem;align-items:flex-start}.separator{display:none}.timeline{margin-left:0}.timeline-item{gap:1rem}}.projects{padding:5rem 2rem 3rem;background:#f8f7f4;color:#111}.projects-container{max-width:1000px;margin:0 auto;text-align:center}.projects-header{margin-bottom:3rem}.projects-label{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.5em;text-transform:uppercase;color:#3b82f6;margin-bottom:.75rem}.projects-title{font-size:3rem;font-weight:900;letter-spacing:-1.5px;color:#111;line-height:1;margin:0}.projects-content{text-align:left;display:flex;flex-direction:column;gap:2.5rem}.project-card{border:1px solid var(--border);border-radius:16px;background:var(--surface);box-shadow:var(--shadow-sm);overflow:hidden;transition:box-shadow .3s ease}.project-card:hover{box-shadow:var(--shadow-lift)}.project-card-top{display:flex;justify-content:space-between;align-items:center;padding:1.5rem 2rem;cursor:pointer;-webkit-user-select:none;user-select:none;gap:1rem}.project-card.expanded .project-card-top{border-bottom:1px solid var(--border)}.project-title{font-size:1.2rem;font-weight:800;letter-spacing:-.3px;margin:0;background:linear-gradient(135deg,#000,#333);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;color:#000}.expand-icon{font-size:1.4rem;font-weight:300;color:#999;flex-shrink:0;line-height:1}.project-card-body{padding:1.5rem 2rem 2rem}.project-links{display:flex;gap:.75rem;flex-wrap:wrap;margin-bottom:1.25rem}.accordion-section{border-top:1px solid var(--border)}.accordion-trigger{width:100%;display:flex;justify-content:space-between;align-items:center;padding:.85rem 0;background:none;border:none;cursor:pointer;font-size:.72rem;font-weight:800;letter-spacing:.4em;text-transform:uppercase;color:#888;text-align:left;transition:color .2s ease}.accordion-trigger:hover{color:#111}.accordion-icon{font-size:1.1rem;font-weight:300;color:#bbb;line-height:1}.accordion-body{padding-bottom:1rem}.project-link{color:#111;text-decoration:none;font-size:.85rem;font-weight:600;letter-spacing:.03em;padding:.55rem 1.3rem;border:1px solid rgba(0,0,0,.15);border-radius:8px;background:#f8f7f4;transition:all .25s ease;white-space:nowrap}.project-link:hover{background:#111;color:#fff;border-color:#111;transform:translateY(-1px);box-shadow:var(--shadow-sm)}.project-link.mobile-app{background:#111;color:#fff;border-color:#111}.project-link.mobile-app:hover{background:#000;border-color:#000}.project-description{color:#444;line-height:1.85;margin-bottom:2rem;font-size:.95rem}.project-section{margin-top:1.8rem}.section-title{font-size:.72rem;letter-spacing:.4em;font-weight:800;margin-bottom:1rem;text-transform:uppercase;color:#888}.tech-tags{display:flex;flex-wrap:wrap;gap:.6rem}.tech-tag{display:inline-block;padding:.4rem 1rem;background:#f0f0f0;color:#333;border:1px solid rgba(0,0,0,.1);border-radius:20px;font-size:.82rem;font-weight:600;letter-spacing:.02em;transition:all .2s ease}.tech-tag:hover{background:#111;color:#fff;border-color:#111;transform:translateY(-2px)}.feature-list,.highlight-list{list-style:none;padding:0;margin:0}.feature-list li,.highlight-list li{position:relative;padding-left:1.4rem;margin-bottom:.7rem;color:#555;line-height:1.75;font-size:.9rem}.feature-list li:before,.highlight-list li:before{content:"▪";position:absolute;left:0;color:#999;font-size:1rem;line-height:1.6}@media(max-width:768px){.projects{padding:6rem 1.25rem 4rem}.projects-title{font-size:2rem;letter-spacing:-1px}.projects-content{gap:1.5rem}.project-card-top{padding:1.25rem 1.5rem}.project-card-body{padding:1.25rem 1.5rem 1.5rem}.project-title{font-size:1.05rem}.project-links{flex-direction:column;gap:.5rem}.project-link{width:100%;text-align:center;box-sizing:border-box}.tech-tags{gap:.4rem}.tech-tag{padding:.3rem .75rem;font-size:.76rem}.project-description{font-size:.9rem;margin-bottom:1.5rem}.project-section{margin-top:1.25rem}.feature-list li,.highlight-list li{font-size:.85rem;margin-bottom:.5rem}}@media(max-width:480px){.projects{padding:5rem 1rem 3rem}.project-card-top{padding:1rem 1.25rem}.project-card-body{padding:1rem 1.25rem 1.25rem}.project-title{font-size:.95rem}.project-link{font-size:.8rem;padding:.5rem 1rem}.tech-tag{font-size:.72rem;padding:.25rem .65rem}.section-title{font-size:.65rem}}.education{min-height:81vh;padding:5rem 2rem;background:#f8f7f4;color:#111}.education-container{max-width:900px;margin:0 auto;text-align:center}.education-header{margin-bottom:3rem}.education-label{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.5em;text-transform:uppercase;color:#3b82f6;margin-bottom:.75rem}.education-title{font-size:3rem;font-weight:900;letter-spacing:-1.5px;color:#111;line-height:1;margin:0}.education-content{text-align:left;display:flex;flex-direction:column;gap:1.5rem}.education-card{background:var(--surface);padding:2rem 2.5rem;border-radius:16px;border:1px solid var(--border);box-shadow:var(--shadow-sm);transition:all .3s ease}.education-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}.card-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:.8rem;gap:1rem}.institution{font-size:1.25rem;font-weight:800;letter-spacing:-.3px;flex:1;background:linear-gradient(135deg,#000,#333);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;color:#000}.period{font-size:.78rem;font-weight:700;white-space:nowrap;color:#666;background:#0000000d;border:1px solid rgba(0,0,0,.1);padding:.25rem .75rem;border-radius:20px;letter-spacing:.03em}.degree{font-size:.95rem;font-weight:600;color:#333;line-height:1.6;margin:0 0 .4rem}.location{font-size:.85rem;color:#888;font-style:italic}@media(max-width:768px){.education{padding:6rem 1.5rem 4rem}.education-title{font-size:2rem;letter-spacing:-1px}.education-card{padding:1.5rem}.card-header{flex-direction:column;gap:.5rem;align-items:flex-start}.institution{font-size:1.1rem}.degree{font-size:.9rem}}.contact{padding:5rem 2rem 0;background:#f8f7f4;color:#111}.contact-container{max-width:800px;margin:0 auto;text-align:center}.contact-header{margin-bottom:1.5rem}.contact-label{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.5em;text-transform:uppercase;color:#3b82f6;margin-bottom:.75rem}.contact-title{font-size:3rem;font-weight:900;letter-spacing:-1.5px;color:#111;line-height:1;margin:0}.contact-intro{max-width:560px;margin:0 auto 3rem;color:#555;line-height:1.85;font-size:.95rem}.contact-links{display:flex;flex-direction:row;gap:1.5rem;max-width:800px;margin:0 auto}.contact-link{flex:1;display:flex;align-items:center;gap:1.5rem;padding:1.8rem 2rem;border:1px solid var(--border);border-radius:16px;text-decoration:none;color:#111;transition:all .3s ease;background:var(--surface);box-shadow:var(--shadow-sm)}.contact-link:hover{background:#111;color:#fff;transform:translateY(-4px);box-shadow:var(--shadow-lift);border-color:#111}.link-icon{flex-shrink:0;width:50px;height:50px;border-radius:12px;background:linear-gradient(135deg,#111,#333);color:#fff;display:flex;align-items:center;justify-content:center;transition:all .3s ease}.contact-link:hover .link-icon{background:#ffffff26}.link-content h3{margin:0 0 .4rem;font-size:1.1rem;font-weight:700;letter-spacing:.02em}.link-content p{display:none}.footer{background:#0a0a0a;color:#fff;padding:2rem 2rem 1.5rem;margin-top:4rem}.footer-content{max-width:800px;margin:0 auto;text-align:center}.back-to-top{display:inline-block;color:#fff9;text-decoration:none;font-size:.72rem;letter-spacing:.25em;line-height:1.8;margin-bottom:2rem;transition:color .3s ease}.back-to-top:hover{color:#fff}.footer-social{display:flex;justify-content:center;gap:1rem;margin-bottom:2.5rem}.footer-social a{width:40px;height:40px;border:1px solid rgba(255,255,255,.15);border-radius:10px;display:inline-flex;align-items:center;justify-content:center;color:#fff9;text-decoration:none;font-size:.85rem;transition:all .3s ease}.footer-social a:hover{background:#ffffff1a;color:#fff;border-color:#ffffff4d;transform:translateY(-2px)}.footer-copyright{font-size:.78rem;color:#ffffff4d;letter-spacing:.06em}@media(max-width:768px){.contact{padding:6rem 1.25rem 0}.contact-title{font-size:2rem;letter-spacing:-1px}.contact-intro{font-size:.9rem;margin-bottom:2rem}.contact-links{flex-direction:column;gap:1rem;max-width:100%}.contact-link{padding:1.4rem 1.5rem;gap:1rem}.link-icon{width:44px;height:44px;border-radius:10px}.link-content h3{font-size:1rem}.link-content p{font-size:.82rem}.footer{padding:1.75rem 1.25rem 1.25rem;margin-top:3rem}}@media(max-width:480px){.contact{padding:5rem 1rem 0}.contact-title{font-size:1.75rem}.contact-intro{font-size:.875rem}.contact-links{gap:.75rem}.contact-link{padding:1.1rem 1.25rem;gap:.875rem;border-radius:12px}.link-icon{width:38px;height:38px;border-radius:8px}.link-content h3{font-size:.95rem}.link-content p{font-size:.78rem}.footer{padding:1.5rem 1rem 1rem;margin-top:2rem}.footer-social{gap:.75rem}.footer-social a{width:36px;height:36px}.footer-copyright{font-size:.72rem}}
