:root {
  --bg: #100e13;
  --ink: #f6f4eb;
  --line: #393440;
  --muted: #a19cae;
  --acid: #e8fb39;
  --orange: #f4a41e;
  --red: #ef4328;
  --panel: #17141b;
  --cream: #f0edcf;
  --sans: 'Manrope', sans-serif;
  --display: 'Syne', sans-serif;
  --mono: 'DM Mono', monospace;
  --shadow: 0 22px 80px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); overflow-x: hidden; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: var(--acid); color: var(--bg); }
button, a, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
[hidden] { display: none !important; }
.oliek-app { overflow: hidden; }
.wrap { width: min(calc(100% - 48px), clamp(1180px, 60vw, 2200px)); margin: 0 auto; }

.call-float { position: fixed; right: 24px; bottom: 96px; z-index: 40; width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, var(--acid), #f4a61e 55%, var(--red)); box-shadow: 0 14px 34px rgba(244, 166, 30, .35); transition: transform .25s, box-shadow .25s; }
.call-float svg { width: 24px; height: 24px; display: block; }
.call-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 18px 40px rgba(244, 166, 30, .45); }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 40; width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #25d366; box-shadow: 0 14px 34px rgba(37, 211, 102, .35); transition: transform .25s, box-shadow .25s; animation: whatsapp-pulse 2.6s ease-in-out infinite; }
.whatsapp-float svg { width: 28px; height: 28px; display: block; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.06); background: #22c05e; box-shadow: 0 18px 40px rgba(37, 211, 102, .45); }
@keyframes whatsapp-pulse { 0%, 100% { box-shadow: 0 14px 34px rgba(37, 211, 102, .35), 0 0 0 0 rgba(37, 211, 102, .35); } 50% { box-shadow: 0 14px 34px rgba(37, 211, 102, .35), 0 0 0 10px rgba(37, 211, 102, 0); } }
@media (prefers-reduced-motion: reduce) { .whatsapp-float { animation: none; } }
@media (max-width: 480px) { .call-float { right: 16px; bottom: 78px; width: 52px; height: 52px; } .call-float svg { width: 21px; height: 21px; } .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; } .whatsapp-float svg { width: 25px; height: 25px; } }

.preloader { position: fixed; inset: 0; z-index: 999; display: flex; align-items: center; justify-content: center; background: var(--bg); transition: opacity .5s ease, visibility .5s ease; }
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
html.no-preload .preloader { display: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.preloader-wordmark { animation: preloader-pulse 1.4s ease-in-out infinite; }
.preloader-bar { width: 120px; height: 2px; background: #2b2732; border-radius: 999px; overflow: hidden; }
.preloader-bar span { display: block; width: 40%; height: 100%; background: linear-gradient(90deg, var(--acid), var(--orange) 70%, var(--red)); border-radius: 999px; animation: preloader-slide 1.1s ease-in-out infinite; }
@keyframes preloader-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: .75; } }
@keyframes preloader-slide { 0% { transform: translateX(-110%); } 50% { transform: translateX(160%); } 100% { transform: translateX(160%); } }
@media (prefers-reduced-motion: reduce) { .preloader-wordmark, .preloader-bar span { animation: none; } }
.mono { font-family: var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.display { font-family: var(--display); letter-spacing: -.07em; }
.muted { color: #655e34; }

.topbar { position: fixed; inset: 0 0 auto; z-index: 20; padding: 28px 0; }
.topbar::before { content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0; pointer-events: none; border-bottom: 1px solid transparent; transition: opacity .35s ease; }
.topbar.is-scrolled::before { opacity: 1; background: rgba(16, 14, 19, .96); border-bottom-color: rgba(255, 255, 255, .06); box-shadow: 0 12px 40px rgba(0, 0, 0, .28); }
.topbar-inner { position: relative; z-index: 16; display: flex; align-items: center; justify-content: space-between; }
.wordmark { display: flex; gap: 10px; align-items: center; color: var(--ink); font-size: 19px; font-weight: 800; letter-spacing: -.07em; }
.mark { width: 38px; height: 38px; display: inline-block; object-fit: contain; }
.topbar .mark { transform-origin: 50% 50%; will-change: transform; }
.desktop-nav { display: flex; align-items: center; gap: 22px; }
.desktop-nav a { font-size: 12px; color: var(--ink); transition: color .25s, transform .25s; }
.desktop-nav a:hover { color: var(--acid); transform: translateY(-2px); }
.nav-cta { color: var(--bg) !important; background: var(--acid); padding: 12px 17px; border-radius: 999px; font-weight: 800; }
.nav-cta:hover { color: var(--bg) !important; transform: translateY(-2px) scale(1.03) !important; }
.menu-toggle { display: none; position: relative; width: 46px; height: 46px; color: var(--ink); background: rgba(255, 255, 255, .02); border: 1px solid #47424e; border-radius: 50%; padding: 0; transition: border-color .25s, background .25s, transform .25s; }
.menu-toggle:hover { border-color: var(--acid); transform: translateY(-2px); }
.menu-icon { position: absolute; top: 50%; left: 50%; width: 20px; height: 2px; transform: translate(-50%, -50%); background: transparent; }
.menu-icon::before, .menu-icon::after { content: ''; display: block; position: absolute; left: 0; height: 2px; border-radius: 2px; transition: transform .3s ease, width .3s ease, top .3s ease, background .3s ease; }
.menu-icon::before { top: -5px; width: 11px; background: var(--acid); }
.menu-icon::after { top: 5px; width: 20px; background: var(--ink); }
.menu-toggle[aria-expanded='true'] { border-color: var(--acid); }
.menu-toggle[aria-expanded='true'] .menu-icon::before { top: 0; width: 20px; background: var(--ink); transform: rotate(45deg); }
.menu-toggle[aria-expanded='true'] .menu-icon::after { top: 0; width: 20px; transform: rotate(-45deg); }
.mobile-nav { position: fixed; inset: 0; z-index: 15; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 12px; padding: 90px 24px 24px; background: rgba(16, 14, 19, .6); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3); border: 0; box-shadow: none; overflow-x: hidden; overflow-y: auto; counter-reset: navcount; }
.mobile-nav a { position: relative; display: flex; align-items: center; gap: 12px; width: min(80vw, 320px); padding: 16px 18px; background: var(--panel); border: 1px solid #322d3b; border-radius: 16px; font-family: var(--display); font-size: 1.15rem; font-weight: 700; letter-spacing: -.03em; color: var(--ink); box-shadow: 0 16px 36px rgba(0, 0, 0, .32); opacity: 0; transform: translateX(38px); animation: mobile-nav-slide .45s cubic-bezier(.16, 1, .3, 1) forwards; }
.mobile-nav a:not(:last-child)::before { counter-increment: navcount; content: counter(navcount, decimal-leading-zero); flex: none; display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(232, 251, 57, .12); color: var(--acid); font-family: var(--mono); font-size: 10px; }
.mobile-nav a:not(:last-child)::after { content: '↗'; margin-left: auto; color: var(--muted); font-size: 15px; }
.mobile-nav a > span { margin-left: auto; }
.mobile-nav a:nth-child(1) { animation-delay: .04s; } .mobile-nav a:nth-child(2) { animation-delay: .09s; } .mobile-nav a:nth-child(3) { animation-delay: .14s; } .mobile-nav a:nth-child(4) { animation-delay: .19s; } .mobile-nav a:nth-child(5) { animation-delay: .24s; } .mobile-nav a:nth-child(6) { animation-delay: .29s; }
.mobile-nav a:last-child { border: 0; color: var(--bg); background: linear-gradient(100deg, var(--acid), #f4a61e 70%, var(--red)); box-shadow: 0 16px 36px rgba(244, 166, 30, .25); }
body.nav-open { overflow: hidden; }
@keyframes mobile-nav-slide { to { opacity: 1; transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .mobile-nav a { animation: none; opacity: 1; transform: none; } }

#hero, #about, #services, #work, #process, #studio, #contact { scroll-margin-top: 100px; }

.section-dots { position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 25; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.section-dots a { position: relative; display: block; width: 7px; height: 7px; border-radius: 50%; background: rgba(246, 244, 235, .28); transition: background .3s ease, transform .3s ease; }
.section-dots a:hover, .section-dots a:focus-visible { background: rgba(246, 244, 235, .6); transform: scale(1.2); }
.section-dots a.is-active { background: var(--acid); transform: scale(1.35); box-shadow: 0 0 10px rgba(232, 251, 57, .55); }
.section-dots a::before { content: attr(data-label); position: absolute; right: 18px; top: 50%; transform: translateY(-50%); white-space: nowrap; font-family: var(--mono); font-size: 10px; letter-spacing: .04em; color: var(--ink); background: var(--panel); border: 1px solid #322d3b; padding: 5px 10px; border-radius: 999px; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.section-dots a:hover::before, .section-dots a:focus-visible::before { opacity: 1; transform: translateY(-50%) translateX(-4px); }
@media (max-width: 900px), (max-height: 560px) { .section-dots { display: none; } }
@media (prefers-reduced-motion: reduce) { .section-dots a, .section-dots a::before { transition: none; } }

.hero { position: relative; isolation: isolate; min-height: 770px; display: flex; align-items: center; padding: clamp(150px, 7vw, 230px) 0 clamp(110px, 5vw, 170px); background: var(--bg); }
.hero::after { content: ''; position: absolute; z-index: -3; width: 80vw; height: 90vh; top: -30vh; right: -22vw; background: radial-gradient(ellipse at 40% 45%, rgba(238, 82, 33, .22), transparent 62%); }
.fluid { position: absolute; z-index: -1; pointer-events: none; filter: saturate(1.08); }
.fluid-one { width: 690px; height: 360px; top: -120px; right: -105px; background: linear-gradient(115deg, var(--acid) 0%, #f5a11e 42%, var(--red) 91%); border-radius: 58% 42% 25% 75% / 55% 38% 62% 45%; transform: rotate(-11deg); animation: liquid-float 11s ease-in-out infinite; }
.fluid-two { width: 550px; height: 230px; bottom: -145px; left: -135px; background: linear-gradient(115deg, #f4be1d, #ef3d28 80%); border-radius: 71% 29% 63% 37% / 54% 57% 43% 46%; transform: rotate(18deg); opacity: .92; }
.fluid-three { width: 340px; height: 180px; bottom: -70px; left: 38%; background: #f6c425; border-radius: 50% 50% 18% 82% / 70% 45% 55% 30%; transform: rotate(-10deg); opacity: .94; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(4.1rem, 8.2vw, 8.6rem); line-height: .84; font-weight: 800; overflow-wrap: break-word; }
.accent { color: var(--acid); }
.hero-description { max-width: 475px; margin: 30px 0 34px; color: #b6b2bd; font-size: 16px; line-height: 1.65; }
.button-row { display: flex; align-items: center; gap: 19px; flex-wrap: wrap; }
.button-primary, .button-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 11px; border-radius: 999px; padding: 15px 22px; font-size: 13px; font-weight: 800; transition: transform .25s, background .25s, border-color .25s; }
.button-primary { color: var(--bg); background: linear-gradient(100deg, var(--acid), #f4a61e 70%, var(--red)); border: 0; box-shadow: 0 10px 30px rgba(244, 166, 30, .15); }
.button-primary:hover { transform: translateY(-4px) scale(1.02); }
.button-ghost { color: var(--ink); border: 1px solid #47424e; background: rgba(255, 255, 255, .02); }
.button-ghost:hover { border-color: var(--acid); color: var(--acid); transform: translateY(-3px); }
.hero-art { min-height: 430px; position: relative; display: flex; align-items: center; justify-content: center; perspective: 1000px; }
.art-orbit { width: 390px; height: 390px; border: 1px solid rgba(232, 251, 57, .32); border-radius: 50%; position: absolute; transform: rotate(-19deg); }
.art-orbit::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--acid); position: absolute; left: 14%; top: 7%; box-shadow: 0 0 30px var(--acid); }
.device { width: 205px; height: 397px; border: 7px solid #27232d; border-radius: 31px; position: relative; transform: rotate(7deg) rotateY(-15deg); background: #19161d; box-shadow: 28px 30px 0 rgba(0, 0, 0, .23), 0 30px 80px rgba(0, 0, 0, .5), inset 0 0 0 2px #50495a; padding: 38px 16px 18px; animation: device-float 6s ease-in-out infinite; }
.device::before { content: ''; position: absolute; background: #09090b; width: 74px; height: 17px; border-radius: 0 0 14px 14px; top: -1px; left: 58px; }
.device-screen { height: 100%; border-radius: 18px; overflow: hidden; padding: 17px 12px; background: linear-gradient(145deg, #ee9d1e, #ef4228 49%, #1b1720 49%); }
.screen-label { color: #f7f3e7; font-size: 9px; letter-spacing: .12em; }
.screen-title { margin-top: 84px; color: #f7f3e7; font: 700 25px/1 var(--display); letter-spacing: -.08em; }
.screen-lines { display: grid; gap: 6px; margin-top: 16px; }
.screen-lines i { display: block; height: 4px; width: 88%; border-radius: 3px; background: rgba(255, 255, 255, .67); }
.screen-lines i:nth-child(2) { width: 65%; } .screen-lines i:nth-child(3) { width: 76%; }
.device-floater { position: absolute; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .18); background: rgba(20, 18, 24, .76); backdrop-filter: blur(14px); border-radius: 13px; font-size: 10px; box-shadow: var(--shadow); }
.floater-top { right: 0; top: 67px; } .floater-bottom { left: 3px; bottom: 42px; }
.mini-dot { display: inline-block; width: 7px; height: 7px; background: var(--acid); border-radius: 50%; margin-right: 8px; }

.marquee { border-top: 1px solid #312d37; border-bottom: 1px solid #312d37; overflow: hidden; white-space: nowrap; padding: 19px 0; color: #a19cae; }
.marquee-track { display: inline-flex; align-items: center; gap: 31px; animation: marquee 22s linear infinite; }
.marquee-track span { font: 700 13px var(--display); letter-spacing: .02em; color: var(--ink); }
.marquee-track b { color: var(--acid); font-size: 20px; }
.section { padding: clamp(145px, 7vw, 220px) 0; position: relative; }
.section-head { display: flex; justify-content: space-between; gap: 40px; align-items: flex-end; margin-bottom: 68px; }
.section-head h2 { margin: 0; font-size: clamp(2.8rem, 6vw, 6rem); line-height: .9; max-width: 720px; overflow-wrap: break-word; }
.section-head p { max-width: 280px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
.intro-copy { font-size: clamp(1.7rem, 3.1vw, 3.2rem); line-height: 1.08; letter-spacing: -.055em; overflow-wrap: break-word; }
.intro-copy em { color: var(--acid); font-style: normal; }
.intro-detail { border-top: 1px solid #3a3541; padding-top: 20px; margin-top: 10px; color: var(--muted); font-size: 15px; line-height: 1.8; max-width: 400px; }
.intro-detail strong { color: var(--ink); }
.capabilities { background: var(--panel); }
.cap-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.cap-card { min-height: 295px; padding: 29px; border: 1px solid #393440; background: #1b1820; position: relative; overflow: hidden; transition: transform .35s, border-color .35s; }
.cap-card:hover { transform: translateY(-8px); border-color: var(--acid); }
.cap-card:nth-child(1) { grid-column: span 7; } .cap-card:nth-child(2) { grid-column: span 5; } .cap-card:nth-child(3) { grid-column: span 5; } .cap-card:nth-child(4) { grid-column: span 7; }
.cap-num { color: var(--acid); font: 11px var(--mono); } .cap-arrow { position: absolute; right: 25px; top: 25px; color: var(--muted); font-size: 21px; transition: transform .3s, color .3s; }
.cap-card:hover .cap-arrow { color: var(--acid); transform: translate(4px, -4px); }
.cap-card h3 { font: 700 clamp(1.7rem, 3vw, 3.1rem)/.93 var(--display); letter-spacing: -.06em; margin: 54px 0 14px; max-width: 360px; overflow-wrap: break-word; }
.cap-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; max-width: 330px; }
.cap-mark { position: absolute; right: 32px; bottom: 30px; width: 72px; height: 72px; border: 1px solid #514b5a; border-radius: 50%; transition: transform .35s; }
.cap-card:hover .cap-mark { transform: rotate(45deg); } .cap-mark::after { content: ''; position: absolute; inset: 20px; border-radius: 50%; background: var(--acid); }
@media (max-width: 767px) { .cap-mark { display: none; } }
.work-section { background: var(--acid); color: #17151b; }
.work-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 18px; align-items: stretch; }
.work-feature { min-height: 530px; padding: 36px; background: #211d24; color: var(--ink); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.work-feature::before { content: ''; position: absolute; width: 490px; height: 490px; right: -230px; bottom: -230px; border-radius: 50%; background: linear-gradient(140deg, var(--red), var(--orange)); }
.work-feature > * { position: relative; z-index: 1; } .work-feature h3 { font: 700 clamp(2.8rem, 5vw, 5.6rem)/.88 var(--display); letter-spacing: -.08em; max-width: 470px; margin: 65px 0 0; overflow-wrap: break-word; }
.work-feature h3 a, .work-row h4 a { color: inherit; text-decoration: none; transition: color .25s; }
.work-feature h3 a:hover, .work-feature h3 a:focus-visible, .work-row h4 a:hover, .work-row h4 a:focus-visible { color: var(--acid); }
.work-feature p.work-desc { margin: 18px 0 0; max-width: 400px; color: #cfc9d6; font-size: 13px; line-height: 1.65; }
.work-footer { display: flex; justify-content: space-between; align-items: flex-end; font-size: 12px; color: #aba5b0; } .work-year { font-family: var(--mono); }
.work-list { display: grid; gap: 18px; } .work-row { display: flex; justify-content: space-between; gap: 20px; min-height: 162px; padding: 29px 32px; background: var(--cream); border: 1px solid rgba(23, 21, 27, .15); transition: transform .3s, background .3s; }
.work-row:hover { transform: translateX(8px); background: #f6f4e6; } .work-row h4 { margin: 0 0 10px; font: 700 28px/1 var(--display); letter-spacing: -.06em; } .work-row p { margin: 0; color: #716b46; font-size: 12px; } .work-row p span { margin: 0 8px; color: var(--red); } .work-row .work-desc { margin-top: 10px; max-width: 440px; color: #524c2c; font-size: 12px; line-height: 1.6; } .work-arrow { align-self: center; font-size: 21px; transition: transform .3s; } .work-row:hover .work-arrow { transform: translate(5px, -5px); }
.process-section { background: var(--bg); } .process-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 100px; } .process-intro h2 { font: 700 clamp(3rem, 6vw, 6.3rem)/.88 var(--display); letter-spacing: -.08em; margin: 24px 0; max-width: 520px; overflow-wrap: break-word; } .process-intro p { max-width: 320px; color: var(--muted); line-height: 1.7; font-size: 14px; }
.process-list { border-top: 1px solid #3a3541; } .process-item { display: grid; grid-template-columns: 48px 1fr 26px; gap: 23px; padding: 25px 0; border-bottom: 1px solid #3a3541; align-items: start; } .process-index { color: var(--acid); font: 12px var(--mono); } .process-item h3 { margin: 0 0 9px; font: 700 22px var(--display); letter-spacing: -.04em; } .process-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 380px; } .process-item > span:last-child { color: #746e7c; transition: transform .3s, color .3s; } .process-item:hover > span:last-child { color: var(--acid); transform: rotate(45deg); }
.studio-section { background: #1b1820; } .studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; } .studio-art { min-height: 500px; position: relative; background: var(--red); overflow: hidden; } .studio-art::before { content: ''; position: absolute; width: 420px; height: 420px; left: -110px; top: -95px; border-radius: 50%; background: var(--acid); } .studio-art::after { content: ''; position: absolute; width: 240px; height: 240px; right: -36px; bottom: -55px; border-radius: 47% 53% 65% 35%; background: var(--orange); }
.studio-stamp { position: absolute; z-index: 2; inset: 50% auto auto 50%; transform: translate(-50%, -50%) rotate(-11deg); width: 178px; height: 178px; border: 1px solid #17141b; border-radius: 50%; display: grid; place-items: center; text-align: center; color: #17141b; font: 700 17px/1.03 var(--display); letter-spacing: -.07em; } .studio-stamp span { display: block; font: 10px var(--mono); letter-spacing: .08em; margin-top: 8px; }
.studio-copy h2 { font: 700 clamp(2.8rem, 5.5vw, 5.8rem)/.89 var(--display); letter-spacing: -.08em; margin: 21px 0 29px; max-width: 480px; overflow-wrap: break-word; } .studio-copy p { color: var(--muted); max-width: 430px; line-height: 1.75; font-size: 14px; } .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; border-top: 1px solid #3a3541; padding-top: 22px; } .stat strong { display: block; color: var(--acid); font: 700 28px var(--display); letter-spacing: -.06em; } .stat span { display: block; color: var(--muted); font-size: 11px; margin-top: 5px; }
.contact-section { padding: clamp(155px, 7vw, 230px) 0 clamp(110px, 5vw, 170px); background: var(--red); color: #17141a; position: relative; overflow: hidden; } .contact-section::before { content: ''; position: absolute; width: 680px; height: 680px; border-radius: 50%; border: 1px solid rgba(23, 20, 26, .25); top: -400px; right: -220px; box-shadow: 0 0 0 35px rgba(23, 20, 26, .08), 0 0 0 70px rgba(23, 20, 26, .05); } .contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 110px; position: relative; } .contact-section h2 { margin: 24px 0 25px; font: 700 clamp(3.2rem, 7vw, 7.5rem)/.83 var(--display); letter-spacing: -.09em; max-width: 520px; overflow-wrap: break-word; } .contact-section .lead { max-width: 390px; font-size: 16px; line-height: 1.6; }
.contact-form { padding: 31px; background: #f6eecf; } .field { display: grid; gap: 8px; margin-bottom: 19px; } .field label { font: 11px var(--mono); color: #6e6333; text-transform: uppercase; letter-spacing: .08em; } .field input, .field textarea { width: 100%; border: 0; border-bottom: 1px solid #c8bb8b; background: transparent; color: #17141a; padding: 9px 0; outline: 0; border-radius: 0; } .field input:focus, .field textarea:focus { border-color: var(--red); } .field textarea { min-height: 88px; resize: vertical; } .contact-form .button-primary { width: 100%; color: var(--ink); background: #17141a; box-shadow: none; } .contact-form .button-primary:hover { background: #3d3542; } .form-success { min-height: 322px; display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column; } .success-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--acid); margin-bottom: 16px; font-size: 24px; font-weight: 800; } .form-success h3 { font: 700 25px var(--display); letter-spacing: -.05em; margin: 0 0 8px; } .form-success p { color: #6e6333; font-size: 13px; margin: 0; } .send-another { margin-top: 24px; color: #17141a; border-color: #b2a675; }
.footer { padding: 28px 0 37px; background: var(--bg); border-top: 1px solid #312d37; } .footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 20px; align-items: center; color: #77717f; font-size: 11px; } .footer-bottom { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; } .footer-nav { display: flex; gap: 21px; flex-wrap: wrap; } .footer-nav a:hover { color: var(--acid); } .footer-social { display: flex; align-items: center; gap: 14px; } .footer-social a { display: inline-flex; color: #77717f; transition: color .25s, transform .25s; } .footer-social a:hover { color: var(--acid); transform: translateY(-2px); } .footer-social svg { width: 15px; height: 15px; display: block; }

/* Inner-page hero banner (About / Services / Clients / Process / Privacy / Terms / Contact) */
.page-hero { position: relative; isolation: isolate; padding: clamp(158px, 7.5vw, 240px) 0 clamp(84px, 4vw, 130px); background: var(--bg); overflow: hidden; }
.hero::before, .page-hero::before { content: ''; position: absolute; inset: 0; z-index: -2; opacity: .2; background-image: radial-gradient(#a19cae 1px, transparent 1px); background-size: 32px 32px; mask-image: radial-gradient(ellipse 60% 100% at 30% 0%, #000, transparent 75%); }
.page-hero .fluid-one { width: 480px; height: 250px; top: -160px; right: -140px; opacity: .85; }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero-inner h1 { margin: 22px 0 0; font: 700 clamp(2.7rem, 6vw, 5.4rem)/.92 var(--display); letter-spacing: -.07em; overflow-wrap: break-word; }
.page-hero-inner p { max-width: 520px; margin: 26px 0 0; color: #b6b2bd; font-size: 15px; line-height: 1.7; }

/* Service cards (Services page) */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-card { min-height: 250px; padding: 29px; border: 1px solid #393440; background: #1b1820; position: relative; overflow: hidden; transition: transform .35s, border-color .35s; }
.service-card:hover { transform: translateY(-8px); border-color: var(--acid); }
.service-card .cap-num { color: var(--acid); font: 11px var(--mono); }
.service-card .cap-arrow { position: absolute; right: 25px; top: 25px; color: var(--muted); font-size: 21px; transition: transform .3s, color .3s; }
.service-card:hover .cap-arrow { color: var(--acid); transform: translate(4px, -4px); }
.service-card h3 { font: 700 clamp(1.4rem, 2.4vw, 1.9rem)/1.05 var(--display); letter-spacing: -.05em; margin: 30px 0 12px; max-width: 380px; overflow-wrap: break-word; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 380px; }
.cap-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; padding-top: 0; }
.cap-tags span { font: 10px var(--mono); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); border: 1px solid #393440; border-radius: 999px; padding: 6px 11px; }

/* Values grid reuses .cap-grid / .cap-card from home; four-column stats variant */
.stats--four { grid-template-columns: repeat(4, 1fr); }

/* Callout / quote block (Process page) */
.callout { margin-top: 64px; padding: 40px; border: 1px solid #393440; background: var(--panel); }
.callout p { font: 700 clamp(1.3rem, 2.6vw, 2rem)/1.3 var(--display); letter-spacing: -.03em; margin: 0 0 16px; color: var(--ink); overflow-wrap: break-word; }
.callout p em { color: var(--acid); font-style: normal; }
.callout span { font: 11px var(--mono); color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* CTA banner (used at the foot of Services / About / Privacy / Terms pages) */
.cta-banner { padding: clamp(100px, 5vw, 150px) 0; background: var(--panel); text-align: center; border-top: 1px solid #312d37; }
.cta-banner h2 { margin: 0 0 32px; font: 700 clamp(2.2rem, 4.6vw, 3.9rem)/1.02 var(--display); letter-spacing: -.05em; overflow-wrap: break-word; }
.cta-banner .button-primary { display: inline-flex; }
.cta-banner .button-row { justify-content: center; }

/* Legal pages (Privacy / Terms) */
.legal-wrap { max-width: 760px; }
.legal-copy h2 { margin: 0 0 14px; font: 700 clamp(1.3rem, 2.2vw, 1.7rem)/1.15 var(--display); letter-spacing: -.03em; color: var(--ink); overflow-wrap: break-word; }
.legal-copy h2:not(:first-child) { margin-top: 48px; }
.legal-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.legal-copy a { color: var(--acid); text-decoration: underline; text-decoration-color: rgba(232, 251, 57, .35); }
.legal-copy a:hover { text-decoration-color: var(--acid); }

/* Contact details list within the red contact section */
.contact-details { margin-top: 40px; display: grid; gap: 15px; border-top: 1px solid rgba(23, 20, 26, .2); padding-top: 24px; max-width: 390px; }
.contact-details div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font-size: 13px; }
.contact-details span:first-child { font: 11px var(--mono); color: #6e6333; text-transform: uppercase; letter-spacing: .07em; }
.contact-details a, .contact-details span:last-child { color: #17141a; font-weight: 700; }
.contact-details a { text-decoration: underline; text-decoration-color: rgba(23, 20, 26, .35); }
.contact-details a:hover { text-decoration-color: #17141a; }

.section-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font: 11px var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--acid); transition: gap .25s; }
.section-link:hover { gap: 10px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; } .reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes liquid-float { 0%, 100% { transform: rotate(-11deg) translate(0, 0) scale(1); } 50% { transform: rotate(-7deg) translate(-20px, 20px) scale(1.04); } }
@keyframes device-float { 0%, 100% { transform: rotate(7deg) rotateY(-15deg) translateY(0); } 50% { transform: rotate(5deg) rotateY(-15deg) translateY(-12px); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } .fluid-one, .device, .marquee-track { animation: none; } }
@media (max-width: 1080px) {
  .wrap { width: min(100% - 40px, 920px); } .hero-grid { gap: 36px; } .cap-card:nth-child(1), .cap-card:nth-child(4) { grid-column: span 12; } .cap-card:nth-child(2), .cap-card:nth-child(3) { grid-column: span 6; } .work-grid { grid-template-columns: 1fr; } .work-feature { min-height: 400px; } .process-grid { gap: 60px; } .studio-grid { gap: 60px; } .contact-grid { gap: 60px; }
}
@media (max-width: 800px) {
  .wrap { width: min(100% - 36px, 620px); } .topbar { padding: 19px 0; } .desktop-nav { display: none; } .menu-toggle { display: block; } .intro-grid, .process-grid, .studio-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; } .section { padding: 91px 0; } .section-head { display: block; margin-bottom: 43px; } .section-head h2 { margin-bottom: 22px; } .section-head p { max-width: 330px; } .cap-grid, .work-grid, .service-grid { grid-template-columns: 1fr; } .cap-card:nth-child(n) { grid-column: auto; min-height: 260px; } .cap-card h3 { margin-top: 56px; } .work-feature { min-height: 430px; padding: 28px; } .work-row { min-height: 130px; padding: 23px; } .work-row h4 { font-size: 22px; } .process-grid, .studio-grid { gap: 46px; } .studio-art { min-height: 370px; } .contact-grid { gap: 45px; } .contact-section { padding: 100px 0 82px; } .footer-inner { align-items: flex-start; flex-direction: column; } .footer-bottom { width: 100%; } .footer-nav { flex-wrap: wrap; } .stats { margin-top: 38px; } .stats--four { grid-template-columns: repeat(2, 1fr); row-gap: 30px; } .page-hero { padding: 118px 0 60px; } .legal-copy h2:not(:first-child) { margin-top: 36px; }
}
@media (max-width: 420px) { .button-row { align-items: stretch; flex-direction: column; } .button-primary, .button-ghost { width: 100%; } .contact-form { padding: 23px; } .footer-bottom { gap: 16px; } .footer-social { gap: 18px; } .cap-card, .service-card { padding: 22px; } }
@media (max-width: 340px) {
  .wrap { width: min(100% - 24px, 100%); }
}

/* ==========================================================================
   Mobile hero fix — scoped to the homepage hero (.hero) only.
   Restores a full-width, natural single-column layout on small screens.
   Desktop/tablet (>768px) hero appearance is untouched.
   ========================================================================== */
@media (max-width: 768px) {
  .hero {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    min-height: 0;
    padding: 118px clamp(16px, 5vw, 32px) 56px;
    align-items: flex-start;
  }
  .hero .hero-grid {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-copy { width: 100%; max-width: 100%; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 11vw, 72px);
    line-height: .97;
    overflow-wrap: break-word;
  }
  .hero-description {
    max-width: min(90%, 480px);
    font-size: 15px;
    margin: 22px 0 30px;
  }
  .hero .button-row {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .hero .button-primary,
  .hero .button-ghost {
    width: min(100%, 360px);
    min-height: 52px;
  }
  .hero-art {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin-top: 0;
  }
  .device { transform: scale(.86) rotate(7deg) rotateY(-15deg); }
  .art-orbit { width: min(78vw, 320px); height: min(78vw, 320px); }
  .fluid-one { width: min(120vw, 470px); height: 250px; right: -40vw; }
  .floater-top { right: 2px; top: 40px; }
  .floater-bottom { bottom: 21px; left: 0; }
}

@media (max-width: 430px) {
  .device { transform: scale(.76) rotate(7deg) rotateY(-15deg); }
  .art-orbit { width: min(74vw, 270px); height: min(74vw, 270px); }
}

@media (max-width: 340px) {
  .hero h1 { font-size: clamp(38px, 12vw, 56px); }
  .device { transform: scale(.68) rotate(7deg) rotateY(-15deg); }
}

/* ==========================================================================
   Large-screen scaling — desktop monitors, 2K/4K, ultrawide/curved,
   Android TV & Smart TV browsers. Purely additive: every rule below only
   takes effect above the widths where the base/clamp() styles already
   plateau, so nothing here changes how the site looks up through a
   14–15" laptop. Real width/height values are used for the hero device
   illustration (not transform: scale) so surrounding layout always
   reserves the correct space and nothing overlaps or clips.
   ========================================================================== */
@media (min-width: 1920px) {
  .wrap { width: min(calc(100% - 64px), 1440px); }
  .hero h1 { font-size: 8.5rem; max-width: 1050px; }
  .section-head h2 { font-size: 6.3rem; max-width: 850px; }
  .work-feature h3 { font-size: 7rem; max-width: 560px; }
  .process-intro h2 { font-size: 7.3rem; max-width: 760px; }
  .studio-copy h2 { font-size: 7.5rem; max-width: 600px; }
  .contact-section h2 { font-size: 7.8rem; max-width: 680px; }
  .page-hero-inner h1 { font-size: 6.5rem; }
  .page-hero-inner { max-width: 820px; }
  .cap-card h3 { font-size: 3.6rem; }
  .service-card h3 { font-size: 2.2rem; }
  .cta-banner h2 { font-size: 4.6rem; }
  .intro-copy { font-size: 3.6rem; }
  .callout p { font-size: 2.3rem; }
  .legal-copy h2 { font-size: 1.9rem; }

  .hero { min-height: 850px; }
  .hero-art { min-height: 495px; }
  .device { width: 236px; height: 456px; border-width: 8px; border-radius: 36px; padding: 44px 18px 21px; }
  .device::before { width: 85px; height: 20px; left: 67px; }
  .art-orbit { width: 449px; height: 449px; }
  .art-orbit::before { width: 10px; height: 10px; }
  .screen-label { font-size: 10px; }
  .screen-title { margin-top: 97px; font-size: 29px; }
  .screen-lines { margin-top: 18px; }
  .screen-lines i { height: 5px; }
  .device-floater { padding: 14px 16px; font-size: 11px; border-radius: 15px; }
  .floater-top { top: 77px; }
  .floater-bottom { bottom: 48px; }
  .mini-dot { width: 8px; height: 8px; }

  .wordmark { font-size: 21px; }
  .mark { width: 42px; height: 42px; }
  .desktop-nav { gap: 26px; }
  .desktop-nav a { font-size: 13px; }
  .nav-cta { padding: 14px 20px; }
  .button-primary, .button-ghost { font-size: 14px; padding: 17px 24px; }

  .hero-description { font-size: 17px; max-width: 520px; }
  .page-hero-inner p { font-size: 16px; }
}

@media (min-width: 2560px) {
  .wrap { width: min(calc(100% - 80px), 1760px); }
  .hero h1 { font-size: 10.5rem; max-width: 1300px; }
  .section-head h2 { font-size: 6.9rem; max-width: 1000px; }
  .work-feature h3 { font-size: 8.5rem; max-width: 690px; }
  .process-intro h2 { font-size: 9rem; max-width: 900px; }
  .studio-copy h2 { font-size: 9.2rem; max-width: 740px; }
  .contact-section h2 { font-size: 9.7rem; max-width: 840px; }
  .page-hero-inner h1 { font-size: 7.5rem; }
  .page-hero-inner { max-width: 900px; }
  .cap-card h3 { font-size: 4.2rem; }
  .service-card h3 { font-size: 2.6rem; }
  .cta-banner h2 { font-size: 5.4rem; }
  .intro-copy { font-size: 4rem; }
  .callout p { font-size: 2.6rem; }
  .legal-copy h2 { font-size: 2.1rem; }

  .hero { min-height: 950px; }
  .hero-art { min-height: 580px; }
  .device { width: 277px; height: 536px; border-width: 9px; border-radius: 42px; padding: 51px 22px 24px; }
  .device::before { width: 100px; height: 23px; left: 78px; }
  .art-orbit { width: 527px; height: 527px; }
  .art-orbit::before { width: 12px; height: 12px; }
  .screen-label { font-size: 12px; }
  .screen-title { margin-top: 114px; font-size: 34px; }
  .device-floater { padding: 16px 19px; font-size: 12px; border-radius: 17px; }
  .floater-top { top: 91px; }
  .floater-bottom { bottom: 57px; }

  .wordmark { font-size: 24px; }
  .mark { width: 46px; height: 46px; }
  .desktop-nav { gap: 30px; }
  .desktop-nav a { font-size: 15px; }
  .nav-cta { padding: 16px 23px; }
  .button-primary, .button-ghost { font-size: 15px; padding: 19px 27px; }
  .topbar { padding: 34px 0; }
  #hero, #about, #services, #work, #process, #studio, #contact { scroll-margin-top: 120px; }

  .hero-description { font-size: 18px; max-width: 560px; }
  .section-head p { font-size: 16px; max-width: 340px; }
  .page-hero-inner p, .page-hero-inner { max-width: 620px; }
  .page-hero-inner p { font-size: 17px; }
  .cap-card p, .service-card p, .work-feature p.work-desc { font-size: 15px; }
  .contact-section .lead { font-size: 18px; max-width: 440px; }
  .studio-copy p, .process-intro p { font-size: 16px; }
  .stat strong { font-size: 34px; }
  .work-row h4 { font-size: 32px; }

  .work-feature::before { width: 620px; height: 620px; right: -290px; bottom: -290px; }
  .studio-art { min-height: 620px; }
  .studio-art::before { width: 520px; height: 520px; left: -140px; top: -120px; }
  .studio-art::after { width: 300px; height: 300px; }
  .studio-stamp { width: 208px; height: 208px; font-size: 19px; }

  .call-float, .whatsapp-float { width: 70px; height: 70px; }
  .call-float svg { width: 28px; height: 28px; }
  .whatsapp-float svg { width: 33px; height: 33px; }
  .section-dots { right: 32px; gap: 19px; }
  .section-dots a { width: 9px; height: 9px; }
  .section-dots a::before { font-size: 12px; padding: 6px 12px; }

  .footer-inner { font-size: 13px; }
  .field label { font-size: 12px; }
  .field input, .field textarea { font-size: 16px; }
}

@media (min-width: 3840px) {
  .wrap { width: min(calc(100% - 96px), 2100px); }
  .hero h1 { font-size: 12.5rem; max-width: 1550px; }
  .section-head h2 { font-size: 7.6rem; max-width: 1150px; }
  .work-feature h3 { font-size: 10rem; max-width: 830px; }
  .process-intro h2 { font-size: 10.7rem; max-width: 1080px; }
  .studio-copy h2 { font-size: 11rem; max-width: 900px; }
  .contact-section h2 { font-size: 11.7rem; max-width: 1010px; }
  .page-hero-inner h1 { font-size: 9rem; }
  .page-hero-inner { max-width: 1000px; }
  .cap-card h3 { font-size: 4.8rem; }
  .service-card h3 { font-size: 3rem; }
  .cta-banner h2 { font-size: 6.2rem; }
  .intro-copy { font-size: 4.4rem; }
  .callout p { font-size: 3rem; }
  .legal-copy h2 { font-size: 2.3rem; }

  .hero { min-height: 1080px; }
  .hero-art { min-height: 685px; }
  .device { width: 328px; height: 635px; border-width: 11px; border-radius: 50px; padding: 61px 26px 29px; }
  .device::before { width: 118px; height: 27px; left: 93px; }
  .art-orbit { width: 624px; height: 624px; }
  .art-orbit::before { width: 14px; height: 14px; }
  .screen-label { font-size: 14px; }
  .screen-title { margin-top: 135px; font-size: 40px; }
  .screen-lines i { height: 6px; }
  .device-floater { padding: 19px 22px; font-size: 14px; border-radius: 20px; }
  .floater-top { top: 107px; }
  .floater-bottom { bottom: 67px; }
  .mini-dot { width: 9px; height: 9px; }

  .wordmark { font-size: 30px; }
  .mark { width: 56px; height: 56px; }
  .desktop-nav { gap: 36px; }
  .desktop-nav a { font-size: 18px; }
  .nav-cta { padding: 20px 28px; }
  .button-primary, .button-ghost { font-size: 18px; padding: 23px 32px; }
  .topbar { padding: 42px 0; }
  #hero, #about, #services, #work, #process, #studio, #contact { scroll-margin-top: 150px; }

  .hero-description { font-size: 21px; max-width: 640px; }
  .section-head p { font-size: 18px; max-width: 380px; }
  .page-hero-inner p { font-size: 20px; }
  .cap-card p, .service-card p, .work-feature p.work-desc { font-size: 17px; }
  .contact-section .lead { font-size: 21px; max-width: 500px; }
  .studio-copy p, .process-intro p { font-size: 18px; }
  .stat strong { font-size: 40px; }
  .work-row h4 { font-size: 36px; }
  .legal-copy p { font-size: 16px; }

  .work-feature::before { width: 760px; height: 760px; right: -360px; bottom: -360px; }
  .studio-art { min-height: 740px; }
  .studio-art::before { width: 620px; height: 620px; left: -170px; top: -145px; }
  .studio-art::after { width: 360px; height: 360px; }
  .studio-stamp { width: 250px; height: 250px; font-size: 23px; }

  .call-float, .whatsapp-float { width: 84px; height: 84px; }
  .call-float svg { width: 34px; height: 34px; }
  .whatsapp-float svg { width: 40px; height: 40px; }
  .section-dots { right: 40px; gap: 22px; }
  .section-dots a { width: 11px; height: 11px; }
  .section-dots a::before { font-size: 14px; padding: 8px 14px; }

  .footer-inner { font-size: 15px; }
  .field label { font-size: 14px; }
  .field input, .field textarea { font-size: 18px; }
}

