:root{--brand-primary:#ff6b35;--brand-primary-light:#ff8c5a;--brand-primary-dark:#e5561f;--brand-accent:#f59e0b;--brand-accent-light:#fbbf24;--brand-accent-dark:#d97706;--bg-primary:#0a0a0a;--bg-secondary:#1a1a1a;--bg-tertiary:#2a2a2a;--bg-elevated:#333333;--text-primary:#ffffff;--text-secondary:#a0a0a0;--text-muted:#6a6a6a;--text-on-dark:#ffffff;--text-on-light:#0a0a0a;--color-success:#10b981;--color-success-light:#34d399;--color-warning:#f59e0b;--color-warning-light:#fbbf24;--color-error:#ef4444;--color-error-light:#f87171;--color-info:#3b82f6;--color-info-light:#60a5fa;--font-display:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;--font-body:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;--font-mono:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,monospace;--font-editorial-display:Georgia,"Times New Roman",serif;--font-editorial-body:Georgia,"Times New Roman",serif;--font-editorial-mono:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,monospace;--spacing-xs:0.5rem;--spacing-sm:1rem;--spacing-md:1.5rem;--spacing-lg:2rem;--spacing-xl:3rem;--spacing-2xl:4rem;--spacing-3xl:6rem;--radius-sm:0.5rem;--radius-md:0.75rem;--radius-lg:1rem;--radius-xl:1.5rem;--radius-2xl:2rem;--radius-full:9999px;--glow-orange:0 0 20px rgba(255,107,53,0.5);--glow-orange-strong:0 0 40px rgba(255,107,53,0.8);--glow-amber:0 0 20px rgba(245,158,11,0.5);--glow-amber-strong:0 0 40px rgba(245,158,11,0.8);--shadow-sm:0 1px 2px 0 rgb(0 0 0/0.3);--shadow-md:0 4px 6px -1px rgb(0 0 0/0.4),0 2px 4px -2px rgb(0 0 0/0.3);--shadow-lg:0 10px 15px -3px rgb(0 0 0/0.5),0 4px 6px -4px rgb(0 0 0/0.4);--shadow-xl:0 20px 25px -5px rgb(0 0 0/0.6),0 8px 10px -6px rgb(0 0 0/0.5);--shadow-2xl:0 25px 50px -12px rgb(0 0 0/0.7);--shadow-glow-orange:0 10px 30px rgba(255,107,53,0.3);--shadow-glow-amber:0 10px 30px rgba(245,158,11,0.3);--duration-instant:100ms;--duration-fast:200ms;--duration-normal:300ms;--duration-slow:500ms;--duration-slower:800ms;--duration-slowest:1200ms;--ease-out:cubic-bezier(0.4,0,0.2,1);--ease-in-out:cubic-bezier(0.4,0,0.6,1);--ease-out-expo:cubic-bezier(0.16,1,0.3,1);--ease-in-out-back:cubic-bezier(0.68,-0.55,0.265,1.55);--ease-out-elastic:cubic-bezier(0.68,-0.55,0.265,1.55)}.card{background-color:var(--bg-secondary);border-radius:var(--radius-lg);border:1px solid rgba(255,107,53,.1);box-shadow:var(--shadow-sm);transition:all var(--duration-normal) var(--ease-out)}.card:hover{box-shadow:var(--shadow-lg);border-color:rgba(255,107,53,.3)}.card-interactive{background-color:var(--bg-secondary);border-radius:var(--radius-lg);border:1px solid rgba(255,107,53,.1);box-shadow:var(--shadow-sm);transition:all var(--duration-normal) var(--ease-out-expo)}.card-interactive:hover{box-shadow:var(--shadow-glow-orange);transform:translateY(-.25rem) scale(1.02);border-color:var(--brand-primary)}.btn{display:inline-flex;align-items:center;justify-content:center;padding:var(--spacing-sm) var(--spacing-md);border-radius:var(--radius-md);font-weight:600;font-family:var(--font-body);transition:all var(--duration-normal) var(--ease-out-expo);outline:2px solid transparent;outline-offset:2px;cursor:pointer}.btn:focus{outline:2px solid var(--brand-primary);outline-offset:2px}.btn-primary{background:linear-gradient(135deg,var(--brand-primary),var(--brand-accent));color:var(--text-on-dark);border:none}.btn-primary:hover{background:linear-gradient(135deg,var(--brand-primary-light),var(--brand-accent-light));box-shadow:var(--shadow-glow-orange);transform:translateY(-2px)}.btn-primary:active{transform:translateY(0)}.btn-secondary{border:2px solid var(--brand-primary);color:var(--brand-primary);background:transparent}.btn-secondary:hover{background:var(--brand-primary);color:var(--text-on-dark);box-shadow:var(--shadow-glow-orange)}.btn-ghost{color:var(--text-secondary);background:transparent}.btn-ghost:hover{background-color:var(--bg-tertiary);color:var(--text-primary)}.container-standard{max-width:72rem}.container-narrow,.container-standard{margin-left:auto;margin-right:auto;padding-left:1.5rem;padding-right:1.5rem}.container-narrow{max-width:56rem}.text-gradient{background:linear-gradient(135deg,var(--brand-primary),var(--brand-accent));background-clip:text;-webkit-background-clip:text;color:transparent}.text-gradient-vertical{background:linear-gradient(180deg,var(--brand-primary),var(--brand-accent));background-clip:text;-webkit-background-clip:text;color:transparent}.section-spacing{padding-top:4rem;padding-bottom:4rem}@media (min-width:768px){.section-spacing{padding-top:6rem;padding-bottom:6rem}}.card-spacing{padding:1.5rem}@media (min-width:768px){.card-spacing{padding:2rem}}.grid-cards,.grid-standard{display:grid;gap:2rem}.grid-cards{grid-template-columns:repeat(1,minmax(0,1fr))}@media (min-width:768px){.grid-cards{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.grid-cards{grid-template-columns:repeat(3,minmax(0,1fr))}}@keyframes slideInUp{0%{opacity:0;transform:translateY(60px)}to{opacity:1;transform:translateY(0)}}.animate-slide-in-1{animation:slideInUp .8s var(--ease-out-expo) .1s both}.animate-slide-in-2{animation:slideInUp .8s var(--ease-out-expo) .2s both}.animate-slide-in-3{animation:slideInUp .8s var(--ease-out-expo) .3s both}.animate-slide-in-4{animation:slideInUp .8s var(--ease-out-expo) .4s both}@keyframes lightning-glow{0%,to{filter:brightness(1) drop-shadow(0 0 0 transparent)}50%{filter:brightness(1.3) drop-shadow(0 0 20px var(--brand-primary))}}.lightning-effect{animation:lightning-glow 2s ease-in-out infinite}@keyframes pulse-ring{0%{box-shadow:0 0 0 0 rgba(255,107,53,.7)}to{box-shadow:0 0 0 20px rgba(255,107,53,0)}}.pulse-ring{animation:pulse-ring 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes pulse-slow{0%,to{opacity:.5;transform:scale(1)}50%{opacity:1;transform:scale(1.05)}}.animate-pulse-slow{animation:pulse-slow 4s ease-in-out infinite}@keyframes gradient-shift{0%{background-position:0 50%}50%{background-position:100% 50%}to{background-position:0 50%}}.animate-gradient{background-size:200% 200%;animation:gradient-shift 3s ease infinite}.hover-lift{transition:transform var(--duration-normal) var(--ease-out-expo)}.hover-lift:hover{transform:translateY(-.5rem)}.card-3d{transition:transform var(--duration-normal) var(--ease-out),box-shadow var(--duration-normal) var(--ease-out)}.card-3d:hover{transform:perspective(1000px) rotateY(-3deg) rotateX(3deg) translateZ(10px);box-shadow:var(--shadow-glow-orange)}.focus-ring:focus{outline:2px solid var(--brand-primary);outline-offset:2px}.focus-ring:focus-visible{outline:2px solid var(--brand-primary);outline-offset:2px;box-shadow:var(--glow-orange)}.text-glow{text-shadow:var(--glow-orange)}.text-glow-strong{text-shadow:var(--glow-orange-strong)}.border-glow{border:1px solid var(--brand-primary);box-shadow:var(--glow-orange)}.btn-energy{position:relative;overflow:hidden}.btn-energy:before{content:"";position:absolute;top:50%;left:50%;width:0;height:0;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.8) 0,transparent 70%);transform:translate(-50%,-50%);transition:width .6s ease,height .6s ease}.btn-energy:hover:before{width:300px;height:300px}.text-responsive-xl{font-size:clamp(2rem,5vw,4rem);line-height:1.1;letter-spacing:-.02em}.text-responsive-hero{font-size:clamp(3rem,10vw,8rem);line-height:.9;letter-spacing:-.05em;font-weight:900}.bg-grid{background-image:linear-gradient(rgba(255,107,53,.1) 1px,transparent 0),linear-gradient(90deg,rgba(255,107,53,.1) 1px,transparent 0);background-size:50px 50px}.noise-texture{position:relative}.noise-texture:before{content:"";position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");pointer-events:none;z-index:1}.animation-delay-100{animation-delay:.1s}.animation-delay-200{animation-delay:.2s}.animation-delay-300{animation-delay:.3s}.animation-delay-500{animation-delay:.5s}.animation-delay-1000{animation-delay:1s}.animation-delay-2000{animation-delay:2s}@keyframes logo-pulse{0%,to{transform:scale(1);filter:brightness(1)}50%{transform:scale(1.05);filter:brightness(1.2)}}.logo-hover:hover{animation:logo-pulse .6s ease-in-out}.link-underline{position:relative;display:inline-block}.link-underline:after{content:"";position:absolute;bottom:-2px;left:0;width:0;height:2px;background:linear-gradient(90deg,var(--brand-primary),var(--brand-accent));transition:width var(--duration-normal) var(--ease-out-expo)}.link-underline:hover:after{width:100%}@keyframes ripple{0%{transform:scale(0);opacity:1}to{transform:scale(4);opacity:0}}.btn-ripple{position:relative;overflow:hidden}.btn-ripple:after{content:"";position:absolute;top:50%;left:50%;width:0;height:0;border-radius:50%;background:rgba(255,255,255,.5);transform:translate(-50%,-50%);transition:width .6s,height .6s}.btn-ripple:active:after{width:300px;height:300px;animation:ripple .6s ease-out}.card-shine{position:relative;overflow:hidden}.card-shine:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.1),transparent);transition:left .5s ease}.card-shine:hover:before{left:100%}.input-glow:focus{outline:none;border-color:var(--brand-primary);box-shadow:0 0 0 3px rgba(255,107,53,.1),var(--glow-orange)}.icon-hover:hover{animation:icon-bounce .5s ease;filter:drop-shadow(var(--glow-orange))}@keyframes icon-bounce{0%,to{transform:translateY(0) rotate(0deg)}25%{transform:translateY(-5px) rotate(5deg)}75%{transform:translateY(-3px) rotate(-5deg)}}.tooltip{position:relative}.tooltip:before{content:attr(data-tooltip);position:absolute;bottom:100%;left:50%;transform:translateX(-50%) translateY(-8px);padding:8px 12px;background:var(--bg-elevated);color:var(--text-primary);border:1px solid var(--brand-primary);border-radius:var(--radius-md);font-size:.875rem;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity var(--duration-normal) var(--ease-out),transform var(--duration-normal) var(--ease-out);z-index:1000}.tooltip:hover:before{opacity:1;transform:translateX(-50%) translateY(-4px)}@keyframes skeleton-loading{0%{background-position:-200px 0}to{background-position:calc(200px + 100%) 0}}.skeleton{background:linear-gradient(90deg,var(--bg-tertiary) 0,var(--bg-elevated) 40px,var(--bg-tertiary) 80px);background-size:200px 100%;animation:skeleton-loading 1.5s ease-in-out infinite}@keyframes toast-slide-in{0%{transform:translateY(-100%);opacity:0}to{transform:translateY(0);opacity:1}}.toast{animation:toast-slide-in .3s var(--ease-out-expo)}@keyframes number-roll{0%{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}.number-roll{display:inline-block;animation:number-roll .5s var(--ease-out-expo)}@keyframes easter-egg-spin{0%{transform:rotate(0deg) scale(1)}50%{transform:rotate(180deg) scale(1.5)}to{transform:rotate(1turn) scale(1)}}.easter-egg-active{animation:easter-egg-spin 1s ease-in-out}@keyframes rainbow-text{0%{background-position:0 50%}50%{background-position:100% 50%}to{background-position:0 50%}}.text-rainbow{background:linear-gradient(90deg,#ff6b35,#f59e0b,#10b981,#3b82f6,#8b5cf6,#ff6b35);background-size:200% auto;background-clip:text;-webkit-background-clip:text;color:transparent;animation:rainbow-text 3s linear infinite}@keyframes fade-in-up{0%{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}.scroll-fade-in{opacity:0;animation:fade-in-up .8s var(--ease-out-expo) forwards}.parallax-slow{transform:translateY(calc(var(--scroll-y, 0) * .5px))}.parallax-medium,.parallax-slow{transition:transform .1s ease-out}.parallax-medium{transform:translateY(calc(var(--scroll-y, 0) * .3px))}.parallax-fast{transform:translateY(calc(var(--scroll-y, 0) * .1px));transition:transform .1s ease-out}.scroll-progress{position:fixed;top:0;left:0;width:0;height:3px;background:linear-gradient(90deg,var(--brand-primary),var(--brand-accent));z-index:9999;transition:width .1s ease-out}.back-to-top{position:fixed;bottom:2rem;right:2rem;width:48px;height:48px;background:linear-gradient(135deg,var(--brand-primary),var(--brand-accent));border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:0;transform:translateY(100px);transition:all var(--duration-normal) var(--ease-out-expo);box-shadow:var(--shadow-xl);z-index:999}.back-to-top.visible{opacity:1;transform:translateY(0)}.back-to-top:hover{transform:translateY(-4px);box-shadow:var(--shadow-glow-orange)}.back-to-top:active{transform:translateY(-2px)}@media (max-width:768px){.card-3d:hover{transform:translateY(-.25rem)}.animate-pulse-slow{animation:none}.bg-grid{opacity:.1}.noise-texture:before{opacity:.02}.md\:transform{transform:none!important}}@media (hover:none) and (pointer:coarse){.card-3d{transition:transform .2s ease}.card-3d:active{transform:scale(.98)}.btn-energy:before{display:none}a.btn,button{min-height:44px;min-width:44px}}@media (prefers-reduced-motion:reduce){*,:after,:before{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}.animate-gradient,.animate-pulse-slow,.animate-slide-in-1,.animate-slide-in-2,.animate-slide-in-3,.animate-slide-in-4,.lightning-effect,.pulse-ring{animation:none!important}}.hero-tech-background{background:url(/images/hero/hero-network-background.png) 50%/cover no-repeat,linear-gradient(135deg,#0f172a,#1e3a8a 25%,#3b82f6 50%,#7c3aed);background-attachment:fixed;position:relative;overflow:hidden}.hero-tech-background:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,rgba(15,23,42,.1),rgba(30,41,59,.1));z-index:1}.hero-content-container{background:radial-gradient(circle at 50% 50%,rgba(255,255,255,.95) 0,rgba(255,255,255,.85) 70%,transparent 100%),linear-gradient(135deg,rgba(59,130,246,.05),rgba(139,92,246,.05));-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,.3);border-radius:2rem;padding:3rem 2rem;position:relative;overflow:hidden}.hero-content-container:before{content:"";position:absolute;inset:-2px;background:linear-gradient(45deg,rgba(59,130,246,.3),rgba(139,92,246,.3),rgba(6,182,212,.3),rgba(168,85,247,.3));border-radius:2rem;opacity:.6;animation:borderGlow 4s ease-in-out infinite;z-index:-1}@keyframes borderGlow{0%,to{opacity:.6;transform:scale(1)}50%{opacity:.9;transform:scale(1.02)}}.hero-title-section{margin-bottom:2rem}.hero-main-title{font-size:clamp(2.5rem,8vw,4rem);font-weight:800;color:#1a202c;margin-bottom:1rem;line-height:1.1;text-shadow:0 4px 20px rgba(59,130,246,.3);animation:titleFadeIn 1s ease-out}.hero-main-text{display:block;margin-bottom:.5rem}.hero-highlight-title{display:block;background:linear-gradient(135deg,#3b82f6,#8b5cf6 50%,#06b6d4);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;font-size:.7em;font-weight:600;animation:gradientShift 3s ease-in-out infinite}.hero-keywords-tags{display:flex;flex-wrap:wrap;justify-content:center;gap:.75rem;margin:1.5rem 0;opacity:0;animation:keywordsFadeIn 1s ease-out .4s forwards}.keyword-tag{display:inline-block;padding:.5rem 1rem;background:linear-gradient(135deg,rgba(59,130,246,.1),rgba(139,92,246,.1));border:1px solid rgba(59,130,246,.3);border-radius:1.5rem;color:#3b82f6;font-size:.875rem;font-weight:500;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);transition:all .3s ease;cursor:default}.keyword-tag:hover{background:linear-gradient(135deg,rgba(59,130,246,.2),rgba(139,92,246,.2));border-color:rgba(59,130,246,.5);transform:translateY(-2px);box-shadow:0 4px 12px rgba(59,130,246,.2)}@keyframes keywordsFadeIn{0%{opacity:0;transform:translateY(15px)}to{opacity:1;transform:translateY(0)}}@keyframes titleFadeIn{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes gradientShift{0%,to{filter:hue-rotate(0deg)}50%{filter:hue-rotate(10deg)}}.hero-title-decoration{display:flex;align-items:center;justify-content:center;margin:1.5rem 0;gap:1rem}.decoration-line{width:60px;height:2px;background:linear-gradient(90deg,transparent,rgba(59,130,246,.6) 50%,transparent);animation:lineGlow 2s ease-in-out infinite}.decoration-dot{width:8px;height:8px;border-radius:50%;background:radial-gradient(circle,#3b82f6 0,#8b5cf6 100%);box-shadow:0 0 20px rgba(59,130,246,.5);animation:dotPulse 2s ease-in-out infinite}@keyframes lineGlow{0%,to{opacity:.6}50%{opacity:1}}@keyframes dotPulse{0%,to{transform:scale(1);box-shadow:0 0 20px rgba(59,130,246,.5)}50%{transform:scale(1.2);box-shadow:0 0 30px rgba(59,130,246,.8)}}.hero-description-section{margin-bottom:3rem}.hero-description{font-size:1.25rem;color:#4a5568;max-width:48rem;margin:0 auto;line-height:1.7;opacity:0;animation:descriptionFadeIn 1s ease-out .3s forwards}@keyframes descriptionFadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.hero-stats-bar{justify-content:center;gap:2rem;margin-top:2rem;padding:1.5rem 2rem;background:linear-gradient(135deg,rgba(255,255,255,.1),rgba(59,130,246,.05));border:1px solid rgba(255,255,255,.2);border-radius:1rem;-webkit-backdrop-filter:blur(15px);backdrop-filter:blur(15px);opacity:0;animation:statsFadeIn 1s ease-out .8s forwards}.hero-stats-bar,.stat-item{display:flex;align-items:center}.stat-item{flex-direction:column;text-align:center}.stat-number{display:block;font-size:1.5rem;font-weight:700;background:linear-gradient(135deg,#3b82f6,#8b5cf6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:.25rem}.stat-label{display:block;font-size:.75rem;color:#64748b;font-weight:500;text-transform:uppercase;letter-spacing:.5px}.stat-divider{width:1px;height:2rem;background:linear-gradient(180deg,transparent 0,rgba(59,130,246,.3) 50%,transparent)}@keyframes statsFadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.hero-actions-section{display:flex;flex-direction:column;gap:1rem;align-items:center;opacity:0;animation:actionsFadeIn 1s ease-out .6s forwards}@keyframes actionsFadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.hero-primary-button{position:relative;display:inline-flex;align-items:center;justify-content:center;padding:1rem 2.5rem;background:linear-gradient(135deg,#3b82f6,#1d4ed8);color:white;border-radius:.75rem;font-weight:600;font-size:1.1rem;text-decoration:none;overflow:hidden;transition:all .3s ease;box-shadow:0 4px 15px rgba(59,130,246,.4),0 0 0 1px rgba(255,255,255,.1)}.hero-primary-button:hover{transform:translateY(-2px) scale(1.05);box-shadow:0 8px 25px rgba(59,130,246,.6),0 0 0 1px rgba(255,255,255,.2)}.hero-primary-button .button-text{position:relative;z-index:2}.hero-primary-button .button-glow{position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.4) 50%,transparent);animation:buttonShine 2s ease-in-out infinite}@keyframes buttonShine{0%{left:-100%}50%,to{left:100%}}.hero-secondary-button{position:relative;display:inline-flex;align-items:center;justify-content:center;padding:1rem 2.5rem;background:rgba(255,255,255,.1);color:#3b82f6;border:2px solid #3b82f6;border-radius:.75rem;font-weight:600;font-size:1.1rem;text-decoration:none;overflow:hidden;transition:all .3s ease;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.hero-secondary-button:hover{background:#3b82f6;color:white;transform:translateY(-2px) scale(1.05);box-shadow:0 8px 25px rgba(59,130,246,.4)}.hero-secondary-button .button-text{position:relative;z-index:2}.hero-secondary-button .button-border-glow{position:absolute;inset:-2px;background:linear-gradient(45deg,#3b82f6,#8b5cf6,#06b6d4,#3b82f6);border-radius:.75rem;opacity:0;animation:borderRotate 3s linear infinite;z-index:-1}.hero-secondary-button:hover .button-border-glow{opacity:1}@keyframes borderRotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@media (min-width:640px){.hero-actions-section{flex-direction:row;gap:1.5rem}.hero-content-container{padding:4rem 3rem}}@media (max-width:768px){.hero-content-container{margin:1rem;padding:2rem 1.5rem}.hero-main-title{font-size:2.5rem}.hero-description{font-size:1.1rem}.decoration-line{width:40px}.hero-keywords-tags{gap:.5rem;margin:1rem 0}.keyword-tag{font-size:.75rem;padding:.375rem .75rem}.hero-stats-bar{flex-direction:column;gap:1rem;padding:1rem}.stat-item{flex-direction:row;gap:.5rem}.stat-number{font-size:1.25rem;margin-bottom:0}.stat-label{font-size:.7rem}.stat-divider{display:none}}@media (prefers-color-scheme:dark){.hero-content-container{background:radial-gradient(circle at 50% 50%,rgba(15,23,42,.95) 0,rgba(15,23,42,.85) 70%,transparent 100%),linear-gradient(135deg,rgba(59,130,246,.1),rgba(139,92,246,.1))}.hero-main-title{color:#f8fafc}.hero-description{color:#cbd5e1}}.hero-floating-elements{position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none;overflow:hidden;z-index:2}.floating-shape{position:absolute;border-radius:50%;background:linear-gradient(135deg,rgba(59,130,246,.1),rgba(139,92,246,.1));-webkit-backdrop-filter:blur(1px);backdrop-filter:blur(1px);animation:float 8s ease-in-out infinite}.floating-shape:first-child{width:60px;height:60px;top:20%;left:10%;animation-delay:0s;animation-duration:10s}.floating-shape:nth-child(2){width:40px;height:40px;top:60%;right:15%;animation-delay:2s;animation-duration:12s}.floating-shape:nth-child(3){width:80px;height:80px;bottom:30%;left:20%;animation-delay:4s;animation-duration:14s}.floating-shape:nth-child(4){width:30px;height:30px;top:40%;right:30%;animation-delay:6s;animation-duration:8s}.floating-hexagon{position:absolute;width:50px;height:50px;background:linear-gradient(135deg,rgba(6,182,212,.1),rgba(168,85,247,.1));border:1px solid rgba(59,130,246,.2);clip-path:polygon(30% 0,70% 0,100% 50%,70% 100%,30% 100%,0 50%);animation:hexagonRotate 15s linear infinite}.floating-hexagon:nth-child(5){top:15%;right:20%;animation-delay:1s}.floating-hexagon:nth-child(6){bottom:20%;right:40%;animation-delay:3s}@keyframes hexagonRotate{0%{transform:rotate(0deg) scale(1)}50%{transform:rotate(180deg) scale(1.1)}to{transform:rotate(1turn) scale(1)}}.hero-data-streams{position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none;opacity:.6;z-index:2}.data-stream{position:absolute;height:2px;background:linear-gradient(90deg,transparent,rgba(59,130,246,.5) 50%,transparent);animation:dataFlow 8s linear infinite}.data-stream:first-child{top:25%;left:-100%;width:200px;animation-delay:0s}.data-stream:nth-child(2){top:50%;left:-150%;width:250px;animation-delay:2s}.data-stream:nth-child(3){top:75%;left:-120%;width:180px;animation-delay:4s}@keyframes dataFlow{0%{left:-100%;opacity:0}10%{opacity:1}90%{opacity:1}to{left:100%;opacity:0}}@media (max-width:768px){.hero-tech-background{background-size:200px 200px,200px 200px,150px 150px,180px 180px,40px 40px,40px 40px,100% 100%}.floating-shape{transform:scale(.7)}.floating-hexagon{transform:scale(.6)}}.hero-data-streams,.hero-floating-elements,.hero-tech-background{will-change:transform}.data-stream,.floating-hexagon,.floating-shape{will-change:transform,opacity}.hero-tech-background.dark{background:radial-gradient(circle at 25% 25%,rgba(59,130,246,.2) 0,transparent 50%),radial-gradient(circle at 75% 75%,rgba(139,92,246,.2) 0,transparent 50%),radial-gradient(circle at 90% 10%,rgba(6,182,212,.15) 0,transparent 50%),radial-gradient(circle at 10% 90%,rgba(168,85,247,.15) 0,transparent 50%),linear-gradient(90deg,rgba(59,130,246,.05) 1px,transparent 0),linear-gradient(rgba(59,130,246,.05) 1px,transparent 0),linear-gradient(135deg,#0f172a,#1e293b 25%,#334155 50%,#475569)}.particle-container{position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none;z-index:2}.particle{position:absolute;width:3px;height:3px;background:rgba(59,130,246,.6);border-radius:50%;animation:particleFloat 12s linear infinite}.particle:nth-child(odd){background:rgba(139,92,246,.6);animation-duration:15s}@keyframes particleFloat{0%{transform:translateY(100vh) translateX(-50px);opacity:0}10%{opacity:1}90%{opacity:1}to{transform:translateY(-100px) translateX(50px);opacity:0}}@media (max-width:768px){html{font-size:14px}.container{padding-left:16px;padding-right:16px}.mobile-nav{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(255,255,255,.95);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-bottom:1px solid rgba(0,0,0,.1)}.main-content{padding-top:80px;padding-bottom:20px}.mobile-card{margin:8px 0;padding:16px;border-radius:12px;box-shadow:0 1px 3px rgba(0,0,0,.1)}.mobile-text{line-height:1.6;font-size:16px;color:#333}.mobile-button{min-height:44px;padding:12px 20px;border-radius:8px;font-size:16px;font-weight:500;transition:all .2s ease;touch-action:manipulation}.mobile-button:active{transform:scale(.98)}.mobile-table{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.mobile-table table{min-width:600px;font-size:14px}.mobile-form input,.mobile-form select,.mobile-form textarea{min-height:44px;padding:12px 16px;border-radius:8px;font-size:16px;border:1px solid #e5e7eb;background:white}.mobile-form input:focus,.mobile-form select:focus,.mobile-form textarea:focus{outline:none;border-color:#3b82f6;box-shadow:0 0 0 3px rgba(59,130,246,.1)}.mobile-modal{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1050;background:rgba(0,0,0,.5);display:flex;align-items:flex-end;justify-content:center;padding:0}.mobile-modal-content{width:100%;max-height:90vh;background:white;border-radius:16px 16px 0 0;padding:20px;overflow-y:auto;-webkit-overflow-scrolling:touch;animation:slideUp .3s ease-out}@keyframes slideUp{0%{transform:translateY(100%)}to{transform:translateY(0)}}.mobile-image{max-width:100%;height:auto;border-radius:8px;-o-object-fit:cover;object-fit:cover}.mobile-grid{display:grid;grid-template-columns:1fr;gap:16px;padding:16px}.mobile-grid-2{grid-template-columns:repeat(2,1fr);gap:12px}.mobile-article-list{padding:0 16px}.mobile-article-item{padding:16px 0;border-bottom:1px solid #f3f4f6}.mobile-article-item:last-child{border-bottom:none}.mobile-article-title{font-size:18px;font-weight:600;line-height:1.4;color:#111827;margin-bottom:8px}.mobile-article-excerpt{font-size:14px;line-height:1.5;color:#6b7280;margin-bottom:8px}.mobile-article-meta{font-size:12px;color:#9ca3af;display:flex;gap:12px}.mobile-search{position:relative;padding:16px}.mobile-search input{width:100%;height:44px;padding:0 16px 0 44px;border-radius:22px;border:1px solid #e5e7eb;font-size:16px;background:#f9fafb}.mobile-search-icon{position:absolute;left:28px;top:50%;transform:translateY(-50%);width:20px;height:20px;color:#9ca3af}.mobile-loading{display:flex;justify-content:center;align-items:center;padding:40px 20px}.mobile-loading-spinner{width:24px;height:24px;border:2px solid #e5e7eb;border-top-color:#3b82f6;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.mobile-error{color:#ef4444;background:#fef2f2}.mobile-error,.mobile-success{padding:20px;text-align:center;border-radius:8px;margin:16px}.mobile-success{color:#10b981;background:#f0fdf4}.mobile-bottom-safe{padding-bottom:env(safe-area-inset-bottom)}.mobile-scroll{overflow-x:hidden;overflow-y:auto}.mobile-scroll,.mobile-tabs{-webkit-overflow-scrolling:touch}.mobile-tabs{display:flex;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;padding:0 16px;background:white;border-bottom:1px solid #e5e7eb}.mobile-tabs::-webkit-scrollbar{display:none}.mobile-tab{flex:0 0 auto;padding:12px 16px;font-size:14px;font-weight:500;color:#6b7280;white-space:nowrap;border-bottom:2px solid transparent;transition:all .2s ease}.mobile-tab.active{color:#3b82f6;border-bottom-color:#3b82f6}.mobile-back-to-top{position:fixed;bottom:20px;right:20px;width:48px;height:48px;background:#3b82f6;color:white;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(0,0,0,.15);z-index:1000;transition:all .3s ease}.mobile-back-to-top:hover{background:#2563eb;transform:translateY(-2px)}.mobile-share{position:fixed;bottom:80px;right:20px;width:44px;height:44px;background:#10b981;color:white;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(0,0,0,.15);z-index:1000}.mobile-sticky-header{position:sticky;top:0;z-index:10;background:rgba(255,255,255,.95);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-bottom:1px solid rgba(0,0,0,.1)}.mobile-code{overflow-x:auto;-webkit-overflow-scrolling:touch;padding:16px;background:#f8fafc;border-radius:8px;font-size:14px;line-height:1.4;font-family:SF Mono,Monaco,Cascadia Code,Roboto Mono,Consolas,Courier New,monospace}.mobile-tags{display:flex;flex-wrap:wrap;gap:8px;padding:16px}.mobile-tag{padding:6px 12px;background:#f3f4f6;color:#374151;border-radius:16px;font-size:12px;font-weight:500;white-space:nowrap}.mobile-comments{padding:16px;background:#f9fafb;border-radius:8px;margin:16px 0}.mobile-comment{padding:12px 0;border-bottom:1px solid #e5e7eb}.mobile-comment:last-child{border-bottom:none}.mobile-breadcrumb{padding:12px 16px;background:#f9fafb;border-bottom:1px solid #e5e7eb;font-size:14px;color:#6b7280;overflow-x:auto;-webkit-overflow-scrolling:touch;white-space:nowrap}.mobile-pagination{display:flex;justify-content:center;align-items:center;padding:20px;gap:8px}.mobile-pagination button{min-width:44px;height:44px;border-radius:8px;border:1px solid #e5e7eb;background:white;color:#374151;font-size:14px;font-weight:500}.mobile-pagination button.active{background:#3b82f6;color:white;border-color:#3b82f6}}@media (max-width:375px){.mobile-grid-2{grid-template-columns:1fr}.mobile-article-title{font-size:16px}.mobile-button{font-size:14px;padding:10px 16px}.mobile-form input,.mobile-form select,.mobile-form textarea{padding:10px 14px;font-size:14px}}@media (max-height:500px) and (orientation:landscape){.mobile-modal-content{max-height:80vh}.mobile-nav{position:relative}.main-content{padding-top:0}}@media (prefers-color-scheme:dark) and (max-width:768px){.mobile-nav{background:rgba(17,24,39,.95);border-bottom-color:rgba(255,255,255,.1)}.mobile-card{background:#1f2937;color:#f9fafb}.mobile-form input,.mobile-form select,.mobile-form textarea,.mobile-search input{background:#374151;border-color:#4b5563;color:#f9fafb}.mobile-tabs{background:#1f2937;border-bottom-color:#374151}.mobile-tab{color:#9ca3af}.mobile-tab.active{color:#60a5fa}.mobile-breadcrumb{background:#1f2937;border-bottom-color:#374151;color:#9ca3af}.mobile-code{background:#1f2937;color:#e5e7eb}.mobile-tag{background:#374151;color:#d1d5db}.mobile-comments{background:#1f2937}.mobile-comment{border-bottom-color:#374151}.mobile-pagination button{background:#374151;border-color:#4b5563;color:#f9fafb}.mobile-pagination button.active{background:#3b82f6;border-color:#3b82f6}}@media (prefers-contrast:high) and (max-width:768px){.mobile-button{border:2px solid}.mobile-form input,.mobile-form select,.mobile-form textarea{border:2px solid #000}.mobile-card{border:1px solid #000}}@media (prefers-reduced-motion:reduce){.mobile-back-to-top,.mobile-button,.mobile-modal-content,.mobile-tab{transition:none;animation:none}}@media print{.mobile-back-to-top,.mobile-nav,.mobile-pagination,.mobile-share{display:none!important}.main-content{padding-top:0}.mobile-card{box-shadow:none;border:1px solid #000}}:root{--font-serif:Georgia,"Times New Roman",serif;--font-sans:var(--font-body),-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;--font-mono:var(--font-mono),"SFMono-Regular",Consolas,Menlo,monospace;--color-primary:#d97706;--color-primary-light:#f59e0b;--color-text:#111827;--color-text-muted:#4b5563;--color-border:#e5e7eb;--color-bg-quote:#fefbf3;--color-bg-quote-border:#fef7e6;--space-xs:0.5rem;--space-sm:0.75rem;--space-md:1rem;--space-lg:1.5rem;--space-xl:2rem;--space-2xl:3rem;--space-3xl:4rem;--line-height-tight:1.25;--line-height-normal:1.5;--line-height-relaxed:1.75;--line-height-loose:2}.premium-article-content{font-family:var(--font-serif);font-size:1.125rem;line-height:var(--line-height-relaxed);color:var(--color-text)!important;font-optical-sizing:auto;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;hyphens:auto;-webkit-hyphens:auto;-ms-hyphens:auto;max-width:65ch;margin-inline:auto}.premium-article-content *{color:inherit}.premium-article-content h1,.premium-article-content h2,.premium-article-content h3,.premium-article-content h4,.premium-article-content h5,.premium-article-content h6{font-family:var(--font-sans);font-weight:700;color:var(--color-text)!important;margin-top:var(--space-2xl);margin-bottom:var(--space-lg);letter-spacing:-.025em;position:relative}.premium-article-content h1{font-size:2.5rem;line-height:var(--line-height-tight);margin-top:var(--space-3xl);margin-bottom:var(--space-xl)}.premium-article-content h1:after{content:"";position:absolute;bottom:-.5rem;left:0;width:4rem;height:3px;background:linear-gradient(90deg,var(--color-primary),var(--color-primary-light));border-radius:2px}.premium-article-content h2{font-size:2rem;line-height:var(--line-height-tight);margin-top:3rem;margin-bottom:1.5rem;border-bottom:2px solid var(--color-border);padding-bottom:var(--space-sm);scroll-margin-top:6rem}.premium-article-content h3{font-size:1.5rem;line-height:var(--line-height-normal);color:var(--color-primary)!important;margin-top:var(--space-xl)}.premium-article-content h4{font-size:1.25rem}.premium-article-content h4,.premium-article-content h5{line-height:var(--line-height-normal);margin-top:var(--space-lg)}.premium-article-content h5{font-size:1.125rem;font-weight:600}.premium-article-content h6{font-size:1rem;line-height:var(--line-height-normal);margin-top:var(--space-md);font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--color-text-muted)}.premium-article-content p{margin:0 0 1.5rem;text-align:justify;text-justify:inter-ideograph;hyphens:auto;-webkit-hyphens:auto;-ms-hyphens:auto;line-height:var(--line-height-relaxed);color:var(--color-text)!important}.premium-article-content p:empty{display:none;margin:0}.premium-article-content p:last-child{margin-bottom:0}.premium-article-content p:first-of-type{font-size:1.1875rem;line-height:1.6;color:var(--color-text);font-weight:400}.premium-article-content .drop-cap:first-letter,.premium-article-content p:first-of-type.drop-cap:first-letter{float:left;font-family:var(--font-serif);font-size:4.5rem;line-height:.8;font-weight:700;color:var(--color-primary);margin:.1rem .75rem .1rem 0;text-shadow:2px 2px 4px rgba(0,0,0,.1);position:relative;z-index:1}.premium-article-content .premium-quote,.premium-article-content blockquote{position:relative;margin:2.5rem 0;padding:2rem 2.5rem 2rem 4rem;background:linear-gradient(135deg,var(--color-bg-quote),var(--color-bg-quote-border));border-left:4px solid var(--color-primary);border-radius:0 12px 12px 0;font-style:italic;font-size:1.25rem;line-height:1.7;color:#78350f;box-shadow:0 4px 20px rgba(0,0,0,.05);quotes:""" """ "'" "'"}.premium-article-content .premium-quote:before,.premium-article-content blockquote:before{content:'"';position:absolute;top:1rem;left:1rem;font-size:3rem;font-weight:700;color:var(--color-primary);opacity:.7;font-family:var(--font-serif);line-height:1}.premium-article-content .premium-quote p,.premium-article-content blockquote p{margin:0;text-align:left}.premium-article-content .premium-quote cite,.premium-article-content blockquote cite{display:block;margin-top:var(--space-md);font-size:1rem;font-style:normal;color:var(--color-text-muted);text-align:right}.premium-article-content .premium-quote cite:before,.premium-article-content blockquote cite:before{content:"—";margin-right:var(--space-xs)}.premium-article-content ol,.premium-article-content ul{margin:0 0 1.75rem;padding-left:2rem}.premium-article-content ol li,.premium-article-content ul li{margin-bottom:var(--space-sm);line-height:var(--line-height-relaxed);color:var(--color-text)!important}.premium-article-content ul{list-style-type:none;position:relative}.premium-article-content ul li:before{content:"•";color:var(--color-primary);font-weight:700;position:absolute;left:-1.5rem;font-size:1.2em}.premium-article-content ol{counter-reset:item}.premium-article-content ol li{display:block;position:relative}.premium-article-content ol li:before{content:counter(item) ".";counter-increment:item;color:var(--color-primary);font-weight:700;position:absolute;left:-2rem;width:1.5rem;text-align:right}.premium-article-content ol ol,.premium-article-content ol ul,.premium-article-content ul ol,.premium-article-content ul ul{margin:var(--space-sm) 0;font-size:.95em}.premium-article-content a{color:var(--color-primary);text-decoration:none;border-bottom:1px solid transparent;transition:all .2s ease-in-out;position:relative}.premium-article-content a:hover{border-bottom-color:var(--color-primary);color:var(--color-primary-light)}.premium-article-content a:focus{outline:2px solid var(--color-primary);outline-offset:2px;border-radius:2px}.premium-article-content code{font-family:var(--font-mono);font-size:.9em;background-color:#f3f4f6;color:#b91c1c;padding:.2em .4em;border-radius:4px;font-weight:500}.premium-article-content pre{background-color:#1f2937;color:#f9fafb;padding:1.5rem;border-radius:8px;overflow-x:auto;margin:1.75rem 0;font-family:var(--font-mono);font-size:.9rem;line-height:1.6;border:1px solid #374151}.premium-article-content pre code{background:none;color:inherit;padding:0;border-radius:0;font-weight:400}.premium-article-content img{max-width:100%;height:auto;border-radius:8px;box-shadow:0 4px 20px rgba(0,0,0,.1);margin:2rem auto;display:block}.premium-article-content figure{margin:2rem 0;text-align:center}.premium-article-content figcaption{margin-top:var(--space-sm);font-size:.9rem;color:var(--color-text-muted);font-style:italic;text-align:center}.premium-article-content .table-responsive{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;margin:2rem 0;border-radius:8px;box-shadow:0 2px 10px rgba(0,0,0,.05)}.premium-article-content table{width:100%;border-collapse:collapse;margin:0;font-size:.95rem;border-radius:8px;overflow:hidden}.premium-article-content td,.premium-article-content th{padding:1rem;text-align:left;border-bottom:1px solid var(--color-border)}.premium-article-content th{background-color:#f9fafb;font-family:var(--font-sans);font-weight:600;color:var(--color-text);font-size:.9rem;text-transform:uppercase;letter-spacing:.05em}.premium-article-content tr:hover{background-color:#fafafa}.premium-article-content hr{border:none;height:2px;background:linear-gradient(90deg,transparent,var(--color-primary),transparent);margin:3rem auto;width:60%;border-radius:1px}.premium-article-content strong{font-weight:700;color:var(--color-text)}.premium-article-content em{font-style:italic;color:var(--color-text)}.premium-article-content mark{background-color:#fef3c7;color:var(--color-text);padding:.1em .2em;border-radius:2px}@media (max-width:768px){.premium-article-content{font-size:1.0625rem;line-height:1.75}.premium-article-content h1{font-size:2rem;margin-top:2rem;margin-bottom:1rem}.premium-article-content h2{font-size:1.75rem}.premium-article-content h3{font-size:1.375rem}.premium-article-content .drop-cap:first-letter,.premium-article-content p:first-of-type.drop-cap:first-letter{font-size:3.5rem;margin-right:.5rem}.premium-article-content .premium-quote,.premium-article-content blockquote{margin:1.5rem -1rem;padding:1.5rem 2rem 1.5rem 3rem;font-size:1.125rem;border-radius:0}.premium-article-content .premium-quote:before,.premium-article-content blockquote:before{font-size:2.5rem;top:.5rem;left:.5rem}.premium-article-content ol,.premium-article-content ul{padding-left:1.5rem}.premium-article-content table{font-size:.875rem}.premium-article-content td,.premium-article-content th{padding:.75rem .5rem}}@media (max-width:480px){.premium-article-content{font-size:1rem}.premium-article-content h1{font-size:1.75rem}.premium-article-content h2{font-size:1.5rem}.premium-article-content h3{font-size:1.25rem}.premium-article-content .drop-cap:first-letter,.premium-article-content p:first-of-type.drop-cap:first-letter{font-size:3rem;margin-right:.375rem}}@media print{.premium-article-content{font-size:12pt;line-height:1.6;color:#000;font-family:Times New Roman,Times,serif}.premium-article-content h1,.premium-article-content h2,.premium-article-content h3,.premium-article-content h4,.premium-article-content h5,.premium-article-content h6{page-break-after:avoid;color:#000}.premium-article-content .premium-quote,.premium-article-content blockquote{border-left:3pt solid #000;background:none;box-shadow:none}.premium-article-content a{color:#000;text-decoration:underline}.premium-article-content img{max-width:100%;page-break-inside:avoid}}@media (prefers-color-scheme:dark){:root{--color-text:#f9fafb;--color-text-muted:#d1d5db;--color-border:#374151;--color-bg-quote:#111827;--color-bg-quote-border:#0f172a;--color-primary:#fbbf24;--color-primary-light:#fcd34d}.premium-article-content{background-color:transparent}.premium-article-content,.premium-article-content :not(a):not(code),.premium-article-content h1,.premium-article-content h2,.premium-article-content h3,.premium-article-content h4,.premium-article-content h5,.premium-article-content h6{color:var(--color-text)!important}.premium-article-content h3{color:var(--color-primary)!important}.premium-article-content h6{color:var(--color-text-muted)!important}.premium-article-content p{color:#e5e7eb!important}.premium-article-content .drop-cap:first-letter,.premium-article-content p:first-of-type.drop-cap:first-letter{color:var(--color-primary)}.premium-article-content .premium-quote,.premium-article-content blockquote{background:linear-gradient(135deg,var(--color-bg-quote),var(--color-bg-quote-border));border-left-color:var(--color-primary);color:#fcd34d!important}.premium-article-content .premium-quote:before,.premium-article-content blockquote:before{color:var(--color-primary)}.premium-article-content .premium-quote cite,.premium-article-content blockquote cite{color:var(--color-text-muted)!important}.premium-article-content .premium-quote p,.premium-article-content blockquote p{color:inherit!important}.premium-article-content ol li,.premium-article-content ul li{color:var(--color-text)!important}.premium-article-content ol li:before,.premium-article-content ul li:before{color:var(--color-primary)}.premium-article-content a{color:var(--color-primary)!important}.premium-article-content a:hover{color:var(--color-primary-light)!important}.premium-article-content code{background-color:#374151;color:#fcd34d!important}.premium-article-content pre{background-color:#1f2937;border-color:#4b5563}.premium-article-content pre code{color:#f9fafb!important}.premium-article-content img{box-shadow:0 4px 20px rgba(0,0,0,.5)}.premium-article-content figcaption{color:var(--color-text-muted)!important}.premium-article-content th{background-color:#1f2937}.premium-article-content td,.premium-article-content th{color:var(--color-text)!important;border-bottom-color:var(--color-border)}.premium-article-content tr:hover{background-color:#1f2937}.premium-article-content hr{background:linear-gradient(90deg,transparent,var(--color-primary),transparent)}.premium-article-content em,.premium-article-content strong{color:var(--color-text)!important}.premium-article-content mark{background-color:#78350f;color:#fcd34d!important}.premium-article-content h2{border-bottom-color:var(--color-border)}.premium-article-content ::selection{background-color:rgba(251,191,36,.3);color:var(--color-text)}.premium-article-content ::-moz-selection{background-color:rgba(251,191,36,.3);color:var(--color-text)}}@keyframes premium-glow{0%,to{box-shadow:0 0 20px rgba(59,130,246,.3)}50%{box-shadow:0 0 40px rgba(59,130,246,.6)}}@keyframes premium-pulse{0%,to{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.8}}@keyframes premium-float{0%,to{transform:translateY(0)}50%{transform:translateY(-4px)}}.premium-icon-container{position:relative;perspective:1000px}.premium-icon-container:hover .premium-icon-main{transform:rotateY(10deg) rotateX(-5deg) scale(1.1);animation:premium-float 2s ease-in-out infinite}.premium-glassmorphism{backdrop-filter:blur(20px) saturate(180%);-webkit-backdrop-filter:blur(20px) saturate(180%);background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);box-shadow:0 8px 32px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(255,255,255,.1)}.premium-icon-harvard{background:linear-gradient(135deg,#a41e22,#8b1538 50%,#6d1b5c)}.premium-icon-tech{background:linear-gradient(135deg,#667eea,#764ba2 50%,#f093fb)}.premium-icon-innovation{background:linear-gradient(135deg,#ffecd2,#fcb69f 50%,#ff9a9e)}.premium-icon-data{background:linear-gradient(135deg,#74b9ff,#0984e3 50%,#6c5ce7)}.premium-shadow-xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25),0 0 0 1px rgba(255,255,255,.1),inset 0 1px 0 rgba(255,255,255,.2)}.premium-shadow-inner{box-shadow:inset 0 2px 4px rgba(0,0,0,.1),inset 0 -2px 4px rgba(255,255,255,.1)}@media (max-width:768px){.premium-icon-container{perspective:800px}.premium-icon-main{width:4rem!important;height:4rem!important;font-size:1.5rem!important}}@media (max-width:480px){.premium-icon-main{width:3.5rem!important;height:3.5rem!important;font-size:1.25rem!important}}@media (prefers-contrast:high){.premium-icon-main{border:2px solid;background:var(--bg-contrast-high)!important;color:var(--text-contrast-high)!important}}.premium-article-content :focus{outline:2px solid var(--color-primary);outline-offset:2px}@media (prefers-reduced-motion:reduce){.premium-article-content *,.premium-icon-container *,.premium-icon-main{transition:none!important;animation:none!important;transform:none!important}}.premium-article-content ::selection{background-color:rgba(217,119,6,.2);color:var(--color-text)}.premium-article-content ::-moz-selection{background-color:rgba(217,119,6,.2);color:var(--color-text)}:root{--color-primary:#3b82f6;--color-primary-dark:#1d4ed8;--color-secondary:#8b5cf6;--color-accent:#06b6d4;--font-size-xs:0.75rem;--font-size-sm:0.875rem;--font-size-base:1rem;--font-size-lg:1.125rem;--font-size-xl:1.25rem;--font-size-2xl:1.5rem;--font-size-3xl:1.875rem;--font-size-4xl:2.25rem;--font-size-5xl:3rem;--font-size-6xl:3.75rem;--font-size-7xl:4.5rem;--duration-fast:0.15s;--duration-normal:0.3s;--duration-slow:0.5s;--duration-slower:0.7s;--ease-out-quart:cubic-bezier(0.165,0.84,0.44,1);--ease-out-expo:cubic-bezier(0.19,1,0.22,1);--ease-in-out-back:cubic-bezier(0.68,-0.6,0.32,1.6);--space-1:0.25rem;--space-2:0.5rem;--space-3:0.75rem;--space-4:1rem;--space-6:1.5rem;--space-8:2rem;--space-12:3rem;--space-16:4rem;--space-24:6rem;--shadow-sm:0 1px 2px 0 rgba(0,0,0,0.05);--shadow-md:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06);--shadow-lg:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05);--shadow-xl:0 20px 25px -5px rgba(0,0,0,0.1),0 10px 10px -5px rgba(0,0,0,0.04);--shadow-2xl:0 25px 50px -12px rgba(0,0,0,0.25);--focus-ring:0 0 0 3px rgba(59,130,246,0.1)}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes scaleIn{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}@keyframes slideInFromLeft{0%{opacity:0;transform:translateX(-30px)}to{opacity:1;transform:translateX(0)}}@keyframes gentlePulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.8;transform:scale(1.05)}}@keyframes shimmer{0%{background-position:-200px 0}to{background-position:calc(200px + 100%) 0}}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}@keyframes rotateGradient{0%{background-position:0 50%}50%{background-position:100% 50%}to{background-position:0 50%}}.world-class-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,#fafbfc,#f8fafc 25%,#f1f5f9 50%,#f8fafc 75%,#fafbfc);background-size:400% 400%;animation:rotateGradient 20s ease infinite}.floating-orb{position:absolute;border-radius:50%;background:linear-gradient(135deg,rgba(59,130,246,.1),rgba(139,92,246,.05),rgba(6,182,212,.08));-webkit-backdrop-filter:blur(1px);backdrop-filter:blur(1px);animation:float 6s ease-in-out infinite;pointer-events:none}.floating-orb:first-child{width:200px;height:200px;top:10%;left:5%;animation-delay:0s}.floating-orb:nth-child(2){width:150px;height:150px;top:60%;right:10%;animation-delay:2s}.floating-orb:nth-child(3){width:100px;height:100px;bottom:20%;left:60%;animation-delay:4s}.world-class-button{position:relative;display:inline-flex;align-items:center;justify-content:center;padding:var(--space-4) var(--space-8);font-weight:600;font-size:var(--font-size-lg);border-radius:12px;text-decoration:none;transition:all var(--duration-normal) var(--ease-out-expo);cursor:pointer;overflow:hidden;border:none;outline:none}.world-class-button:focus-visible{box-shadow:var(--focus-ring)}.world-class-button--primary{background:linear-gradient(135deg,var(--color-primary),var(--color-primary-dark));color:white;box-shadow:var(--shadow-md)}.world-class-button--primary:hover{transform:translateY(-2px) scale(1.02);box-shadow:var(--shadow-xl);background:linear-gradient(135deg,var(--color-primary-dark),#1e40af)}.world-class-button--secondary{background:white;color:var(--color-primary);border:2px solid #e5e7eb;box-shadow:var(--shadow-sm)}.world-class-button--secondary:hover{border-color:var(--color-primary);transform:translateY(-1px);box-shadow:var(--shadow-lg)}.world-class-button--primary:before{content:"";position:absolute;top:0;left:-200px;width:200px;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.4) 50%,transparent);animation:shimmer 2s infinite}.world-class-card{background:white;border-radius:16px;border:1px solid #f1f5f9;box-shadow:var(--shadow-sm);transition:all var(--duration-normal) var(--ease-out-expo);overflow:hidden}.world-class-card:hover{border-color:#e2e8f0;box-shadow:var(--shadow-xl);transform:translateY(-4px) scale(1.02)}.world-class-card--interactive:hover{transform:translateY(-8px) scale(1.03);box-shadow:var(--shadow-2xl)}.world-class-card:after{content:"";position:absolute;inset:0;border-radius:16px;padding:1px;background:linear-gradient(135deg,rgba(59,130,246,.1),rgba(139,92,246,.05),transparent);-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;opacity:0;transition:opacity var(--duration-normal) var(--ease-out-expo)}.world-class-card:hover:after{opacity:1}.world-class-stat{text-align:center;padding:var(--space-6);background:white;border-radius:12px;border:1px solid #f1f5f9;transition:all var(--duration-normal) var(--ease-out-expo)}.world-class-stat:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg)}.world-class-stat__number{display:block;font-size:var(--font-size-3xl);font-weight:800;background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:var(--space-2)}.world-class-stat__label{color:#64748b;text-transform:uppercase;letter-spacing:.05em}.trust-signal,.world-class-stat__label{font-size:var(--font-size-sm);font-weight:500}.trust-signal{display:inline-flex;align-items:center;padding:var(--space-2) var(--space-4);background:white/80;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.2);border-radius:999px;color:#374151;box-shadow:var(--shadow-sm);animation:fadeInUp .8s var(--ease-out-expo) .2s both}.trust-signal__indicator{width:8px;height:8px;background:#10b981;border-radius:50%;margin-right:var(--space-2);animation:gentlePulse 2s ease-in-out infinite}.hero-title{animation:fadeInUp 1s var(--ease-out-expo) .3s both}.hero-title--line-1{animation-delay:.3s}.hero-title--line-2{animation-delay:.5s}.hero-description{animation:fadeInUp 1s var(--ease-out-expo) .7s both}.hero-stats{animation:fadeInUp 1s var(--ease-out-expo) .9s both}.hero-cta{animation:fadeInUp 1s var(--ease-out-expo) 1.1s both}@media (max-width:640px){.world-class-button{padding:var(--space-3) var(--space-6);font-size:var(--font-size-base)}.world-class-stat__number{font-size:var(--font-size-2xl)}.floating-orb{transform:scale(.7)}}@media (prefers-color-scheme:dark){:root{--color-bg:#0f172a;--color-bg-secondary:#1e293b;--color-text:#f8fafc;--color-text-secondary:#cbd5e1}.world-class-hero{background:linear-gradient(135deg,var(--color-bg) 0,var(--color-bg-secondary) 50%,var(--color-bg) 100%)}.world-class-card{background:var(--color-bg-secondary);border-color:#334155;color:var(--color-text)}.world-class-card:hover{border-color:#475569}}.floating-orb,.world-class-button,.world-class-card,.world-class-stat{will-change:transform}@media (prefers-reduced-motion:reduce){*,:after,:before{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}.loading-shimmer{background:linear-gradient(90deg,#f1f5f9 25%,#e2e8f0 50%,#f1f5f9 75%);background-size:200% 100%;animation:shimmer 1.5s infinite}.interactive-glow:hover{box-shadow:var(--shadow-xl),0 0 0 1px rgba(59,130,246,.1),0 0 20px rgba(59,130,246,.1)}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:#f1f5f9}::-webkit-scrollbar-thumb{background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));border-radius:4px}::-webkit-scrollbar-thumb:hover{background:linear-gradient(135deg,var(--color-primary-dark),var(--color-secondary))}html{scroll-behavior:smooth}.world-class-grid{display:grid;gap:var(--space-6);grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}@media (min-width:768px){.world-class-grid{gap:var(--space-8)}}.text-hero{font-size:clamp(var(--font-size-4xl),8vw,var(--font-size-7xl));line-height:1.1;font-weight:800;letter-spacing:-.025em}.text-subtitle{font-size:clamp(var(--font-size-lg),3vw,var(--font-size-2xl));line-height:1.6;font-weight:300;color:#64748b}*{box-sizing:border-box}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility}:root{--mobile-padding:1rem;--mobile-margin:0.75rem;--mobile-gap:0.5rem;--touch-target-min:44px;--touch-target-comfortable:48px;--mobile-scale-down:0.875;--mobile-line-height:1.5;--mobile-animation-duration:0.2s;--mobile-easing:cubic-bezier(0.4,0,0.2,1)}.mobile-container{width:100%;margin:0 auto;padding:0 var(--mobile-padding)}@media (max-width:320px){.mobile-container{padding:0 .75rem}}@media (min-width:390px){.mobile-container{padding:0 1.25rem}}@media (min-width:428px){.mobile-container{padding:0 1.5rem}}@media (min-width:768px){.mobile-container{max-width:768px;padding:0 2rem}}@media (min-width:1024px){.mobile-container{max-width:1200px;padding:0 3rem}}.mobile-hero{min-height:100vh;min-height:100dvh;display:flex;align-items:center;justify-content:center;padding:var(--mobile-padding);background:linear-gradient(135deg,#fafbfc,#f8fafc 50%,#f1f5f9)}@media (max-width:640px){.mobile-hero{min-height:80vh;min-height:80dvh;padding-top:2rem;padding-bottom:2rem}}.mobile-hero-title{font-size:clamp(2rem,12vw,4rem);line-height:1.1;font-weight:800;text-align:center;margin-bottom:1.5rem;letter-spacing:-.02em}.mobile-hero-subtitle{font-size:clamp(1rem,4vw,1.5rem);line-height:var(--mobile-line-height);color:#64748b;text-align:center;margin-bottom:2rem;font-weight:400}.mobile-button{display:flex;align-items:center;justify-content:center;width:100%;min-height:var(--touch-target-comfortable);padding:1rem 1.5rem;font-size:1.1rem;font-weight:600;border-radius:12px;text-decoration:none;border:none;cursor:pointer;transition:all var(--mobile-animation-duration) var(--mobile-easing);position:relative;overflow:hidden;-webkit-tap-highlight-color:transparent;touch-action:manipulation;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mobile-button--primary{background:linear-gradient(135deg,#3b82f6,#1d4ed8);color:white;box-shadow:0 4px 14px rgba(59,130,246,.3)}.mobile-button--primary:active{transform:scale(.98);box-shadow:0 2px 8px rgba(59,130,246,.4)}.mobile-button--secondary{background:white;color:#3b82f6;border:2px solid #e5e7eb;box-shadow:0 2px 8px rgba(0,0,0,.1)}.mobile-button--secondary:active{transform:scale(.98);border-color:#3b82f6;background:#f8fafc}.mobile-button-group{display:flex;flex-direction:column;gap:1rem;width:100%;max-width:400px;margin:0 auto}@media (min-width:640px){.mobile-button-group{flex-direction:row;max-width:none}.mobile-button{width:auto;min-width:200px}}.mobile-card{background:white;border-radius:16px;border:1px solid #f1f5f9;box-shadow:0 2px 8px rgba(0,0,0,.04);margin-bottom:1.5rem;overflow:hidden;transition:all var(--mobile-animation-duration) var(--mobile-easing)}.mobile-card:active{transform:scale(.99);box-shadow:0 1px 4px rgba(0,0,0,.08)}.mobile-card__content{padding:1.5rem}.mobile-card__title{font-size:1.25rem;font-weight:700;color:#1f2937;margin-bottom:.75rem;line-height:1.3}.mobile-card__description{font-size:.95rem;color:#6b7280;line-height:1.6;margin-bottom:1rem}.mobile-nav{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.95);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border-bottom:1px solid rgba(0,0,0,.05);padding:.75rem 0}.mobile-nav__container{display:flex;align-items:center;justify-content:space-between;padding:0 var(--mobile-padding)}.mobile-nav__logo{display:flex;align-items:center;gap:.5rem;font-size:1.25rem;font-weight:700;text-decoration:none;color:#1f2937}.mobile-nav__menu-toggle{display:flex;align-items:center;justify-content:center;width:var(--touch-target-comfortable);height:var(--touch-target-comfortable);border:none;background:none;border-radius:8px;cursor:pointer;transition:background var(--mobile-animation-duration)}.mobile-nav__menu-toggle:active{background:#f3f4f6}.mobile-nav__hamburger{width:24px;height:24px;display:flex;flex-direction:column;justify-content:space-around}.mobile-nav__hamburger-line{width:100%;height:2px;background:#374151;border-radius:2px;transition:all .3s ease}.mobile-nav__hamburger--active .mobile-nav__hamburger-line:first-child{transform:rotate(45deg) translate(5px,5px)}.mobile-nav__hamburger--active .mobile-nav__hamburger-line:nth-child(2){opacity:0}.mobile-nav__hamburger--active .mobile-nav__hamburger-line:nth-child(3){transform:rotate(-45deg) translate(7px,-6px)}.mobile-nav__menu{position:fixed;top:100%;left:0;right:0;background:white;border-top:1px solid #e5e7eb;box-shadow:0 4px 20px rgba(0,0,0,.1);transform:translateY(-100%);opacity:0;visibility:hidden;transition:all .3s ease;z-index:40}.mobile-nav__menu--active{transform:translateY(0);opacity:1;visibility:visible}.mobile-nav__menu-list{padding:1rem 0}.mobile-nav__menu-item{display:block;padding:1rem var(--mobile-padding);font-size:1.1rem;font-weight:500;color:#374151;text-decoration:none;border-bottom:1px solid #f3f4f6;min-height:var(--touch-target-comfortable);display:flex;align-items:center;transition:background var(--mobile-animation-duration)}.mobile-nav__menu-item:active{background:#f9fafb}.mobile-stats{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:2rem 0}@media (min-width:640px){.mobile-stats{grid-template-columns:repeat(4,1fr)}}.mobile-stat{text-align:center;padding:1.5rem 1rem;background:white;border-radius:12px;border:1px solid #f1f5f9;box-shadow:0 1px 4px rgba(0,0,0,.04)}.mobile-stat__number{display:block;font-size:1.75rem;font-weight:800;background:linear-gradient(135deg,#3b82f6,#8b5cf6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:.5rem}.mobile-stat__label{font-size:.8rem;color:#6b7280;font-weight:500;text-transform:uppercase;letter-spacing:.05em}.mobile-form-group{margin-bottom:1.5rem}.mobile-input{width:100%;min-height:var(--touch-target-comfortable);padding:1rem;font-size:1rem;border:2px solid #e5e7eb;border-radius:8px;background:white;transition:border-color var(--mobile-animation-duration)}.mobile-input:focus{outline:none;border-color:#3b82f6;box-shadow:0 0 0 3px rgba(59,130,246,.1)}@keyframes mobileSlideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.mobile-animate-in{animation:mobileSlideUp .4s ease-out forwards}.mobile-stagger-1{animation-delay:.1s}.mobile-stagger-2{animation-delay:.2s}.mobile-stagger-3{animation-delay:.3s}.mobile-stagger-4{animation-delay:.4s}.mobile-scroll-container{-webkit-overflow-scrolling:touch;scroll-behavior:smooth}.mobile-hide-scrollbar{scrollbar-width:none;-ms-overflow-style:none}.mobile-hide-scrollbar::-webkit-scrollbar{display:none}.mobile-gpu-accelerated{transform:translateZ(0);will-change:transform}.mobile-contain-paint{contain:paint}@media (prefers-contrast:high){.mobile-button--primary{background:#1d4ed8;color:white}.mobile-card{border-color:#374151}}@media (prefers-reduced-motion:reduce){.mobile-animate-in,.mobile-button,.mobile-card{animation:none!important;transition:none!important}}@media (min-resolution:2dppx){.mobile-hero-title{font-weight:700}}.mobile-safe-area{padding:env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left)}.mobile-glassmorphism{background:rgba(255,255,255,.85);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.2)}.mobile-shadow-sm{box-shadow:0 1px 2px rgba(0,0,0,.05)}.mobile-shadow-md{box-shadow:0 2px 8px rgba(0,0,0,.1)}.mobile-shadow-lg{box-shadow:0 4px 16px rgba(0,0,0,.15)}.mobile-grid{display:grid;gap:1rem;grid-template-columns:1fr}@media (min-width:640px){.mobile-grid--sm-2{grid-template-columns:repeat(2,1fr)}.mobile-grid--sm-3{grid-template-columns:repeat(3,1fr)}}@media (min-width:768px){.mobile-grid--md-2{grid-template-columns:repeat(2,1fr)}.mobile-grid--md-3{grid-template-columns:repeat(3,1fr)}.mobile-grid--md-4{grid-template-columns:repeat(4,1fr)}}.mobile-text-center{text-align:center}.mobile-text-left{text-align:left}.mobile-text-right{text-align:right}.mobile-hidden{display:none}.mobile-block{display:block}.mobile-flex{display:flex}@media (min-width:640px){.sm\:mobile-hidden{display:none}.sm\:mobile-block{display:block}.sm\:mobile-flex{display:flex}}.mobile-debug-grid{background-image:linear-gradient(90deg,rgba(255,0,0,.1) 1px,transparent 0),linear-gradient(180deg,rgba(255,0,0,.1) 1px,transparent 0);background-size:1rem 1rem}.mobile-debug-touch{outline:2px dashed rgba(255,0,0,.5);outline-offset:2px}