@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Instrument+Serif:ital@0;1&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================================
   ACID EDITORIAL
   One accent, warm neutrals, no rainbow. The old build ran a
   cyan→violet→fuchsia gradient through every eyebrow, button,
   number and badge, which is what made it read as templated.
   Colour is now a scalpel: acid lime, used sparingly, against
   warm bone type on a near-black ground.
   ============================================================ */
:root{
  /* Blue-black ground. The slight cool cast in the neutrals is what lets
     a single blue accent feel like light in the room rather than a
     sticker on top of grey. */
  --bg:#06070B;
  --bg-soft:#0A0C12;
  --card:#0E1016;
  --card-border:#1D2130;
  --card-border-hot:#39415C;

  --accent:#4D7CFF;
  --accent-2:#2E5BFF;
  --accent-3:#A8C4FF;
  --accent-dim:#7B93C9;
  --accent-soft:rgba(77,124,255,.10);
  --grad:linear-gradient(120deg,#4D7CFF,#2E5BFF 55%,#A8C4FF);

  /* Aliases — the original rules reference these names throughout. */
  --lime:var(--accent);
  --violet:var(--accent-2);
  --fuchsia:var(--accent-3);
  --lime-dim:var(--accent-dim);

  /* Warm ivory against cool blue-black. The temperature split is doing
     the heavy lifting: warm type reads as paper, cool ground as depth. */
  --text:#F2EFE8;
  --text-dim:#8B8F9C;
  --text-dimmer:#565C6B;
  --ink:#05060A;

  --radius:4px;
  --maxw:1240px;
}

*{margin:0;padding:0;box-sizing:border-box;}
/* No scroll-behavior:smooth — Lenis owns scrolling and the two fight. */
html{background:var(--bg);}
body{
  background:transparent;
  color:var(--text);
  font-family:'Space Grotesk',sans-serif;
  overflow-x:hidden;
  position:relative;
}

/* ===== LIVING BACKGROUND =====
   The aurora canvas sits behind everything (html paints the base colour).
   It renders at ~half resolution and the JS halts it entirely once you
   scroll past the hero, so it costs nothing for most of the page. */
#bgCanvas{
  position:fixed;inset:0;width:100%;height:100%;z-index:-2;
  display:block;pointer-events:none;
  transition:opacity .6s ease;
}
.no-webgl #bgCanvas{display:none;}
/* Static stand-in wherever WebGL is unavailable or motion is reduced. */
.bg-fallback{
  position:fixed;inset:0;z-index:-2;pointer-events:none;opacity:0;
  background:
    radial-gradient(60% 50% at 22% 18%,rgba(77,124,255,.20),transparent 70%),
    radial-gradient(55% 45% at 78% 28%,rgba(77,124,255,.22),transparent 70%),
    radial-gradient(50% 40% at 50% 8%,rgba(168,196,255,.14),transparent 70%);
}
.no-webgl .bg-fallback{opacity:1;}
@media (prefers-reduced-motion: reduce){
  #bgCanvas{display:none;}
  .bg-fallback{opacity:1;}
}

/* Film grain. Previously used mix-blend-mode:overlay on a fixed
   full-viewport layer, which forced the whole page through a blend
   composite on every paint — a measurable frame-time cost. Plain
   low-opacity texture reads nearly identically and is free. */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:9;
  opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px;}
a{color:inherit;text-decoration:none;}
img{display:block;max-width:100%;}
ul{list-style:none;}
.display{font-family:'Archivo Black',sans-serif;text-transform:uppercase;letter-spacing:-.01em;line-height:.95;}
.eyebrow{
  font-size:13px;letter-spacing:.18em;text-transform:uppercase;font-weight:600;
  background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent;
  display:flex;align-items:center;gap:10px;margin-bottom:18px;
}
.eyebrow::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--grad);box-shadow:0 0 12px var(--lime);}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--grad);color:#0A0A08;font-weight:700;
  padding:14px 24px;border-radius:100px;border:none;cursor:pointer;
  font-family:'Space Grotesk',sans-serif;font-size:15px;
  transition:transform .35s cubic-bezier(.2,.8,.2,1),box-shadow .35s;
}
.btn:hover{transform:translateY(-3px);box-shadow:0 10px 30px -6px rgba(77,124,255,.5);}
.btn.outline{
  background:transparent;color:var(--text);border:1px solid var(--card-border);
}
.btn.outline:hover{border-color:var(--lime);color:var(--lime);box-shadow:none;}
.btn .arrow{
  width:26px;height:26px;border-radius:50%;background:#0A0A08;color:var(--lime);
  display:flex;align-items:center;justify-content:center;font-size:14px;
}

/* GSAP owns all reveals — legacy classes stay visible by default */
body.locked{overflow:hidden;height:100vh;}
html,body{overflow-x:clip;}

/* ===== OPENING TITLE SEQUENCE ===== */
#loader{position:fixed;inset:0;z-index:1000;}
.loader-panel{position:absolute;inset:0;background:#070707;}
.loader-panel:nth-child(2){background:var(--grad);inset:0;transform:translateY(0);z-index:2;top:0;}
.loader-panel:nth-child(1){z-index:3;}
.loader-panel:nth-child(3){background:#0E0E0D;z-index:1;}
.loader-content{
  position:absolute;inset:0;z-index:4;display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:26px;padding:0 24px;
}
.loader-tag{font-size:12px;letter-spacing:.3em;text-transform:uppercase;color:var(--text-dimmer);}
.loader-name-mask{overflow:hidden;padding:6px 0;}
#loaderName{font-size:clamp(34px,7vw,84px);color:var(--text);white-space:nowrap;}
#loaderName .ch{display:inline-block;will-change:transform;}
.loader-bottom{display:flex;align-items:center;gap:20px;width:min(420px,80vw);}
#loaderCount{font-family:'Archivo Black',sans-serif;font-size:15px;color:var(--lime);min-width:44px;}
.loader-bar-track{flex:1;height:2px;background:#232321;border-radius:2px;overflow:hidden;}
#loaderBar{height:100%;width:100%;background:var(--grad);transform:scaleX(0);transform-origin:left;box-shadow:0 0 14px var(--lime);}

/* char / word split helpers */
.section-head h2,.contact-section h2{overflow:hidden;}
.section-head h2 .wd,.contact-section h2 .wd{display:inline-block;white-space:nowrap;}
.section-head h2 .ch,.contact-section h2 .ch{display:inline-block;will-change:transform;}
.about-copy p .w{display:inline-block;will-change:opacity;}

/* ===== ROTATING CIRCLE BADGE (Framer "Circle Badge Animate" recreation) ===== */
.circle-badge{
  position:relative;width:118px;height:118px;display:block;
  color:var(--text);text-decoration:none;
}
.circle-badge svg{width:100%;height:100%;overflow:visible;animation:badge-spin 14s linear infinite;transform-origin:50% 50%;}
.badge-text{fill:currentColor;font-size:10px;letter-spacing:.08em;text-transform:uppercase;font-family:'Archivo',sans-serif;font-weight:600;}
.badge-core{
  position:absolute;inset:0;margin:auto;width:52px;height:52px;border-radius:50%;
  background:var(--grad);color:#0A0A08;display:flex;align-items:center;justify-content:center;
  font-size:20px;font-weight:700;box-shadow:0 0 24px rgba(77,124,255,.35);
  transition:transform .5s cubic-bezier(.2,.8,.2,1);
}
.circle-badge:hover .badge-core{transform:rotate(45deg) scale(1.08);}
@keyframes badge-spin{to{transform:rotate(360deg);}}
.hero-badge{position:absolute;right:48px;bottom:150px;z-index:5;}
.contact-badge{position:absolute;top:44px;right:44px;color:#fff;}
@media (max-width:900px){
  .hero-badge{display:none;}
  .contact-badge{width:92px;height:92px;top:26px;right:22px;}
}
@media (prefers-reduced-motion: reduce){.circle-badge svg{animation:none;}}

/* waving hand — black silhouette to match bubble text */
.wave{display:inline-block;transform-origin:70% 75%;animation:wave-hand 1.8s ease-in-out infinite;}
.wave-black{filter:grayscale(1) brightness(0);}
@keyframes wave-hand{
  0%,20%,100%{transform:rotate(0deg);}
  30%{transform:rotate(16deg);}
  45%{transform:rotate(-10deg);}
  60%{transform:rotate(14deg);}
  75%{transform:rotate(-6deg);}
}

/* Hi ↔ 👋 rotating swap, non-stop */
.swap-item{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  animation:bubble-swap 4s ease-in-out infinite;opacity:0;
}
.swap-a{animation-delay:0s;}
.swap-b{animation-delay:-2s;}
@keyframes bubble-swap{
  0%{opacity:0;transform:rotate(-100deg) scale(.3);}
  12%{opacity:1;transform:rotate(0deg) scale(1);}
  46%{opacity:1;transform:rotate(0deg) scale(1);}
  58%{opacity:0;transform:rotate(100deg) scale(.3);}
  100%{opacity:0;transform:rotate(100deg) scale(.3);}
}
@media (prefers-reduced-motion: reduce){
  .wave{animation:none;}
  .swap-item{animation:none;}
  .swap-a{opacity:1;}
  .swap-b{opacity:0;}
}

/* ===== CUSTOM CURSOR =====
   Centred with the independent `translate` property, NOT `transform` —
   GSAP owns `transform` for the x/y position, so the two never fight
   and no per-frame style parsing is needed.
   The disc uses blend-difference: it inverts whatever it crosses, so it
   stays visible on light and dark alike without a second element. */
.cursor-dot,.cursor-ring{
  position:fixed;top:0;left:0;pointer-events:none;z-index:3000;
  border-radius:50%;translate:-50% -50%;
  will-change:transform;
}
.cursor-dot{
  width:11px;height:11px;background:#fff;
  mix-blend-mode:difference;
  transition:scale .35s cubic-bezier(.2,.8,.2,1);
}
.cursor-ring{
  width:36px;height:36px;border:1px solid rgba(77,124,255,.55);
  transition:scale .4s cubic-bezier(.2,.8,.2,1),border-color .4s,background .4s;
}
body.cursor-hot .cursor-dot{scale:.45;}
body.cursor-hot .cursor-ring{
  scale:1.75;border-color:rgba(168,196,255,.85);background:rgba(77,124,255,.10);
}
body.cursor-down .cursor-ring{scale:.8;}
@media (pointer:coarse){.cursor-dot,.cursor-ring{display:none;}}

/* ===== TEXT-ROLL HOVER (duplicated label slides up) ===== */
.roll{display:inline-block;overflow:hidden;position:relative;vertical-align:top;}
.roll .roll-inner{display:block;transition:transform .45s cubic-bezier(.76,0,.24,1);}
.roll .roll-inner span{display:block;}
a:hover > .roll .roll-inner, button:hover > .roll .roll-inner{transform:translateY(-50%);}

/* hero line masks */
.hero-title .line{display:block;overflow:hidden;padding:0 .05em;}
.hero-title .line-inner{display:block;will-change:transform;}

/* ===== NAV ===== */
.nav-outer{
  position:fixed;top:20px;left:0;right:0;z-index:200;
  display:flex;justify-content:center;pointer-events:none;
}
.nav-outer.hide{transform:translateY(-140%);}
.nav-outer{transition:transform .5s cubic-bezier(.2,.8,.2,1);}
.nav{
  pointer-events:auto;
  display:flex;align-items:center;gap:14px;
  background:rgba(20,20,20,.75);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:100px;
  padding:8px 10px 8px 8px;
}
.nav .avatar{width:38px;height:38px;border-radius:50%;overflow:hidden;background:#232321;flex-shrink:0;}
.nav .avatar img{width:100%;height:100%;object-fit:cover;}
.nav .status{font-size:14px;color:var(--text-dim);padding-right:6px;display:flex;align-items:center;gap:8px;white-space:nowrap;}
.nav .status .dot{width:7px;height:7px;border-radius:50%;background:#4D7CFF;box-shadow:0 0 8px #4D7CFF;}
.nav .menu-btn{
  width:38px;height:38px;border-radius:50%;background:var(--grad);color:#0A0A08;
  display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:18px;flex-shrink:0;
  transition:transform .3s;
}
.nav .menu-btn:hover{transform:rotate(90deg);}
.menu-panel{
  position:fixed;top:78px;left:50%;transform:translateX(-50%) translateY(-12px) scale(.97);
  z-index:199;background:rgba(20,20,20,.95);backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.08);border-radius:24px;padding:14px;
  display:flex;flex-direction:column;gap:2px;min-width:200px;
  opacity:0;pointer-events:none;transition:opacity .3s,transform .3s;
}
.menu-panel.open{opacity:1;pointer-events:auto;transform:translateX(-50%) translateY(0) scale(1);}
.menu-panel a{padding:12px 16px;border-radius:14px;font-size:15px;font-weight:500;transition:background .2s,color .2s;}
.menu-panel a:hover{background:rgba(77,124,255,.1);color:var(--lime);}

/* ===== HERO ===== */
.hero{
  position:relative;min-height:100vh;padding:160px 0 60px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
  overflow:hidden;
}
.hero-name{font-size:15px;letter-spacing:.25em;color:var(--text-dim);margin-bottom:18px;text-transform:uppercase;}
.hero-title{
  font-size:clamp(52px,11vw,132px);
  display:flex;flex-direction:column;align-items:center;gap:6px;
  position:relative;
}
/* CSS owns the ambient float here; GSAP owns .hero-photo inside it. */
.hero-photo-float{animation:float 6s ease-in-out infinite;}
.hero-photo{
  width:min(230px,30vw);aspect-ratio:3/4;border-radius:26px;overflow:visible;
  margin:6px 0;position:relative;
}
.hero-photo img{width:100%;height:100%;object-fit:cover;border-radius:26px;border:1px solid rgba(255,255,255,.08);display:block;}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}
/* Same split: GSAP pops the wrapper in, CSS pulses the bubble itself. */
.hi-bubble-pop{position:absolute;left:-30px;bottom:-14px;z-index:3;}
.hi-bubble{
  position:relative;
  width:72px;height:72px;border-radius:50%;background:var(--grad);color:#0A0A08;
  display:flex;align-items:center;justify-content:center;font-size:30px;font-weight:700;
  font-family:'Space Grotesk',sans-serif;
  animation:pulse 3.2s ease-in-out infinite;
  box-shadow:0 0 40px -4px rgba(77,124,255,.6);
}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.08)}}
.hero-tagline{max-width:520px;margin:26px auto 0;color:var(--text-dim);font-size:16px;line-height:1.6;}
.hero-bottom{
  width:100%;display:flex;justify-content:space-between;align-items:center;margin-top:52px;
}
.made-in{
  display:flex;align-items:center;gap:8px;background:#fff;color:#0A0A08;
  padding:10px 16px;border-radius:100px;font-size:13px;font-weight:700;
}
.toggle{width:46px;height:26px;border-radius:100px;background:var(--card);border:1px solid var(--card-border);position:relative;cursor:pointer;}
.toggle::after{content:"";position:absolute;width:18px;height:18px;border-radius:50%;background:var(--lime);top:3px;left:3px;transition:left .3s;}
.toggle.on::after{left:23px;}

/* ===== SECTION HEADERS ===== */
section{position:relative;padding:120px 0;z-index:2;}
.section-head{max-width:640px;margin-bottom:64px;}
.section-head h2{font-size:clamp(34px,5vw,58px);margin-bottom:18px;}
.section-head p{color:var(--text-dim);font-size:16px;line-height:1.7;}

/* ===== SERVICES ===== */
.services-list{border-top:1px solid var(--card-border);}
.service-row{
  border-bottom:1px solid var(--card-border);
  padding:34px 0;display:grid;grid-template-columns:80px 1fr 1fr;gap:24px;align-items:start;
  transition:padding-left .4s cubic-bezier(.2,.8,.2,1),background .4s;cursor:default;
}
.service-row:hover{padding-left:16px;background:rgba(77,124,255,.03);}
.service-row .num{color:var(--lime-dim);font-family:'Archivo Black',sans-serif;font-size:14px;}
.service-row h3{font-size:22px;text-transform:uppercase;font-family:'Archivo Black',sans-serif;}
.service-row .tags{display:flex;flex-wrap:wrap;gap:8px;}
.service-row .tags span{
  font-size:12px;color:var(--text-dim);border:1px solid var(--card-border);
  padding:6px 12px;border-radius:100px;
}
.service-row .desc{color:var(--text-dim);font-size:14px;grid-column:2/3;margin-top:6px;line-height:1.6;}
@media (max-width:800px){.service-row{grid-template-columns:1fr;} .service-row .desc{grid-column:1}}

/* ===== ABOUT ===== */
.about{display:grid;grid-template-columns:.9fr 1.1fr;gap:60px;align-items:center;}
.about-photo{border-radius:var(--radius);overflow:hidden;aspect-ratio:4/5;border:1px solid var(--card-border);}
.about-photo img{width:100%;height:100%;object-fit:cover;}
.about-copy p{color:var(--text-dim);font-size:17px;line-height:1.8;margin-bottom:20px;}
.about-copy .highlight{color:var(--text);}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px;}
.stat b{
  font-family:'Archivo Black',sans-serif;font-size:clamp(30px,4vw,44px);color:var(--lime);display:block;
}
.stat span{font-size:12px;color:var(--text-dim);text-transform:uppercase;letter-spacing:.06em;}
.contact-mini{display:flex;gap:40px;margin-top:40px;flex-wrap:wrap;}
.contact-mini div span{display:block;font-size:12px;color:var(--text-dimmer);text-transform:uppercase;letter-spacing:.08em;margin-bottom:4px;}
.contact-mini div b{font-size:16px;font-weight:600;}
@media (max-width:860px){.about{grid-template-columns:1fr;}}

/* ===== EXPERIENCE ===== */
.exp-wrap{position:relative;padding-left:36px;}
.exp-line{
  position:absolute;left:8px;top:0;bottom:0;width:2px;
  background:linear-gradient(to bottom,#4D7CFF,#2E5BFF 60%,rgba(168,196,255,.2));
  transform-origin:top;box-shadow:0 0 12px rgba(77,124,255,.4);
}
.exp-item{
  display:grid;grid-template-columns:180px 1fr auto;gap:24px;align-items:start;
  padding:30px 0;border-bottom:1px solid var(--card-border);position:relative;
}
.exp-item::before{
  content:"";position:absolute;left:-33px;top:40px;width:12px;height:12px;border-radius:50%;
  background:var(--lime);box-shadow:0 0 14px var(--lime);
}
.exp-item:first-child{border-top:1px solid var(--card-border);}
.exp-item .period{color:var(--lime);font-size:13px;letter-spacing:.06em;text-transform:uppercase;font-weight:600;}
.exp-item h3{font-size:20px;margin-bottom:6px;}
.exp-item .role{color:var(--text-dim);font-size:14px;margin-bottom:10px;}
.exp-item p{color:var(--text-dim);font-size:14px;line-height:1.7;max-width:640px;}
@media (max-width:760px){.exp-item{grid-template-columns:1fr;} }

/* ===== PROJECTS: pinned cinematic stack ===== */
.projects-stack{position:relative;}
.project-panel{
  position:sticky;top:0;min-height:100vh;
  display:flex;align-items:center;justify-content:center;
  padding:60px 0;
}
.project-card{
  background:var(--card);border:1px solid var(--card-border);border-radius:28px;
  padding:40px;position:relative;width:min(880px,92%);
  box-shadow:0 40px 80px -30px rgba(0,0,0,.8);
  display:grid;grid-template-columns:1.1fr .9fr;gap:36px;align-items:center;
}
.project-card .shade{
  position:absolute;inset:0;border-radius:28px;background:#070707;opacity:0;
  pointer-events:none;z-index:5;
}
.project-card .proj-index{
  position:absolute;top:26px;right:32px;font-family:'Archivo Black',sans-serif;
  font-size:13px;color:var(--lime);letter-spacing:.1em;
}
.project-card .thumb{
  aspect-ratio:16/11;border-radius:18px;
  display:flex;align-items:center;justify-content:center;font-family:'Archivo Black',sans-serif;
  font-size:22px;color:#0A0A08;position:relative;overflow:hidden;
  grid-row:span 4;
}
.project-card .thumb img{width:100%;height:100%;object-fit:cover;display:block;transform:scale(1.02);transition:transform .8s cubic-bezier(.2,.8,.2,1);}
.project-card:hover .thumb img{transform:scale(1.08);}
.project-card .cat{font-size:12px;color:var(--lime);text-transform:uppercase;letter-spacing:.1em;margin-bottom:6px;}
.project-card h3{font-size:clamp(22px,3vw,32px);text-transform:uppercase;font-family:'Archivo Black',sans-serif;margin-bottom:10px;}
.project-card p{color:var(--text-dim);font-size:15px;line-height:1.7;}
.project-card .tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:16px;}
.project-card .tags span{font-size:11px;color:var(--text-dim);border:1px solid var(--card-border);padding:5px 10px;border-radius:100px;}
@media (max-width:760px){
  .project-card{grid-template-columns:1fr;padding:26px;gap:20px;}
  .project-card .thumb{grid-row:auto;}
}

/* ===== PRODUCTS ===== */
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.product-card{
  background:linear-gradient(160deg,#131312,#111110);border:1px solid var(--card-border);
  border-radius:var(--radius);padding:32px 26px;transition:transform .4s,border-color .4s;
}
.product-card:hover{transform:translateY(-6px);border-color:rgba(77,124,255,.35);}
.product-card .prod-art{
  border-radius:14px;overflow:hidden;margin-bottom:20px;aspect-ratio:16/10;
}
.product-card .prod-art img{
  width:100%;height:100%;object-fit:cover;display:block;
  transform:scale(1.02);transition:transform .8s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover .prod-art img{transform:scale(1.09);}
.product-card .tag{display:inline-block;font-size:11px;color:var(--lime);border:1px solid rgba(77,124,255,.3);padding:5px 12px;border-radius:100px;margin-bottom:18px;text-transform:uppercase;letter-spacing:.06em;}
.product-card h3{font-size:22px;margin-bottom:6px;font-family:'Archivo Black',sans-serif;text-transform:uppercase;}
.product-card .sub{color:var(--text-dim);font-size:13px;margin-bottom:16px;}
.product-card p{color:var(--text-dim);font-size:14px;line-height:1.65;margin-bottom:20px;}
.product-card ul{display:flex;flex-wrap:wrap;gap:8px;}
.product-card ul li{font-size:11px;color:var(--text-dim);border:1px solid var(--card-border);padding:5px 10px;border-radius:100px;}
@media (max-width:900px){.products-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.products-grid{grid-template-columns:1fr;}}

/* ===== FEATURED PRODUCT (flagship) ===== */
.featured-product{
  display:grid;grid-template-columns:1fr 1.15fr;
  border-radius:var(--radius);overflow:hidden;margin-bottom:24px;
  border:1px solid rgba(77,124,255,.28);
  background:linear-gradient(160deg,#131312,#0C0C0B);
  box-shadow:0 0 0 1px rgba(77,124,255,.08),0 30px 70px -30px rgba(77,124,255,.3);
  transition:border-color .4s,box-shadow .4s;
}
.featured-product:hover{border-color:rgba(77,124,255,.5);box-shadow:0 0 0 1px rgba(77,124,255,.16),0 40px 90px -30px rgba(77,124,255,.4);}

.feat-visual{position:relative;min-height:380px;display:flex;align-items:center;justify-content:center;overflow:hidden;background:#080807;}
.feat-visual-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.75;}
.feat-visual::before{content:"";position:absolute;inset:0;z-index:1;
  background:radial-gradient(circle at 50% 50%,rgba(10,10,18,.25),rgba(8,8,14,.85) 75%),linear-gradient(180deg,rgba(8,8,14,.1),rgba(8,8,14,.9));
}
.feat-ring{width:190px;height:190px;transform:rotate(-90deg);position:relative;z-index:2;}
.feat-ring circle{fill:none;stroke-width:10;}
.feat-ring .ring-track{stroke:rgba(255,255,255,.1);}
.feat-ring .ring-fill{stroke:url(#featGrad);stroke-linecap:round;stroke-dasharray:527.8;stroke-dashoffset:68.6;filter:drop-shadow(0 0 10px rgba(77,124,255,.55));}
.feat-ring-label{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;z-index:3;}
.feat-ring-label b{display:block;font-family:'Archivo Black',sans-serif;font-size:40px;background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent;}
.feat-ring-label span{font-size:11px;color:var(--text-dim);text-transform:uppercase;letter-spacing:.08em;}
.feat-chip{position:absolute;font-size:11px;padding:7px 14px;border-radius:100px;background:rgba(20,20,28,.8);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,.12);color:var(--text);z-index:3;animation:featFloat 5s ease-in-out infinite;white-space:nowrap;}
.feat-chip.c1{top:13%;left:7%;animation-delay:0s;}
.feat-chip.c2{top:17%;right:6%;animation-delay:.6s;}
.feat-chip.c3{bottom:15%;left:9%;animation-delay:1.2s;}
.feat-chip.c4{bottom:11%;right:7%;animation-delay:1.8s;}
@keyframes featFloat{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}

.feat-content{padding:44px 44px 44px 6px;display:flex;flex-direction:column;}
.feat-content .feat-live{display:flex;align-items:center;gap:8px;font-size:12px;color:var(--text-dim);margin-bottom:14px;width:fit-content;}
.feat-content .feat-live .dot{width:7px;height:7px;border-radius:50%;background:#4D7CFF;box-shadow:0 0 8px #4D7CFF;}
.feat-content .tag{display:inline-block;font-size:11px;color:var(--lime);border:1px solid rgba(77,124,255,.3);padding:5px 12px;border-radius:100px;margin-bottom:16px;text-transform:uppercase;letter-spacing:.06em;width:fit-content;}
.feat-title{font-size:clamp(34px,4vw,46px);margin-bottom:6px;}
.feat-sub{color:var(--text-dim);font-size:14px;margin-bottom:20px;}
.feat-content > p{color:var(--text-dim);font-size:15px;line-height:1.75;margin-bottom:26px;max-width:560px;}
.feat-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:28px;padding-bottom:28px;border-bottom:1px solid var(--card-border);}
.feat-stat b{display:block;font-family:'Archivo Black',sans-serif;font-size:26px;background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent;margin-bottom:4px;}
.feat-stat span{font-size:11px;color:var(--text-dim);text-transform:uppercase;letter-spacing:.05em;}
.feat-content ul{display:flex;flex-wrap:wrap;gap:9px;}
.feat-content ul li{font-size:12px;color:var(--text-dim);border:1px solid var(--card-border);padding:7px 13px;border-radius:100px;}

@media (max-width:900px){
  .featured-product{grid-template-columns:1fr;}
  .feat-visual{min-height:260px;}
  .feat-content{padding:36px 28px;}
  .feat-stats{grid-template-columns:repeat(3,1fr);gap:14px;}
}
@media (max-width:520px){
  .feat-chip{display:none;}
  .feat-stats{grid-template-columns:1fr 1fr;}
}

/* ===== CLIENTS ===== */
.clients-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
.client-card{border:1px solid var(--card-border);border-radius:var(--radius);padding:30px;background:var(--card);}
.client-card .top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:18px;}
.client-card h3{font-size:20px;font-family:'Archivo Black',sans-serif;text-transform:uppercase;}
.client-card .industry{color:var(--lime);font-size:12px;text-transform:uppercase;letter-spacing:.08em;}
.client-card .tags{display:flex;flex-wrap:wrap;gap:8px;}
.client-card .tags span{font-size:12px;color:var(--text-dim);border:1px solid var(--card-border);padding:6px 12px;border-radius:100px;}
@media (max-width:760px){.clients-grid{grid-template-columns:1fr;}}

/* ===== SKILLS ===== */
.skills-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.skill-card h3{font-size:14px;letter-spacing:.1em;text-transform:uppercase;color:var(--lime);margin-bottom:18px;}
.skill-card ul li{color:var(--text-dim);font-size:15px;padding:10px 0;border-bottom:1px solid var(--card-border);}
@media (max-width:900px){.skills-grid{grid-template-columns:repeat(2,1fr);}}

/* ===== TESTIMONIALS ===== */
.testi-note{
  border:1px dashed var(--card-border);border-radius:var(--radius);padding:60px 40px;text-align:center;
}
.testi-note p{font-size:22px;line-height:1.6;color:var(--text-dim);max-width:640px;margin:0 auto;}
.testi-note p b{color:var(--lime);font-weight:600;}

/* ===== FAQ ===== */
.faq-item{border-bottom:1px solid var(--card-border);}
.faq-item:first-child{border-top:1px solid var(--card-border);}
.faq-q{
  display:flex;align-items:center;gap:20px;padding:26px 0;cursor:pointer;
  font-family:'Archivo Black',sans-serif;font-size:17px;text-transform:uppercase;
}
.faq-q .n{color:var(--lime-dim);font-size:14px;min-width:24px;}
.faq-q .plus{margin-left:auto;width:28px;height:28px;border-radius:50%;border:1px solid var(--card-border);display:flex;align-items:center;justify-content:center;transition:transform .35s;flex-shrink:0;}
.faq-item.open .faq-q .plus{transform:rotate(45deg);background:var(--lime);color:#0A0A08;border-color:var(--lime);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s cubic-bezier(.2,.8,.2,1);}
.faq-item.open .faq-a{max-height:200px;}
.faq-a p{color:var(--text-dim);font-size:15px;line-height:1.7;padding:0 0 26px 44px;}

/* ===== BLOG ===== */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.blog-card{background:var(--card);border:1px solid var(--card-border);border-radius:var(--radius);padding:26px;transition:transform .4s,border-color .4s;}
.blog-card:hover{transform:translateY(-6px);border-color:rgba(77,124,255,.35);}
.blog-card .thumb{aspect-ratio:16/10;border-radius:14px;margin-bottom:20px;background:linear-gradient(135deg,#1A1A18,#0E0E0D);position:relative;overflow:hidden;}
.blog-card .thumb::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 30% 20%,rgba(77,124,255,.25),transparent 60%);}
.blog-card .meta{display:flex;gap:10px;font-size:12px;color:var(--text-dimmer);margin-bottom:12px;text-transform:uppercase;letter-spacing:.05em;}
.blog-card .meta .cat{color:var(--lime);}
.blog-card h3{font-size:17px;line-height:1.4;text-transform:uppercase;font-family:'Archivo Black',sans-serif;}
@media (max-width:900px){.blog-grid{grid-template-columns:1fr;}}

/* ===== CONTACT / FOOTER ===== */
.contact-section{
  background:var(--bg-soft);border-radius:36px;margin:0 20px;padding:80px 60px;position:relative;overflow:hidden;
}
.contact-section .hi-bubble2{
  position:relative;
  width:64px;height:64px;border-radius:50%;background:var(--grad);color:#0A0A08;
  display:flex;align-items:center;justify-content:center;font-weight:700;font-size:26px;margin-bottom:24px;
  animation:pulse 3.2s ease-in-out infinite;
}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;margin-top:40px;}
.form input,.form select,.form textarea{
  width:100%;background:transparent;border:none;border-bottom:1px solid var(--card-border);
  padding:16px 0;color:var(--text);font-family:'Space Grotesk',sans-serif;font-size:15px;margin-bottom:26px;
  outline:none;transition:border-color .3s;
}
.form input:focus,.form select:focus,.form textarea:focus{border-color:var(--lime);}
.form select option{background:#111110;}
.form label{display:block;font-size:12px;color:var(--text-dimmer);text-transform:uppercase;letter-spacing:.08em;margin-bottom:2px;}
.contact-side .item{margin-bottom:28px;}
.contact-side .item span{display:block;font-size:12px;color:var(--text-dimmer);text-transform:uppercase;letter-spacing:.08em;margin-bottom:6px;}
.contact-side .item b{font-size:20px;font-weight:600;}
.social-row{display:flex;gap:12px;margin-top:10px;}
.social-row a{
  width:42px;height:42px;border-radius:50%;border:1px solid var(--card-border);
  display:flex;align-items:center;justify-content:center;font-size:14px;transition:.3s;
}
.social-row a:hover{background:var(--lime);color:#0A0A08;border-color:var(--lime);}
.avail-badge{display:inline-block;font-size:12px;color:var(--lime);border:1px solid rgba(77,124,255,.3);padding:8px 14px;border-radius:100px;margin-top:10px;}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr;}.contact-section{padding:50px 24px;margin:0 12px;}}

footer{padding:40px 0;text-align:center;color:var(--text-dimmer);font-size:13px;}
footer a{color:var(--text-dim);}

.marquee-wrap{overflow:hidden;border-top:1px solid var(--card-border);border-bottom:1px solid var(--card-border);padding:22px 0;margin:0 0 -1px;}
.marquee{display:flex;gap:60px;white-space:nowrap;animation:marquee 24s linear infinite;width:max-content;}
.marquee span{font-family:'Archivo Black',sans-serif;font-size:20px;text-transform:uppercase;color:var(--text-dimmer);display:flex;align-items:center;gap:16px;}
.marquee span::after{content:"✦";color:var(--lime);}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

@media (max-width:640px){
  .wrap{padding:0 20px;}
  section{padding:80px 0;}
  .hi-bubble-pop{left:calc(50% - 140px);}
  .hi-bubble{width:60px;height:60px;font-size:16px;}
  .about{gap:36px;}
  .stats{grid-template-columns:repeat(2,1fr);}
  .skills-grid{grid-template-columns:1fr;}

  /* The 52px clamp floor made "MARKETING" ~337px wide inside a 335px
     content box, so the hero overflowed and got clipped. Scale with the
     viewport instead of holding a fixed floor. */
  .hero-title{font-size:clamp(38px,12.2vw,132px);}
  /* Three items on one row don't fit a phone — let them wrap and centre. */
  .hero-bottom{flex-wrap:wrap;justify-content:center;gap:14px;margin-top:40px;}
}

/* ============================================================
   DEPTH LAYER
   Everything below is transform/opacity only so it composites on
   the GPU and never triggers layout.
   ============================================================ */

/* Hero content rides above the aurora. */
.hero-inner{position:relative;z-index:2;}
.hero{background:transparent;}

/* The heading characters rotate in 3D — the parent needs depth for it
   to read as rotation rather than a vertical squash. */
.section-head h2,.contact-section h2{perspective:800px;}
.section-head h2 .ch,.contact-section h2 .ch{
  display:inline-block;transform-origin:50% 100%;backface-visibility:hidden;
}

/* Product cards tilt toward the pointer. */
.products-grid{perspective:1400px;}
.product-card{transform-style:preserve-3d;}

/* ===== CURSOR SPOTLIGHT =====
   A light source that tracks the pointer across a card. --mx/--my are
   written at most once per frame, and only for the card actually
   under the cursor, so this stays a single cheap gradient repaint. */
.product-card,.featured-product,.skill-card,.project-card,.service-row{
  position:relative;isolation:isolate;
}
.product-card::before,
.featured-product::before,
.skill-card::before,
.project-card::before,
.service-row::before{
  content:"";position:absolute;inset:0;z-index:-1;
  border-radius:inherit;pointer-events:none;
  opacity:0;transition:opacity .45s ease;
  background:radial-gradient(360px circle at var(--mx,50%) var(--my,50%),
             rgba(77,124,255,.19),rgba(77,124,255,.10) 42%,transparent 72%);
}
.product-card.lit::before,
.featured-product.lit::before,
.skill-card.lit::before,
.project-card.lit::before,
.service-row.lit::before{opacity:1;}

/* A hairline that lights up along the top edge of a hovered card —
   the detail that makes glass feel like a real surface. */
.product-card::after,
.skill-card::after{
  content:"";position:absolute;top:0;left:12%;right:12%;height:1px;
  background:linear-gradient(90deg,transparent,rgba(77,124,255,.75),transparent);
  opacity:0;transition:opacity .45s ease;pointer-events:none;
}
.product-card.lit::after,
.skill-card.lit::after{opacity:1;}

/* Promote only what actually moves, and only while it is moving.
   Blanket will-change on many elements costs memory and can make
   things slower, not faster. */
.hero-photo,.hero-title .line-inner,.marquee,
.cursor-dot,.cursor-ring,.project-card{will-change:transform;}
.loader-panel{will-change:transform;}

/* The score ring animates its own dash offset in via GSAP. */
.feat-ring .ring-fill{will-change:stroke-dashoffset;}

/* Reduced motion: strip every ambient loop. */
@media (prefers-reduced-motion: reduce){
  .hero-photo,.hi-bubble,.hi-bubble2,.wave,.swap-item,.marquee,.feat-chip{animation:none!important;}
  .swap-a{opacity:1;}
  *{transition-duration:.01ms!important;}
}

/* ============================================================
   ACID EDITORIAL — component layer
   Loaded last so it overrides the original component styles.
   The brief was a full transformation, not a recolour: type
   scale, rhythm, corner language and hover behaviour all change
   here, not just the palette.
   ============================================================ */

/* ---------- Type ---------- */
.display{letter-spacing:-.038em;}
/* The editorial counterpoint to Archivo Black. Applied per-word via
   data-serif on a heading (see splitHeading in script.js). */
.serif{
  font-family:'Instrument Serif',Georgia,serif;
  font-style:italic;font-weight:400;
  text-transform:none;letter-spacing:-.01em;
  color:var(--accent);
}

/* ---------- Eyebrow: a rule and a label, not a gradient pill ---------- */
.eyebrow{
  background:none;background-clip:border-box;-webkit-background-clip:border-box;
  color:var(--accent-dim);-webkit-text-fill-color:var(--accent-dim);
  font-size:10px;letter-spacing:.34em;font-weight:600;
  gap:14px;margin-bottom:24px;
}
.eyebrow::before{
  content:"";width:36px;height:1px;flex:none;
  background:var(--accent);border-radius:0;box-shadow:none;
}

/* ---------- Section heads ---------- */
section{padding:150px 0;}
.section-head{max-width:900px;margin-bottom:84px;}
.section-head h2{
  font-size:clamp(46px,8.4vw,110px);
  letter-spacing:-.045em;line-height:.86;margin-bottom:28px;
}
.section-head p{font-size:17px;line-height:1.75;max-width:540px;}

/* ---------- Buttons: solid acid, near-square, colour-swap hover ---------- */
.btn{
  background:var(--accent);color:var(--ink);
  border-radius:2px;padding:17px 26px;
  font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  transition:background .35s,color .35s,transform .35s cubic-bezier(.2,.8,.2,1);
}
.btn:hover{background:var(--text);color:var(--ink);transform:translateY(-2px);box-shadow:none;}
.btn .arrow{background:transparent;color:inherit;width:auto;height:auto;font-size:15px;}
.btn.outline{background:transparent;color:var(--text);border:1px solid var(--card-border);}
.btn.outline:hover{background:var(--accent);color:var(--ink);border-color:var(--accent);}

/* ---------- Nav ---------- */
.nav{background:rgba(8,8,6,.74);border:1px solid var(--card-border);border-radius:3px;padding:7px 8px 7px 7px;}
.nav .avatar{border-radius:2px;}
.nav .menu-btn{border-radius:2px;background:var(--accent);color:var(--ink);}
.nav .menu-btn:hover{transform:none;background:var(--text);}
.nav .status{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--text-dim);}
.menu-panel{border-radius:3px;background:rgba(8,8,6,.96);}
.menu-panel a{border-radius:2px;font-size:12px;letter-spacing:.16em;text-transform:uppercase;font-weight:600;}
.menu-panel a:hover{background:var(--accent-soft);color:var(--accent);}

/* ---------- Hero ---------- */
.hero-name{font-size:10px;letter-spacing:.42em;color:var(--text-dim);margin-bottom:22px;}
.hero-title{font-size:clamp(46px,13.5vw,178px);gap:0;letter-spacing:-.05em;}
.hero-tagline{font-size:17px;line-height:1.75;max-width:540px;margin-top:34px;}
.hero-photo,.hero-photo img{border-radius:3px;}
.hi-bubble{background:var(--accent);color:var(--ink);box-shadow:0 0 50px -6px rgba(77,124,255,.5);}
.made-in{
  background:transparent;color:var(--text-dim);border:1px solid var(--card-border);
  border-radius:2px;font-weight:600;font-size:10px;letter-spacing:.16em;text-transform:uppercase;padding:11px 16px;
}
.toggle{border-radius:2px;}
.toggle::after{border-radius:1px;background:var(--accent);}

/* ---------- Marquee: a ticker, not a banner ---------- */
.marquee-wrap{padding:24px 0;border-color:var(--card-border);}
.marquee{gap:44px;}
.marquee span{
  font-family:'Space Grotesk',sans-serif;font-weight:500;
  font-size:12px;letter-spacing:.28em;text-transform:uppercase;color:var(--text-dim);gap:44px;
}
.marquee span::after{content:"/";color:var(--accent);font-size:14px;}

/* ---------- Services: serif index, accent takeover on hover ---------- */
.service-row{grid-template-columns:96px 1fr 1.05fr;padding:42px 0;}
.service-row:hover{background:transparent;padding-left:22px;}
.service-row .num{
  font-family:'Instrument Serif',Georgia,serif;font-style:italic;font-weight:400;
  font-size:34px;color:var(--text-dimmer);transition:color .45s;line-height:1;
}
.service-row:hover .num{color:var(--accent);}
.service-row h3{font-size:clamp(21px,2.7vw,36px);letter-spacing:-.025em;transition:color .45s;}
.service-row:hover h3{color:var(--accent);}
.service-row .tags span{
  border-radius:2px;font-size:10px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--text-dimmer);padding:7px 12px;
}
.service-row .desc{font-size:15px;}

/* ---------- About ---------- */
.about{grid-template-columns:.82fr 1.18fr;gap:78px;}
.about-photo{border-radius:3px;}
.about-copy p{font-size:18px;line-height:1.8;}
.about-copy .highlight{color:var(--accent);}
.stats{margin-top:54px;padding-top:42px;border-top:1px solid var(--card-border);gap:30px 22px;}
.stat b{color:var(--text);font-size:clamp(32px,4.4vw,54px);letter-spacing:-.035em;}
.stat span{color:var(--text-dimmer);font-size:10px;letter-spacing:.16em;}
.contact-mini{display:flex;flex-wrap:wrap;gap:36px;margin-top:40px;padding-top:32px;border-top:1px solid var(--card-border);}
.contact-mini span{display:block;font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:var(--text-dimmer);margin-bottom:6px;}
.contact-mini b{font-size:16px;font-weight:600;}

/* ---------- Experience ---------- */
.exp-line{background:linear-gradient(to bottom,var(--accent),rgba(77,124,255,.12));box-shadow:none;width:1px;left:9px;}
.exp-item{padding:36px 0;}
.exp-item::before{width:7px;height:7px;left:-30.5px;top:44px;box-shadow:0 0 0 4px var(--bg);}
.exp-item .period{
  color:var(--accent-dim);font-size:10px;letter-spacing:.18em;font-weight:600;
}
.exp-item h3{font-family:'Archivo Black',sans-serif;text-transform:uppercase;font-size:clamp(18px,2.2vw,26px);letter-spacing:-.02em;}
.exp-item .role{font-size:13px;letter-spacing:.04em;color:var(--accent-dim);text-transform:uppercase;margin-bottom:14px;}
.exp-item p{font-size:15px;line-height:1.8;}

/* ---------- Projects ---------- */
.project-card{border-radius:3px;padding:44px;box-shadow:0 40px 90px -40px #000;}
.project-card .shade{border-radius:3px;}
.project-card .thumb{border-radius:2px;}
.project-card .proj-index{
  font-family:'Instrument Serif',Georgia,serif;font-style:italic;font-weight:400;
  font-size:22px;color:var(--text-dimmer);letter-spacing:0;top:30px;right:34px;
}
.project-card .cat{font-size:10px;letter-spacing:.2em;color:var(--accent-dim);margin-bottom:12px;}
.project-card h3{font-size:clamp(24px,3.4vw,40px);letter-spacing:-.035em;margin-bottom:14px;}
.project-card p{font-size:15px;line-height:1.8;}
.project-card .tags span{border-radius:2px;font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--text-dimmer);padding:6px 11px;}

/* ---------- Products ---------- */
.products-grid{gap:22px;}
.product-card{background:var(--card);border-radius:3px;padding:34px 30px;}
.product-card:hover{border-color:var(--card-border-hot);transform:translateY(-4px);}
.product-card .prod-art{border-radius:2px;margin-bottom:26px;}
.product-card .tag,.featured-product .tag{
  color:var(--accent);border-color:rgba(77,124,255,.3);border-radius:2px;
  font-size:10px;letter-spacing:.16em;padding:6px 12px;
}
.product-card h3{font-size:clamp(20px,2.2vw,27px);letter-spacing:-.03em;}
.product-card .sub{font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--text-dimmer);}
.product-card p{font-size:14px;line-height:1.75;}
.product-card ul li,.feat-content ul li{
  border-radius:2px;font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--text-dimmer);padding:6px 11px;
}

/* ---------- Flagship ---------- */
.featured-product{
  border-radius:3px;border-color:rgba(77,124,255,.22);
  background:linear-gradient(150deg,#131311,#0C0C0A);
  box-shadow:none;margin-bottom:22px;
}
.featured-product:hover{border-color:rgba(77,124,255,.4);box-shadow:none;}
.feat-visual{background:#080807;}
.feat-title{font-size:clamp(40px,5.8vw,78px);letter-spacing:-.05em;margin-bottom:10px;}
.feat-sub{font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--text-dimmer);margin-bottom:26px;}
.feat-content > p{font-size:16px;line-height:1.8;}
.feat-content .feat-live{font-size:10px;letter-spacing:.18em;text-transform:uppercase;}
.feat-stat b{
  background:none;-webkit-background-clip:border-box;background-clip:border-box;
  color:var(--accent);-webkit-text-fill-color:var(--accent);
  font-size:clamp(24px,2.8vw,32px);letter-spacing:-.03em;
}
.feat-stat span{font-size:10px;letter-spacing:.16em;}
.feat-ring-label b{
  background:none;-webkit-background-clip:border-box;background-clip:border-box;
  color:var(--accent);-webkit-text-fill-color:var(--accent);
}
.feat-ring-label span{font-size:10px;letter-spacing:.16em;}
.feat-chip{
  background:rgba(12,12,10,.82);border:1px solid var(--card-border);border-radius:2px;
  font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--text-dim);
  backdrop-filter:none;
}

/* ---------- Skills: index columns, no boxes ---------- */
.skills-grid{gap:22px 44px;}
.skill-card{background:transparent;border:none;border-top:1px solid var(--accent);border-radius:0;padding:22px 0 0;}
.skill-card h3{
  font-family:'Archivo Black',sans-serif;color:var(--text);
  font-size:12px;letter-spacing:.18em;margin-bottom:6px;
}
.skill-card ul li{
  font-size:15px;padding:13px 0;color:var(--text-dim);
  border-bottom:1px solid var(--card-border);transition:color .3s,padding-left .3s;
}
.skill-card ul li:hover{color:var(--accent);padding-left:8px;}

/* ---------- FAQ ---------- */
.faq-q{padding:30px 0;font-size:clamp(15px,1.8vw,21px);letter-spacing:-.015em;gap:22px;}
.faq-q .n{
  font-family:'Instrument Serif',Georgia,serif;font-style:italic;font-weight:400;
  font-size:19px;color:var(--text-dimmer);
}
.faq-q .plus{border-radius:2px;}
.faq-item.open .faq-q .plus{background:var(--accent);color:var(--ink);border-color:var(--accent);}
.faq-item.open .faq-q{color:var(--accent);}
.faq-a p{font-size:16px;line-height:1.8;padding-bottom:30px;padding-left:41px;}

/* ---------- Contact ---------- */
.contact-section{border-radius:4px;margin:0 20px;padding:100px 70px;background:var(--bg-soft);}
.contact-section h2{font-size:clamp(38px,6.4vw,86px);letter-spacing:-.045em;line-height:.88;}
.contact-section .hi-bubble2{background:var(--accent);color:var(--ink);}
.avail-badge{
  border-radius:2px;font-size:10px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--accent);border-color:rgba(77,124,255,.3);padding:9px 14px;
}
.form label{font-size:10px;letter-spacing:.16em;}
.form input,.form select,.form textarea{font-size:16px;padding:15px 0;}
.form input:focus,.form select:focus,.form textarea:focus{border-color:var(--accent);}
.form select option{background:#101010;}
.contact-side .item span{font-size:10px;letter-spacing:.16em;}
.contact-side .item b{font-size:19px;letter-spacing:-.01em;}
.social-row a{border-radius:2px;}
.social-row a:hover{background:var(--accent);color:var(--ink);border-color:var(--accent);}
.contact-badge{color:var(--text);}
footer{padding:48px 0;font-size:11px;letter-spacing:.14em;text-transform:uppercase;}

/* ---------- Responsive (must stay after the overhaul) ---------- */
@media (max-width:900px){
  /* Once the grid stacks, a 4/5 portrait at full container width becomes
     an enormous slab — cap it and keep it left-aligned with the copy. */
  .about{grid-template-columns:1fr;gap:44px;}
  .about-photo{max-width:380px;}
  .contact-section{padding:60px 26px;margin:0 12px;}
  .skills-grid{gap:18px 32px;}
}
@media (max-width:640px){
  section{padding:92px 0;}
  .section-head{margin-bottom:52px;}
  .section-head h2{font-size:clamp(38px,11vw,72px);}
  .hero-title{font-size:clamp(38px,12.2vw,132px);}
  .service-row{grid-template-columns:1fr;gap:14px;}
  .service-row .num{font-size:26px;}
  .project-card{padding:26px;}
  .contact-mini{gap:22px;}
  .marquee span{font-size:11px;letter-spacing:.2em;}
}

/* ---------- Imagery treatment ----------
   The decorative product/project plates were authored in the old
   cyan-violet palette and fight the acid scheme, so they render as
   monochrome and regain colour on hover. Real photography — the
   portrait, the about shot, the nav avatar — is deliberately left
   untouched; desaturating a person reads as cold, not editorial. */
/* Artwork is fully present at rest. The previous pass dropped it to
   grayscale at 74% brightness, which on a near-black card read as
   "nothing there until you hover" — the cards looked dead. Hover now
   adds a little lift and saturation instead of switching them on. */
.prod-art img,
.feat-visual-bg,
.project-card .thumb img{
  filter:saturate(.88) contrast(1.04) brightness(.98);
  transition:filter .55s ease,transform .8s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover .prod-art img,
.project-card:hover .thumb img{filter:saturate(1.1) contrast(1.06) brightness(1.06);}
.feat-visual-bg{opacity:.62;}
.featured-product:hover .feat-visual-bg{filter:saturate(1.1) brightness(1.05);}

/* ============================================================
   VOLUME — surfaces that have thickness at rest
   The complaint was that cards only came alive under the cursor.
   Everything below is ALWAYS ON: a lit top edge, an inner rim, a
   raked surface gradient and a real cast shadow. Hover then adds
   lift and a spotlight on top of an already-finished object.
   ============================================================ */

.product-card,
.featured-product,
.project-card,
.skill-card,
.contact-section{
  position:relative;
  background-image:
    /* raking light from top-left, as if lit from off-canvas */
    linear-gradient(158deg,rgba(255,255,255,.055) 0%,rgba(255,255,255,0) 38%),
    /* cool bounce pooling in the lower right */
    radial-gradient(120% 90% at 88% 108%,rgba(77,124,255,.10),transparent 62%);
  background-repeat:no-repeat;
}

/* Inner rim — a 1px inset highlight is the single cheapest trick for
   making a flat rectangle read as a panel with an edge. */
.product-card,
.featured-product,
.project-card{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    inset 0 0 0 1px rgba(255,255,255,.015),
    0 22px 50px -28px rgba(0,0,0,.9);
}

/* The permanent top-edge light. Previously this only appeared on
   hover, which is precisely what made the resting state look empty. */
.product-card::after,
.skill-card::after,
.featured-product::after{
  content:"";position:absolute;top:0;left:8%;right:8%;height:1px;
  background:linear-gradient(90deg,transparent,rgba(168,196,255,.55),transparent);
  opacity:.75;transition:opacity .45s ease,left .55s ease,right .55s ease;
  pointer-events:none;
}
.product-card.lit::after,
.skill-card.lit::after,
.featured-product.lit::after{opacity:1;left:0;right:0;}

.product-card:hover,
.featured-product:hover{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.11),
    inset 0 0 0 1px rgba(77,124,255,.10),
    0 34px 70px -30px rgba(0,0,0,.95),
    0 0 60px -22px rgba(77,124,255,.35);
}

/* Tag pills get the same treatment so they read as chips, not outlines. */
.product-card ul li,
.feat-content ul li,
.project-card .tags span,
.service-row .tags span{
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.012));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  transition:color .3s,border-color .3s,background .3s;
}
.product-card ul li:hover,
.feat-content ul li:hover,
.project-card .tags span:hover,
.service-row .tags span:hover{
  color:var(--accent-3);border-color:rgba(77,124,255,.45);
}

/* The flagship reads as the deepest object on the page. */
.featured-product{
  background-image:
    linear-gradient(158deg,rgba(255,255,255,.07) 0%,rgba(255,255,255,0) 40%),
    radial-gradient(130% 100% at 85% 110%,rgba(77,124,255,.16),transparent 60%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    0 40px 90px -40px rgba(0,0,0,.95),
    0 0 90px -40px rgba(77,124,255,.30);
}
.feat-chip{
  background:linear-gradient(180deg,rgba(20,24,36,.92),rgba(12,14,22,.92));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 8px 20px -10px rgba(0,0,0,.9);
  color:var(--text-dim);
}

/* Skill columns keep their editorial flatness but gain a lit rule. */
.skill-card{box-shadow:none;background-image:none;}
.skill-card::after{left:0;right:0;opacity:.5;}
.skill-card.lit::after{opacity:1;}

/* Contact panel becomes the closing "room". */
.contact-section{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06),0 -30px 80px -60px rgba(77,124,255,.4);
}

/* ============================================================
   HERO LEGIBILITY + SOFTENED GEOMETRY
   ============================================================ */

/* ---------- The name must never be swallowed by the volume ----------
   "DIVYANSH KATARIA" sat at --text-dim over a live field; whenever a
   bright band of vapour drifted behind it, contrast collapsed and it
   vanished. Two guards, so it can never happen again:
   1. a soft scrim that darkens the volume only where the type sits,
   2. brighter type with its own shadow, independent of the scrim. */
.hero::before{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:radial-gradient(62% 50% at 50% 44%,
    rgba(6,7,11,.80) 0%,
    rgba(6,7,11,.52) 42%,
    rgba(6,7,11,.16) 68%,
    transparent 84%);
}
.hero-name{
  color:var(--text);
  text-shadow:0 1px 16px rgba(6,7,11,.95),0 0 44px rgba(6,7,11,.8);
}
/* No shadow on the title: at this weight and size a 40px dark blur
   pools around the letterforms and reads as a grey slab behind the
   word. It has more than enough contrast on its own. */
.hero-tagline{text-shadow:0 1px 20px rgba(6,7,11,.9);}

/* ---------- Round geometry back ----------
   The 2px corners read as severe rather than refined. Interactive
   elements go fully round; surfaces get a generous, soft radius. */
:root{--radius:16px;}

.btn,
.made-in,
.avail-badge,
.product-card .tag,
.featured-product .tag,
.product-card ul li,
.feat-content ul li,
.project-card .tags span,
.service-row .tags span,
.feat-chip,
.menu-panel a,
.form select option{
  border-radius:100px;
}
.btn{padding:16px 28px;}
.made-in{padding:12px 20px;}

.nav{border-radius:100px;padding:8px 10px 8px 8px;}
.nav .avatar{border-radius:50%;}
.nav .menu-btn{border-radius:50%;}
.nav .menu-btn:hover{transform:rotate(90deg);}
.menu-panel{border-radius:22px;}

.product-card,
.project-card,
.featured-product,
.project-card .shade{border-radius:18px;}
.product-card .prod-art,
.project-card .thumb,
.hero-photo,
.hero-photo img,
.about-photo{border-radius:14px;}
.contact-section{border-radius:26px;}
.social-row a{border-radius:50%;}
.faq-q .plus{border-radius:50%;}
.feat-visual{border-radius:18px 18px 0 0;}

/* The card top-edge light follows the softer corners. */
.product-card::after,
.skill-card::after,
.featured-product::after{left:14%;right:14%;}
.product-card.lit::after,
.skill-card.lit::after,
.featured-product.lit::after{left:6%;right:6%;}

@media (max-width:900px){
  .feat-visual{border-radius:18px 18px 0 0;}
}

/* ============================================================
   CLIENT WORK — visible deck + live index
   ============================================================ */

/* Cards recede upward, so each one must keep its own shadow and a lit
   top edge to separate it from the card in front. */
.project-card{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 -1px 0 rgba(168,196,255,.10),
    0 30px 60px -30px rgba(0,0,0,.95);
}
.project-card .shade{
  /* Cool, not black: a pure-black veil reads as "switched off",
     a blue-grey one reads as "further away". */
  background:#0A0D16;
  border-radius:18px;
}
/* A hairline along the top of every receded card, so the stack reads as
   discrete layers rather than one dark mass. */
.project-card::before{
  content:"";position:absolute;top:0;left:6%;right:6%;height:1px;z-index:6;
  background:linear-gradient(90deg,transparent,rgba(168,196,255,.5),transparent);
  pointer-events:none;
}

/* ---------- The index rail ---------- */
.proj-rail{
  position:fixed;left:26px;top:50%;translate:0 -50%;
  z-index:120;display:flex;flex-direction:column;gap:2px;
  opacity:0;pointer-events:none;
  transition:opacity .45s ease;
}
.proj-rail.visible{opacity:1;pointer-events:auto;}

.proj-rail-item{
  display:flex;align-items:center;gap:12px;
  background:none;border:0;cursor:pointer;
  padding:9px 12px 9px 0;
  font-family:'Space Grotesk',sans-serif;
  color:var(--text-dimmer);
  text-align:left;
  transition:color .35s ease;
  position:relative;
}
/* The tick that grows into a full rule for the active entry. */
.proj-rail-item::before{
  content:"";width:14px;height:1px;flex:none;
  background:currentColor;
  transition:width .45s cubic-bezier(.2,.8,.2,1),background .35s;
}
.proj-rail-item .n{
  font-size:10px;letter-spacing:.14em;font-weight:600;
  font-variant-numeric:tabular-nums;
}
.proj-rail-item .meta{
  display:flex;flex-direction:column;gap:2px;
  max-width:0;overflow:hidden;white-space:nowrap;
  opacity:0;
  transition:max-width .5s cubic-bezier(.2,.8,.2,1),opacity .4s ease;
}
.proj-rail-item .t{font-size:12px;font-weight:600;letter-spacing:.01em;}
.proj-rail-item .c{font-size:9px;letter-spacing:.16em;text-transform:uppercase;color:var(--text-dimmer);}

.proj-rail-item:hover{color:var(--text-dim);}
.proj-rail-item:hover::before{width:24px;}
.proj-rail-item:hover .meta{max-width:220px;opacity:1;}

.proj-rail-item.on{color:var(--text);}
.proj-rail-item.on::before{width:34px;background:var(--accent);}
.proj-rail-item.on .meta{max-width:220px;opacity:1;}
.proj-rail-item.on .c{color:var(--accent-dim);}

/* The rail duplicates the on-card index, and there is no room for it
   beside a full-width card on smaller screens. */
@media (max-width:1180px){ .proj-rail{display:none;} }
@media (prefers-reduced-motion: reduce){
  .proj-rail-item::before,.proj-rail-item .meta{transition:none;}
}

/* ============================================================
   DESIGN PRACTICE
   ============================================================ */
.design-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px;}
.design-card{
  background:var(--card);
  border:1px solid var(--card-border);
  border-radius:18px;
  padding:34px 30px;
  display:flex;flex-direction:column;
  transition:transform .4s,border-color .4s,box-shadow .4s;
}
.design-card:hover{transform:translateY(-4px);border-color:var(--card-border-hot);}
.design-card .tag{
  display:inline-block;width:fit-content;
  font-size:10px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--accent);border:1px solid rgba(77,124,255,.3);
  padding:6px 12px;border-radius:100px;margin-bottom:20px;
}
.design-card h3{
  font-family:'Archivo Black',sans-serif;text-transform:uppercase;
  font-size:clamp(20px,2.2vw,27px);letter-spacing:-.03em;margin-bottom:14px;
}
.design-card p{color:var(--text-dim);font-size:14px;line-height:1.75;margin-bottom:22px;flex:1;}
.design-card ul{display:flex;flex-wrap:wrap;gap:8px;}
.design-card ul li{
  font-size:10px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--text-dimmer);border:1px solid var(--card-border);
  padding:6px 11px;border-radius:100px;
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.012));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  transition:color .3s,border-color .3s;
}
.design-card ul li:hover{color:var(--accent-3);border-color:rgba(77,124,255,.45);}

/* Same always-on volume language as the product cards: lit top edge,
   raked surface, inner rim — so these never look empty at rest. */
.design-card{
  position:relative;isolation:isolate;
  background-image:
    linear-gradient(158deg,rgba(255,255,255,.055) 0%,rgba(255,255,255,0) 38%),
    radial-gradient(120% 90% at 88% 108%,rgba(77,124,255,.10),transparent 62%);
  background-repeat:no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    inset 0 0 0 1px rgba(255,255,255,.015),
    0 22px 50px -28px rgba(0,0,0,.9);
}
.design-card::before{
  content:"";position:absolute;inset:0;z-index:-1;
  border-radius:inherit;pointer-events:none;
  opacity:0;transition:opacity .45s ease;
  background:radial-gradient(360px circle at var(--mx,50%) var(--my,50%),
             rgba(77,124,255,.19),rgba(77,124,255,.10) 42%,transparent 72%);
}
.design-card.lit::before{opacity:1;}
.design-card::after{
  content:"";position:absolute;top:0;left:14%;right:14%;height:1px;
  background:linear-gradient(90deg,transparent,rgba(168,196,255,.55),transparent);
  opacity:.75;transition:opacity .45s ease,left .55s ease,right .55s ease;
  pointer-events:none;
}
.design-card.lit::after{opacity:1;left:6%;right:6%;}
.design-card:hover{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.11),
    inset 0 0 0 1px rgba(77,124,255,.10),
    0 34px 70px -30px rgba(0,0,0,.95),
    0 0 60px -22px rgba(77,124,255,.35);
}

@media (max-width:820px){ .design-grid{grid-template-columns:1fr;} }

/* ============================================================
   DESIGN PRACTICE — specimens
   The section previously ran as four text blocks with no visual
   idea of its own, which read as flat next to every other
   section. Each card now opens with a live specimen of its
   discipline, drawn in CSS/SVG. Motion only runs while the
   section is on screen (.design-grid.active), so nothing ticks
   off-screen.
   ============================================================ */

.design-grid{gap:30px;}
.design-card{padding:0;overflow:hidden;}
/* Breathing room, and an offset on the right column so the pair
   doesn't read as one solid slab. */
.design-body{padding:30px 32px 34px;display:flex;flex-direction:column;flex:1;}
@media (min-width:821px){
  .design-card:nth-child(even){margin-top:42px;}
}

.design-head{display:flex;align-items:center;gap:14px;margin-bottom:16px;}
.design-num{
  font-family:'Instrument Serif',Georgia,serif;font-style:italic;font-weight:400;
  font-size:30px;line-height:1;color:var(--text-dimmer);
  transition:color .45s ease;
}
.design-card:hover .design-num{color:var(--accent);}
.design-card .tag{margin-bottom:0;}
.design-card h3{margin-bottom:14px;}

/* ---------- The specimen frame ---------- */
.design-visual{
  position:relative;height:172px;flex:none;
  border-bottom:1px solid var(--card-border);
  background:
    radial-gradient(90% 120% at 50% -10%,rgba(77,124,255,.16),transparent 62%),
    linear-gradient(180deg,#0B0E16,#0A0C12);
  overflow:hidden;
}
/* Faint engineering grid under every specimen — ties the four together. */
.design-visual::before{
  content:"";position:absolute;inset:0;opacity:.5;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
  background-size:26px 26px;
}

/* ---------- 01 · Product — a dashboard assembling itself ---------- */
.dv-product{display:flex;gap:10px;padding:20px 22px;}
.dv-side{display:flex;flex-direction:column;gap:7px;width:44px;flex:none;}
.dv-side i{height:7px;border-radius:2px;background:rgba(255,255,255,.10);}
.dv-side i:first-child{background:var(--accent);opacity:.85;}
.dv-main{flex:1;display:flex;flex-direction:column;gap:9px;}
.dv-top{height:9px;width:58%;border-radius:2px;background:rgba(255,255,255,.14);}
.dv-cards{display:flex;gap:9px;}
.dv-cards i{flex:1;height:30px;border-radius:5px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.06);}
.dv-chart{display:flex;align-items:flex-end;gap:6px;height:44px;}
.dv-chart i{
  flex:1;border-radius:3px 3px 0 0;
  background:linear-gradient(180deg,var(--accent),rgba(77,124,255,.25));
  height:26%;transform-origin:50% 100%;
}
.design-grid.active .dv-chart i{animation:dvBar 3.2s ease-in-out infinite;}
.dv-chart i:nth-child(1){animation-delay:0s}   .dv-chart i:nth-child(2){animation-delay:.12s}
.dv-chart i:nth-child(3){animation-delay:.24s} .dv-chart i:nth-child(4){animation-delay:.36s}
.dv-chart i:nth-child(5){animation-delay:.48s} .dv-chart i:nth-child(6){animation-delay:.6s}
@keyframes dvBar{0%,100%{transform:scaleY(.42)}50%{transform:scaleY(1)}}

/* ---------- 02 · Identity — a type specimen + palette ---------- */
.dv-identity{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;}
.dv-glyph{
  font-family:'Instrument Serif',Georgia,serif;font-style:italic;
  font-size:64px;line-height:1;color:var(--text);
  position:relative;z-index:1;
  transition:color .5s ease,transform .6s cubic-bezier(.2,.8,.2,1);
}
.design-card:hover .dv-glyph{color:var(--accent-3);transform:scale(1.06);}
.dv-swatches{display:flex;gap:7px;position:relative;z-index:1;}
.dv-swatches i{
  width:26px;height:26px;border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  transition:transform .45s cubic-bezier(.2,.8,.2,1);
}
.dv-swatches i:nth-child(1){background:#4D7CFF}
.dv-swatches i:nth-child(2){background:#A8C4FF}
.dv-swatches i:nth-child(3){background:#F2EFE8}
.dv-swatches i:nth-child(4){background:#2E5BFF}
.dv-swatches i:nth-child(5){background:#0E1016}
.design-card:hover .dv-swatches i{transform:translateY(-5px);}
.design-card:hover .dv-swatches i:nth-child(2){transition-delay:.05s}
.design-card:hover .dv-swatches i:nth-child(3){transition-delay:.1s}
.design-card:hover .dv-swatches i:nth-child(4){transition-delay:.15s}
.design-card:hover .dv-swatches i:nth-child(5){transition-delay:.2s}

/* ---------- 03 · Motion — a comet of light riding the curve ----------
   The dot was originally a DOM element on an offset-path, which put it
   in the card's pixel space while the path lived in the SVG's viewBox —
   two different coordinate systems, so it never sat on the line. Doing
   it as a travelling dash inside the SVG keeps one coordinate space. */
.dv-motion svg{position:absolute;inset:0;width:100%;height:100%;}
.dv-motion path{fill:none;stroke-width:2.2;stroke-linecap:round;}
.dv-motion .dv-track{stroke:rgba(255,255,255,.10);}
.dv-motion .dv-comet{
  stroke:var(--accent);
  stroke-dasharray:.14 .86;
  stroke-dashoffset:1;
  filter:drop-shadow(0 0 5px rgba(77,124,255,.8));
}
.design-grid.active .dv-motion .dv-comet{animation:dvComet 3.6s linear infinite;}
@keyframes dvComet{to{stroke-dashoffset:0;}}

/* ---------- 04 · Systems — a template grid firing in sequence ---------- */
.dv-system{
  display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);
  gap:9px;padding:24px 46px;
}
.dv-system i{
  border-radius:5px;background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.07);
}
.design-grid.active .dv-system i{animation:dvTile 4s ease-in-out infinite;}
.dv-system i:nth-child(1){animation-delay:0s}   .dv-system i:nth-child(2){animation-delay:.18s}
.dv-system i:nth-child(3){animation-delay:.36s} .dv-system i:nth-child(4){animation-delay:.54s}
.dv-system i:nth-child(5){animation-delay:.72s} .dv-system i:nth-child(6){animation-delay:.9s}
.dv-system i:nth-child(7){animation-delay:1.08s}.dv-system i:nth-child(8){animation-delay:1.26s}
.dv-system i:nth-child(9){animation-delay:1.44s}
@keyframes dvTile{
  0%,70%,100%{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.07);}
  18%,40%{background:rgba(77,124,255,.30);border-color:rgba(77,124,255,.55);}
}

/* The lit top edge belongs to the specimen frame, not the body. */
.design-card::after{left:16%;right:16%;}
.design-card.lit::after{left:5%;right:5%;}

@media (max-width:820px){
  .design-card:nth-child(even){margin-top:0;}
  .design-visual{height:150px;}
  .design-body{padding:26px 24px 30px;}
}
@media (prefers-reduced-motion: reduce){
  .design-grid.active .dv-chart i,
  .design-grid.active .dv-motion .dv-comet,
  .design-grid.active .dv-system i{animation:none;}
  .dv-motion .dv-comet{display:none;}
}
