/*  clrform — styles.css
    Venture Studio Landing Page
    ========================================= */

/* --- RESET & TOKENS --- */
*,*::before,*::after{
  margin:0;
  padding:0;
  box-sizing:border-box
}

:root{
  --g950:linear-gradient(to right, #000000, #152331);;
  --g900:#111114;
  --g875:#151518;
  --g850:#1a1a1f;
  --g800:#222229;
  --g700:#353540;
  --g600:#4d4d5c;
  --g500:#6e6e80;
  --g400:#8f8fa3;
  --g300:#b4b4c7;
  --g200:#c8c8d6;
  --g100:#e4e4ec;
  --white:#fafafe;

  --blue:#5b9cf6;
  --blue-s:rgba(91,156,246,.07);
  --blue-g:rgba(91,156,246,.18);

  --coral:#f47a68;
  --coral-s:rgba(244,122,104,.07);
  --coral-g:rgba(244,122,104,.16);

  --mint:#5ee6a8;
  --mint-s:rgba(94,230,168,.07);
  --mint-g:rgba(94,230,168,.14);

  --gold:#f0c056;
  --gold-s:rgba(240,192,86,.07);
  --gold-g:rgba(240,192,86,.14);

  --violet:#a78bfa;
  --violet-s:rgba(167,139,250,.07);
  --violet-g:rgba(167,139,250,.14);

  --hd:'Fraunces',Georgia,serif;
  --bd:'DM Sans',-apple-system,BlinkMacSystemFont,sans-serif;
  --expo:cubic-bezier(.16,1,.3,1);
}

html{
  scroll-behavior:smooth;
  scrollbar-width:thin;
  scrollbar-color:var(--g700) transparent;
  overflow-x:hidden;
}

body{
  font-family:var(--bd);
  background:var(--g950);
  color:var(--g300);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

::selection{background:var(--blue);color:var(--g950)}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{cursor:pointer;border:none;background:none;font-family:inherit}
ul{list-style:none}


/* --- SPLASH INTRO --- */

.splash{
  position:fixed;inset:0;z-index:10000;
  background:var(--g950);
  display:flex;align-items:center;justify-content:center;
  flex-direction:column;gap:24px;
  transition:opacity .8s ease,visibility .8s;
}
.splash.done{opacity:0;visibility:hidden;pointer-events:none}
.splash-sphere{width:180px;height:180px}

.splash-text{
  font-family:var(--bd);font-weight:700;font-size:1.4rem;
  color:var(--white);letter-spacing:-.02em;
  opacity:0;animation:splash-in .8s var(--expo) 1s forwards;
}
.splash-line{
  width:60px;height:1px;background:var(--g700);
  opacity:0;animation:splash-in .6s var(--expo) 1.3s forwards;
}
.splash-sub{
  font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--g500);
  opacity:0;animation:splash-in .6s var(--expo) 1.5s forwards;
}
@keyframes splash-in{to{opacity:1}}


/* --- SCROLL BAR --- */

.scroll-bar{
  position:fixed;top:0;left:0;
  height:2px;width:100%;z-index:9999;
  background:linear-gradient(90deg,var(--blue),var(--coral),var(--mint),var(--gold));
  transform-origin:left;transform:scaleX(0);
}


/* --- CURSOR --- */

.cur-d,.cur-r{position:fixed;pointer-events:none;z-index:9998;border-radius:50%;display:none}
.cur-d{width:6px;height:6px;background:var(--blue);mix-blend-mode:screen;transition:transform .12s var(--expo)}
.cur-r{width:32px;height:32px;border:1.5px solid rgba(91,156,246,.25);transition:width .35s var(--expo),height .35s var(--expo),border-color .3s}
.cur-r.hov{width:52px;height:52px;border-color:var(--blue)}

@media(hover:hover)and(pointer:fine){.cur-d,.cur-r{display:block}}


/* --- SPHERE --- */

.sphere-wrap{
  position:relative;display:inline-flex;
  align-items:center;justify-content:center;flex-shrink:0;
}
.sphere-canvas{display:block}

.nav .sphere-wrap{width:36px;height:36px}
.nav .sphere-canvas{width:36px;height:36px}

.hero-logo-big .sphere-wrap{width:180px;height:180px}
.hero-logo-big .sphere-canvas{width:180px;height:180px}

.thesis-visual .sphere-wrap{width:70%;max-width:340px;aspect-ratio:1}
.thesis-visual .sphere-canvas{width:100%;height:100%}

.founder-sphere .sphere-wrap{width:120px;height:120px}
.founder-sphere .sphere-canvas{width:120px;height:120px}


/* --- NAV --- */

.nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:0 clamp(20px,4vw,48px);height:64px;
  display:flex;align-items:center;justify-content:space-between;
  backdrop-filter:blur(24px) saturate(1.5);
  -webkit-backdrop-filter:blur(24px) saturate(1.5);
  background:rgba(8,8,10,.72);
  border-bottom:1px solid rgba(255,255,255,.04);
  transition:transform .55s var(--expo);
}
.nav.hide{transform:translateY(-100%)}

.logo{display:flex;align-items:center;gap:10px}
.logo-text{
  font-family:var(--bd);font-weight:700;font-size:.95rem;
  color:var(--white);letter-spacing:-.02em;
}

.nav-links{display:flex;align-items:center;gap:clamp(16px,2.2vw,32px)}
.nav-links a{
  font-size:.78rem;font-weight:500;color:var(--g400);
  letter-spacing:.05em;text-transform:uppercase;
  transition:color .3s;position:relative;
}
.nav-links a::after{
  content:'';position:absolute;bottom:-3px;left:0;
  width:0;height:1.5px;background:var(--blue);
  transition:width .4s var(--expo);
}
.nav-links a:hover{color:var(--white)}
.nav-links a:hover::after{width:100%}

.nav-cta-btn{
  padding:7px 22px;border:1px solid var(--g700);border-radius:100px;
  font-size:.78rem;font-weight:600;color:var(--white);
  transition:all .35s var(--expo);
}
.nav-cta-btn::after{display:none!important}
.nav-cta-btn:hover{background:var(--white);color:var(--g950)!important;border-color:var(--white)}

.ham{display:none;flex-direction:column;gap:5px;padding:10px;z-index:1002}
.ham span{
  width:20px;height:1.5px;background:var(--g200);
  transition:all .35s var(--expo);transform-origin:center;
}
.ham.on span:nth-child(1){transform:rotate(45deg) translateY(6.5px)}
.ham.on span:nth-child(2){opacity:0;transform:scaleX(0)}
.ham.on span:nth-child(3){transform:rotate(-45deg) translateY(-6.5px)}

.mob-menu{
  display:none;position:fixed;inset:0;z-index:1001;
  background:rgba(8,8,10,.97);backdrop-filter:blur(40px);
  flex-direction:column;justify-content:center;align-items:center;gap:32px;
}
.mob-menu.open{display:flex}
.mob-menu a{
  font-size:1.6rem;font-weight:700;color:var(--g200);transition:color .3s;
}
.mob-menu a:hover{color:var(--blue)}


/* --- HERO --- */

.hero{
  min-height:100svh;
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  text-align:center;
  padding:100px clamp(20px,5vw,48px) 80px;
  position:relative;overflow:hidden;
}

.hero-bg{position:absolute;inset:0;z-index:0}
.hero-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.012) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:radial-gradient(ellipse 60% 50% at center,black 20%,transparent 70%);
  -webkit-mask-image:radial-gradient(ellipse 60% 50% at center,black 20%,transparent 70%);
}
.hero-glow{
  position:absolute;width:700px;height:700px;top:50%;left:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(91,156,246,.1) 0%,transparent 65%);
  opacity:.5;animation:breathe 7s ease-in-out infinite;
}
@keyframes breathe{
  0%,100%{opacity:.35;transform:translate(-50%,-50%) scale(1)}
  50%{opacity:.55;transform:translate(-50%,-50%) scale(1.1)}
}

.hero-c{position:relative;
  z-index:1;
  max-width:860px
}

.hero-logo-big{
  margin:0 auto 32px;display:flex;justify-content:center;
  opacity:0;transform:translateY(20px) scale(.95);
  animation:fu-scale 1.2s var(--expo) .5s forwards;
}
@keyframes fu-scale{to{opacity:1;transform:translateY(0) scale(1)}}

.hero-tag{
  display:inline-flex;align-items:center;gap:9px;
  padding:7px 18px;border:1px solid var(--g800);border-radius:100px;
  font-size:.72rem;font-weight:600;color:var(--g500);
  letter-spacing:.1em;text-transform:uppercase;
  margin-bottom:28px;background:var(--blue-s);
  opacity:0;transform:translateY(20px);
  animation:fu .8s var(--expo) .15s forwards;
}
.hero-tag .td{
  width:5px;height:5px;border-radius:50%;
  background:var(--blue);box-shadow:0 0 10px var(--blue-g);
}

.hero h1{
  font-family:var(--hd);font-weight:600;
  font-size:clamp(2.6rem,4.6vw,6rem);line-height:1.02;
  color:var(--white);letter-spacing:-.035em;margin-bottom:32px;
  opacity:0;transform:translateY(30px);
  animation:fu 1s var(--expo) .3s forwards;
}
.hero h1 .gr-blue{
  background:linear-gradient(135deg,var(--blue),#8ec5ff);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hero h1 .gr-coral{
  background:linear-gradient(135deg,var(--coral),#ffb09e);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}

.hero-sub{
  font-size:clamp(.95rem,1.8vw,1.18rem);color:var(--g400);
  max-width:540px;margin:0 auto 40px;line-height:1.7;
  opacity:0;transform:translateY(28px);
  animation:fu 1s var(--expo) .7s forwards;
}
.hero-btns{
  display:flex;gap:14px;justify-content:center;flex-wrap:wrap;
  opacity:0;transform:translateY(28px);
  animation:fu 1s var(--expo) .9s forwards;
}

.btn-p{
  padding:13px 34px;background:var(--white);color:var(--g950);
  border-radius:100px;font-size:.88rem;font-weight:600;
  transition:all .4s var(--expo);position:relative;overflow:hidden;
}
.btn-p::after{
  content:'';position:absolute;inset:0;border-radius:inherit;
  background:linear-gradient(135deg,var(--blue),var(--coral));
  opacity:0;transition:opacity .4s;
}
.btn-p:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(250,250,250,.12)}
.btn-p:hover::after{opacity:1}
.btn-p span{position:relative;z-index:1}
.btn-p:hover span{color:var(--white)}

.btn-g{
  padding:13px 34px;border:1px solid var(--g700);border-radius:100px;
  font-size:.88rem;font-weight:500;color:var(--g300);
  transition:all .4s var(--expo);
}
.btn-g:hover{border-color:var(--g400);color:var(--white);transform:translateY(-2px)}

.scroll-ind{
  position:absolute;bottom:16px;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:6px;
  opacity:0;animation:fu 1s var(--expo) 1.4s forwards;
}
.scroll-ind span{font-size:.6rem;color:var(--g600);letter-spacing:.14em;text-transform:uppercase}
.scroll-ln{
  width:1px;height:28px;
  background:linear-gradient(to bottom,var(--g600),transparent);
  animation:sp 2.2s ease infinite;
}
@keyframes sp{
  0%,100%{opacity:.25;transform:scaleY(1)}
  50%{opacity:1;transform:scaleY(1.3);transform-origin:top}
}
@keyframes fu{to{opacity:1;transform:translateY(0)}}


/* --- SECTIONS (shared) --- */

.sec{
  padding:clamp(80px,12vw,140px) clamp(20px,5vw,48px);
  position:relative;
}
.sec-inner{max-width:1180px;margin:0 auto}

.sec-label{
  display:inline-flex;align-items:center;gap:10px;
  font-size:.7rem;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--g500);margin-bottom:18px;
}
.sec-label::before{content:'';width:20px;height:1px;background:var(--g600)}

.sec-title{
  font-family:var(--hd);font-weight:900;
  font-size:clamp(1.8rem,4.5vw,3.2rem);
  color:var(--white);letter-spacing:-.03em;line-height:1.1;
  margin-bottom:18px;
}
.sec-desc{
  font-size:1rem;color:var(--g400);max-width:500px;
  line-height:1.7;margin-bottom:56px;
}

.vent-head{text-align:center;margin-bottom:clamp(48px,6vw,80px)}
.vent-head .sec-desc{margin-left:auto;margin-right:auto}

/* Reveal animation */
.rv{
  opacity:0;transform:translateY(36px);
  transition:opacity .8s var(--expo),transform .8s var(--expo);
}
.rv.vis{opacity:1;transform:translateY(0)}
.rv-d1{transition-delay:.1s}
.rv-d2{transition-delay:.2s}
.rv-d3{transition-delay:.3s}
.rv-d4{transition-delay:.4s}
.rv-d5{transition-delay:.5s}


/* --- THESIS --- */

.thesis .thesis-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(40px,6vw,80px);align-items:center;
}

.thesis-visual{
  position:relative;aspect-ratio:1;border-radius:24px;
  background: linear-gradient(135deg, #ffffff0f, #ffffff05); 
  border: 1px solid #ffffff14; 
  backdrop-filter: blur(28px) saturate(1.3);          /* blurs content behind the glass effect and boosts the color intensity of the blurred content*/
  -webkit-backdrop-filter: blur(28px) saturate(1.3); 
  box-shadow: 0 8px 32px #00000059, inset 0 1px 0 #ffffff0f;   /* inset takes fills element with highlight */
  overflow: hidden;
  display:flex;align-items:center;justify-content:center;
}
.thesis-visual::after{
  content:'';position:absolute;bottom:-20px;left:50%;
  transform:translateX(-50%);width:50%;height:50px;
  background:var(--blue);filter:blur(44px);opacity:.12;
}

.thesis-text .lead-q{
  font-family:var(--hd);font-weight:700;
  font-size:clamp(1.15rem,2vw,1.45rem);
  color:var(--g100);line-height:1.5;margin-bottom:24px;font-style:italic;
}
.thesis-text p{
  color:var(--g400);font-size:.95rem;line-height:1.75;margin-bottom:16px;
}
.thesis-text p:last-of-type{margin-bottom:0}

/* Stats bar */
.thesis-stats{
  display:flex;align-items:center;justify-content:center;
  gap:clamp(24px,4vw,56px);
  margin-top:clamp(48px,6vw,80px);
  padding:clamp(28px,3vw,40px) clamp(24px,3vw,48px);
  border-radius:20px;
  background: linear-gradient(135deg, #ffffff0f, #ffffff05); 
  border: 1px solid #ffffff14; 
  backdrop-filter: blur(28px) saturate(1.3);          /* blurs content behind the glass effect and boosts the color intensity of the blurred content*/
  -webkit-backdrop-filter: blur(28px) saturate(1.3); 
  box-shadow: 0 8px 32px #00000059, inset 0 1px 0 #ffffff0f;   /* inset takes fills element with highlight */
}

.stat-item{
  display:flex;flex-direction:column;align-items:center;gap:6px;
  text-align:center;
}
.stat-num{
  font-family:var(--hd);font-weight:900;
  font-size:clamp(2.2rem,4vw,3.4rem);
  color:var(--white);letter-spacing:-.03em;line-height:1;
}
.stat-label{
  font-size:.72rem;font-weight:500;color:var(--g500);
  letter-spacing:.06em;text-transform:uppercase;
}

.stat-divider{
  width:1px;height:48px;
  background:linear-gradient(to bottom,transparent,var(--g700),transparent);
  flex-shrink:0;
}


/* --- FLAGSHIP PRODUCTS --- */

.proj-grid{display:grid;gap:20px}

.proj{
  position:relative;border-radius:20px;
  background: linear-gradient(135deg, #ffffff0f, #ffffff05); 
  border: 1px solid #ffffff14; 
  backdrop-filter: blur(28px) saturate(1.3);          /* blurs content behind the glass effect and boosts the color intensity of the blurred content*/
  -webkit-backdrop-filter: blur(28px) saturate(1.3); 
  box-shadow: 0 8px 32px #00000059, inset 0 1px 0 #ffffff0f;   /* inset takes fills element with highlight */
  overflow:hidden;transition:all .5s var(--expo);
  cursor:pointer;display:grid;
  grid-template-columns:1fr 1fr;min-height:320px;
}
.proj:hover{
  border-color:var(--g600);
  transform:translateY(-4px);
  box-shadow:0 20px 56px rgba(0,0,0,.4);
}

.proj-info{
  padding:clamp(24px,3.5vw,40px);
  display:flex;flex-direction:column;justify-content:space-between;
}
.proj-cat{
  font-size:.68rem;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--blue);margin-bottom:4px;
}
.proj-audience{
  font-size:.68rem;font-weight:500;color:var(--g500);
  letter-spacing:.04em;margin-bottom:12px;
}
.proj-name{
  font-family:var(--hd);font-weight:800;
  font-size:clamp(1.3rem,2.5vw,1.8rem);
  color:var(--white);letter-spacing:-.02em;
  margin-bottom:10px;line-height:1.15;
}
.proj-desc{
  color:var(--g400);font-size:.86rem;line-height:1.65;margin-bottom:20px;
}
.proj-tags{display:flex;gap:6px;flex-wrap:wrap}
.proj-tag{
  padding:4px 11px;border-radius:100px;
  background:var(--g850);border:1px solid var(--g800);
  font-size:.68rem;color:var(--g400);font-weight:500;
}

.proj-vis{
  position:relative;display:flex;align-items:center;
  justify-content:center;overflow:hidden;
}
.proj-mock{
  width:82%;aspect-ratio:16/10;border-radius:10px;
  position:relative;transition:transform .6s var(--expo);
}
.proj:hover .proj-mock{transform:scale(1.03)}

.proj-arrow{
  position:absolute;top:clamp(16px,2.5vw,28px);right:clamp(16px,2.5vw,28px);
  width:34px;height:34px;border-radius:50%;
  border:1px solid var(--g700);
  display:flex;align-items:center;justify-content:center;
  transition:all .4s var(--expo);
}
.proj:hover .proj-arrow{background:var(--white);border-color:var(--white)}
.proj-arrow svg{transition:all .3s;width:13px;height:13px}
.proj:hover .proj-arrow svg{stroke:var(--g950);transform:translate(2px,-2px)}

.proj-vis::after{
  content:'';position:absolute;bottom:-28px;left:50%;
  transform:translateX(-50%);width:65%;height:70px;
  filter:blur(44px);opacity:0;transition:opacity .5s;
}
.proj:nth-child(1) .proj-vis::after{background:var(--blue)}
.proj:nth-child(2) .proj-vis::after{background:var(--violet)}
.proj:nth-child(3) .proj-vis::after{background:var(--coral)}
.proj:nth-child(4) .proj-vis::after{background:var(--gold)}
.proj:hover .proj-vis::after{opacity:.25}

/* Product mockups */
.mk-hdr{display:flex;gap:5px;margin-bottom:10px}
.mk-dot{width:6px;height:6px;border-radius:50%}
.mk-dot:nth-child(1){background:#ff5f57}
.mk-dot:nth-child(2){background:#febc2e}
.mk-dot:nth-child(3){background:#28c840}

/* Build 03 mockup */
.mk-b03{
  background:linear-gradient(145deg,#0d1520,#131d2c);
  border:1px solid rgba(91,156,246,.12);
  display:flex;flex-direction:column;padding:14px;
}
.mk-tracks{flex:1;display:flex;flex-direction:column;gap:8px;justify-content:center}
.mk-track{
  height:8px;border-radius:4px;
  background:rgba(91,156,246,.08);overflow:hidden;
}
.mk-track-bar{
  height:100%;border-radius:4px;
  background:linear-gradient(90deg,rgba(91,156,246,.3),rgba(91,156,246,.15));
  transition:width 1.2s var(--expo);
}

/* WanderLess mockup */
.mk-wl{
  background:linear-gradient(145deg,#12101a,#18142a);
  border:1px solid rgba(167,139,250,.12);
  display:flex;flex-direction:column;padding:14px;
}
.mk-bars{flex:1;display:flex;flex-direction:column;gap:6px;justify-content:center}
.mk-bar{height:4px;border-radius:2px;background:rgba(167,139,250,.12)}
.mk-bar:nth-child(1){width:78%}
.mk-bar:nth-child(2){width:52%;background:rgba(167,139,250,.22)}
.mk-bar:nth-child(3){width:68%}
.mk-bar:nth-child(4){width:38%;background:rgba(167,139,250,.18)}

/* FrameReady mockup */
.mk-fr{
  background:linear-gradient(145deg,#1a100d,#1e1410);
  border:1px solid rgba(244,122,104,.1);
  display:grid;grid-template-columns:1fr 1fr;gap:7px;padding:14px;
}
.mk-tile{
  border-radius:6px;background:rgba(244,122,104,.06);
  border:1px solid rgba(244,122,104,.08);
}
.mk-tile:first-child{grid-row:span 2}

/* Inward mockup */
.mk-ai{
  background:linear-gradient(145deg,#161210,#1a1610);
  border:1px solid rgba(240,192,86,.1);
  padding:14px;display:flex;flex-direction:column;gap:8px;
}
.mk-node{display:flex;align-items:center;gap:8px}
.mk-circle{
  width:24px;height:24px;border-radius:50%;
  border:1px solid rgba(240,192,86,.15);flex-shrink:0;
}
.mk-line{
  flex:1;height:3px;border-radius:2px;
  background:rgba(240,192,86,.08);
}
.mk-node:nth-child(2) .mk-line{width:60%}
.mk-node:nth-child(3) .mk-line{width:45%}


/* --- THE LAB --- */

.lab-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}

.lab-card{
  padding:clamp(20px,2vw,28px);border-radius:16px;
  background: linear-gradient(135deg, #ffffff0f, #ffffff05); 
  border: 1px solid #ffffff14; 
  backdrop-filter: blur(28px) saturate(1.3);          /* blurs content behind the glass effect and boosts the color intensity of the blurred content*/
  -webkit-backdrop-filter: blur(28px) saturate(1.3); 
  box-shadow: 0 8px 32px #00000059, inset 0 1px 0 #ffffff0f;   /* inset takes fills element with highlight */
  transition:all .4s var(--expo);position:relative;overflow:hidden;
}
.lab-card::before{
  content:'';position:absolute;bottom:-24px;left:50%;
  transform:translateX(-50%);width:50%;height:40px;
  filter:blur(30px);opacity:0;transition:opacity .4s;
  background:var(--mint);
}
.lab-card:nth-child(1)::before{background:var(--mint)}
.lab-card:nth-child(2)::before{background:var(--coral)}
.lab-card:nth-child(3)::before{background:var(--violet)}
.lab-card:nth-child(4)::before{background:var(--blue)}
.lab-card:nth-child(5)::before{background:var(--gold)}
.lab-card:hover::before{opacity:.2}
.lab-card:hover{border-color:var(--g600);transform:translateY(-3px)}

.lab-status{
  display:inline-flex;align-items:center;gap:6px;
  font-size:.62rem;font-weight:600;letter-spacing:.08em;
  text-transform:uppercase;margin-bottom:14px;
  padding:4px 10px;border-radius:100px;
}
.lab-status.live{
  color:var(--mint);background:var(--mint-s);
  border:1px solid rgba(94,230,168,.15);
}
.lab-status.dev{
  color:var(--g400);background:rgba(255,255,255,.03);
  border:1px solid var(--g800);
}

.lab-dot{
  width:5px;height:5px;border-radius:50%;flex-shrink:0;
}
.lab-status.live .lab-dot{
  background:var(--mint);
  box-shadow:0 0 8px var(--mint-g);
  animation:pulse-dot 2s ease-in-out infinite;
}
.lab-status.dev .lab-dot{background:var(--g500)}

@keyframes pulse-dot{
  0%,100%{opacity:.6;transform:scale(1)}
  50%{opacity:1;transform:scale(1.3)}
}

.lab-name{
  font-family:var(--hd);font-weight:700;font-size:1rem;
  color:var(--white);margin-bottom:4px;letter-spacing:-.01em;
}
.lab-domain{
  font-size:.68rem;font-weight:500;color:var(--g500);
  letter-spacing:.06em;text-transform:uppercase;margin-bottom:10px;
}
.lab-desc{
  font-size:.78rem;color:var(--g400);line-height:1.55;
}


/* --- STACK STRIP --- */

.stack-strip{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}

.stack-item{
  padding:clamp(24px,2.5vw,32px) clamp(16px,2vw,24px);
  border-radius:16px;
  background: linear-gradient(135deg, #ffffff0f, #ffffff05);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  border:1px solid #ffffff14;
  text-align:center;cursor:pointer;
  box-shadow: 0 8px 32px inset 0 1px 0 #ffffff0f;
  transition:all .4s var(--expo);position:relative;overflow:hidden;
}
.stack-item::before{
  content:'';position:absolute;bottom:-24px;left:50%;
  transform:translateX(-50%);width:55%;height:44px;
  filter:blur(30px);opacity:0;transition:opacity .4s;
}
.stack-item:nth-child(1)::before{background:var(--blue)}
.stack-item:nth-child(2)::before{background:var(--mint)}
.stack-item:nth-child(3)::before{background:var(--coral)}
.stack-item:nth-child(4)::before{background:var(--gold)}
.stack-item:nth-child(5)::before{background:var(--violet)}
.stack-item:hover::before{opacity:.25}
.stack-item:hover{border-color:var(--g600);transform:translateY(-3px)}
.stack-item:active{transform:translateY(-1px) scale(.99)}

.stack-icon{
  width:48px;height:48px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 14px;
}
.si-blue{background:var(--blue-s)}
.si-mint{background:var(--mint-s)}
.si-coral{background:var(--coral-s)}
.si-gold{background:var(--gold-s)}
.si-violet{background:var(--violet-s)}

.stack-name{
  font-family:var(--hd);font-weight:700;font-size:.9rem;
  color:var(--white);margin-bottom:6px;letter-spacing:-.01em;
}
.stack-desc{
  font-size:.72rem;color:var(--g500);line-height:1.45;
}


/* --- PRINCIPLES --- */

.prin-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}

.prin-card{
  padding:clamp(28px,3vw,40px) clamp(20px,2.5vw,32px);
  border-radius:20px;
  background: linear-gradient(135deg, #ffffff0f, #ffffff05); 
  border: 1px solid #ffffff14; 
  backdrop-filter: blur(28px) saturate(1.3);          /* blurs content behind the glass effect and boosts the color intensity of the blurred content*/
  -webkit-backdrop-filter: blur(28px) saturate(1.3); 
  box-shadow: 0 8px 32px #00000059, inset 0 1px 0 #ffffff0f;   /* inset takes fills element with highlight */
  transition:all .5s var(--expo);position:relative;overflow:hidden;
}
.prin-card::before{
  content:'';position:absolute;bottom:-36px;left:50%;
  transform:translateX(-50%);width:55%;height:55px;
  filter:blur(38px);opacity:0;transition:opacity .5s;
}
.prin-card:nth-child(1)::before{background:var(--blue)}
.prin-card:nth-child(2)::before{background:var(--coral)}
.prin-card:nth-child(3)::before{background:var(--mint)}
.prin-card:hover::before{opacity:.18}
.prin-card:hover{border-color:var(--g700);transform:translateY(-3px)}

.prin-num{
  font-family:var(--hd);font-weight:900;font-size:2.5rem;
  line-height:1;margin-bottom:16px;
}
.prin-card:nth-child(1) .prin-num{color:rgba(91,156,246,.2)}
.prin-card:nth-child(2) .prin-num{color:rgba(244,122,104,.2)}
.prin-card:nth-child(3) .prin-num{color:rgba(94,230,168,.2)}

.prin-card h3{
  font-family:var(--hd);font-weight:700;font-size:1.15rem;
  color:var(--white);margin-bottom:10px;
}
.prin-card p{color:var(--g400);font-size:.85rem;line-height:1.65}


/* --- FOUNDER --- */

.founder-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(40px,6vw,80px);align-items:center;
}

.founder-text .sec-title{margin-bottom:8px}

.founder-role{
  font-size:1rem;font-weight:500;color:var(--blue);
  margin-bottom:24px;
}

.founder-text p{
  color:var(--g400);font-size:.95rem;line-height:1.75;
  margin-bottom:16px;
}

.founder-links{
  display:flex;gap:16px;margin-top:28px;
}
.founder-link{
  display:inline-flex;align-items:center;gap:8px;
  padding:9px 22px;border-radius:100px;
  border:1px solid var(--g700);
  font-size:.8rem;font-weight:500;color:var(--g300);
  transition:all .35s var(--expo);
}
.founder-link:hover{
  border-color:var(--g400);
  color:var(--white);
  transform:translateY(-2px);
}
.founder-link svg{
  opacity:.7;
  transition:opacity .3s
}

.founder-link:hover svg{
  opacity:1
}

.founder-visual{display:flex;justify-content:center}

.founder-card{
  padding:clamp(28px,3vw,40px);border-radius:24px;
  background: linear-gradient(135deg, #0000000f, #ffffff05); 
  border: 1px solid #ffffff14; 
  backdrop-filter: blur(28px) saturate(1.3);          /* blurs content behind the glass effect and boosts the color intensity of the blurred content*/
  -webkit-backdrop-filter: blur(28px) saturate(1.3); 
  box-shadow: 0 8px 32px #00000059, inset 0 1px 0 #ffffff0f;   /* inset takes fills element with highlight */
  display:flex;flex-direction:column;align-items:center;gap:24px;
  width:100%;max-width:360px;
  position:relative;overflow:hidden;
}
.founder-card::after{
  content:'';position:absolute;bottom:-20px;left:50%;
  transform:translateX(-50%);width:50%;height:50px;
  background:var(--blue);filter:blur(44px);opacity:.1;
}

.founder-meta{
  display:flex;flex-direction:column;gap:10px;width:100%;
}
.founder-meta-item{
  display:flex;align-items:center;gap:10px;
  font-size:.76rem;font-weight:500;color:var(--g400);
  padding:8px 14px;border-radius:10px;
  background:rgba(255,255,255,.02);
  border:1px solid var(--g800);
  transition:border-color .3s;
}
.founder-meta-item:hover{border-color:var(--g700)}


/* --- CTA --- */

.cta{
  max-width:860px;margin:0 auto;text-align:center;
  padding:clamp(100px,14vw,160px) clamp(20px,5vw,48px);
  position:relative;
}
.cta::before{
  content:'';position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:420px;height:420px;
  background:radial-gradient(circle,var(--blue-g) 0%,transparent 70%);
  opacity:.25;pointer-events:none;
}
.cta .sec-title{
  font-size:clamp(2.2rem,5vw,3.8rem);
  margin-bottom:22px;position:relative;
}
.gr-cta{
  background:linear-gradient(135deg,var(--blue),var(--coral));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.cta .sec-desc{max-width:460px;margin:0 auto 44px;position:relative}
.cta-btns{
  display:flex;gap:14px;justify-content:center;
  flex-wrap:wrap;position:relative;
}


/* --- FOOTER --- */

.foot{
  padding:clamp(28px,4vw,40px) clamp(20px,5vw,48px);
  border-top:1px solid var(--g800);
  display:flex;justify-content:space-between;align-items:center;
  max-width:1180px;margin:0 auto;flex-wrap:wrap;gap:16px;
}
.foot-l{font-size:.78rem;color:var(--g600)}
.foot-r{display:flex;gap:24px}
.foot-r a{color:var(--g500);font-size:.78rem;transition:color .3s}
.foot-r a:hover{color:var(--white)}


/* --- SUB-PAGES --- */

.page-overlay{
  position:fixed;inset:0;z-index:2000;
  background:var(--g950);
  overflow-y:auto;
  transform:translateY(100%);
  transition:transform .6s var(--expo);visibility:hidden;
}
.page-overlay.active{transform:translateY(0);visibility:visible}

.page-close{
  position:fixed;top:20px;right:24px;z-index:2001;
  width:40px;height:40px;border-radius:50%;
  border:1px solid var(--g700);
  display:flex;align-items:center;justify-content:center;
  color:var(--g300);cursor:pointer;
  transition:all .3s var(--expo);
  background:rgba(8,8,10,.8);backdrop-filter:blur(12px);
}
.page-close:hover{
  border-color:var(--white);color:var(--white);transform:rotate(90deg);
}

.page-inner{
  max-width:800px;margin:0 auto;
  padding:100px clamp(20px,5vw,48px) 80px;
}
.page-inner .sec-label{margin-bottom:12px}
.page-inner .sec-title{margin-bottom:24px}
.page-inner p{
  color:var(--g300);font-size:.95rem;line-height:1.8;margin-bottom:20px;
}

.page-inner .page-features{
  display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:36px 0;
}
.page-feat{
  padding:20px;
  border-radius:14px;
  background: linear-gradient(135deg, #ffffff0f, #ffffff05); 
  border: 1px solid #ffffff14; 
  backdrop-filter: blur(28px) saturate(1.3);          /* blurs content behind the glass effect and boosts the color intensity of the blurred content*/
  -webkit-backdrop-filter: blur(28px) saturate(1.3); 
  box-shadow: 0 8px 32px #00000059, inset 0 1px 0 #ffffff0f;   /* inset takes fills element with highlight */
  transition:all .4s var(--expo);position:relative;overflow:hidden;
}
.page-feat::before{
  content:'';position:absolute;bottom:-20px;left:50%;
  transform:translateX(-50%);width:50%;height:40px;
  filter:blur(28px);opacity:0;transition:opacity .4s;
  background:var(--blue);
}
.page-feat:hover{border-color:var(--g700);transform:translateY(-2px)}
.page-feat:hover::before{opacity:.2}

#page-ux .page-feat::before{background:var(--blue)}
#page-systems .page-feat::before{background:var(--mint)}
#page-workflows .page-feat::before{background:var(--coral)}
#page-ai .page-feat::before{background:var(--gold)}
#page-aws .page-feat::before{background:var(--violet)}

.page-feat h4{
  font-family:var(--hd);font-weight:700;font-size:.95rem;
  color:var(--white);margin-bottom:6px;
}
.page-feat p{
  font-size:.82rem;color:var(--g400);margin-bottom:0;line-height:1.55;
}

.page-back{
  display:inline-flex;align-items:center;gap:8px;
  margin-top:40px;padding:10px 24px;
  border:1px solid var(--g700);border-radius:100px;
  font-size:.82rem;font-weight:500;color:var(--g300);
  transition:all .3s var(--expo);
}
.page-back:hover{border-color:var(--white);color:var(--white)}


/* --- RESPONSIVE --- */

@media(max-width:1024px){
  .thesis .thesis-grid{grid-template-columns:1fr;gap:40px}
  .thesis-visual{max-height:380px;aspect-ratio:auto}

  .proj{grid-template-columns:1fr;min-height:auto}
  .proj-vis{min-height:200px}

  .lab-grid{grid-template-columns:repeat(3,1fr)}
  .stack-strip{grid-template-columns:repeat(3,1fr)}

  .prin-grid{grid-template-columns:1fr 1fr}
  .prin-card:nth-child(3){grid-column:span 2}

  .founder-grid{grid-template-columns:1fr;gap:40px}
  .founder-visual{order:-1}
}

@media(max-width:768px){
  .nav-links{display:none}
  .ham{display:flex}

  .lab-grid{grid-template-columns:1fr 1fr}
  .stack-strip{grid-template-columns:1fr 1fr}

  .prin-grid{grid-template-columns:1fr}
  .prin-card:nth-child(3){grid-column:span 1}

  .hero h1{font-size:clamp(2.2rem,9vw,3.2rem)}
  .proj-vis{min-height:180px}
  .proj-info{padding:20px}

  .hero-logo-big .sphere-wrap{width:140px;height:140px}
  .hero-logo-big .sphere-canvas{width:140px;height:140px}
  .splash-sphere{width:140px;height:140px}

  .page-inner .page-features{grid-template-columns:1fr}

  .thesis-stats{
    flex-direction:column;gap:20px;
    padding:28px 24px;
  }
  .stat-divider{width:48px;height:1px}

  .founder-links{flex-direction:column;gap:10px}
}

@media(max-width:480px){
  .nav{height:56px}
  .hero{min-height:100svh;padding:80px 16px 40px}

  .hero-logo-big .sphere-wrap{width:110px;height:110px}
  .hero-logo-big .sphere-canvas{width:110px;height:110px}

  .hero-btns{flex-direction:column;align-items:center;width:100%}
  .btn-p,.btn-g{width:100%;max-width:280px;text-align:center}

  .sec{padding:60px 16px}

  .lab-grid{grid-template-columns:1fr}
  .stack-strip{grid-template-columns:1fr}

  .proj-arrow{top:14px;right:14px;width:30px;height:30px}
  .proj-name{font-size:1.15rem}

  .foot{flex-direction:column;text-align:center}
  .scroll-ind{bottom:20px}

  .nav .sphere-wrap{width:28px;height:28px}
  .nav .sphere-canvas{width:28px;height:28px}
  .splash-sphere{width:110px;height:110px}
}

@media(max-width:360px){
  .hero h1{font-size:2rem}
  .hero-sub{font-size:.9rem}
  .sec-title{font-size:1.6rem}
}

@media(max-height:500px)and(orientation:landscape){
  .hero{min-height:auto;padding:100px 24px 60px}
  .scroll-ind{display:none}
  .hero-logo-big .sphere-wrap{width:80px;height:80px}
  .hero-logo-big .sphere-canvas{width:80px;height:80px}
}

@media(min-width:1600px){
  .sec-inner{max-width:1320px}
  .hero-c{max-width:960px}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  .rv{opacity:1;transform:none}
  .hero h1,.hero-sub,.hero-btns,.hero-tag,.hero-logo-big,.scroll-ind{opacity:1;transform:none;animation:none}
  .splash{display:none}
}

@media print{
  .nav,.scroll-bar,.cur-d,.cur-r,.scroll-ind,.hero-bg,.splash{display:none!important}
  body{background:#fff;color:#222}
  .sec-title,.proj-name,.hero h1{color:#000!important;-webkit-text-fill-color:#000!important}
}
