:root {
  --bg: #09090d;
  --surface: #111118;
  --surface-2: #171720;
  --text: #f5f4f8;
  --muted: #aaa8b5;
  --violet: #9f8cff;
  --cyan: #70e7ff;
  --pink: #ef8dff;
  --line: rgba(255,255,255,.12);
  --glass: rgba(255,255,255,.065);
  --serif: "Lora", Georgia, serif;
  --sans: "Work Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; background: var(--bg); }
body { margin: 0; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body::before { content: ""; position: fixed; inset: -20%; z-index: -2; background: radial-gradient(circle at 18% 10%, rgba(116,84,255,.18), transparent 31%), radial-gradient(circle at 82% 28%, rgba(66,211,255,.12), transparent 27%), radial-gradient(circle at 55% 85%, rgba(221,82,255,.1), transparent 30%); filter: blur(25px); pointer-events: none; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: #09090d; background: var(--cyan); }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; pointer-events: none; }
.ui-icon { width: 18px; height: 18px; flex: 0 0 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.noise { position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.section-pad { padding: 130px max(5vw, 28px); }
.display { margin: 0; font: 400 clamp(3.8rem, 7.2vw, 7.8rem)/.94 var(--serif); letter-spacing: -.045em; }
.display em { font-weight: 400; color: var(--violet); }
.section-label { display: flex; gap: 14px; align-items: center; margin-bottom: 70px; color: var(--muted); font: 500 10px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.section-label span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--text); }
.section-label.light { color: var(--muted); }
.section-top { display: flex; gap: 60px; align-items: end; justify-content: space-between; }
.section-top > p { max-width: 380px; margin: 0 0 12px; color: var(--muted); font-size: 15px; line-height: 1.75; }

/* Preloader */
.preloader { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; overflow: hidden; color: var(--text); background: #08080c; }
.preloader::before { content: ""; position: absolute; width: 45vw; height: 45vw; border-radius: 50%; background: radial-gradient(circle, rgba(159,140,255,.35), transparent 65%); filter: blur(30px); }
.preloader__mark { position: relative; font: 400 12vw/1 var(--serif); letter-spacing: -.07em; }
.preloader__mark span { color: var(--cyan); }
.preloader__rail { position: absolute; right: 5vw; bottom: 55px; left: 5vw; height: 1px; background: var(--line); }
.preloader__rail i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--violet), var(--cyan)); }
.preloader__count { position: absolute; right: 5vw; bottom: 68px; color: var(--muted); font: 10px var(--mono); }

/* Cursor + navigation */
.cursor { position: fixed; z-index: 10001; display: grid; width: 10px; height: 10px; place-items: center; border-radius: 50%; background: var(--cyan); pointer-events: none; transform: translate(-50%,-50%); mix-blend-mode: difference; }
.cursor span { opacity: 0; color: #09090d; font: 9px var(--mono); }
.cursor.active { width: 72px; height: 72px; background: rgba(255,255,255,.95); mix-blend-mode: normal; }
.cursor.active span { opacity: 1; }
.site-header { position: fixed; top: 18px; right: max(3vw,18px); left: max(3vw,18px); z-index: 100; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 68px; padding: 0 12px 0 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(12,12,18,.68); box-shadow: 0 15px 50px rgba(0,0,0,.22); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.brand { display: flex; align-items: flex-start; width: max-content; font: 400 29px/.8 var(--serif); }
.brand b { font-weight: 400; }
.brand i { margin: -2px 0 0 4px; color: var(--cyan); font: 8px var(--mono); }
.brand--header { position: relative; width: 190px; height: 54px; overflow: hidden; align-self: center; }
.brand--header img { position: absolute; top: -78px; left: -7px; width: 200px; height: 200px; max-width: none; }
.desktop-nav { display: flex; gap: 36px; align-items: center; }
.desktop-nav a { position: relative; color: #cfced6; font-size: 13px; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: linear-gradient(90deg,var(--violet),var(--cyan)); transform: scaleX(0); transform-origin: right; transition: transform .35s; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav a.active { color: #fff; }
.desktop-nav a.active::after { transform: scaleX(1); }
.header-cta { justify-self: end; display: flex; gap: 9px; align-items: center; padding: 14px 17px; border-radius: 12px; color: #0a0a0d; background: #fff; font-size: 12px; font-weight: 600; }
.header-cta > span { width: 6px; height: 6px; border-radius: 50%; background: #36b86a; box-shadow: 0 0 0 4px rgba(54,184,106,.15); }
.header-cta .ui-icon { width: 16px; height: 16px; }
.menu-toggle { display: none; border: 0; background: none; cursor: pointer; }
.menu { position: fixed; inset: 0; z-index: 90; display: flex; flex-direction: column; justify-content: space-between; padding: 150px 5vw 55px; background: rgba(9,9,13,.97); clip-path: inset(0 0 100% 0); pointer-events: none; }
.menu.open { pointer-events: auto; }
.menu__meta,.menu__foot { color: var(--muted); font: 10px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.menu__links { display: flex; flex-direction: column; }
.menu__links a { padding: 12px 0; border-bottom: 1px solid var(--line); font: 400 clamp(4rem,9vw,8rem)/.85 var(--serif); }
.menu__links small { display: inline-block; width: 52px; color: var(--violet); font: 9px var(--mono); }

/* Hero */
.hero { position: relative; min-height: 100vh; padding-top: 170px; padding-bottom: 90px; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: 7%; left: 57%; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(112,231,255,.32), rgba(159,140,255,.18) 35%, transparent 69%); filter: blur(15px); pointer-events: none; }
.hero__eyebrow { display: flex; gap: 12px; align-items: center; color: var(--muted); font: 10px var(--mono); letter-spacing: .13em; }
.hero__eyebrow span { width: 28px; height: 1px; background: var(--cyan); }
.hero__title { position: relative; z-index: 2; max-width: 1100px; margin: 55px auto 65px; font: 500 clamp(5.6rem,11.5vw,11rem)/.78 var(--serif); letter-spacing: -.065em; text-align: center; }
.hero__title em { font-weight: 400; color: transparent; background: linear-gradient(100deg,var(--violet),var(--cyan) 70%); -webkit-background-clip: text; background-clip: text; }
.hero__grid { display: grid; grid-template-columns: .85fr 1.25fr .72fr; gap: 28px; align-items: end; }
.hero__copy { display: flex; min-height: 100%; flex-direction: column; align-items: flex-start; justify-content: space-between; padding-right: 20px; }
.hero__copy p { max-width: 320px; margin: 0; color: #d1d0d9; font-size: 17px; line-height: 1.65; }
.round-cta { display: flex; width: 126px; height: 126px; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #0a0a0d; background: linear-gradient(135deg,#fff 15%,#cbd5ff 100%); box-shadow: 0 15px 50px rgba(114,101,255,.25); font: 500 10px/1.45 var(--mono); text-transform: uppercase; }
.round-cta svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.round-cta.dark { color: #09090d; background: #fff; }
.portrait { --mx: 50%; --my: 42%; position: relative; z-index: 2; aspect-ratio: 1/1.08; margin: -45px 0 -8px; overflow: visible; isolation: isolate; }
.portrait__halo { position: absolute; z-index: -3; top: 4%; left: 50%; width: 112%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(112,231,255,.2),rgba(159,140,255,.11) 42%,transparent 68%); filter: blur(12px); transform: translateX(-50%); }
.portrait__halo::before,.portrait__halo::after { content: ""; position: absolute; inset: 11%; border: 1px solid rgba(112,231,255,.17); border-radius: 50%; }
.portrait__halo::after { inset: 22%; border-color: rgba(159,140,255,.18); }
.portrait__layers { position: absolute; inset: 0; z-index: 2; }
.portrait__human,.portrait__robot-reveal,.portrait__robot-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; user-select: none; pointer-events: none; }
.portrait__human { z-index: 2; filter: saturate(.9) contrast(1.02) drop-shadow(0 28px 30px rgba(0,0,0,.48)); transition: -webkit-mask-image .2s; }
.portrait__robot-bg { z-index: -2; opacity: .42; filter: blur(2px) saturate(1.25) drop-shadow(0 0 28px rgba(112,231,255,.38)); clip-path: inset(0 4.55%); transform: scaleX(1.1); }
.portrait__robot-reveal { z-index: 1; filter: saturate(1.2) drop-shadow(0 0 18px rgba(112,231,255,.34)); clip-path: circle(0 at var(--mx) var(--my)); transform: scaleX(1.1); transition: clip-path .45s cubic-bezier(.16,1,.3,1); }
.portrait:hover .portrait__robot-reveal { clip-path: circle(clamp(76px,8vw,118px) at var(--mx) var(--my)); transition-duration: .12s; }
.portrait:hover .portrait__human { -webkit-mask-image: radial-gradient(circle clamp(76px,8vw,118px) at var(--mx) var(--my),transparent 0 72%,rgba(0,0,0,.28) 83%,#000 100%); mask-image: radial-gradient(circle clamp(76px,8vw,118px) at var(--mx) var(--my),transparent 0 72%,rgba(0,0,0,.28) 83%,#000 100%); }
.portrait__spot { position: absolute; z-index: 4; left: var(--mx); top: var(--my); width: clamp(152px,16vw,236px); height: clamp(152px,16vw,236px); border: 1px solid rgba(112,231,255,.72); border-radius: 50%; opacity: 0; box-shadow: 0 0 30px rgba(112,231,255,.17), inset 0 0 25px rgba(112,231,255,.09); pointer-events: none; transform: translate(-50%,-50%) scale(.78); transition: opacity .25s,transform .4s cubic-bezier(.16,1,.3,1); }
.portrait:hover .portrait__spot { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.portrait figcaption { position: absolute; right: 0; bottom: -34px; left: 0; z-index: 5; display: flex; justify-content: space-between; color: #8d8b98; font: 8px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.hero__index { align-self: stretch; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--glass); backdrop-filter: blur(15px); }
.hero__index > b { color: var(--cyan); font: 9px var(--mono); }
.hero__index p { margin: auto 0 30px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.socials { display: flex; gap: 8px; }
.socials a { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #d8d7df; font: 8px var(--mono); transition: .3s; }
.socials a:hover { color: #09090d; background: var(--cyan); border-color: var(--cyan); }
.scroll-cue { position: absolute; bottom: 30px; left: 5vw; color: #777684; font: 8px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue span { display: inline-block; margin-left: 10px; animation: bob 1.6s infinite; }
.ticker { width: 100%; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.025); padding: 15px 0; }
.ticker div { width: max-content; color: #a6a3ae; font: 9px var(--mono); letter-spacing: .1em; word-spacing: 1.2em; animation: marquee 28s linear infinite; }

/* About + timeline */
.about { position: relative; }
.about::after { content: ""; position: absolute; top: 25%; right: -180px; width: 440px; height: 440px; border: 1px solid rgba(159,140,255,.15); border-radius: 50%; box-shadow: 0 0 100px rgba(159,140,255,.08); }
.about__body { display: grid; grid-template-columns: 1.45fr .65fr; gap: 10vw; margin-top: 90px; padding-top: 45px; border-top: 1px solid var(--line); }
.lead { margin: 0; font: 400 clamp(2rem,3.4vw,3.5rem)/1.17 var(--serif); letter-spacing: -.025em; }
.about__aside { position: relative; z-index: 1; }
.about__aside p,.story__copy > p:not(.lead) { margin-top: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.text-link { display: flex; justify-content: space-between; margin-top: 35px; padding: 15px 0; border-bottom: 1px solid var(--line); font: 500 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.text-link span { color: var(--cyan); }
.timeline { background: #0d0d13; }
.timeline__head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 90px; }
.timeline__head em { color: var(--cyan); }
.timeline__head > p { width: 300px; margin: 0 0 12px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.timeline__track { position: relative; }
.timeline__track::before,.timeline__progress { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 1px; background: var(--line); }
.timeline__progress { background: linear-gradient(var(--violet),var(--cyan)); transform: scaleY(0); transform-origin: top; }
.timeline article { position: relative; display: grid; grid-template-columns: .8fr 1.7fr 1fr 35px; gap: 35px; padding: 45px 0 45px 40px; border-top: 1px solid var(--line); }
.timeline article::before { content: ""; position: absolute; top: 47px; left: -5px; width: 11px; height: 11px; border: 2px solid #0d0d13; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(112,231,255,.12); }
.timeline time,.timeline article > b { color: var(--cyan); font: 9px var(--mono); }
.timeline h3 { margin: 0; font: 400 clamp(2.1rem,3.8vw,4rem)/.98 var(--serif); letter-spacing: -.03em; }
.timeline article p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.timeline article > b { color: rgba(255,255,255,.18); font-size: 22px; font-weight: 300; text-align: right; }

/* Services */
.services { background: #0a0a0e; }
.service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 80px; }
.service-card { position: relative; min-height: 420px; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025)); box-shadow: inset 0 1px rgba(255,255,255,.05); transform-style: preserve-3d; }
.service-card::before { content: ""; position: absolute; width: 230px; height: 230px; right: -100px; bottom: -120px; border-radius: 50%; background: rgba(159,140,255,.16); filter: blur(30px); transition: .5s; }
.service-card:hover::before { transform: scale(1.5); background: rgba(112,231,255,.2); }
.service-card.accent { background: linear-gradient(145deg,rgba(159,140,255,.2),rgba(255,255,255,.035)); }
.service-card.dark { background: linear-gradient(145deg,rgba(112,231,255,.12),rgba(255,255,255,.035)); }
.service-card small { color: var(--muted); font: 9px var(--mono); letter-spacing: .1em; }
.service-card h3 { margin: 75px 0 40px; font: 400 clamp(2.3rem,3.5vw,3.8rem)/1 var(--serif); letter-spacing: -.035em; }
.service-card ul { position: relative; z-index: 1; padding: 0; margin: 0; list-style: none; }
.service-card li { display: flex; justify-content: space-between; padding: 11px 0; border-top: 1px solid var(--line); color: #bbb9c4; font-size: 12px; }
.service-card li::after { content: ""; width: 12px; height: 12px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2370e7ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 19 19 5M10 5h9v9'/%3E%3C/svg%3E") center/contain no-repeat; }
.service-icon { position: absolute; top: 29px; right: 32px; display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid var(--line); border-radius: 15px; color: var(--cyan); background: rgba(255,255,255,.04); font-size: 24px; transition: transform .4s; }
.service-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-icon { transform: rotate(10deg) scale(1.05); }
.expertise { overflow: hidden; padding: 70px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(90deg,rgba(159,140,255,.11),rgba(112,231,255,.06)); }
.expertise__label { margin: 0 5vw 40px; color: var(--muted); font: 9px var(--mono); letter-spacing: .14em; }
.expertise__marquee div { width: max-content; white-space: nowrap; font: 400 clamp(3.8rem,7vw,7.5rem)/1 var(--serif); animation: marquee 30s linear infinite; }
.expertise__marquee i { color: var(--violet); font-style: normal; }
.expertise__marquee i svg { width: .52em; height: .52em; fill: none; stroke: currentColor; stroke-width: 1.35; vertical-align: .04em; }

/* Story, capabilities and clients */
.story { display: grid; min-height: 100vh; grid-template-columns: 1fr 1fr; background: #0d0d13; }
.story__visual { position: relative; display: grid; min-height: 100vh; overflow: hidden; place-items: center; background: radial-gradient(circle at 50% 45%,rgba(159,140,255,.24),transparent 35%), linear-gradient(145deg,#151420,#0b0b10); }
.story__visual::after { content: ""; position: absolute; inset: 20px; border: 1px solid var(--line); border-radius: var(--radius); }
.gene-mark { position: relative; z-index: 2; }
.gene-mark > span { display: block; color: var(--cyan); font: italic 3vw var(--serif); }
.gene-mark strong { display: block; font: 400 10vw/.62 var(--serif); letter-spacing: -.09em; }
.gene-mark strong span { display: inline; color: var(--violet); font: inherit; }
.gene-mark small { display: block; margin-top: 42px; color: var(--muted); font: 8px var(--mono); letter-spacing: .16em; }
.gene-logo { width: min(78%, 580px); perspective: 900px; }
.gene-logo::before { content: ""; position: absolute; z-index: -1; inset: -35%; border-radius: 50%; background: radial-gradient(circle,rgba(159,140,255,.22),rgba(112,231,255,.1) 34%,transparent 68%); filter: blur(18px); animation: geneGlow 4.5s ease-in-out infinite; }
.gene-logo__stage { position: relative; overflow: hidden; padding: 14px; border-radius: 24px; transform-style: preserve-3d; animation: geneFloat 5.5s ease-in-out infinite; transition: transform .6s cubic-bezier(.16,1,.3,1),filter .6s; }
.gene-logo__stage::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.08); border-radius: inherit; background: linear-gradient(145deg,rgba(255,255,255,.055),transparent 48%,rgba(112,231,255,.035)); box-shadow: inset 0 1px rgba(255,255,255,.06); }
.gene-logo__stage img { position: relative; z-index: 1; display: block; width: 100%; height: auto; filter: drop-shadow(0 22px 34px rgba(0,0,0,.38)) drop-shadow(0 0 18px rgba(159,140,255,.16)); animation: geneBreathe 4.5s ease-in-out infinite; }
.gene-logo__stage > span { position: absolute; z-index: 2; top: -35%; bottom: -35%; left: -45%; width: 26%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent); filter: blur(3px); pointer-events: none; transform: skewX(-18deg); animation: geneSweep 5.8s 1.2s ease-in-out infinite; }
.gene-logo__stage:hover { filter: saturate(1.12); transform: rotateX(2deg) rotateY(-3deg) scale(1.025); }
.orbit::before { content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 18px var(--violet); }
.orbit--one { animation: orbitSpinOne 18s linear infinite; }
.orbit--two { animation: orbitSpinTwo 24s linear infinite; }
@keyframes geneFloat { 0%,100% { transform: translateY(0) rotateX(0); } 50% { transform: translateY(-12px) rotateX(1.5deg); } }
@keyframes geneBreathe { 0%,100% { filter: drop-shadow(0 22px 34px rgba(0,0,0,.38)) drop-shadow(0 0 15px rgba(159,140,255,.12)); } 50% { filter: drop-shadow(0 28px 38px rgba(0,0,0,.42)) drop-shadow(0 0 28px rgba(112,231,255,.24)); } }
@keyframes geneGlow { 0%,100% { opacity: .65; transform: scale(.94); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes geneSweep { 0%,58% { left: -45%; opacity: 0; } 65% { opacity: 1; } 82%,100% { left: 125%; opacity: 0; } }
@keyframes orbitSpinOne { to { transform: rotate(360deg); } }
@keyframes orbitSpinTwo { from { transform: rotate(45deg); } to { transform: rotate(405deg); } }
.orbit { position: absolute; width: 34vw; height: 34vw; border: 1px solid rgba(159,140,255,.24); border-radius: 50%; }
.orbit--two { width: 49vw; height: 18vw; border-color: rgba(112,231,255,.2); transform: rotate(45deg); }
.story__copy { display: flex; flex-direction: column; justify-content: center; }
.story__copy .lead { margin: 55px 0 30px; }
.story__copy .round-cta { align-self: flex-end; }
.skills { background: #0a0a0e; }
.skill-list { margin-top: 85px; }
.skill { display: grid; grid-template-columns: 1fr 2fr 55px; gap: 35px; align-items: center; padding: 24px 0; border-top: 1px solid var(--line); }
.skill > span { font: 400 clamp(1.35rem,2.2vw,2.3rem) var(--serif); }
.skill i { position: relative; height: 4px; overflow: hidden; border-radius: 5px; background: rgba(255,255,255,.09); }
.skill i::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,var(--violet),var(--cyan)); transform: scaleX(0); transform-origin: left; }
.skill b { color: var(--cyan); font: 10px var(--mono); text-align: right; }
.clients { overflow: hidden; padding: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.clients .section-label { margin: 0 5vw 55px; }
.logo-wall > div { display: flex; width: max-content; gap: 8vw; align-items: center; animation: marquee 25s linear infinite; }
.logo-wall b { color: #898793; font: 500 1.8vw var(--sans); transition: .3s; }
.logo-wall b:hover { color: var(--cyan); }
.logo-wall span { font-family: var(--serif); font-style: italic; }
.logo-wall sup { color: var(--violet); }

/* Work */
.work { padding-bottom: 160px; }
.work-note { max-width: 660px; margin: 42px 0 0; padding-left: 16px; border-left: 1px solid var(--violet); color: #777582; font: 9px/1.7 var(--mono); letter-spacing: .04em; }
.filters { display: flex; gap: 8px; }
.filters button { padding: 10px 15px; border: 1px solid var(--line); border-radius: 30px; color: var(--muted); background: transparent; font: 8px var(--mono); letter-spacing: .07em; text-transform: uppercase; cursor: pointer; transition: .3s; }
.filters button:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.filters button.active { color: #09090d; border-color: #fff; background: #fff; }
.projects { display: grid; grid-template-columns: repeat(2,1fr); gap: 70px 24px; margin-top: 90px; }
.project--wide { grid-column: span 2; }
.project__art { position: relative; display: grid; height: 36vw; min-height: 340px; overflow: hidden; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .6s cubic-bezier(.2,.8,.2,1),filter .3s; }
.project:not(.project--wide) .project__art { height: 47vw; }
.project:hover .project__art { transform: translateY(-5px); }
.project__art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(4,4,8,.62)); pointer-events: none; }
.project__art > img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.16,1,.3,1),filter .5s; }
.project:hover .project__art > img { transform: scale(1.035); filter: saturate(1.08); }
.project__result { position: absolute; right: 18px; bottom: 18px; z-index: 2; display: grid; min-width: 150px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; color: #d7d6dd; background: rgba(8,8,12,.72); box-shadow: 0 12px 35px rgba(0,0,0,.2); backdrop-filter: blur(14px); font: 9px/1.4 var(--mono); text-transform: uppercase; }
.project__result b { margin-bottom: 3px; color: var(--cyan); font: 500 25px/1 var(--sans); letter-spacing: -.04em; }
.project__result small { margin-top: 8px; color: #74727f; font-size: 7px; letter-spacing: .1em; }
.project__meta { display: flex; align-items: baseline; justify-content: space-between; padding: 17px 4px 0; }
.project__meta h3 { margin: 0; font: 400 1.8rem var(--serif); }
.project__meta span { color: var(--muted); font: 8px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.art-1 { background: linear-gradient(120deg,#3c2461 50%,#15131b 50%); }
.art-1::after { content:""; position:absolute; width:25vw; height:25vw; border:1px solid rgba(255,255,255,.16); border-radius:50%; }
.art-1 span { z-index: 1; font: 400 9vw/.72 var(--serif); letter-spacing: -.07em; }
.art-2 { background: radial-gradient(circle at 50%,rgba(112,231,255,.25),transparent 30%),#0d2022; }
.art-2 span { font: 22vw/.7 var(--serif); color: var(--cyan); opacity: .75; }
.art-2 i { position: absolute; width: 50%; height: 70%; border: 1px solid rgba(112,231,255,.45); border-radius: 50%; }
.art-3 { background: radial-gradient(circle,#2d4c44,#101714 68%); }
.art-3 span { font: 600 6vw var(--sans); letter-spacing: -.08em; }
.art-3 i { position: absolute; bottom: 28px; color: #a2bfb3; font: 9px var(--mono); }
.art-4 { color: #fff; background: #101016; }
.art-4::after { content: ""; position: absolute; width: 27vw; height: 27vw; border-radius: 50%; background: linear-gradient(145deg,var(--violet),#4521bb); filter: blur(2px); }
.art-4 span { z-index: 1; font: 400 8vw/.76 var(--serif); text-align: center; }
.art-4 b { position: absolute; top: 26px; left: 26px; z-index: 2; color: var(--cyan); font: 9px var(--mono); }
.art-5 { background: linear-gradient(145deg,#26213e,#101017); }
.art-5 span { font: 500 3.8vw/.94 var(--sans); letter-spacing: -.065em; }
.art-6 { background: repeating-linear-gradient(90deg,#2c2853 0 2px,#101016 2px 24px); }
.art-6 span { padding: 3vw; border: 1px solid var(--line); border-radius: 15px; background: rgba(9,9,13,.85); font: 400 4.6vw/.82 var(--serif); backdrop-filter: blur(8px); }

/* Testimonials, contact, footer */
.testimonials { overflow: hidden; border-top: 1px solid var(--line); background: #0d0d13; }
.testimonial-head { display: flex; align-items: end; justify-content: space-between; }
.testimonial-head em { color: var(--cyan); }
.carousel-controls { display: flex; gap: 8px; }
.carousel-controls button { width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%; background: var(--glass); cursor: pointer; transition: .3s; }
.carousel-controls button .ui-icon { margin: auto; }
.carousel-controls button:hover { color: #09090d; background: #fff; }
.testimonial-viewport { overflow: hidden; margin-top: 80px; }
.testimonial-track { display: flex; gap: 18px; width: max-content; }
.testimonial-track article { display: flex; width: min(47vw,650px); min-height: 400px; flex-direction: column; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025)); }
.stars { display: flex; gap: 5px; color: var(--cyan); }
.stars svg { width: 15px; height: 15px; fill: currentColor; stroke: currentColor; stroke-width: 1.2; }
.testimonial-track blockquote { margin: 50px 0; font: 400 clamp(2rem,3.2vw,3.4rem)/1.1 var(--serif); letter-spacing: -.025em; }
.person { display: flex; gap: 14px; align-items: center; margin-top: auto; }
.person > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; color: #09090d; background: linear-gradient(145deg,var(--violet),var(--cyan)); font: 9px var(--mono); }
.person p { color: var(--muted); font: 8px/1.65 var(--mono); text-transform: uppercase; }
.person b { display: block; color: var(--text); }
.contact { display: grid; grid-template-columns: 1.05fr .95fr; gap: 9vw; background: radial-gradient(circle at 5% 95%,rgba(159,140,255,.15),transparent 28%),#0a0a0e; }
.contact__intro > p { max-width: 500px; margin: 40px 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 12px; margin-top: 55px; font: 10px var(--mono); }
.contact-details a { display: inline-flex; width: max-content; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); padding-bottom: 5px; }
.contact-details a:first-child { color: var(--cyan); }
.contact-details span { color: var(--muted); }
.contact-form { align-self: center; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--glass); box-shadow: 0 30px 80px rgba(0,0,0,.22); backdrop-filter: blur(15px); }
.contact-form label { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-form label span { display: block; margin-bottom: 13px; color: var(--muted); font: 8px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.contact-form input,.contact-form textarea { width: 100%; border: 0; outline: 0; color: var(--text); background: transparent; font: 400 1.45rem var(--serif); resize: none; }
.contact-form input::placeholder,.contact-form textarea::placeholder { color: #62616d; }
.contact-form label:focus-within { border-color: var(--violet); }
.submit { display: flex; width: 100%; justify-content: space-between; margin-top: 25px; padding: 18px 20px; border: 0; border-radius: 13px; color: #09090d; background: linear-gradient(100deg,#fff,#d3d8ff); cursor: pointer; font: 500 9px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.form-status { margin-top: 12px; color: var(--muted); font: 8px var(--mono); text-align: right; }
footer { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 30px; align-items: end; padding: 50px 5vw; border-top: 1px solid var(--line); color: var(--muted); background: #08080c; font: 8px/1.6 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
footer .brand { color: var(--text); }
footer .brand--footer { width: 118px; }
footer .brand--footer img { display: block; width: 100%; height: auto; }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a { display: inline-flex; gap: 7px; align-items: center; }
.footer-socials svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-socials a:hover { color: var(--cyan); }
.to-top { width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; color: var(--text); background: var(--glass); cursor: pointer; font-size: 18px; }
.to-top .ui-icon { margin: auto; }

.word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word { display: inline-block; }
.js .reveal { opacity: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes bob { 50% { transform: translateY(6px); } }

@media (max-width: 950px) {
  .cursor { display: none; }
  .section-pad { padding: 100px 24px; }
  .site-header { right: 16px; left: 16px; grid-template-columns: 1fr auto; min-height: 62px; }
  .desktop-nav,.header-cta { display: none; }
  .menu-toggle { display: grid; grid-template-columns: auto 26px; gap: 5px 12px; align-items: center; padding: 10px; color: var(--text); font: 9px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
  .menu-toggle span { grid-row: 1/3; }
  .menu-toggle i { width: 26px; height: 1px; background: currentColor; transition: .3s; }
  .menu-toggle[aria-expanded=true] i:first-of-type { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded=true] i:last-of-type { transform: translateY(-3px) rotate(-45deg); }
  .hero { padding-top: 145px; }
  .hero__title { font-size: 20vw; }
  .hero__grid { grid-template-columns: .8fr 1.2fr; }
  .hero__index { display: none; }
  .about__body,.contact { grid-template-columns: 1fr; }
  .timeline article { grid-template-columns: .8fr 1.7fr; }
  .timeline article p,.timeline article > b { display: none; }
  .story { grid-template-columns: 1fr; }
  .story__visual { min-height: 70vh; }
  .gene-mark > span { font-size: 30px; }
  .gene-mark strong { font-size: 22vw; }
  .story__copy .round-cta { align-self: flex-start; }
  .testimonial-track article { width: 80vw; }
  .logo-wall b { font-size: 22px; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-socials { display: none; }
}

@media (max-width: 620px) {
  .section-pad { padding: 82px 20px; }
  .display { font-size: 17vw; }
  .section-label { margin-bottom: 45px; }
  .hero { min-height: auto; padding: 130px 20px 70px; }
  .hero::before { left: 15%; width: 380px; height: 380px; }
  .hero__eyebrow { line-height: 1.6; }
  .hero__title { margin: 40px 0 50px; font-size: 24vw; }
  .hero__grid { grid-template-columns: 1fr; }
  .portrait { order: 1; aspect-ratio: 4/4.8; }
  .hero__copy { order: 2; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 0; }
  .hero__copy p { font-size: 14px; }
  .round-cta { width: 108px; height: 108px; margin-top: 25px; }
  .scroll-cue { display: none; }
  .section-top,.timeline__head,.testimonial-head { align-items: flex-start; flex-direction: column; }
  .section-top > p,.timeline__head > p { margin-top: 30px; }
  .about.section-pad { padding-bottom: 56px; }
  .about__body { gap: 28px; margin-top: 42px; padding-top: 28px; }
  .about__aside { opacity: 1 !important; transform: none !important; }
  .timeline.section-pad { padding-top: 64px; }
  .timeline .section-label { margin-bottom: 34px; }
  .timeline__head { display: block; margin-bottom: 54px; }
  .timeline article { grid-template-columns: 1fr; padding: 35px 0 35px 25px; }
  .timeline article::before { top: 36px; }
  .timeline h3 { font-size: 39px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; padding: 27px; }
  .service-card h3 { margin-top: 90px; }
  .expertise { padding: 55px 0; }
  .story__visual { min-height: 58vh; }
  .orbit { width: 75vw; height: 75vw; }
  .skill { grid-template-columns: 1fr 50px; }
  .skill i { grid-row: 2; grid-column: 1/3; }
  .projects { grid-template-columns: 1fr; gap: 55px; }
  .project--wide { grid-column: auto; }
  .project__art,.project:not(.project--wide) .project__art { height: 118vw; min-height: 0; }
  .project__meta h3 { font-size: 23px; }
  .project__meta span { font-size: 7px; }
  .art-1 span { font-size: 18vw; }
  .art-2 span { font-size: 45vw; }
  .art-3 span { font-size: 15vw; }
  .art-4 span { font-size: 17vw; }
  .art-5 span { font-size: 10vw; }
  .art-6 span { font-size: 12vw; }
  .carousel-controls { margin-top: 30px; }
  .testimonial-track article { width: 86vw; min-height: 390px; padding: 26px; }
  .contact { gap: 60px; }
  .contact-form { padding: 25px; }
  footer { padding: 38px 20px; }
  .brand--header { width: 162px; height: 48px; }
  .brand--header img { top: -67px; left: -6px; width: 172px; height: 172px; }
  footer .brand--footer { width: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .cursor { display: none; }
}

@media (hover: none) {
  .portrait__robot-reveal { clip-path: circle(84px at 63% 38%); }
  .portrait__human { -webkit-mask-image: radial-gradient(circle 84px at 63% 38%,transparent 0 72%,rgba(0,0,0,.28) 83%,#000 100%); mask-image: radial-gradient(circle 84px at 63% 38%,transparent 0 72%,rgba(0,0,0,.28) 83%,#000 100%); }
  .portrait__spot { left: 63%; top: 38%; width: 168px; height: 168px; opacity: .65; transform: translate(-50%,-50%) scale(1); }
}

/* Integrated portfolio gallery */
/* ═══════════════════════════════════════
   BASE
═══════════════════════════════════════ */
#portfolio-section {
  width: 100%;
  background: #ffffff;
  font-family: 'DM Sans', sans-serif;
  color: #0d0d2b;
  box-sizing: border-box;
}
#portfolio-section *, #portfolio-section *::before, #portfolio-section *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
}

/* ═══════════════════════════════════════
   TAB BAR
═══════════════════════════════════════ */
#portfolio-section .tab-bar-wrap {
  padding: 0 0 0;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(13,13,43,0.08);
  box-shadow: 0 2px 20px rgba(13,13,43,0.06);
}

#portfolio-section .tab-bar {
  max-width: 1280px;
  width: 80%;
  margin: 0 auto;
  display: flex;
  gap: 6px;
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
#portfolio-section .tab-bar::-webkit-scrollbar { display: none; }

#portfolio-section .tab-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 40px;
  border: 1.5px solid rgba(13,13,43,0.14);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #444466;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
#portfolio-section .tab-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #7c3aed, #d946a8);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}
#portfolio-section .tab-btn > * { position: relative; z-index: 1; }
#portfolio-section .tab-btn:hover {
  border-color: rgba(124,58,237,0.35);
  color: #7c3aed;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.15);
}
#portfolio-section .tab-btn.active {
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(124,58,237,0.35);
  transform: translateY(-1px);
}
#portfolio-section .tab-btn.active::before { opacity: 1; }

#portfolio-section .tab-icon {
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  line-height: 1;
}
#portfolio-section .tab-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#portfolio-section .tab-count {
  background: rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
#portfolio-section .tab-btn:not(.active) .tab-count {
  background: rgba(124,58,237,0.1);
  color: #7c3aed;
}

/* ═══════════════════════════════════════
   TAB PANELS
═══════════════════════════════════════ */
#portfolio-section .tab-panel {
  display: none;
}
#portfolio-section .tab-panel.active {
  display: block;
  animation: panelFadeIn 0.4s cubic-bezier(0.22,1,0.36,1);
}
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   DESKTOP LAYOUT — WEB TAB (unchanged)
═══════════════════════════════════════ */
#portfolio-section .desk {
  display: block;
  padding: 60px 0 100px;
  max-width: 1280px;
  margin: 0 auto;
  width: 80%;
}

#portfolio-section .desk-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

#portfolio-section .desk-left { display: flex; flex-direction: column; }

#portfolio-section .eyebrow {
  font-size: 13px; font-weight: 700; color: #d946a8;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px; display: block;
}
#portfolio-section .main-heading {
  font-family: 'Poppins', sans-serif; font-size: 72px;
  font-weight: 900; line-height: 1.0; text-transform: uppercase;
  color: #0d0d2b; letter-spacing: -0.02em; margin-bottom: 20px;
}
#portfolio-section .main-heading span {
  display: block;
  transition: color 0.25s ease;
}
#portfolio-section .main-heading span:hover { color: #C660E4; }
#portfolio-section .main-desc {
  font-size: 15px; line-height: 1.78; color: #444466; margin-bottom: 32px;
}

#portfolio-section .desk-2x2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

#portfolio-section .d-card {
  border-radius: 14px; overflow: hidden;
  position: relative; cursor: pointer; background: #f0f0f5;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
#portfolio-section .d-card::after {
  content: none;
}
#portfolio-section .d-card:hover::after { opacity:0; }
#portfolio-section .d-card:hover { box-shadow: 0 0 0 2px rgba(124,58,237,0.3), 0 20px 50px rgba(124,58,237,0.12); transform: translateY(-3px); }

#portfolio-section .d-card.sq   { aspect-ratio: 1/1; }
#portfolio-section .d-card.tall { aspect-ratio: 3/5; border-radius:16px; }
#portfolio-section .d-card.sub  { aspect-ratio: 4/3; }
#portfolio-section .d-card.grid { aspect-ratio: 4/3; }

#portfolio-section .pw {
  position: absolute; top:0; left:0; width:100%;
  transform: translateY(0);
  transition: transform 2s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
#portfolio-section .pw img { width:100%; height:auto; display:block; }

#portfolio-section .dot {
  position:absolute; top:18px; right:18px; width:13px; height:13px;
  border-radius:50%; background:#7c3aed; z-index:5;
  box-shadow:0 0 10px rgba(124,58,237,0.9);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 10px rgba(124,58,237,0.9); }
  50%      { box-shadow: 0 0 20px rgba(124,58,237,1), 0 0 30px rgba(217,70,168,0.5); }
}
#portfolio-section .hint {
  position:absolute; bottom:14px; left:50%; transform:translateX(-50%);
  z-index:5; display:flex; align-items:center; gap:6px;
  background:rgba(0,0,0,0.5); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.2); border-radius:20px;
  padding:6px 14px; font-size:11px; font-weight:700;
  color:#fff; letter-spacing:0.07em; text-transform:uppercase;
  white-space:nowrap; pointer-events:none;
  opacity:1; transition:opacity 0.4s ease;
}
#portfolio-section .d-card.tall:hover .hint { opacity:0; }
#portfolio-section .hint svg { animation: bDown 1.1s ease-in-out infinite; }
@keyframes bDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(3px)} }

#portfolio-section .desk-right {
  position:sticky; top:80px;
  display:flex; flex-direction:column; gap:16px;
}

#portfolio-section .desk-3x3 {
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:24px;
}

#portfolio-section .web-portfolio-header { margin-bottom: 40px; }
#portfolio-section .portfolio-featured { margin-top: 0; margin-bottom: 24px; }
#portfolio-section .desk-left > .eyebrow,
#portfolio-section .desk-left > .main-heading,
#portfolio-section .desk-left > .main-desc { display: none; }

/* ═══════════════════════════════════════
   SIMPLE GRID PANELS (Graphics, Branding, Marketing)
═══════════════════════════════════════ */
#portfolio-section .simple-desk {
  display: block;
  padding: 60px 0 100px;
  max-width: 1280px;
  margin: 0 auto;
  width: 80%;
}

#portfolio-section .simple-header {
  margin-bottom: 40px;
}

#portfolio-section .simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#portfolio-section .simple-grid .d-card.grid {
  aspect-ratio: 1/1;
}

#portfolio-section .simple-grid .d-card.grid .pw {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

#portfolio-section .simple-grid .d-card.grid .pw img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}

#portfolio-section .simple-grid .d-card.grid:hover .pw img {
  transform: scale(1.08);
}

/* tablet */
@media (max-width:1080px) {
  #portfolio-section .desk { width:90%; }
  #portfolio-section .simple-desk { width:90%; }
  #portfolio-section .tab-bar { width:90%; }
  #portfolio-section .desk-layout { grid-template-columns: 1fr 300px; }
  #portfolio-section .main-heading { font-size:56px; }
  #portfolio-section .simple-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:900px) {
  #portfolio-section .desk-layout { grid-template-columns: 1fr 240px; }
  #portfolio-section .main-heading { font-size:44px; }
  #portfolio-section .simple-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
#portfolio-section .mob { display: none; }

@media (max-width: 768px) {
  #portfolio-section .tab-bar { width: 100%; padding: 14px 16px; }
  #portfolio-section .desk { display: none !important; }
  #portfolio-section .simple-desk { display: none !important; }
  #portfolio-section .mob  { display: block; padding: 32px 14px 60px; }

  #portfolio-section .mob-eyebrow {
    font-size: 11px; font-weight: 700; color: #d946a8;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 10px; display: block;
  }
  #portfolio-section .mob-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 32px; font-weight: 900;
    line-height: 1.05; text-transform: uppercase;
    color: #0d0d2b; letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  #portfolio-section .mob-desc {
    font-size: 13px; line-height: 1.7;
    color: #555577; margin-bottom: 24px;
  }

  #portfolio-section .mob-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  #portfolio-section .mob-grid .mc {
    border-radius: 12px;
    overflow: hidden;
    height: 140px;
    background: #f0f0f5;
    position: relative;
    cursor: pointer;
  }
  #portfolio-section .mob-grid .mc .mpw {
    position: absolute;
    top: 0; left: 0; width: 100%;
    transform: translateY(0px);
    transition: transform 2.2s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  #portfolio-section .mob-grid .mc .mpw img {
    width: 100%; height: auto; display: block;
  }
  #portfolio-section .mob-grid .mc .tap-hint {
    position: absolute; bottom: 8px; left: 50%;
    transform: translateX(-50%); z-index: 5;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 20px;
    padding: 4px 10px; font-size: 10px; font-weight: 700;
    color: #fff; letter-spacing: 0.06em; text-transform: uppercase;
    white-space: nowrap; pointer-events: none;
    opacity: 1; transition: opacity 0.3s ease;
  }
  #portfolio-section .mob-grid .mc.panned .tap-hint { opacity: 0; }
  #portfolio-section .mob-grid .mc.feature {
    grid-column: 1 / -1;
    height: 200px;
  }

  #portfolio-section .simple-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  #portfolio-section .mob { padding: 28px 12px 50px; }
  #portfolio-section .mob-heading { font-size: 26px; }
  #portfolio-section .mob-grid .mc { height: 120px; }
  #portfolio-section .mob-grid .mc.feature { height: 170px; }
}

/* Adapt the supplied portfolio to this site's visual system. */
.portfolio-work {
  padding: 130px 0 150px;
  background: #0a0a0e;
}
.portfolio-work > .section-label {
  margin-right: max(5vw, 28px);
  margin-left: max(5vw, 28px);
}
#portfolio-section {
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
}
#portfolio-section .tab-bar-wrap {
  top: 102px;
  background: rgba(10,10,14,.88);
  border-color: var(--line);
  box-shadow: 0 14px 35px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
#portfolio-section .tab-btn {
  border-color: var(--line);
  color: var(--muted);
  background: rgba(255,255,255,.025);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .06em;
}
#portfolio-section .tab-btn::before {
  background: linear-gradient(135deg, var(--violet), #735cff 48%, var(--cyan));
}
#portfolio-section .tab-btn:hover { color: var(--text); border-color: rgba(159,140,255,.5); }
#portfolio-section .tab-btn:not(.active) .tab-count { color: var(--cyan); background: rgba(112,231,255,.09); }
#portfolio-section .desk,
#portfolio-section .simple-desk { max-width: 1440px; }
#portfolio-section .eyebrow,
#portfolio-section .mob-eyebrow { color: var(--cyan); font-family: var(--mono); }
#portfolio-section .main-heading,
#portfolio-section .mob-heading { color: var(--text); font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
#portfolio-section .main-heading span:hover { color: var(--violet); }
#portfolio-section .main-desc,
#portfolio-section .mob-desc { color: var(--muted); }
#portfolio-section .d-card,
#portfolio-section .mob-grid .mc {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
}
#portfolio-section .d-card:hover {
  box-shadow: 0 0 0 1px rgba(159,140,255,.6), 0 25px 65px rgba(0,0,0,.34);
}
#portfolio-section .d-card::after { content: none; background: none; }
#portfolio-section .dot { background: var(--cyan); box-shadow: 0 0 0 5px rgba(112,231,255,.14); }
#portfolio-section .hint,
#portfolio-section .tap-hint { background: rgba(9,9,13,.82); border: 1px solid rgba(255,255,255,.14); }
@media (max-width: 768px) {
  .portfolio-work { padding-top: 100px; padding-bottom: 90px; }
  #portfolio-section .tab-bar-wrap { top: 92px; }
  #portfolio-section .tab-bar { scroll-padding-inline: 16px; }
  #portfolio-section .mob { padding-top: 48px; }
}

/* Keep every legacy web project in a clean sequence below the three featured projects. */
@media (min-width: 769px) {
  #portfolio-section .tab-panel[data-panel="web"] .desk-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  #portfolio-section .tab-panel[data-panel="web"] .desk-left,
  #portfolio-section .tab-panel[data-panel="web"] .desk-right,
  #portfolio-section .tab-panel[data-panel="web"] .desk-2x2 {
    display: contents;
  }
  #portfolio-section .tab-panel[data-panel="web"] .d-card.sq,
  #portfolio-section .tab-panel[data-panel="web"] .d-card.tall,
  #portfolio-section .tab-panel[data-panel="web"] .d-card.sub {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }
}

/* Booking / Calendly */
.booking {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 8% 22%, rgba(112,231,255,.11), transparent 28%), radial-gradient(circle at 92% 82%, rgba(159,140,255,.16), transparent 32%), #08080c;
}
.booking::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom,transparent,#000 20%,#000 80%,transparent); }
.booking > * { position: relative; z-index: 1; }
.booking__intro { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 70px; }
.booking__intro > p { width: min(390px,100%); margin: 0 0 8px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.booking-card { display: grid; grid-template-columns: minmax(290px, .72fr) minmax(0, 1.65fr); min-height: 720px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: rgba(17,17,24,.82); box-shadow: 0 35px 100px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.05); backdrop-filter: blur(18px); }
.booking-profile { position: relative; display: flex; min-width: 0; flex-direction: column; overflow: hidden; padding: 42px 34px; border-right: 1px solid var(--line); background: linear-gradient(155deg,rgba(159,140,255,.13),rgba(255,255,255,.025) 44%,rgba(112,231,255,.055)); }
.booking-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(12px); }
.booking-glow--one { top: -90px; right: -100px; width: 250px; height: 250px; background: rgba(159,140,255,.18); }
.booking-glow--two { bottom: -100px; left: -110px; width: 260px; height: 260px; background: rgba(112,231,255,.11); }
.booking-status { position: relative; display: inline-flex; width: fit-content; align-items: center; gap: 9px; margin-bottom: 38px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; color: #cfced8; background: rgba(255,255,255,.045); font: 500 8px var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.booking-status span { width: 7px; height: 7px; border-radius: 50%; background: #49da83; box-shadow: 0 0 0 5px rgba(73,218,131,.11); animation: bookingPulse 2s ease-in-out infinite; }
@keyframes bookingPulse { 50% { box-shadow: 0 0 0 9px rgba(73,218,131,.025); } }
.booking-person { position: relative; display: flex; gap: 17px; align-items: center; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.booking-avatar { position: relative; width: 82px; height: 82px; flex: 0 0 82px; padding: 3px; border-radius: 50%; background: linear-gradient(135deg,var(--cyan),var(--violet),var(--pink)); box-shadow: 0 14px 35px rgba(0,0,0,.28); }
.booking-avatar::after { content: ""; position: absolute; right: 3px; bottom: 5px; width: 13px; height: 13px; border: 3px solid #15151d; border-radius: 50%; background: #49da83; }
.booking-avatar img { width: 100%; height: 100%; border: 3px solid #111118; border-radius: 50%; object-fit: cover; object-position: 50% 22%; }
.booking-person h3 { margin: 0 0 5px; color: var(--text); font: 400 26px/1 var(--serif); letter-spacing: -.03em; }
.booking-person p { margin: 0; color: var(--muted); font: 8px/1.5 var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.booking-meta { position: relative; display: grid; gap: 11px; margin: 30px 0; }
.booking-meta > div { display: flex; align-items: center; gap: 13px; padding: 13px; border: 1px solid rgba(255,255,255,.075); border-radius: 14px; background: rgba(255,255,255,.03); }
.booking-icon { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 11px; color: var(--cyan); background: rgba(112,231,255,.075); }
.booking-icon svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.booking-meta p { display: grid; gap: 3px; margin: 0; }
.booking-meta strong { color: #e7e6ec; font-size: 12px; font-weight: 500; }
.booking-meta small { color: #7f7d89; font-size: 10px; line-height: 1.4; }
.booking-trust { position: relative; display: grid; gap: 9px; margin-top: auto; color: #8c8996; font: 8px var(--mono); letter-spacing: .04em; }
.booking-trust span { display: flex; gap: 7px; align-items: center; }
.booking-trust .ui-icon { width: 13px; height: 13px; color: var(--violet); }
.booking-calendar { min-width: 0; background: #111118; }
.booking-calendar__head { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 25px; padding: 20px 26px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.booking-calendar__head span { display: block; margin-bottom: 5px; color: var(--cyan); font: 8px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.booking-calendar__head h3 { margin: 0; color: var(--text); font: 400 21px var(--serif); }
.booking-calendar__head a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 7px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; color: #cfced7; font: 8px var(--mono); letter-spacing: .05em; text-transform: uppercase; transition: .3s; }
.booking-calendar__head a:hover { color: #09090d; border-color: var(--cyan); background: var(--cyan); }
.booking-frame { position: relative; height: 634px; overflow: hidden; background: #111118; }
.booking-frame iframe { display: block; width: 100%; height: 100%; border: 0; background: #111118; }

/* Site-wide responsive hardening */
html,body { max-width: 100%; overflow-x: hidden; }
img,svg,video,canvas,iframe { max-width: 100%; }
main,section,header,footer,.section-pad { min-width: 0; }

@media (max-width: 1100px) {
  .section-pad { padding-right: 4vw; padding-left: 4vw; }
  .desktop-nav { gap: 24px; }
  .booking-card { grid-template-columns: 320px minmax(0,1fr); }
  .booking-profile { padding: 34px 26px; }
}

@media (max-width: 950px) {
  .booking__intro { align-items: flex-start; flex-direction: column; gap: 30px; margin-bottom: 50px; }
  .booking-card { grid-template-columns: 1fr; }
  .booking-profile { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 34px; border-right: 0; border-bottom: 1px solid var(--line); }
  .booking-status,.booking-person { grid-column: 1; }
  .booking-status { margin-bottom: 0; align-self: start; }
  .booking-person { padding-bottom: 0; border-bottom: 0; }
  .booking-meta { grid-row: 1 / span 2; grid-column: 2; margin: 0; }
  .booking-trust { grid-column: 1 / -1; grid-template-columns: repeat(3,auto); justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); }
  .booking-frame { height: 680px; }
}

@media (max-width: 700px) {
  .site-header { top: 10px; right: 10px; left: 10px; display: flex; width: auto; max-width: calc(100vw - 20px); justify-content: space-between; padding-left: 14px; border-radius: 15px; }
  .site-header .menu-toggle { position: fixed; top: 21px; right: 22px; z-index: 3; flex: 0 0 auto; margin-left: auto; }
  .hero__eyebrow { max-width: 330px; flex-wrap: wrap; align-items: flex-start; gap: 8px 10px; font-size: 8px; line-height: 1.7; letter-spacing: .09em; }
  .hero__eyebrow > span:first-child { flex: 0 0 24px; margin-top: 6px; }
  .hero__title { width: 100%; max-width: 100%; font-size: clamp(3.8rem,19vw,5.4rem); line-height: .84; }
  .hero__title > .hero-name,
  .hero__title > em { display: block; }
  .hero__title > .hero-name > .word-wrap,
  .hero__title > em > .word-wrap { display: block; }
  .booking-card { border-radius: 20px; }
  .booking-profile { display: flex; gap: 0; padding: 27px 22px; }
  .booking-status { margin-bottom: 28px; }
  .booking-person { padding-bottom: 25px; border-bottom: 1px solid var(--line); }
  .booking-meta { width: 100%; margin: 25px 0; }
  .booking-trust { width: 100%; grid-template-columns: 1fr; gap: 8px; padding-top: 20px; }
  .booking-calendar__head { min-height: 78px; padding: 17px 18px; }
  .booking-calendar__head h3 { font-size: 18px; }
  .booking-frame { height: 720px; }
}

@media (max-width: 480px) {
  .section-pad { padding-right: 16px; padding-left: 16px; }
  .display { font-size: clamp(3.1rem,16vw,4.6rem); }
  .brand--header { width: 145px; height: 44px; }
  .brand--header img { top: -60px; left: -5px; width: 154px; height: 154px; }
  .menu-toggle { gap: 4px 9px; padding: 7px; }
  .site-header .menu-toggle { right: 17px; }
  .menu-toggle i { width: 22px; }
  .hero { padding-top: 115px; }
  .hero__copy { grid-template-columns: 1fr; }
  .round-cta { width: 98px; height: 98px; }
  .about__body { margin-top: 45px; }
  .service-card { min-height: 350px; }
  .story__copy { padding-top: 75px; padding-bottom: 75px; }
  .contact-form { padding: 20px 17px; border-radius: 18px; }
  .contact-form input,.contact-form textarea { font-size: 1.15rem; }
  .booking__intro { margin-bottom: 38px; }
  .booking__intro > p { font-size: 13px; }
  .booking-profile { padding: 24px 17px; }
  .booking-avatar { width: 68px; height: 68px; flex-basis: 68px; }
  .booking-person h3 { font-size: 22px; }
  .booking-calendar__head a { display: none; }
  .booking-frame { height: 700px; }
  footer { grid-template-columns: 1fr auto; gap: 24px 16px; align-items: center; }
  footer > div:not(.footer-socials) { text-align: right; }
  footer .to-top { grid-column: 2; }
}

@media (max-width: 360px) {
  .brand--header { width: 128px; }
  .booking-calendar__head { padding: 15px 13px; }
  .booking-calendar__head h3 { font-size: 16px; }
  .booking-frame { height: 680px; }
  #portfolio-section .tab-btn { padding-right: 16px; padding-left: 16px; }
}

/* Branded client showcase — testimonials intentionally remain separate. */
.clients-showcase { position: relative; padding: 120px 0 110px; background: radial-gradient(circle at 12% 5%,rgba(159,140,255,.13),transparent 28%),radial-gradient(circle at 86% 92%,rgba(112,231,255,.09),transparent 27%),#0b0b10; }
.clients-showcase::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to bottom,transparent,#000 18%,#000 82%,transparent); }
.clients-showcase > * { position: relative; z-index: 1; }
.clients-showcase .section-label { margin: 0 max(5vw,28px) 68px; }
.clients-intro { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.6fr); gap: 7vw; align-items: end; padding: 0 max(5vw,28px); }
.clients-intro__copy { padding: 0 0 12px 22px; border-left: 1px solid rgba(159,140,255,.55); }
.clients-intro__copy > span { display: block; margin-bottom: 14px; color: var(--cyan); font: 8px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.clients-intro__copy p { max-width: 520px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.clients-marquee { position: relative; width: 100%; overflow: hidden; margin-top: 78px; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.clients-marquee::before,.clients-marquee::after { content: ""; position: absolute; z-index: 3; top: 0; bottom: 0; width: min(13vw,180px); pointer-events: none; }
.clients-marquee::before { left: 0; background: linear-gradient(90deg,#0b0b10,transparent); }
.clients-marquee::after { right: 0; background: linear-gradient(270deg,#0b0b10,transparent); }
.clients-track { display: flex; width: max-content; animation: clientsFlow 34s linear infinite; }
.clients-logo-group { display: flex; flex: 0 0 auto; gap: 16px; padding-right: 16px; }
.client-logo { position: relative; display: flex; width: 220px; height: 112px; flex: 0 0 220px; overflow: hidden; align-items: center; justify-content: center; padding: 20px 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: linear-gradient(145deg,rgba(255,255,255,.98),rgba(235,235,244,.94)); box-shadow: 0 18px 45px rgba(0,0,0,.18); transition: transform .4s cubic-bezier(.16,1,.3,1),box-shadow .4s,border-color .4s; }
.client-logo::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; background: linear-gradient(135deg,rgba(159,140,255,.12),transparent 48%,rgba(112,231,255,.13)); transition: opacity .35s; }
.client-logo img { position: relative; z-index: 1; display: block; width: auto; height: auto; max-width: 176px; max-height: 64px; object-fit: contain; object-position: center; opacity: 1; visibility: visible; filter: saturate(.86); transform-origin: center; transition: transform .4s,filter .4s; }
.client-logo:hover { z-index: 2; border-color: rgba(112,231,255,.5); box-shadow: 0 22px 55px rgba(0,0,0,.3),0 0 30px rgba(112,231,255,.09); transform: translateY(-6px); }
.client-logo:hover::after { opacity: 1; }
.client-logo:hover img { filter: saturate(1.08); transform: scale(1.04); }
.clients-marquee:hover .clients-track { animation-play-state: paused; }
@keyframes clientsFlow { to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  .clients-showcase { padding-top: 100px; padding-bottom: 90px; }
  .clients-intro { grid-template-columns: 1fr; gap: 38px; }
  .clients-intro__copy { max-width: 650px; }
  .clients-marquee { margin-top: 58px; }
}

@media (max-width: 620px) {
  .clients-showcase { padding-top: 82px; padding-bottom: 76px; }
  .clients-showcase .section-label { margin-right: 20px; margin-bottom: 48px; margin-left: 20px; }
  .clients-intro { padding: 0 20px; }
  .clients-intro__copy { padding-left: 16px; }
  .clients-intro__copy p { font-size: 13px; }
  .clients-marquee { margin-top: 45px; padding: 18px 0; }
  .clients-logo-group { gap: 10px; padding-right: 10px; }
  .client-logo { width: 155px; height: 86px; flex-basis: 155px; padding: 15px 17px; border-radius: 14px; }
  .client-logo img { max-width: 121px; max-height: 50px; }
  .clients-marquee::before,.clients-marquee::after { width: 35px; }
}

/* Ultra-premium founder hero */
.hero--premium { position: relative; display: flex; min-height: 100svh; flex-direction: column; overflow: hidden; padding: 136px max(3.5vw,28px) 30px; isolation: isolate; background: radial-gradient(circle at 76% 34%,rgba(112,231,255,.12),transparent 27%),radial-gradient(circle at 12% 12%,rgba(159,140,255,.13),transparent 28%),linear-gradient(140deg,#07070b 0%,#0b0b12 54%,#08080d 100%); }
.hero--premium::before { content: ""; position: absolute; z-index: -3; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.032) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.032) 1px,transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(120deg,#000,transparent 72%); }
.hero--premium::after { content: ""; position: absolute; z-index: -2; top: -28%; right: -11%; width: 62vw; aspect-ratio: 1; border: 1px solid rgba(159,140,255,.11); border-radius: 50%; box-shadow: 0 0 0 8vw rgba(159,140,255,.018),0 0 0 16vw rgba(112,231,255,.012); pointer-events: none; }
.hero-atmosphere span { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; filter: blur(2px); animation: heroDrift 10s ease-in-out infinite alternate; }
.hero-atmosphere span:nth-child(1) { top: 18%; left: 47%; width: 5px; height: 5px; background: var(--cyan); box-shadow: 0 0 28px 8px rgba(112,231,255,.24); }
.hero-atmosphere span:nth-child(2) { right: 8%; bottom: 19%; width: 4px; height: 4px; background: var(--violet); box-shadow: 0 0 30px 9px rgba(159,140,255,.25); animation-delay: -3s; }
.hero-atmosphere span:nth-child(3) { bottom: 12%; left: 19%; width: 3px; height: 3px; background: var(--pink); box-shadow: 0 0 24px 7px rgba(239,141,255,.18); animation-delay: -6s; }
@keyframes heroDrift { to { transform: translate3d(22px,-18px,0); } }
.hero-frame { position: relative; display: grid; width: min(100%,1540px); flex: 1; grid-template-columns: minmax(0,1.06fr) minmax(440px,.78fr); gap: clamp(42px,5.2vw,92px); align-items: center; margin: 0 auto; }
.hero-content { position: relative; z-index: 3; min-width: 0; padding: 34px 0 44px; }
.hero-edition { display: flex; width: min(100%,680px); align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.11); color: #6f6d79; font: 7px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.hero-edition b { color: var(--violet); font-weight: 500; }
.hero--premium .hero__eyebrow { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color: #8e8c98; font: 500 8px/1.5 var(--mono); letter-spacing: .11em; text-transform: uppercase; }
.hero--premium .hero__eyebrow b { color: #e8e7ed; font-weight: 500; }
.hero--premium .hero__eyebrow i { width: 34px; height: 1px; background: linear-gradient(90deg,var(--violet),var(--cyan)); }
.hero-status { width: 7px !important; height: 7px !important; flex: 0 0 7px !important; margin: 0 !important; border-radius: 50%; background: #49da83 !important; box-shadow: 0 0 0 5px rgba(73,218,131,.1),0 0 20px rgba(73,218,131,.28); animation: bookingPulse 2s infinite; }
.hero--premium .hero__title { position: relative; width: auto; max-width: 980px; margin: 30px 0 31px; color: var(--text); font: 400 clamp(4.6rem,6.65vw,8rem)/.82 var(--serif); letter-spacing: -.065em; text-align: left; }
.hero--premium .hero-line { display: block; white-space: nowrap; }
.hero-line-part { display: inline; }
.hero-line-part--accent { position: relative; }
.hero-line-part--accent::after { content: ""; position: absolute; right: .03em; bottom: .02em; left: .08em; height: 2px; background: linear-gradient(90deg,transparent,var(--cyan),var(--violet)); transform: scaleX(.72); transform-origin: right; opacity: .72; }
.hero--premium .hero__title em { display: inline-block; padding-right: .08em; color: transparent; font-weight: 400; font-style: italic; background: linear-gradient(104deg,#fff 2%,#c7c0ff 38%,var(--violet) 62%,var(--cyan)); -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 12px 30px rgba(112,231,255,.08)); }
.hero--premium .hero__title em .word { color: transparent; background: linear-gradient(104deg,#fff 2%,#c7c0ff 38%,var(--violet) 62%,var(--cyan)); -webkit-background-clip: text; background-clip: text; }
.hero--premium .hero__title sup { display: inline-block; margin-left: .05em; color: var(--cyan); font: 300 .22em var(--mono); vertical-align: top; transform: translateY(.5em); text-shadow: 0 0 22px rgba(112,231,255,.6); }
.hero-lede { max-width: 570px; margin: 0; color: #b0aeb9; font-size: clamp(14px,1.15vw,17px); line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-cta { display: inline-flex; min-height: 55px; align-items: center; justify-content: space-between; gap: 25px; padding: 0 18px 0 21px; border: 1px solid var(--line); border-radius: 14px; font: 500 9px var(--mono); letter-spacing: .07em; text-transform: uppercase; transition: border-color .35s,background .35s,color .35s,transform .35s; }
.hero-cta svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.hero-cta--primary { min-width: 228px; color: #08080c; border-color: transparent; background: linear-gradient(110deg,#fff,#dbdcff 55%,#c5f7ff); box-shadow: 0 16px 42px rgba(112,114,255,.17); }
.hero-cta--primary:hover { transform: translateY(-3px); box-shadow: 0 21px 50px rgba(112,114,255,.25); }
.hero-cta--ghost { min-width: 218px; color: #d0cfd7; background: rgba(255,255,255,.025); }
.hero-cta--ghost:hover { color: #fff; border-color: rgba(112,231,255,.42); background: rgba(112,231,255,.055); transform: translateY(-3px); }
.hero-proof { display: flex; width: min(100%,620px); gap: 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-proof > div { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: center; flex: 1; padding: 18px 18px 0 0; }
.hero-proof > div + div { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.1); }
.hero-proof strong { color: #f2f1f5; font: 400 29px/.9 var(--serif); letter-spacing: -.04em; }
.hero-proof span { color: #777581; font: 7px/1.55 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.hero-visual { position: relative; align-self: center; height: clamp(560px,70vh,740px); min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 34px 34px 110px 34px; background: radial-gradient(circle at 50% 38%,rgba(112,231,255,.19),transparent 34%),radial-gradient(circle at 80% 80%,rgba(159,140,255,.12),transparent 30%),linear-gradient(155deg,rgba(255,255,255,.075),rgba(255,255,255,.018)); box-shadow: 0 45px 110px rgba(0,0,0,.48),inset 0 1px rgba(255,255,255,.07); backdrop-filter: blur(18px); isolation: isolate; transform: perspective(1200px) rotateY(-1.8deg); transform-origin: center right; }
.hero-visual::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom,transparent,#000 22%,#000 75%,transparent); }
.hero-visual::after { content: ""; position: absolute; z-index: 6; inset: 12px; border: 1px solid rgba(255,255,255,.055); border-radius: 24px 24px 98px 24px; pointer-events: none; }
.hero-visual__top,.hero-visual__foot { position: absolute; right: 25px; left: 25px; z-index: 7; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: #9b99a5; font: 7px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.hero-visual__top { top: 24px; }
.hero-visual__top span:first-child { display: flex; gap: 8px; align-items: center; color: var(--cyan); }
.hero-visual__top span:first-child i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 13px currentColor; }
.hero-visual__foot { bottom: 22px; }
.hero-visual__foot > div:first-child { display: grid; gap: 3px; }
.hero-visual__foot b { color: #e8e7ed; font: 400 20px var(--serif); letter-spacing: -.02em; text-transform: none; }
.hero-visual__foot span { color: #85838e; }
.hero-signal { display: flex; gap: 8px; align-items: center; }
.hero-signal i { width: 6px; height: 6px; border-radius: 50%; background: #49da83; box-shadow: 0 0 0 4px rgba(73,218,131,.1); }
.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(112,231,255,.14); border-radius: 50%; pointer-events: none; }
.hero-orbit--one { top: 14%; left: 4%; width: 92%; aspect-ratio: 1; animation: orbitPulse 8s ease-in-out infinite alternate; }
.hero-orbit--two { top: 25%; left: 15%; width: 70%; aspect-ratio: 1; border-color: rgba(159,140,255,.14); animation: orbitPulse 8s 1.5s ease-in-out infinite alternate-reverse; }
@keyframes orbitPulse { to { opacity: .38; transform: scale(1.035) rotate(4deg); } }
.hero-coordinate { position: absolute; z-index: 7; color: rgba(255,255,255,.28); font: 6px var(--mono); letter-spacing: .13em; writing-mode: vertical-rl; }
.hero-coordinate--a { top: 20%; left: 20px; }
.hero-coordinate--b { right: 20px; bottom: 22%; transform: rotate(180deg); }
.hero-monogram { position: absolute; right: -18px; bottom: -44px; z-index: 0; color: rgba(255,255,255,.027); font: 500 180px/.7 var(--serif); letter-spacing: -.11em; pointer-events: none; }
.hero--premium .portrait { --mx:50%; --my:42%; position: absolute; z-index: 2; inset: 58px 10px 55px; width: auto; height: auto; aspect-ratio: auto; margin: 0; overflow: visible; isolation: isolate; }
.hero--premium .portrait__halo { top: 10%; width: 100%; background: radial-gradient(circle,rgba(112,231,255,.16),rgba(159,140,255,.08) 43%,transparent 67%); }
.hero--premium .portrait__human,.hero--premium .portrait__robot-reveal,.hero--premium .portrait__robot-bg { object-fit: contain; object-position: center bottom; }
.hero--premium .portrait__human { transform: scale(1.07) translateY(1.5%); transform-origin: center bottom; filter: saturate(.92) contrast(1.04) drop-shadow(0 34px 42px rgba(0,0,0,.56)); }
.hero--premium .portrait__robot-bg { opacity: .24; filter: blur(3px) saturate(1.3) drop-shadow(0 0 30px rgba(112,231,255,.36)); }
.hero--premium .portrait figcaption { display: none; }
.hero-capabilities { display: grid; width: min(100%,1540px); min-height: 65px; grid-template-columns: 1.15fr repeat(4,1fr) 1.15fr; align-items: center; margin: 22px auto 0; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.026); backdrop-filter: blur(12px); }
.hero-capabilities > span,.hero-capabilities > div,.hero-capabilities > a { display: flex; height: 100%; align-items: center; padding: 0 18px; border-right: 1px solid var(--line); color: #8c8a96; font: 8px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.hero-capabilities > span { color: #cfced6; }
.hero-capabilities > div { gap: 10px; }
.hero-capabilities b { color: var(--violet); font-size: 7px; font-weight: 500; }
.hero-capabilities > a { justify-content: space-between; border-right: 0; color: #cfced6; }
.hero-capabilities > a i { color: var(--cyan); font-style: normal; animation: bob 1.6s infinite; }
.hero-capabilities > a:hover { color: var(--cyan); background: rgba(112,231,255,.04); }
.hero--premium + .ticker { position: relative; z-index: 2; border-color: rgba(255,255,255,.09); background: #09090e; }

@media (max-width: 1180px) {
  .hero-frame { grid-template-columns: minmax(0,1fr) minmax(370px,.72fr); gap: 42px; }
  .hero--premium .hero__title { font-size: clamp(4.5rem,7.5vw,7rem); }
  .hero-capabilities { grid-template-columns: 1fr repeat(4,1fr); }
  .hero-capabilities > a { display: none; }
}

@media (max-width: 900px) {
  .hero--premium { min-height: auto; padding-top: 125px; padding-bottom: 24px; }
  .hero-frame { grid-template-columns: 1fr; gap: 30px; }
  .hero-content { padding-bottom: 10px; }
  .hero--premium .hero__title { max-width: 760px; font-size: clamp(4.8rem,12.8vw,7.5rem); }
  .hero-lede { max-width: 620px; }
  .hero-proof { width: min(100%,620px); margin-top: 32px; }
  .hero-visual { width: min(100%,650px); height: 680px; justify-self: center; }
  .hero-capabilities { grid-template-columns: repeat(2,1fr); margin-top: 30px; }
  .hero-capabilities > span { grid-column: 1 / -1; min-height: 50px; }
  .hero-capabilities > div { min-height: 50px; border-top: 1px solid var(--line); }
  .hero-capabilities > div:nth-of-type(even) { border-right: 0; }
}

@media (max-width: 620px) {
  .hero--premium { padding: 108px 16px 18px; }
  .hero--premium::after { top: 7%; right: -55%; width: 120vw; }
  .hero-content { padding-top: 23px; }
  .hero--premium .hero__eyebrow { max-width: 100%; gap: 8px; font-size: 7px; }
  .hero--premium .hero__eyebrow i { width: 22px; }
  .hero--premium .hero__title { margin: 29px 0 25px; font-size: clamp(3.2rem,15vw,4.7rem); line-height: .86; }
  .hero--premium .hero-line { white-space: normal; }
  .hero-line-part { display: block; }
  .hero--premium .hero__title em { position: relative; max-width: 100%; padding-right: .03em; letter-spacing: -.08em; }
  .hero--premium .hero__title sup { position: absolute; top: .05em; right: -.08em; }
  .hero-lede { max-width: 100%; overflow-wrap: anywhere; font-size: 14px; line-height: 1.7; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-cta,.hero-cta--primary,.hero-cta--ghost { width: 100%; min-width: 0; max-width: 100%; }
  .hero-edition { margin-bottom: 19px; }
  .hero-proof { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 30px; }
  .hero-proof > div { display: flex; gap: 7px; align-items: flex-start; flex-direction: column; padding: 15px 10px 0 0; }
  .hero-proof > div + div { padding-left: 10px; }
  .hero-proof strong { font-size: 24px; }
  .hero-proof span { font-size: 6px; }
  .hero-visual { width: 100%; max-width: 100%; height: 570px; border-radius: 22px; }
  .hero-visual__top,.hero-visual__foot { right: 20px; left: 20px; }
  .hero-visual__top span:last-child { display: none; }
  .hero--premium .portrait { inset: 54px 0 52px; }
  .hero-capabilities { border-radius: 14px; }
  .hero-capabilities > span,.hero-capabilities > div { padding: 0 13px; font-size: 7px; }
}

@media (max-width: 400px) {
  .hero--premium .hero__title { font-size: clamp(3.35rem,16.2vw,4rem); }
  .hero-visual { height: 510px; }
  .hero-visual__foot b { font-size: 17px; }
  .hero-capabilities { grid-template-columns: 1fr; }
  .hero-capabilities > div { border-right: 0; }
}

@media (max-height: 760px) and (min-width: 901px) {
  .hero--premium { min-height: 100vh; padding-top: 108px; padding-bottom: 16px; }
  .hero-frame { gap: clamp(35px,4.5vw,70px); }
  .hero-content { padding-top: 10px; padding-bottom: 16px; }
  .hero--premium .hero__title { margin-top: 21px; margin-bottom: 20px; font-size: clamp(3.7rem,5.3vw,5.8rem); }
  .hero-lede { max-width: 520px; font-size: 14px; line-height: 1.6; }
  .hero-actions { margin-top: 22px; }
  .hero-cta { min-height: 49px; }
  .hero-edition { margin-bottom: 14px; padding-bottom: 8px; }
  .hero-proof { margin-top: 20px; }
  .hero-proof > div { padding-top: 12px; }
  .hero-proof strong { font-size: 24px; }
  .hero-visual { height: calc(100vh - 155px); min-height: 390px; max-height: 560px; }
  .hero-capabilities { min-height: 50px; margin-top: 12px; }
}

@media (max-height: 620px) and (min-width: 901px) {
  .hero--premium { padding-top: 96px; padding-bottom: 12px; }
  .hero--premium .hero__title { margin-top: 16px; margin-bottom: 15px; font-size: clamp(3.35rem,4.8vw,5.1rem); }
  .hero-actions { margin-top: 17px; }
  .hero-proof { display: none; }
  .hero-capabilities { display: none; }
  .hero-visual { height: calc(100vh - 118px); min-height: 365px; }
}

/* Cinematic signature hero */
.hero--signature { position: relative; display: flex; min-height: 100svh; flex-direction: column; overflow: hidden; padding: 122px max(3.2vw,26px) 24px; isolation: isolate; background: radial-gradient(circle at 52% 53%,rgba(112,231,255,.105),transparent 28%),radial-gradient(circle at 82% 38%,rgba(159,140,255,.09),transparent 27%),linear-gradient(135deg,#07070a 0%,#0b0b10 55%,#07080b 100%); }
.hero--signature::before { content: ""; position: absolute; z-index: -3; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(circle at 50% 50%,#000,transparent 78%); }
.hero--signature::after { content: ""; position: absolute; z-index: -2; top: 15%; left: 50%; width: min(64vw,940px); aspect-ratio: 1.8; border: 1px solid rgba(112,231,255,.1); border-radius: 50%; box-shadow: 0 0 100px rgba(112,231,255,.04),inset 0 0 100px rgba(159,140,255,.025); transform: translateX(-50%) rotate(-7deg); pointer-events: none; }
.signature-stage { position: relative; width: min(100%,1540px); height: clamp(570px,calc(100svh - 230px),790px); min-height: 0; flex: 1; margin: 0 auto; overflow: hidden; border: 1px solid rgba(255,255,255,.105); border-radius: 29px; background: linear-gradient(145deg,rgba(255,255,255,.038),rgba(255,255,255,.008) 48%,rgba(112,231,255,.018)); box-shadow: 0 36px 100px rgba(0,0,0,.38),inset 0 1px rgba(255,255,255,.055); isolation: isolate; }
.signature-stage::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .32; background-image: radial-gradient(circle,rgba(255,255,255,.18) .7px,transparent .8px); background-size: 8px 8px; mask-image: linear-gradient(90deg,#000,transparent 24%,transparent 76%,#000); }
.signature-stage::after { content: ""; position: absolute; right: 17%; bottom: -31%; z-index: -1; width: 62%; aspect-ratio: 1.6; border-radius: 50%; background: radial-gradient(ellipse,rgba(112,231,255,.17),rgba(159,140,255,.06) 38%,transparent 70%); filter: blur(16px); transform: rotate(-9deg); }
.signature-meta { position: absolute; top: 24px; right: 28px; left: 28px; z-index: 8; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #666570; font: 7px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.signature-meta::after { content: ""; position: absolute; right: 0; bottom: -14px; left: 0; height: 1px; background: linear-gradient(90deg,transparent,rgba(255,255,255,.13),transparent); }
.signature-meta b { color: #aaa8b2; font-weight: 400; }
.signature-meta span:last-child { text-align: right; }
.signature-name { position: absolute; top: 12%; right: 2.6%; left: 2.6%; z-index: 2; display: flex; justify-content: center; gap: .18em; margin: 0; color: #f5f4f7; font: 300 clamp(7rem,10.9vw,11.1rem)/.82 var(--sans); letter-spacing: -.075em; text-transform: uppercase; white-space: nowrap; }
.signature-name > span:last-child { color: transparent; -webkit-text-stroke: 1px rgba(245,244,248,.62); text-shadow: 0 0 45px rgba(112,231,255,.08); }
.signature-role { position: absolute; top: 37%; right: 4.6%; left: 4.6%; z-index: 3; display: flex; align-items: center; justify-content: space-between; color: rgba(245,244,248,.69); font: 300 clamp(2rem,3.8vw,4.3rem)/1 var(--sans); letter-spacing: -.045em; text-transform: uppercase; }
.signature-role span { width: 35%; }
.signature-role span:last-child { text-align: right; }
.signature-intro { position: absolute; bottom: 17%; left: 3.8%; z-index: 7; width: min(25vw,330px); }
.signature-availability { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #c5c3cb; background: rgba(255,255,255,.045); backdrop-filter: blur(10px); font: 7px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.signature-availability i { width: 7px; height: 7px; border-radius: 50%; background: #50e188; box-shadow: 0 0 0 4px rgba(80,225,136,.1),0 0 15px rgba(80,225,136,.5); animation: bookingPulse 2s infinite; }
.signature-intro p { margin: 17px 0 21px; color: #b0aeb8; font-size: clamp(12px,1vw,15px); line-height: 1.7; }
.signature-actions { display: flex; align-items: center; gap: 19px; }
.signature-actions .hero-cta { min-width: 185px; min-height: 48px; border-radius: 999px; }
.signature-work-link { display: inline-flex; align-items: center; gap: 8px; color: #aaa8b2; font: 7px var(--mono); letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.signature-work-link span { color: var(--cyan); font-size: 13px; transition: transform .3s; }
.signature-work-link:hover span { transform: translate(3px,3px); }
.signature-portrait { --mx:50%; --my:38%; position: absolute; bottom: -5%; left: 50%; z-index: 5; width: min(47vw,670px); height: 79%; aspect-ratio: auto; margin: 0; overflow: visible; transform: translateX(-50%); }
.signature-portrait .portrait__halo { top: 7%; width: 93%; opacity: .9; background: radial-gradient(circle,rgba(112,231,255,.16),rgba(159,140,255,.075) 45%,transparent 69%); }
.signature-portrait .portrait__human,.signature-portrait .portrait__robot-reveal,.signature-portrait .portrait__robot-bg { object-position: center bottom; }
.signature-portrait .portrait__human { transform: scale(1.06); transform-origin: center bottom; filter: saturate(.91) contrast(1.045) drop-shadow(0 35px 36px rgba(0,0,0,.55)); }
.signature-portrait .portrait__robot-bg { opacity: .13; }
.signature-proof { position: absolute; right: 3.8%; bottom: 17%; z-index: 7; width: min(22vw,285px); padding: 17px 18px; border: 1px solid rgba(255,255,255,.11); border-radius: 17px; background: rgba(8,8,12,.45); backdrop-filter: blur(14px); }
.signature-proof > span { display: block; margin-bottom: 14px; color: var(--cyan); font: 6px var(--mono); letter-spacing: .11em; text-transform: uppercase; }
.signature-proof > div { display: grid; grid-template-columns: 62px 1fr; gap: 11px; align-items: center; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.09); }
.signature-proof strong { color: #efedf2; font: 400 27px/1 var(--serif); }
.signature-proof small { color: #777581; font: 6px/1.5 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.signature-index { position: absolute; top: 47%; right: 17px; z-index: 8; display: flex; align-items: center; gap: 10px; color: #65636e; font: 6px var(--mono); letter-spacing: .1em; text-transform: uppercase; writing-mode: vertical-rl; }
.signature-index i { width: 1px; height: 36px; background: linear-gradient(var(--violet),var(--cyan)); }
.signature-capabilities { min-height: 62px; margin-top: 14px; }
.hero--signature + .ticker { position: relative; z-index: 2; border-color: rgba(255,255,255,.09); background: #09090e; }

@media (max-width: 1100px) {
  .signature-name { top: 14%; font-size: clamp(6rem,11.5vw,8rem); }
  .signature-role { top: 36%; }
  .signature-portrait { width: min(53vw,610px); }
  .signature-intro { width: 29vw; }
  .signature-proof { width: 24vw; }
  .signature-capabilities { grid-template-columns: 1fr repeat(4,1fr); }
  .signature-capabilities > a { display: none; }
}

@media (max-width: 760px) {
  .hero--signature { min-height: auto; padding: 103px 12px 14px; }
  .signature-stage { display: flex; height: auto; min-height: 820px; flex-direction: column; overflow: hidden; border-radius: 22px; }
  .signature-meta { top: 18px; right: 17px; left: 17px; grid-template-columns: 1fr 1fr; }
  .signature-meta b { display: none; }
  .signature-name { top: 9.5%; right: 12px; left: 12px; display: block; font-size: clamp(3.6rem,17vw,4.5rem); line-height: .78; text-align: center; white-space: normal; }
  .signature-name > span { display: block; }
  .signature-name > span:last-child { margin-left: .16em; }
  .signature-role { top: 27%; right: 20px; left: 20px; gap: 10px; font-size: clamp(.76rem,3.6vw,.92rem); letter-spacing: -.025em; }
  .signature-role span { width: auto; }
  .signature-portrait { bottom: 20%; width: min(115vw,560px); height: 56%; }
  .signature-intro { right: 18px; bottom: 7%; left: 18px; width: auto; padding: 17px; border: 1px solid rgba(255,255,255,.11); border-radius: 17px; background: rgba(8,8,12,.66); backdrop-filter: blur(14px); }
  .signature-intro p { margin: 13px 0 16px; font-size: 12px; }
  .signature-actions { justify-content: space-between; }
  .signature-actions .hero-cta { min-width: 172px; min-height: 45px; }
  .signature-work-link { display: none; }
  .signature-proof,.signature-index { display: none; }
  .signature-capabilities { grid-template-columns: repeat(2,1fr); margin-top: 10px; border-radius: 16px; }
  .signature-capabilities > span { grid-column: 1/-1; min-height: 44px; }
  .signature-capabilities > div { min-height: 47px; border-top: 1px solid var(--line); }
  .signature-capabilities > div:nth-of-type(even) { border-right: 0; }
}

@media (max-width: 420px) {
  .signature-stage { min-height: 760px; }
  .signature-name { top: 10.5%; font-size: clamp(3.45rem,16.5vw,4.2rem); }
  .signature-role { top: 25.5%; font-size: .72rem; }
  .signature-portrait { bottom: 22%; width: 123vw; height: 55%; }
  .signature-intro { bottom: 5%; }
  .signature-actions .hero-cta { width: 100%; }
}

@media (max-height: 650px) and (min-width: 761px) {
  .hero--signature { min-height: 100vh; padding-top: 94px; padding-bottom: 10px; }
  .signature-stage { height: calc(100vh - 104px); min-height: 400px; }
  .signature-name { top: 12%; font-size: clamp(5.2rem,9.3vw,7.3rem); }
  .signature-role { top: 36%; font-size: clamp(1.8rem,3.2vw,3rem); }
  .signature-portrait { bottom: -9%; height: 78%; }
  .signature-intro { bottom: 8%; }
  .signature-intro p { margin: 11px 0 14px; font-size: 11px; }
  .signature-actions .hero-cta { min-height: 43px; }
  .signature-proof { bottom: 8%; }
  .signature-capabilities { display: none; }
}

/* Cinematic studio hero with booking preview */
.hero--studio { position: relative; min-height: 100svh; overflow: hidden; padding: 112px max(3vw,24px) 28px; isolation: isolate; background: #08090b; }
.studio-bg { position: absolute; z-index: -4; inset: 0; background: #06070a url("assets/danial-seated-hero-final.png") center 55px/cover no-repeat; transform: scale(1.015); animation: studioBreath 13s ease-in-out infinite alternate; }
@keyframes studioBreath { to { transform: scale(1.045) translate3d(-.4%,.2%,0); } }
.studio-shade { position: absolute; z-index: -3; inset: 0; background: linear-gradient(90deg,rgba(4,5,7,.75) 0%,rgba(5,6,8,.18) 43%,rgba(5,5,7,.32) 64%,rgba(3,4,6,.73) 100%),linear-gradient(0deg,rgba(3,4,6,.9),transparent 46%,rgba(3,4,6,.34)); }
.studio-shade::after { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle,rgba(255,255,255,.21) .65px,transparent .75px); background-size: 8px 8px; mask-image: linear-gradient(90deg,#000,transparent 28%,transparent 74%,#000); }
.studio-topline { position: absolute; top: 121px; right: max(3vw,24px); left: max(3vw,24px); z-index: 8; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.58); font: 7px var(--mono); letter-spacing: .11em; text-transform: uppercase; }
.studio-topline span:nth-child(2) { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,.82); }
.studio-topline span:nth-child(2) i { width: 7px; height: 7px; border-radius: 50%; background: #51e18a; box-shadow: 0 0 0 4px rgba(81,225,138,.11),0 0 16px rgba(81,225,138,.4); animation: bookingPulse 2s infinite; }
.studio-topline span:last-child { text-align: right; }
.studio-copy { position: absolute; bottom: 7%; left: max(3.2vw,28px); z-index: 6; width: min(43vw,640px); text-shadow: 0 3px 30px rgba(0,0,0,.66); }
.studio-kicker { max-width: 620px; margin: 0 0 22px; color: rgba(255,255,255,.9); font-size: clamp(17px,1.55vw,25px); line-height: 1.35; letter-spacing: -.025em; }
.studio-title { margin: 0; color: #fff; font: 600 clamp(4.5rem,6.7vw,8rem)/.82 var(--sans); letter-spacing: -.075em; }
.studio-title em { color: transparent; font-weight: 400; font-style: normal; background: linear-gradient(95deg,#fff 5%,#d6d3ff 42%,var(--cyan)); -webkit-background-clip: text; background-clip: text; }
.studio-title em .word { color: transparent; background: linear-gradient(95deg,#fff 5%,#d6d3ff 42%,var(--cyan)); -webkit-background-clip: text; background-clip: text; }
.studio-lede { max-width: 560px; margin: 22px 0 0; color: rgba(255,255,255,.65); font-size: clamp(12px,1vw,15px); line-height: 1.7; }
.studio-work-link { display: inline-flex; gap: 13px; align-items: center; margin-top: 18px; color: #fff; font: 8px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.studio-work-link .ui-icon { color: var(--cyan); transition: transform .3s; }
.studio-work-link:hover .ui-icon { transform: translate(4px,4px); }
.studio-portrait { position: absolute; bottom: -7%; left: 51%; z-index: 4; width: min(44vw,690px); height: 78%; margin: 0; transform: translateX(-50%); pointer-events: none; }
.studio-portrait__glow { position: absolute; z-index: -1; right: 3%; bottom: 0; left: 3%; height: 70%; border-radius: 50%; background: radial-gradient(ellipse,rgba(112,231,255,.17),rgba(159,140,255,.07) 38%,transparent 70%); filter: blur(21px); }
.studio-portrait img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; user-select: none; }
.studio-lifestyle { display: none; }
.studio-booking { position: absolute; top: 17%; right: max(3.1vw,26px); z-index: 9; width: min(32vw,465px); padding: clamp(22px,2.2vw,34px); overflow: hidden; border: 1px solid rgba(255,255,255,.19); border-radius: 29px; background: linear-gradient(145deg,rgba(26,27,31,.76),rgba(11,12,15,.72)); box-shadow: 0 35px 80px rgba(0,0,0,.42),inset 0 1px rgba(255,255,255,.13); backdrop-filter: blur(24px) saturate(1.1); }
.studio-booking::before { content: ""; position: absolute; z-index: -1; right: -20%; bottom: -16%; width: 85%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(112,231,255,.17),rgba(159,140,255,.07) 42%,transparent 70%); filter: blur(16px); }
.studio-booking__top { display: flex; align-items: center; justify-content: space-between; }
.studio-avatar { display: flex; align-items: center; }
.studio-avatar img { width: 38px; height: 38px; object-fit: cover; object-position: top; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: linear-gradient(135deg,var(--violet),var(--cyan)); }
.studio-avatar span { display: grid; width: 42px; height: 42px; place-items: center; margin-left: -8px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: #fff; background: rgba(255,255,255,.12); font-size: 10px; }
.studio-booking__top > a { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: #dddbe2; transition: .3s; }
.studio-booking__top > a:hover { color: #07080b; background: var(--cyan); transform: rotate(45deg); }
.studio-booking h2 { margin: 23px 0 12px; color: #fff; font: 500 clamp(1.8rem,2.25vw,2.8rem)/1.02 var(--sans); letter-spacing: -.055em; }
.studio-booking > p { margin: 0; color: #a6a4ad; font-size: 12px; line-height: 1.55; }
.studio-booking__rule { height: 1px; margin: 21px 0; background: rgba(255,255,255,.13); }
.studio-booking__label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.studio-booking__label strong { color: #f3f2f5; font-size: 12px; font-weight: 500; }
.studio-booking__label span { display: inline-flex; align-items: center; gap: 4px; color: #7e7c85; font: 6px var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.studio-booking__label .ui-icon { width: 10px; height: 10px; }
.studio-days { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }
.studio-days label,.studio-times label { display: block; cursor: pointer; }
.studio-days input,.studio-times input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.studio-days label > span { display: grid; min-height: 54px; place-items: center; align-content: center; gap: 3px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; color: #c7c5cc; background: rgba(255,255,255,.055); font-size: 10px; transition: .25s; }
.studio-days small { color: #77757e; font-size: 8px; }
.studio-days input:checked + span { color: #090a0d; border-color: #fff; background: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.2); }
.studio-days input:checked + span small { color: #55535b; }
.studio-times { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-top: 9px; }
.studio-times label > span { display: block; padding: 9px 5px; border: 1px solid rgba(255,255,255,.07); border-radius: 10px; color: #aaa8b0; background: rgba(255,255,255,.04); font-size: 9px; text-align: center; transition: .25s; }
.studio-times input:checked + span { color: #08090c; border-color: var(--cyan); background: var(--cyan); box-shadow: 0 7px 18px rgba(112,231,255,.16); }
.studio-email { display: grid; gap: 6px; margin-top: 11px; }
.studio-email > span { color: #8a8892; font: 6px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.studio-email input { width: 100%; min-height: 42px; padding: 0 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; outline: 0; color: #fff; background: rgba(255,255,255,.045); font-size: 11px; transition: .25s; }
.studio-email input::placeholder { color: #696770; }
.studio-email input:focus { border-color: rgba(112,231,255,.6); box-shadow: 0 0 0 3px rgba(112,231,255,.07); }
.studio-booking__cta { display: flex; width: 100%; min-height: 53px; align-items: center; justify-content: space-between; margin-top: 12px; padding: 0 18px 0 21px; border: 0; border-radius: 14px; color: #07080b; background: linear-gradient(105deg,#fff,#dcdcff 58%,#c7f7ff); box-shadow: 0 15px 35px rgba(85,129,255,.16); cursor: pointer; font-size: 11px; font-weight: 600; }
.studio-booking__note { display: block; margin-top: 10px; color: #6f6d76; font: 6px var(--mono); letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.studio-foot { position: absolute; right: calc(max(3.1vw,26px) + min(32vw,465px) + 20px); bottom: 3%; z-index: 7; display: flex; gap: 18px; }
.studio-foot span { display: flex; gap: 7px; align-items: center; color: rgba(255,255,255,.45); font: 6px var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.studio-foot b { color: #fff; font: 400 18px var(--serif); }
.hero--studio + .ticker { position: relative; z-index: 2; background: #08090b; }

@media (max-width: 1100px) {
  .studio-copy { width: 44vw; }
  .studio-title { font-size: clamp(4rem,6.6vw,6rem); }
  .studio-portrait { left: 53%; width: 48vw; }
  .studio-booking { width: 34vw; padding: 23px; }
  .studio-booking h2 { font-size: clamp(1.65rem,2.2vw,2.2rem); }
  .studio-foot { display: none; }
}

@media (max-width: 760px) {
  .hero--studio { display: flex; min-height: auto; flex-direction: column; padding: 99px 12px 14px; }
  .studio-bg { background: #08090d; transform: none; animation: none; }
  .studio-shade { background: radial-gradient(circle at 50% 36%,rgba(112,231,255,.08),transparent 32%),linear-gradient(180deg,#08090d,#0b0c11 58%,#08090d); }
  .studio-topline { position: relative; top: auto; right: auto; left: auto; order: 1; display: block; padding: 14px 7px 12px; }
  .studio-topline span:nth-child(2),.studio-topline span:last-child { display: none; }
  .studio-copy { position: relative; bottom: auto; left: auto; z-index: 7; order: 2; width: 100%; padding: 44px 7px 0; }
  .studio-kicker { max-width: 330px; margin-bottom: 16px; font-size: 16px; }
  .studio-title { font-size: clamp(3.7rem,17vw,5.4rem); line-height: .84; }
  .studio-title em { font-size: .7em; letter-spacing: -.08em; }
  .studio-lede { max-width: 340px; margin-top: 17px; font-size: 12px; }
  .studio-lifestyle { position: relative; z-index: 6; display: block; order: 3; width: min(100%,560px); aspect-ratio: 1.05; align-self: center; margin: 22px auto -7px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 21px; box-shadow: 0 25px 60px rgba(0,0,0,.35); }
  .studio-lifestyle img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
  .studio-booking { position: relative; top: auto; right: auto; z-index: 10; order: 4; width: 100%; margin-top: -35px; padding: 23px 20px; border-radius: 22px; }
  .studio-booking h2 { font-size: 2rem; }
  .studio-times { grid-template-columns: repeat(3,1fr); }
  .studio-foot { position: relative; right: auto; bottom: auto; order: 5; display: grid; grid-template-columns: repeat(3,1fr); gap: 0; padding: 21px 5px 7px; }
  .studio-foot span { display: grid; gap: 4px; text-align: center; }
}

@media (max-width: 400px) {
  .studio-title { font-size: clamp(3.45rem,16.4vw,4.2rem); }
  .studio-lifestyle { aspect-ratio: 1/1.06; }
  .studio-booking h2 { font-size: 1.75rem; }
  .studio-days label > span { min-height: 49px; }
}

@media (max-height: 650px) and (min-width: 761px) {
  .hero--studio { min-height: 100vh; padding-top: 94px; padding-bottom: 10px; }
  .studio-topline { top: 101px; }
  .studio-copy { bottom: 6%; width: 42vw; }
  .studio-kicker { margin-bottom: 10px; font-size: 15px; }
  .studio-title { font-size: clamp(3.3rem,5.5vw,5rem); }
  .studio-lede,.studio-work-link { display: none; }
  .studio-portrait { bottom: -11%; height: 79%; }
  .studio-booking { top: 20%; width: min(31vw,410px); padding: 17px 19px; border-radius: 22px; }
  .studio-booking h2 { margin: 12px 0 7px; font-size: 1.55rem; }
  .studio-booking > p { font-size: 9px; }
  .studio-booking__rule { margin: 10px 0; }
  .studio-days label > span { min-height: 38px; }
  .studio-times label > span { padding: 6px 4px; }
  .studio-booking__cta { min-height: 40px; margin-top: 10px; }
  .studio-booking__note { display: none; }
}
