:root {
  --ink: #0a0a0d;
  --ink-2: #141419;
  --paper: #f2f0e8;
  --paper-2: #e8e4d9;
  --acid: #caff35;
  --violet: #8b5cf6;
  --coral: #ff5f38;
  --blue: #3f66ff;
  --white: #fffef8;
  --muted: #77766f;
  --line: rgba(10, 10, 13, .16);
  --line-light: rgba(255, 255, 255, .16);
  --container: 1360px;
  --radius: 28px;
  --header-height: 88px;
  --shadow: 0 30px 80px rgba(0, 0, 0, .16);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--acid); }

.skip-link {
  position: fixed; top: 14px; left: 14px; z-index: 3000;
  padding: 12px 18px; color: var(--ink); background: var(--acid);
  border-radius: 999px; transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.cursor-glow {
  position: fixed; width: 420px; height: 420px; left: 0; top: 0; z-index: 0;
  border-radius: 50%; pointer-events: none; opacity: .13;
  background: radial-gradient(circle, var(--acid), transparent 68%);
  filter: blur(30px); transform: translate3d(-50%, -50%, 0);
  transition: opacity .25s ease;
}

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; position: relative; z-index: 2; }
.section { position: relative; padding: clamp(92px, 10vw, 160px) 0; }
.section-index { font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-index.light { color: rgba(255,255,255,.52); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px;
  color: #55544e; font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: rgba(255,255,255,.54); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-height);
  color: var(--white); transition: background .35s ease, height .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  height: 72px; background: rgba(10,10,13,.76); border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: .94rem; letter-spacing: -.02em; }
.brand-logo { width: 42px; height: 42px; flex: 0 0 auto; }
.brand-word { white-space: nowrap; letter-spacing: -.035em; }
.brand-word strong { font-weight: 900; }
.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 34px; padding: 0; margin: 0; list-style: none; }
.nav-link { position: relative; color: rgba(255,255,255,.72); font-size: .84rem; font-weight: 650; transition: color .2s ease; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--acid); transition: right .3s var(--ease); }
.nav-link:hover, .nav-link[aria-current="true"] { color: var(--white); }
.nav-link:hover::after, .nav-link[aria-current="true"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 13px; }
.language-link { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; font-size: .68rem; font-weight: 850; transition: background .2s ease, color .2s ease; }
.language-link:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; position: relative; cursor: pointer; }
.menu-toggle span { position: absolute; left: 9px; width: 26px; height: 2px; background: currentColor; transition: transform .3s ease, top .3s ease; }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-open .menu-toggle span:first-child { top: 21px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 21px; transform: rotate(-45deg); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  font-size: .84rem; font-weight: 800; cursor: pointer; transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.button i { font-style: normal; font-size: 1.08em; transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:hover i { transform: translate(3px, -3px); }
.button-small { min-height: 44px; padding-inline: 19px; color: var(--ink); background: var(--acid); }
.button-primary { color: var(--ink); background: var(--acid); }
.button-primary:hover { background: var(--white); }
.button-ghost { color: inherit; background: transparent; border-color: currentColor; }
.button-ghost:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.text-button { display: inline-flex; align-items: center; gap: 16px; color: rgba(255,255,255,.66); font-size: .84rem; font-weight: 700; }
.text-button span { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transition: transform .25s ease, background .25s ease, color .25s ease; }
.text-button:hover span { color: var(--ink); background: var(--acid); border-color: var(--acid); transform: translateY(4px); }
.arrow-link { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--ink); font-weight: 800; }
.arrow-link span { transition: transform .25s var(--ease); }
.arrow-link:hover span { transform: translate(4px, 4px); }

.hero {
  min-height: 100svh; padding: calc(var(--header-height) + 72px) 0 158px; position: relative;
  color: var(--white); background:
    radial-gradient(circle at 73% 32%, rgba(139,92,246,.28), transparent 29rem),
    radial-gradient(circle at 18% 5%, rgba(63,102,255,.17), transparent 32rem),
    var(--ink);
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.hero-noise { position: absolute; inset: 0; opacity: .035; pointer-events: none; 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)' opacity='.8'/%3E%3C/svg%3E"); }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr); gap: clamp(40px, 5vw, 90px); align-items: center; }
.hero-copy { position: relative; z-index: 4; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 30px; color: rgba(255,255,255,.62); font-size: .73rem; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(202,255,53,.11), 0 0 22px var(--acid); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(.72); opacity: .62; } }
.hero-title { max-width: 10.5ch; margin: 0; font-size: clamp(4rem, 7.8vw, 8.6rem); font-weight: 820; line-height: .88; letter-spacing: -.075em; }
.hero-title-accent { display: block; width: max-content; color: var(--ink); background: var(--acid); padding: 0 .12em .05em; margin: .08em 0 .08em -.03em; transform: rotate(-1.5deg); }
.hero-bottom { max-width: 740px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 42px; align-items: end; margin-top: 48px; }
.hero-intro { margin: 0; color: rgba(255,255,255,.68); font-size: clamp(1rem, 1.4vw, 1.28rem); line-height: 1.55; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }

.hero-art { min-height: 670px; padding-bottom: 86px; position: relative; display: grid; place-items: center; perspective: 1400px; }
.art-main { width: min(100%, 520px); aspect-ratio: .84; padding: 12px; border-radius: 34px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 50px 110px rgba(0,0,0,.5); backdrop-filter: blur(20px); transition: transform .18s linear; transform-style: preserve-3d; }
.art-toolbar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 9px; color: rgba(255,255,255,.42); }
.art-toolbar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.32); }
.art-toolbar b { margin-left: auto; font-size: .61rem; letter-spacing: .12em; text-transform: uppercase; }
.art-screen { height: calc(100% - 42px); border-radius: 24px; position: relative; overflow: hidden; color: var(--ink); background: var(--acid); }
.art-label { position: absolute; top: 26px; left: 28px; z-index: 4; font-size: .6rem; font-weight: 900; letter-spacing: .18em; }
.art-type { position: absolute; z-index: 4; left: 28px; bottom: 72px; font-size: clamp(4.2rem, 7vw, 6.8rem); font-weight: 900; letter-spacing: -.085em; line-height: .72; }
.art-type em { font-style: italic; font-weight: 420; }
.art-grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 46px 46px; }
.art-pill { position: absolute; right: 20px; top: 44%; z-index: 5; padding: 12px 15px; border: 1px solid var(--ink); border-radius: 999px; font-size: .61rem; font-weight: 900; transform: rotate(90deg) translateX(50%); transform-origin: right center; }
.art-shape { position: absolute; border: 2px solid var(--ink); }
.art-shape-a { width: 190px; height: 190px; right: -46px; top: 62px; border-radius: 50%; background: var(--violet); box-shadow: inset 0 0 0 20px var(--acid); }
.art-shape-b { width: 120px; height: 120px; right: 60px; bottom: 45px; transform: rotate(30deg); background: var(--coral); }
.art-orbit { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; animation: spin 18s linear infinite; }
.art-orbit::before { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 22px var(--acid); }
.art-orbit-one { width: 580px; height: 580px; }
.art-orbit-one::before { left: 18%; top: 2%; }
.art-orbit-two { width: 430px; height: 430px; animation-duration: 13s; animation-direction: reverse; }
.art-orbit-two::before { right: 0; top: 50%; background: var(--violet); box-shadow: 0 0 22px var(--violet); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-ribbon { position: absolute; bottom: 22px; left: -3%; right: -3%; height: 82px; overflow: hidden; color: var(--ink); background: var(--acid); border-block: 2px solid var(--ink); transform: rotate(-.65deg); transform-origin: center; }
.ribbon-track { width: max-content; height: 100%; display: flex; align-items: stretch; font-size: 1rem; font-weight: 950; letter-spacing: .105em; animation: marquee 24s linear infinite; will-change: transform; }
.ribbon-group { min-width: 116vw; flex: 0 0 auto; display: flex; align-items: center; justify-content: space-around; gap: clamp(26px, 3vw, 52px); padding-inline: clamp(22px, 3vw, 54px); }
.ribbon-track i { flex: 0 0 auto; font-style: normal; font-size: 1.15em; }
.ribbon-track span { flex: 0 0 auto; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro-section { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .35fr 1.45fr .55fr; gap: clamp(30px, 5vw, 92px); align-items: start; }
.mega-copy { margin: 0; font-size: clamp(2.8rem, 5.1vw, 6.3rem); font-weight: 760; letter-spacing: -.06em; line-height: .99; }
.mega-copy span { color: var(--violet); font-style: italic; font-weight: 500; }
.intro-aside { padding-top: 60px; }
.intro-aside p { margin: 0 0 32px; color: #5f5e58; font-size: 1.04rem; }

.section-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .48fr); gap: 70px; align-items: end; margin-bottom: 64px; }
.section-head h2 { max-width: 10ch; margin: 0; font-size: clamp(3rem, 6.2vw, 7rem); line-height: .93; letter-spacing: -.07em; }
.section-head p { margin: 0 0 8px; color: #62615b; font-size: 1.02rem; }
.work-section { padding-top: 20px; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.project-card { min-height: 740px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: transform .2s linear, box-shadow .3s ease; transform-style: preserve-3d; }
.project-card:hover { box-shadow: var(--shadow); }
.project-card-wide { grid-column: 1 / -1; min-height: 780px; }
.project-meta { display: flex; align-items: center; justify-content: space-between; padding: 6px 3px 17px; font-size: .66rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.project-visual { position: relative; min-height: 540px; overflow: hidden; border-radius: 19px; }
.project-card-wide .project-visual { min-height: 585px; }
.project-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 26px 6px 8px; }
.project-copy h3 { margin: 0; font-size: clamp(1.6rem, 2.4vw, 2.7rem); line-height: 1.02; letter-spacing: -.05em; }
.project-copy p { margin: 0; color: #66645e; }
.project-visual-brand { background: var(--violet); display: grid; place-items: center; }
.project-visual-brand::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 54px 54px; }
.brand-poster { position: absolute; display: flex; flex-direction: column; justify-content: space-between; color: var(--paper); background: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.poster-one { width: 320px; height: 430px; left: 16%; top: 13%; padding: 24px; transform: rotate(-7deg); }
.poster-one small { font-size: .58rem; letter-spacing: .2em; }
.poster-one strong { font-size: 4.7rem; line-height: .72; letter-spacing: -.08em; }
.poster-one em { align-self: flex-end; font-size: 1rem; font-style: normal; color: var(--acid); }
.poster-two { width: 310px; height: 410px; right: 17%; top: 17%; flex-direction: row; align-items: center; padding: 20px; color: var(--ink); background: var(--acid); transform: rotate(8deg); }
.poster-two span { font-size: 6rem; font-weight: 950; line-height: 1; transform: rotate(90deg); }
.brand-swatch { position: absolute; right: 4%; bottom: 8%; width: 128px; height: 128px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); border: 2px solid var(--ink); text-align: center; font-size: .68rem; font-weight: 900; letter-spacing: .12em; animation: spin 12s linear infinite; }
.project-visual-commerce { display: grid; place-items: center; background: #f7b8cf; }
.project-visual-commerce::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; background: #ffdf6e; filter: blur(1px); }
.phone-shell { position: relative; z-index: 2; width: 260px; height: 500px; padding: 28px 22px; border: 8px solid var(--ink); border-radius: 42px; color: var(--paper); background: linear-gradient(150deg, #4431a8, #16123e); box-shadow: 0 34px 65px rgba(37,16,85,.34); transform: rotate(-5deg); overflow: hidden; }
.phone-shell::after { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px); background-size: 28px 28px; }
.phone-top { position: absolute; left: 50%; top: 10px; width: 72px; height: 16px; border-radius: 20px; background: var(--ink); transform: translateX(-50%); }
.phone-shell strong { position: absolute; z-index: 3; left: 22px; bottom: 92px; font-size: 2.7rem; line-height: .84; letter-spacing: -.06em; }
.product-orb { position: absolute; z-index: 2; width: 230px; height: 230px; left: 44px; top: 88px; border-radius: 48% 52% 44% 56% / 58% 38% 62% 42%; background: linear-gradient(145deg, var(--acid), #5cddff); box-shadow: inset -24px -30px 0 rgba(0,0,0,.12); animation: blob 7s ease-in-out infinite; }
@keyframes blob { 50% { border-radius: 38% 62% 60% 40% / 43% 58% 42% 57%; transform: rotate(18deg) scale(.92); } }
.buy-pill { position: absolute; z-index: 3; left: 22px; right: 22px; bottom: 28px; padding: 12px 15px; border-radius: 999px; color: var(--ink); background: var(--acid); text-align: center; font-size: .67rem; font-weight: 900; }
.commerce-sticker { position: absolute; z-index: 4; right: 7%; top: 11%; width: 112px; height: 112px; display: grid; place-items: center; border-radius: 50%; color: var(--paper); background: var(--ink); border: 2px solid var(--paper); text-align: center; line-height: .8; font-size: .74rem; font-weight: 900; transform: rotate(11deg); }
.project-visual-growth { background: var(--ink); }
.project-visual-growth::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(var(--acid) 1px, transparent 1px); background-size: 23px 23px; }
.growth-chart { position: absolute; left: 8%; right: 8%; bottom: 9%; height: 70%; display: flex; gap: 10px; align-items: end; }
.growth-chart span { flex: 1; height: var(--h); border-radius: 9px 9px 0 0; background: linear-gradient(to top, var(--violet), var(--acid)); transform-origin: bottom; animation: chart 1.3s var(--ease) both; }
.growth-chart span:nth-child(2) { animation-delay: .08s; }.growth-chart span:nth-child(3) { animation-delay: .16s; }.growth-chart span:nth-child(4) { animation-delay: .24s; }.growth-chart span:nth-child(5) { animation-delay: .32s; }.growth-chart span:nth-child(6) { animation-delay: .4s; }
@keyframes chart { from { transform: scaleY(.05); } }
.metric-card { position: absolute; z-index: 3; left: 8%; top: 8%; width: 180px; padding: 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; color: var(--white); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.metric-card small { display: block; color: rgba(255,255,255,.5); font-size: .61rem; text-transform: uppercase; letter-spacing: .14em; }
.metric-card strong { display: block; color: var(--acid); font-size: 3.8rem; line-height: .9; }
.metric-card b { font-size: .76rem; }
.growth-ring { position: absolute; right: -70px; top: -60px; width: 250px; height: 250px; border: 34px solid var(--coral); border-radius: 50%; }

.services-section { color: var(--white); background: var(--ink); overflow: hidden; }
.services-section::before { content: ""; position: absolute; width: 750px; height: 750px; right: -250px; top: -200px; border-radius: 50%; background: var(--violet); filter: blur(180px); opacity: .17; }
.services-title { display: grid; grid-template-columns: .35fr 1.65fr; gap: 60px; margin: 34px 0 82px; }
.services-title h2 { max-width: 15ch; margin: 0; font-size: clamp(3.4rem, 6.8vw, 8rem); line-height: .88; letter-spacing: -.075em; }
.services-title h2 em { color: var(--acid); font-style: italic; font-weight: 440; }
.service-list { border-top: 1px solid var(--line-light); }
.service-row { display: grid; grid-template-columns: .12fr .72fr 1fr .2fr; gap: 28px; align-items: center; min-height: 190px; padding: 28px 0; border-bottom: 1px solid var(--line-light); transition: padding .35s var(--ease), background .35s ease; }
.service-row:hover { padding-inline: 22px; background: rgba(255,255,255,.035); }
.service-num { align-self: start; padding-top: 9px; color: rgba(255,255,255,.38); font-size: .69rem; letter-spacing: .15em; }
.service-row h3 { margin: 0; font-size: clamp(1.8rem, 3.2vw, 3.7rem); line-height: .92; letter-spacing: -.055em; }
.service-row p { max-width: 47ch; margin: 0; color: rgba(255,255,255,.55); }
.service-icon { width: 78px; height: 78px; display: grid; place-items: center; justify-self: end; color: var(--ink); background: var(--acid); border-radius: 50%; font-size: 2rem; transition: transform .45s var(--ease), border-radius .45s var(--ease), background .3s ease; }
.service-row:hover .service-icon { transform: rotate(14deg) scale(1.06); border-radius: 24%; background: var(--white); }
.icon-grid { grid-template-columns: repeat(2, 12px); gap: 5px; }
.icon-grid i { width: 12px; height: 12px; background: var(--ink); }
.icon-wave { font-size: 3.2rem; font-weight: 200; }
.icon-arrow { font-size: 2.8rem; }
.icon-orbit { position: relative; }
.icon-orbit::before { content: ""; width: 36px; height: 36px; border: 2px solid var(--ink); border-radius: 50%; }
.icon-orbit i { position: absolute; width: 10px; height: 10px; background: var(--ink); border-radius: 50%; transform: translate(20px, -16px); }

.method-section { background: var(--paper-2); }
.method-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.method-card { min-height: 400px; padding: 26px; position: relative; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.35); overflow: hidden; transition: transform .35s var(--ease), background .35s ease; }
.method-card:hover { transform: translateY(-10px); background: var(--white); }
.method-top { display: flex; justify-content: space-between; align-items: center; }
.method-top span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: .7rem; font-weight: 900; }
.method-top i { font-size: .6rem; font-style: normal; font-weight: 900; letter-spacing: .14em; color: #72716b; }
.method-card h3 { margin: 115px 0 18px; font-size: 2rem; line-height: 1; letter-spacing: -.05em; }
.method-card p { margin: 0; color: #66645e; }
.method-line { position: absolute; left: 26px; right: 26px; bottom: 26px; height: 4px; background: var(--ink); transform-origin: left; transition: transform .45s var(--ease), background .3s ease; transform: scaleX(.18); }
.method-card:hover .method-line { transform: scaleX(1); background: var(--violet); }

.manifesto-section { min-height: 850px; color: var(--white); background: #342176; overflow: hidden; }
.manifesto-section::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 64px 64px; }
.manifesto-grid { display: grid; grid-template-columns: .3fr 1.25fr .55fr; gap: 58px; align-items: start; }
.manifesto-copy .eyebrow { color: rgba(255,255,255,.55); }
.manifesto-copy h2 { margin: 0; font-size: clamp(3.5rem, 6.7vw, 7.6rem); line-height: .9; letter-spacing: -.075em; }
.manifesto-copy h2 em { color: var(--acid); font-weight: 420; }
.manifesto-aside { padding-top: 74px; }
.manifesto-aside > p { color: rgba(255,255,255,.66); font-size: 1.04rem; }
.value-list { margin: 50px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.value-list li { display: flex; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-weight: 750; }
.value-list span { color: var(--acid); font-size: .65rem; }
.manifesto-word { position: absolute; left: -1.5vw; bottom: -5.5vw; color: rgba(255,255,255,.07); font-size: 18vw; font-weight: 950; line-height: .7; letter-spacing: -.09em; white-space: nowrap; }
.manifesto-orb { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(1px); opacity: .8; }
.orb-left { left: -240px; bottom: -180px; background: var(--coral); }
.orb-right { right: -220px; top: -120px; background: var(--acid); opacity: .35; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .72fr 1fr; gap: 90px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro h2 { margin: 0; font-size: clamp(3rem, 5.4vw, 6rem); line-height: .92; letter-spacing: -.065em; }
.faq-intro p { color: #66645f; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; border: 0; background: transparent; text-align: left; font-size: clamp(1.15rem, 1.8vw, 1.65rem); font-weight: 760; letter-spacing: -.03em; cursor: pointer; }
.faq-question i { flex: 0 0 auto; width: 40px; height: 40px; border: 1px solid var(--ink); border-radius: 50%; position: relative; transition: transform .3s ease, background .3s ease; }
.faq-question i::before, .faq-question i::after { content: ""; position: absolute; left: 11px; right: 11px; top: 19px; height: 1px; background: currentColor; }
.faq-question i::after { transform: rotate(90deg); transition: transform .3s ease; }
.faq-item.is-open .faq-question i { color: var(--ink); background: var(--acid); transform: rotate(90deg); }
.faq-item.is-open .faq-question i::after { transform: rotate(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease); }
.faq-answer p { max-width: 60ch; margin: 0; padding: 0 70px 28px 0; color: #62615b; }

.contact-section { position: relative; padding: clamp(90px, 10vw, 150px) 0; color: var(--ink); background: var(--acid); }
.contact-section::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(var(--ink) 1px, transparent 1px); background-size: 22px 22px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(55px, 8vw, 130px); align-items: start; }
.contact-heading { position: sticky; top: 120px; }
.contact-kicker { display: block; margin: 50px 0 10px; font-size: .8rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-heading h2 { margin: 0 0 42px; font-size: clamp(4.2rem, 8vw, 9.8rem); line-height: .78; letter-spacing: -.085em; }
.contact-heading h2 em { color: var(--violet); font-style: italic; font-weight: 480; }
.contact-email { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 8px; border-bottom: 2px solid var(--ink); font-size: clamp(1.1rem, 2vw, 1.65rem); font-weight: 820; }
.contact-email span { transition: transform .25s ease; }
.contact-email:hover span { transform: translate(4px,-4px); }
.contact-form { padding: clamp(26px, 4vw, 54px); border: 2px solid var(--ink); border-radius: 26px; background: var(--paper); box-shadow: 18px 18px 0 var(--ink); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px 20px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; padding: 13px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid rgba(10,10,13,.35); border-radius: 0; outline: none; transition: border-color .2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--violet); box-shadow: 0 2px 0 var(--violet); }
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #929087; }
.field-hint { align-self: flex-end; color: #7a786f; font-size: .63rem; }
.honey { position: absolute !important; left: -9999px !important; }
.checkbox-row { display: flex; gap: 12px; margin: 26px 0; color: #5b5a55; font-size: .78rem; }
.checkbox-row input { width: 18px; height: 18px; accent-color: var(--violet); flex: 0 0 auto; }
.checkbox-row a { color: var(--ink); text-decoration: underline; }
.button-submit { width: 100%; min-height: 62px; color: var(--white); background: var(--ink); }
.button-submit:hover { color: var(--ink); background: var(--violet); }
.button-submit:disabled { opacity: .6; cursor: wait; }
.form-status { min-height: 24px; margin: 15px 0 0; font-size: .8rem; font-weight: 700; }
.form-status.is-success { color: #236613; }
.form-status.is-error { color: #ad2710; }

.site-footer { padding: 75px 0 26px; color: var(--white); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: .6fr 1fr auto; gap: 30px; align-items: center; padding-bottom: 45px; border-bottom: 1px solid var(--line-light); }
.footer-top p { max-width: 43ch; margin: 0; color: rgba(255,255,255,.52); }
.footer-up { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transition: background .2s ease, color .2s ease; }
.footer-up:hover { color: var(--ink); background: var(--acid); }
.footer-grid { display: grid; grid-template-columns: .8fr .8fr 1fr 1.2fr; gap: 45px; padding: 54px 0; }
.footer-column h2 { margin: 0 0 20px; color: rgba(255,255,255,.35); font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-column ul { margin: 0; padding: 0; list-style: none; }
.footer-column li { margin: 9px 0; color: rgba(255,255,255,.68); font-size: .88rem; }
.footer-column a, .footer-column button { transition: color .2s ease; }
.footer-column a:hover, .footer-column button:hover { color: var(--acid); }
.footer-column button { padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; }
.footer-cta h2 { color: var(--white); font-size: clamp(1.4rem, 2.2vw, 2.4rem); letter-spacing: -.04em; text-transform: none; }
.footer-cta a { display: inline-flex; align-items: center; gap: 16px; color: var(--acid); font-size: 1.1rem; font-weight: 850; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.34); font-size: .69rem; }

/* Cookie UI */
.cookie-banner { position: fixed; left: 22px; bottom: 22px; z-index: 1800; width: min(440px, calc(100% - 44px)); padding: 24px; color: var(--white); background: rgba(20,20,25,.96); border: 1px solid rgba(255,255,255,.16); border-radius: 22px; box-shadow: 0 35px 80px rgba(0,0,0,.4); backdrop-filter: blur(18px); transform: translateY(calc(100% + 50px)); opacity: 0; pointer-events: none; transition: transform .45s var(--ease), opacity .3s ease; }
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner h2 { margin: 0 0 8px; font-size: 1.2rem; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.6); font-size: .78rem; }
.cookie-banner p a { text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.cookie-actions .button { min-height: 40px; padding-inline: 15px; font-size: .7rem; }
.cookie-modal { position: fixed; inset: 0; z-index: 1900; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.7); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.cookie-modal.is-visible { opacity: 1; pointer-events: auto; }
.cookie-dialog { width: min(620px, 100%); max-height: calc(100svh - 40px); overflow: auto; color: var(--ink); background: var(--paper); border-radius: 24px; box-shadow: var(--shadow); }
.cookie-dialog-header, .cookie-dialog-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 22px 24px; }
.cookie-dialog-header { border-bottom: 1px solid var(--line); }
.cookie-dialog-header h2 { margin: 0; font-size: 1.4rem; }
.modal-close { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.5rem; cursor: pointer; }
.cookie-dialog-body { padding: 0 24px; }
.cookie-category { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cookie-category h3 { margin: 0 0 6px; font-size: 1rem; }
.cookie-category p { margin: 0; color: #66645e; font-size: .8rem; }
.cookie-category > span { color: #66645e; font-size: .7rem; white-space: nowrap; }
.cookie-dialog-footer { flex-wrap: wrap; }
.cookie-dialog-footer .button { min-height: 42px; }
.switch { position: relative; flex: 0 0 auto; }
.switch input { position: absolute; opacity: 0; }
.switch-track { display: block; width: 48px; height: 28px; border-radius: 999px; background: #c9c6bd; cursor: pointer; transition: background .2s ease; }
.switch-track::after { content: ""; position: absolute; width: 22px; height: 22px; top: 3px; left: 3px; border-radius: 50%; background: var(--white); transition: transform .2s ease; }
.switch input:checked + .switch-track { background: var(--violet); }
.switch input:checked + .switch-track::after { transform: translateX(20px); }

/* Legal and utility pages */
.legal-hero { padding: calc(var(--header-height) + 90px) 0 70px; color: var(--white); background: var(--ink); }
.legal-title { max-width: 12ch; margin: 0; font-size: clamp(3.4rem, 7vw, 7.5rem); line-height: .88; letter-spacing: -.07em; }
.legal-hero .lead { max-width: 60ch; color: rgba(255,255,255,.58); font-size: 1.05rem; }
.legal-meta { margin-top: 26px; color: rgba(255,255,255,.4); font-size: .74rem; }
.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 70px; align-items: start; }
.legal-nav { position: sticky; top: 105px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.legal-nav h2 { margin: 0 0 12px; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.legal-nav ul { margin: 0; padding: 0; list-style: none; }
.legal-nav li { margin: 9px 0; }
.legal-nav a { color: #66645e; font-size: .82rem; }
.legal-nav a:hover { color: var(--violet); }
.legal-content { max-width: 820px; }
.legal-content h2 { margin: 55px 0 16px; font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -.04em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 30px 0 10px; font-size: 1.12rem; }
.legal-content p, .legal-content li { color: #55544f; }
.legal-content a { color: var(--violet); text-decoration: underline; }
.legal-content ul, .legal-content ol { padding-left: 1.4rem; }
.legal-notice { margin: 28px 0; padding: 22px; border-left: 5px solid var(--violet); background: var(--white); }
.legal-table-wrap { overflow-x: auto; margin: 26px 0; }
.legal-table { width: 100%; border-collapse: collapse; min-width: 650px; }
.legal-table th, .legal-table td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { background: var(--paper-2); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .hero-layout { grid-template-columns: minmax(0,1fr) 420px; }
  .hero-art { min-height: 610px; padding-bottom: 92px; }
  .art-orbit-one { width: 500px; height: 500px; }
  .project-card { min-height: 650px; }
  .project-visual { min-height: 450px; }
  .project-card-wide .project-visual { min-height: 520px; }
  .method-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .manifesto-grid { grid-template-columns: .2fr 1.1fr .6fr; gap: 35px; }
  .service-row { grid-template-columns: .1fr .8fr 1fr .18fr; }
}

@media (max-width: 900px) {
  :root { --header-height: 74px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-nav { position: fixed; inset: var(--header-height) 0 0; z-index: 999; display: flex; align-items: center; justify-content: center; background: rgba(10,10,13,.98); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .25s ease, transform .25s ease; }
  .menu-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-list { flex-direction: column; gap: 20px; }
  .nav-link { font-size: 2rem; font-weight: 780; letter-spacing: -.05em; }
  .menu-toggle { display: block; }
  .header-actions .button-small { display: none; }
  .hero { padding-top: calc(var(--header-height) + 54px); }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-title { max-width: 11ch; }
  .hero-bottom { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .hero-art { min-height: 640px; padding-bottom: 100px; margin-top: 15px; }
  .art-main { width: min(80vw, 490px); }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-aside { max-width: 600px; padding-top: 0; }
  .section-head { grid-template-columns: 1fr; gap: 28px; }
  .section-head h2 { max-width: 12ch; }
  .project-card-wide { min-height: 710px; }
  .project-copy { grid-template-columns: 1fr; gap: 12px; }
  .project-card { min-height: 650px; }
  .services-title { grid-template-columns: 1fr; gap: 10px; }
  .service-row { grid-template-columns: .12fr .8fr .2fr; }
  .service-row p { grid-column: 2 / 4; }
  .method-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-aside { padding-top: 0; max-width: 620px; }
  .faq-layout { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro, .contact-heading { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 82px 0; }
  .brand-word { font-size: .82rem; }
  .header-actions { gap: 4px; }
  .language-link { border: 0; }
  .hero { min-height: auto; padding-bottom: 138px; }
  .hero-title { font-size: clamp(3.55rem, 17vw, 5.7rem); }
  .hero-bottom { margin-top: 34px; }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-art { min-height: 590px; padding-bottom: 112px; }
  .art-main { width: 86vw; border-radius: 26px; padding: 8px; }
  .art-screen { border-radius: 19px; }
  .art-type { left: 20px; bottom: 62px; font-size: 4.2rem; }
  .art-label { left: 20px; top: 22px; }
  .art-orbit-one { width: 420px; height: 420px; }
  .art-orbit-two { width: 330px; height: 330px; }
  .hero-ribbon { bottom: 17px; left: -7%; right: -7%; height: 70px; transform: rotate(-.8deg); }
  .ribbon-track { font-size: .82rem; animation-duration: 19s; }
  .ribbon-group { gap: 24px; padding-inline: 18px; }
  .mega-copy { font-size: clamp(2.65rem, 12vw, 4.3rem); }
  .section-head h2 { font-size: clamp(3.2rem, 14vw, 5.1rem); }
  .project-grid { grid-template-columns: 1fr; }
  .project-card-wide { grid-column: auto; }
  .project-card, .project-card-wide { min-height: auto; padding: 12px; }
  .project-visual, .project-card-wide .project-visual { min-height: 420px; }
  .project-copy { padding: 22px 4px 10px; }
  .poster-one { width: 210px; height: 300px; left: 7%; top: 15%; padding: 17px; }
  .poster-one strong { font-size: 3.2rem; }
  .poster-two { width: 205px; height: 290px; right: 7%; top: 20%; }
  .poster-two span { font-size: 3.7rem; }
  .brand-swatch { width: 90px; height: 90px; }
  .phone-shell { width: 220px; height: 400px; }
  .phone-shell strong { font-size: 2.2rem; }
  .product-orb { width: 190px; height: 190px; top: 68px; }
  .commerce-sticker { width: 82px; height: 82px; right: 2%; }
  .services-title h2 { font-size: clamp(3rem, 13vw, 5.3rem); }
  .service-row { grid-template-columns: 45px 1fr 58px; gap: 12px; min-height: 180px; }
  .service-row:hover { padding-inline: 8px; }
  .service-row h3 { font-size: 1.95rem; }
  .service-row p { grid-column: 2 / 4; font-size: .88rem; }
  .service-icon { width: 54px; height: 54px; font-size: 1.5rem; }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { min-height: 330px; }
  .method-card h3 { margin-top: 82px; }
  .manifesto-copy h2 { font-size: clamp(3.2rem, 13vw, 5.2rem); }
  .manifesto-word { font-size: 25vw; bottom: -2vw; }
  .faq-intro h2 { font-size: clamp(3rem, 13vw, 5rem); }
  .faq-question { font-size: 1.1rem; }
  .faq-answer p { padding-right: 0; }
  .contact-heading h2 { font-size: clamp(4.6rem, 20vw, 7.8rem); }
  .contact-form { padding: 23px 18px; box-shadow: 10px 10px 0 var(--ink); }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top p { grid-column: 1 / -1; grid-row: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { left: 12px; bottom: 12px; width: calc(100% - 24px); }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .button { width: 100%; }
}

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

/* Compatibility for legal pages retained from the production package */
.is-hidden { display: none !important; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: var(--ink); background: var(--acid); font-size: .72rem; font-weight: 950; }
.header-cta { min-height: 44px; padding-inline: 19px; color: var(--ink); background: var(--acid); }
.button-light { color: var(--ink); background: var(--white); }
.button-secondary { background: transparent; border-color: currentColor; }
.lead { max-width: 62ch; margin: 26px 0 0; color: #66645e; font-size: clamp(1rem, 1.6vw, 1.25rem); }
.legal-layout { padding-top: 80px; padding-bottom: 120px; }
.legal-nav > a { display: block; padding: 8px 0; color: #66645e; font-size: .82rem; border-bottom: 1px solid var(--line); }
.legal-nav > a:last-child { border-bottom: 0; }
.footer-brand p { max-width: 34ch; color: rgba(255,255,255,.52); font-size: .86rem; }
.company-link { color: rgba(255,255,255,.52); }

/* 2026 professional enhancement layer */
:root {
  --focus: #ffffff;
  --service-accent: var(--acid);
}

html { scroll-padding-top: calc(var(--header-height) + 24px); }
main section[id] { scroll-margin-top: calc(var(--header-height) + 22px); }
a, button, input, select, textarea { outline-offset: 4px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus);
  box-shadow: 0 0 0 6px rgba(139, 92, 246, .42);
}
.contact-section a:focus-visible,
.contact-section button:focus-visible,
.contact-section input:focus-visible,
.contact-section select:focus-visible,
.contact-section textarea:focus-visible,
.legal-content a:focus-visible { --focus: var(--ink); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2200;
  height: 3px;
  pointer-events: none;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--acid), var(--violet), var(--coral));
  will-change: transform;
}

/* Progressive enhancement: content remains visible when JavaScript is unavailable. */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translate3d(0, 44px, 0) scale(.985);
  filter: blur(5px);
  transition:
    opacity .82s var(--ease) var(--reveal-delay, 0ms),
    transform .92s var(--ease) var(--reveal-delay, 0ms),
    filter .82s var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.js .reveal.reveal-left { transform: translate3d(-44px, 0, 0) scale(.985); }
.js .reveal.reveal-right { transform: translate3d(44px, 0, 0) scale(.985); }
.js .reveal.reveal-scale { transform: translate3d(0, 20px, 0) scale(.92); }
.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-lift: 0px;
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--tilt-lift));
  transform-style: preserve-3d;
  will-change: transform;
}
.js .reveal[data-tilt] {
  transform: translate3d(0, 44px, 0) scale(.985) perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}
.js .reveal.is-visible[data-tilt] {
  transform: translate3d(0, 0, 0) scale(1) perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--tilt-lift));
}

.parallax-layer { will-change: transform; transform: translate3d(0, var(--parallax-y, 0), 0); }

/* Clear entity summary for users and generative search systems */
.entity-section {
  padding: 0 0 clamp(92px, 10vw, 150px);
  background: var(--paper);
}
.entity-panel {
  display: grid;
  grid-template-columns: .72fr 1fr 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .46);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(10, 10, 13, .06);
}
.entity-heading,
.entity-card { padding: clamp(26px, 3vw, 42px); }
.entity-heading { background: var(--ink); color: var(--white); }
.entity-heading span { display: block; margin-bottom: 42px; color: var(--acid); font-size: .72rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.entity-heading h2 { margin: 0; font-size: clamp(2rem, 3.5vw, 4.2rem); line-height: .9; letter-spacing: -.06em; }
.entity-card { border-left: 1px solid var(--line); }
.entity-card strong { display: block; margin-bottom: 18px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.entity-card p { margin: 0; color: #5b5a54; font-size: .98rem; }
.entity-card a { display: inline-flex; margin-top: 20px; border-bottom: 1px solid currentColor; font-weight: 800; }

/* Service list is now fully clickable and keyboard accessible */
.service-row { color: inherit; text-decoration: none; }
.service-row:focus-visible { outline-color: var(--acid); }
.service-row .service-icon { position: relative; overflow: hidden; }
.service-row .service-icon::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(120deg, transparent 38%, rgba(255,255,255,.75), transparent 62%);
  transform: translateX(-120%) rotate(12deg);
  transition: transform .65s var(--ease);
}
.service-row:hover .service-icon::after,
.service-row:focus-visible .service-icon::after { transform: translateX(120%) rotate(12deg); }
.service-row:focus-visible { padding-inline: 22px; background: rgba(255,255,255,.05); }

/* Service detail system */
.service-detail-page { background: var(--paper); }
.service-detail-page .site-header { color: var(--white); }
.service-detail-page .brand-logo { width: 42px; height: 42px; }
.service-hero {
  --service-accent: var(--acid);
  min-height: min(940px, 100svh);
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 72px) 0 90px;
  color: var(--white);
  background-color: var(--ink);
  background:
    radial-gradient(circle at 80% 25%, color-mix(in srgb, var(--service-accent) 26%, transparent), transparent 30rem),
    radial-gradient(circle at 15% 100%, rgba(63,102,255,.18), transparent 34rem),
    var(--ink);
  overflow: hidden;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 95%);
}
.service-hero-brand { --service-accent: var(--acid); }
.service-hero-web { --service-accent: #54d9ff; }
.service-hero-content { --service-accent: var(--coral); }
.service-hero-performance { --service-accent: #b7ff4a; }
.service-hero-automation { --service-accent: #b998ff; }
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .78fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
}
.service-hero-copy { position: relative; z-index: 4; }
.service-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: rgba(255,255,255,.56);
  font-size: .76rem;
  font-weight: 780;
  letter-spacing: .05em;
  transition: color .2s ease, transform .25s var(--ease);
}
.service-back:hover { color: var(--service-accent); transform: translateX(-4px); }
.service-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: rgba(255,255,255,.42); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-breadcrumb b { color: var(--service-accent); }
.service-hero h1 {
  max-width: 10.8ch;
  margin: 0;
  font-size: clamp(4rem, 7.5vw, 8.7rem);
  line-height: .84;
  letter-spacing: -.075em;
}
.service-title-line { display: block; }
.service-accent { max-width: 28ch; margin: 34px 0 14px; color: var(--service-accent); font-size: clamp(1.15rem, 2vw, 1.75rem); font-weight: 780; letter-spacing: -.03em; }
.service-lead { max-width: 62ch; margin: 0; color: rgba(255,255,255,.63); font-size: clamp(1rem, 1.35vw, 1.2rem); }
.service-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 36px; }
.service-hero-art { min-height: 560px; display: grid; place-items: center; position: relative; z-index: 3; }
.service-visual {
  width: min(100%, 520px);
  aspect-ratio: 1;
  position: relative;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 38px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 55px 120px rgba(0,0,0,.45);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transform-style: preserve-3d;
}
.service-visual::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 29px; pointer-events: none; }
.service-orbit { position: absolute; z-index: 1; border: 1px solid color-mix(in srgb, var(--service-accent) 38%, transparent); border-radius: 50%; pointer-events: none; }
.service-orbit.orbit-one { width: 620px; height: 620px; right: -210px; top: 10%; }
.service-orbit.orbit-two { width: 340px; height: 340px; left: -160px; bottom: -140px; }

/* Brand visual */
.service-visual-brand { background: linear-gradient(145deg, rgba(202,255,53,.14), rgba(139,92,246,.2) 60%, rgba(255,255,255,.04)); }
.sv-poster { position: absolute; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; box-shadow: 0 28px 60px rgba(0,0,0,.28); }
.sv-poster-a { width: 55%; height: 67%; left: 10%; top: 14%; color: var(--ink); background: var(--acid); font-size: clamp(2.2rem, 4vw, 4.4rem); font-weight: 930; line-height: .78; letter-spacing: -.07em; transform: rotate(-7deg) translateZ(45px); }
.sv-poster-a em { font-weight: 440; }
.sv-poster-b { width: 38%; height: 48%; right: 8%; bottom: 9%; color: var(--white); background: #43298e; transform: rotate(8deg) translateZ(75px); }
.sv-poster-b span { font-size: .64rem; letter-spacing: .15em; }
.sv-poster-b strong { font-size: 4.6rem; line-height: .8; }
.sv-orbit { position: absolute; width: 72%; height: 72%; right: -15%; top: -12%; border: 2px solid rgba(255,255,255,.22); border-radius: 50%; animation: service-spin 18s linear infinite; }

/* Web visual */
.service-visual-web { background: linear-gradient(145deg, rgba(63,102,255,.28), rgba(84,217,255,.1) 55%, rgba(255,255,255,.03)); }
.sv-browser { position: absolute; inset: 12% 8% 16%; border-radius: 23px; background: #f5f3eb; color: var(--ink); box-shadow: 0 35px 70px rgba(0,0,0,.32); transform: rotate(-4deg) translateZ(35px); overflow: hidden; }
.sv-browser-bar { height: 42px; display: flex; gap: 7px; align-items: center; padding: 0 15px; border-bottom: 1px solid rgba(10,10,13,.12); }
.sv-browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); opacity: .25; }
.sv-browser-grid { height: calc(100% - 42px); display: flex; flex-direction: column; justify-content: space-between; padding: 28px; background-image: linear-gradient(rgba(10,10,13,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(10,10,13,.08) 1px, transparent 1px); background-size: 34px 34px; }
.sv-browser-grid strong { max-width: 8ch; font-size: clamp(2.4rem, 4.5vw, 4.8rem); line-height: .8; letter-spacing: -.07em; }
.sv-browser-grid span { align-self: flex-end; padding: 8px 12px; color: var(--white); background: var(--blue); border-radius: 999px; font-size: .62rem; font-weight: 850; letter-spacing: .1em; }
.sv-mobile-card { position: absolute; right: 2%; bottom: 5%; width: 34%; aspect-ratio: .65; display: flex; align-items: flex-end; padding: 18px; border-radius: 24px; color: var(--ink); background: var(--acid); font-weight: 900; line-height: .95; transform: rotate(8deg) translateZ(85px); box-shadow: 0 28px 55px rgba(0,0,0,.28); }

/* Content visual */
.service-visual-content { background: linear-gradient(145deg, rgba(255,95,56,.22), rgba(139,92,246,.18) 58%, rgba(255,255,255,.04)); }
.sv-frame { position: absolute; display: grid; place-items: end start; padding: 20px; border-radius: 22px; color: var(--white); font-size: clamp(1.8rem, 4vw, 4.1rem); font-weight: 930; line-height: .85; letter-spacing: -.06em; box-shadow: 0 26px 55px rgba(0,0,0,.3); }
.sv-frame-one { width: 46%; height: 58%; left: 8%; top: 9%; background: var(--coral); transform: rotate(-8deg) translateZ(35px); }
.sv-frame-two { width: 44%; height: 53%; right: 7%; top: 19%; color: var(--ink); background: var(--acid); transform: rotate(7deg) translateZ(55px); }
.sv-frame-three { width: 48%; height: 32%; left: 24%; bottom: 7%; background: #39257b; transform: rotate(-2deg) translateZ(90px); }
.sv-content-ring { position: absolute; width: 75%; height: 75%; right: -22%; bottom: -24%; border: 2px solid rgba(255,255,255,.24); border-radius: 50%; animation: service-spin 20s linear infinite reverse; }

/* Performance visual */
.service-visual-performance { display: flex; align-items: flex-end; gap: 18px; padding: 10% 9%; background: linear-gradient(145deg, rgba(202,255,53,.15), rgba(63,102,255,.22) 58%, rgba(255,255,255,.03)); }
.sv-chart { flex: 1; height: 68%; display: flex; align-items: end; gap: 9px; padding: 18px; border-radius: 23px; background: rgba(10,10,13,.62); transform: translateZ(35px); }
.sv-chart i { flex: 1; height: var(--v); border-radius: 999px 999px 8px 8px; background: linear-gradient(to top, var(--violet), var(--acid)); box-shadow: 0 0 20px rgba(202,255,53,.2); transform-origin: bottom; animation: chart-rise 1.2s var(--ease) both; }
.sv-chart i:nth-child(2) { animation-delay: .08s; }
.sv-chart i:nth-child(3) { animation-delay: .16s; }
.sv-chart i:nth-child(4) { animation-delay: .24s; }
.sv-chart i:nth-child(5) { animation-delay: .32s; }
.sv-metric { width: 40%; min-height: 52%; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; border-radius: 23px; color: var(--ink); background: var(--acid); transform: translateZ(65px) rotate(3deg); }
.sv-metric small { font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.sv-metric strong { font-size: 5rem; line-height: .7; }
.sv-metric span { font-size: .78rem; font-weight: 800; }
.sv-performance-ring { position: absolute; width: 340px; height: 340px; right: -130px; top: -130px; border: 35px solid rgba(255,255,255,.08); border-radius: 50%; }

/* Automation visual */
.service-visual-automation { background: radial-gradient(circle at center, rgba(139,92,246,.42), transparent 35%), linear-gradient(145deg, rgba(139,92,246,.18), rgba(63,102,255,.16)); }
.service-visual-automation svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(255,255,255,.3); stroke-width: 1.5; stroke-dasharray: 8 10; animation: dash-flow 13s linear infinite; }
.sv-node, .sv-core { position: absolute; z-index: 2; display: grid; place-items: center; border-radius: 50%; font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.sv-node { width: 88px; height: 88px; color: var(--white); border: 1px solid rgba(255,255,255,.24); background: rgba(10,10,13,.78); box-shadow: 0 18px 45px rgba(0,0,0,.3); }
.node-a { left: 9%; top: 10%; }
.node-b { right: 9%; top: 10%; color: var(--ink); background: var(--acid); }
.node-c { left: 9%; bottom: 10%; }
.node-d { right: 9%; bottom: 10%; }
.sv-core { width: 150px; height: 150px; left: 50%; top: 50%; transform: translate(-50%, -50%) translateZ(65px); color: var(--ink); background: #b998ff; font-size: 1.2rem; box-shadow: 0 0 0 24px rgba(185,152,255,.09), 0 25px 65px rgba(0,0,0,.4); }

@keyframes service-spin { to { transform: rotate(360deg); } }
@keyframes chart-rise { from { transform: scaleY(.05); opacity: .2; } }
@keyframes dash-flow { to { stroke-dashoffset: -180; } }

.section-3d { perspective: 1600px; }
.service-overview { background: var(--paper); }
.service-overview-grid { display: grid; grid-template-columns: .28fr 1.15fr .57fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.service-overview-copy h2 { max-width: 14ch; margin: 0 0 32px; font-size: clamp(3.2rem, 6.2vw, 7.2rem); line-height: .88; letter-spacing: -.07em; }
.service-overview-copy p { max-width: 62ch; color: #575650; font-size: clamp(1rem, 1.25vw, 1.13rem); }
.service-outcomes { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 24px 65px rgba(10,10,13,.07); }
.service-outcomes > span { display: block; margin-bottom: 20px; color: #66645e; font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.service-outcomes ul { margin: 0; padding: 0; list-style: none; }
.service-outcomes li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 14px 0; border-top: 1px solid var(--line); font-weight: 730; }
.service-outcomes li span { color: var(--violet); font-size: .68rem; }

.service-includes { color: var(--white); background: var(--ink); overflow: hidden; }
.service-includes::before { content: ""; position: absolute; width: 760px; height: 760px; left: -300px; top: 10%; border-radius: 50%; background: var(--violet); filter: blur(210px); opacity: .14; }
.service-includes .section-head p,
.service-use .section-head p { color: rgba(255,255,255,.55); }
.detail-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.detail-card { min-height: 335px; padding: 28px; position: relative; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.045); overflow: hidden; transition: transform .38s var(--ease), background .3s ease, border-color .3s ease; }
.detail-card::before { content: ""; position: absolute; inset: auto -35% -55% 35%; height: 210px; border-radius: 50%; background: var(--violet); filter: blur(80px); opacity: 0; transition: opacity .35s ease; }
.detail-card:hover { transform: translateY(-10px) rotateX(2deg); border-color: rgba(202,255,53,.42); background: rgba(255,255,255,.075); }
.detail-card:hover::before { opacity: .22; }
.detail-card > span { color: var(--acid); font-size: .7rem; font-weight: 850; letter-spacing: .12em; }
.detail-card h3 { position: relative; margin: 105px 0 16px; font-size: clamp(1.55rem, 2.4vw, 2.55rem); line-height: .95; letter-spacing: -.045em; }
.detail-card p { position: relative; margin: 0; color: rgba(255,255,255,.54); }

.service-process { background: var(--paper-2); }
.service-step-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.service-step { min-height: 380px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.42); transition: transform .35s var(--ease), background .3s ease; }
.service-step:hover { transform: translateY(-9px); background: var(--white); }
.service-step-top { display: flex; justify-content: space-between; align-items: center; }
.service-step-top span { display: grid; place-items: center; width: 44px; height: 44px; color: var(--white); background: var(--ink); border-radius: 50%; font-size: .7rem; font-weight: 900; }
.service-step-top i { color: #78766f; font-size: .62rem; font-style: normal; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.service-step h3 { margin: 100px 0 16px; font-size: 2rem; letter-spacing: -.05em; }
.service-step p { color: #61605a; }

.service-use { color: var(--white); background: #352276; overflow: hidden; }
.service-use::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(rgba(255,255,255,.8) 1px, transparent 1px); background-size: 22px 22px; }
.use-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.use-card { min-height: 260px; padding: 25px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(255,255,255,.055); transition: transform .34s var(--ease), background .3s ease; }
.use-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.1); }
.use-card > span { color: var(--acid); font-size: .69rem; font-weight: 850; }
.use-card h3 { margin: 80px 0 13px; font-size: 1.75rem; line-height: .96; letter-spacing: -.045em; }
.use-card p { margin: 0; color: rgba(255,255,255,.58); }
.capability-cloud { margin-top: 50px; padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(10,10,13,.16); }
.capability-cloud > div { display: flex; flex-wrap: wrap; gap: 9px; }
.capability-cloud > div span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.72); font-size: .76rem; }

.service-faq { background: var(--paper); }
.related-section { background: var(--paper-2); }
.related-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
.related-service { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 18px; min-height: 118px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.46); transition: transform .3s var(--ease), background .25s ease; }
.related-service:hover { transform: translateY(-5px); background: var(--white); }
.related-service span { color: var(--violet); font-size: .7rem; font-weight: 850; }
.related-service strong { font-size: clamp(1.15rem, 2vw, 1.65rem); letter-spacing: -.03em; }
.related-service i { display: grid; place-items: center; width: 44px; height: 44px; color: var(--ink); background: var(--acid); border-radius: 50%; font-style: normal; transition: transform .3s var(--ease); }
.related-service:hover i { transform: rotate(12deg) scale(1.05); }
.service-cta { padding: clamp(80px, 10vw, 145px) 0; color: var(--white); background: var(--ink); }
.service-cta-inner { display: grid; grid-template-columns: .45fr 1fr auto; gap: 34px; align-items: center; }
.service-cta-inner > span { color: rgba(255,255,255,.54); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.service-cta-inner h2 { margin: 0; font-size: clamp(2.8rem, 5.7vw, 6.4rem); line-height: .88; letter-spacing: -.065em; }

@media (max-width: 1120px) {
  .entity-panel { grid-template-columns: 1fr 1fr; }
  .entity-heading { grid-row: span 2; }
  .entity-card:nth-child(3) { border-top: 1px solid var(--line); }
  .service-hero-grid { grid-template-columns: 1fr 420px; }
  .service-overview-grid { grid-template-columns: .2fr 1fr; }
  .service-outcomes { grid-column: 2; }
  .detail-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-step-grid, .use-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .entity-panel { grid-template-columns: 1fr; }
  .entity-heading { grid-row: auto; }
  .entity-card { border-left: 0; border-top: 1px solid var(--line); }
  .service-hero { min-height: auto; padding-top: calc(var(--header-height) + 60px); }
  .service-hero-grid { grid-template-columns: 1fr; }
  .service-hero h1 { max-width: 11ch; }
  .service-hero-art { min-height: 520px; }
  .service-visual { width: min(78vw, 500px); }
  .service-overview-grid { grid-template-columns: 1fr; }
  .service-outcomes { grid-column: auto; }
  .service-cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .entity-section { padding-bottom: 82px; }
  .entity-heading, .entity-card { padding: 25px 22px; }
  .service-hero h1 { font-size: clamp(3.7rem, 16vw, 5.7rem); }
  .service-hero-actions { align-items: flex-start; flex-direction: column; }
  .service-hero-art { min-height: 430px; }
  .service-visual { width: 89vw; border-radius: 28px; }
  .service-overview-copy h2 { font-size: clamp(3rem, 13vw, 5rem); }
  .detail-card-grid, .service-step-grid, .use-card-grid, .related-grid { grid-template-columns: 1fr; }
  .detail-card { min-height: 290px; }
  .detail-card h3 { margin-top: 80px; }
  .service-step { min-height: 320px; }
  .service-step h3 { margin-top: 75px; }
  .use-card { min-height: 230px; }
  .use-card h3 { margin-top: 60px; }
  .related-service { grid-template-columns: 38px 1fr auto; padding: 18px; }
  .service-cta-inner h2 { font-size: clamp(3rem, 13vw, 5.1rem); }
  .sv-node { width: 68px; height: 68px; }
  .sv-core { width: 120px; height: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .js .reveal, .js .reveal.reveal-left, .js .reveal.reveal-right, .js .reveal.reveal-scale,
  .js .reveal[data-tilt], .js .reveal.is-visible[data-tilt] { opacity: 1; transform: none; filter: none; }
  [data-tilt], .parallax-layer { transform: none !important; }
  .sv-orbit, .sv-content-ring, .service-visual-automation svg, .sv-chart i { animation: none !important; }
}
