@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2"); }
@font-face { font-family: "Syne"; font-style: normal; font-weight: 500 700; font-display: swap; src: url("assets/fonts/syne-latin-variable.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("assets/fonts/manrope-vietnamese-variable.woff2") format("woff2"); unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB; }

:root,
.sw-root {
  --sw-bg: #05070b;
  --sw-ink: #f4f7fb;
  --sw-ink-soft: #aab4c3;
  --sw-accent: #72a5ff;
  --paper: #f0efe9;
  --paper-ink: #101216;
  --paper-soft: #5f6368;
  --edge: rgba(189, 216, 255, 0.18);
  --glass: rgba(6, 11, 20, 0.58);
  --pad: clamp(1.25rem, 5vw, 5rem);
}

* { box-sizing: border-box; }
html { background: var(--sw-bg); scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--sw-ink);
  background: var(--sw-bg);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: clip;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 2px solid #72a5ff; outline-offset: 4px; }
[id] { scroll-margin-top: 6rem; }
::selection { color: #05070b; background: #8fd6ff; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  padding: .8rem 1rem;
  color: #05070b;
  background: #fff;
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity .5s ease;
}
.ambient__grid {
  position: absolute;
  inset: -15%;
  opacity: .18;
  background-image:
    linear-gradient(rgba(112, 160, 255, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 160, 255, .14) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  mask-image: radial-gradient(circle at 50% 52%, black 0, transparent 65%);
  transform: perspective(800px) rotateX(62deg) translateY(34%);
}
.ambient__orb {
  position: absolute;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .12;
  will-change: transform;
}
.ambient__orb--one { left: -16rem; top: 20%; background: #246dff; }
.ambient__orb--two { right: -19rem; bottom: 3%; background: #79dfff; }

.hud {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  color: rgba(226, 239, 255, .48);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .24em;
  transition: opacity .45s ease;
}
.hud__rail { position: absolute; top: 50%; writing-mode: vertical-rl; text-transform: uppercase; }
.hud__rail--left { left: 1rem; transform: translateY(-50%) rotate(180deg); }
.hud__rail--right { right: 1rem; transform: translateY(-50%); }
.hud__corner { position: absolute; width: 2rem; height: 2rem; border-color: rgba(150, 194, 255, .22); }
.hud__corner--a { left: 1.2rem; bottom: 1.2rem; border-left: 1px solid; border-bottom: 1px solid; }
.hud__corner--b { right: 1.2rem; top: 5.3rem; border-right: 1px solid; border-top: 1px solid; }

/* Scroll-world skin */
.world-fallback { position: relative; height: 100svh; min-height: 38rem; overflow: hidden; }
.world-fallback__poster { position: absolute; inset: 0; }
.world-fallback__poster img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.world-fallback .sw-topbar, .world-fallback .sw-copylayer { position: absolute; }
.world-fallback .sw-copy { opacity: 1; visibility: visible; }
.world-fallback .sw-copylayer { pointer-events: auto; }
.sw-root { overflow-anchor: none; }
.sw-root { position: relative; z-index: 1; }
.sw-root .sw-stage,
.sw-root .sw-copylayer,
.sw-root .sw-sky,
.sw-root .sw-topbar,
.sw-root .sw-route,
.sw-root .sw-hint { transition: opacity .5s cubic-bezier(.22,.75,.18,1); }
.sw-root .sw-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1, 4, 9, .56), transparent 37%, transparent 72%, rgba(1, 4, 9, .22)),
    linear-gradient(0deg, rgba(1, 4, 9, .48), transparent 24%, transparent 74%, rgba(1, 4, 9, .25));
  box-shadow: inset 0 0 10rem rgba(0, 0, 0, .34);
}
.sw-root .sw-copy {
  width: min(42rem, calc(100vw - 4rem));
  padding: clamp(1.15rem, 2vw, 1.8rem);
  border: 1px solid rgba(180, 210, 255, .18);
  border-radius: 1.45rem;
  /* Opaque-enough glass without a live backdrop blur. Re-blurring hundreds of
     thousands of video pixels after every scrub seek was a major GPU hotspot. */
  background: linear-gradient(135deg, rgba(7, 12, 22, .91), rgba(6, 11, 21, .72));
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, .32), inset 0 1px rgba(255, 255, 255, .06);
  backdrop-filter: none;
}
.sw-root .sw-copy__title,
.display,
.brief h2 {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.sw-root .sw-copy__title {
  max-width: 15ch;
  font-size: clamp(2.35rem, 4.25vw, 4.85rem);
  line-height: .94;
  text-shadow: 0 1rem 5rem rgba(0, 0, 0, .6);
}
.sw-root .sw-copy__eyebrow { max-width: 62ch; letter-spacing: .14em; }
.sw-root .sw-copy__body { max-width: 43rem; line-height: 1.65; }
.sw-root .sw-copy__tags li { border-color: rgba(211, 229, 255, .2); background: rgba(5, 9, 16, .35); }
.sw-root .sw-topbar { border-bottom: 1px solid rgba(191, 217, 255, .13); background: linear-gradient(180deg, rgba(2, 5, 10, .78), transparent); }
.sw-root .sw-nav { background: rgba(10, 15, 24, .87); backdrop-filter: none; border-color: rgba(255, 255, 255, .18); }
.sw-root .sw-nav__item { color: #cad0da; white-space: nowrap; }
.sw-root .sw-nav__item.is-active { color: #f4f7fb; }
.sw-root .sw-nav { position: relative; isolation: isolate; }
.sw-root .sw-nav__item { position: relative; z-index: 1; min-height: 38px; }
.sw-root .sw-nav__item.is-active { background: transparent; }
.sw-nav__indicator { position: absolute; left: 0; top: 5px; bottom: 5px; width: 100px; border-radius: 999px; background: #284f7e; box-shadow: inset 0 0 0 1px #73a5e2; transform-origin: 0 50%; pointer-events: none; opacity: 0; will-change: transform; }
@media (min-width: 1280px) {
  .sw-root .sw-nav { position: absolute; left: 50%; transform: translateX(-50%); }
}
@media (min-width: 1280px) and (max-width: 1599px) {
  .sw-root .sw-brand__name { font-size: .82rem; }
}
.sw-root .sw-copy__tags li { color: #b9d3f5; }
.sw-root .sw-route__label { color: #eaf1fc; background: #101a29; backdrop-filter: none; }
@media (min-width: 1200px) {
  .sw-root .sw-route__dot.is-active:not(:hover) .sw-route__label { opacity: 0; }
}
.sw-root .sw-brand,
.sw-root .sw-topcta { flex: 0 0 auto; }
.sw-root .sw-brand__mark { border-radius: .18rem; transform: rotate(45deg); box-shadow: 0 0 1.5rem var(--sw-accent); }
.sw-root .sw-topcta,
.sw-root .sw-copy__cta a:first-child { color: #05070b; background: #f4f7fb; border-color: #f4f7fb; }
.sw-root .sw-topcta:hover,
.sw-root .sw-copy__cta a:first-child:hover { background: var(--sw-accent); border-color: var(--sw-accent); }
body.is-studio .sw-stage,
body.is-studio .sw-copylayer,
body.is-studio .sw-sky,
body.is-studio .sw-topbar,
body.is-studio .sw-route,
body.is-studio .sw-hint,
body.is-studio .hud,
body.is-studio .ambient { opacity: 0; pointer-events: none; }

/* Expanded studio */
.studio-shell { position: relative; z-index: 80; color: var(--paper-ink); background: var(--paper); }
.studio-nav {
  position: sticky;
  top: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 5rem;
  padding: .75rem var(--pad);
  color: #111318;
  background: rgba(240, 239, 233, .86);
  border-bottom: 1px solid rgba(16, 18, 22, .12);
  backdrop-filter: blur(18px) saturate(135%);
}
.studio-nav a { text-decoration: none; }
.studio-nav__brand { display: flex; align-items: center; gap: .7rem; justify-self: start; font: 700 1.2rem/1 "Syne", sans-serif; letter-spacing: -.04em; }
.studio-nav__brand span { width: .9rem; aspect-ratio: 1; border-radius: 2px; background: #1c63ff; transform: rotate(45deg); box-shadow: 0 0 1rem rgba(28,99,255,.35); }
.studio-nav__links { display: flex; gap: clamp(1rem, 2.8vw, 2.7rem); }
.studio-nav__links a { position: relative; color: #4c5056; font-size: .8rem; font-weight: 700; }
.studio-nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 1px; background: #1c63ff; transition: right .25s ease; }
.studio-nav__links a:hover { color: #111318; }
.studio-nav__links a:hover::after { right: 0; }
.studio-nav__cta { justify-self: end; display: flex; align-items: center; gap: 1rem; padding: .8rem 1rem; color: #fff; background: #111318; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.studio-nav__cta span { color: #8fd6ff; }
.studio-nav__actions { display: flex; align-items: center; justify-self: end; gap: .8rem; }
.language-switch { display: inline-flex; align-items: center; flex: 0 0 auto; padding: 2px; gap: 0; border: 1px solid rgba(197,215,241,.28); border-radius: 999px; background: #101925; }
.language-switch a { display: grid; place-items: center; min-width: 44px; min-height: 44px; padding: 0 .5rem; border-radius: 999px; font: 700 .72rem/1 "Manrope", sans-serif; letter-spacing: .02em; text-decoration: none; color: #cfdaea; }
.language-switch a[aria-current="page"] { color: #101820; background: #f4f7fb; }
.language-switch a:hover { color: #fff; background: #284369; }
.language-switch a:focus-visible { outline-offset: 3px; }
.studio-nav .language-switch { background: #e5e5df; border-color: #c5c8c6; }
.studio-nav .language-switch a { color: #41464e; }
.studio-nav .language-switch a[aria-current="page"], .studio-nav .language-switch a:hover { color: #fff; background: #111318; }
.sw-root .language-switch { margin-left: auto; }
html[lang="vi"] :is(.display, .sw-copy__title, .brief h2, .outcome-card h3, .work-card__meta h3, .process-list h3, .engagement h3, .principle, .faq-list summary) { font-family: "Manrope", system-ui, sans-serif; line-height: 1.15; letter-spacing: -.04em; }
html[lang="vi"] .sw-copy__title { font-size: clamp(2.2rem, 3.75vw, 4.3rem); max-width: 19ch; }
html[lang="vi"] .sw-copy__eyebrow { letter-spacing: .09em; }

.section-dark { color: #f5f7fa; background: #05070b; }
.studio-bridge {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 118vh;
  padding: 10rem var(--pad) 8rem;
  overflow: hidden;
  isolation: isolate;
}
.studio-bridge::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, #020306 0%, #07101e 52%, #05070b 100%); }
.studio-bridge::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .15; background-image: linear-gradient(rgba(120,160,220,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(120,160,220,.2) 1px, transparent 1px); background-size: 5rem 5rem; mask-image: linear-gradient(transparent, #000 25%, #000 78%, transparent); }
.studio-bridge__glow { position: absolute; z-index: -1; right: -15vw; top: 12%; width: min(65vw, 70rem); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(47,111,255,.36), rgba(47,111,255,.08) 36%, transparent 67%); filter: blur(24px); transform: translate3d(0,var(--parallax-y,0),0); }
.kicker { margin: 0 0 1.7rem; font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.studio-bridge .kicker { color: #8fd6ff; }
.display { margin: 0; font-size: clamp(3rem, 7.3vw, 8.2rem); line-height: .93; }
.display--xl { max-width: 12ch; font-size: clamp(3.6rem, 8.8vw, 10rem); }
.bridge-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 25rem)); gap: clamp(2rem, 8vw, 8rem); margin: clamp(3rem, 6vw, 6rem) 0 3rem; color: #aeb9c8; font-size: clamp(1rem, 1.3vw, 1.25rem); line-height: 1.7; }
.bridge-grid p { margin: 0; }
.scroll-link { display: flex; align-items: center; justify-content: space-between; width: min(24rem, 100%); padding: 1rem 0; color: #fff; border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); text-decoration: none; font-size: .8rem; font-weight: 700; }
.scroll-link span { color: #8fd6ff; font-size: 1.1rem; }

.studio-light { color: var(--paper-ink); background: var(--paper); }
.value-strip { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 5.8rem; padding: 1rem var(--pad); border-bottom: 1px solid rgba(16,18,22,.15); overflow: hidden; }
.value-strip p { margin: 0; white-space: nowrap; font-size: .68rem; font-weight: 700; letter-spacing: .13em; }
.value-strip i { flex: 1 1 4rem; height: 1px; background: rgba(16,18,22,.17); }
.section { padding: clamp(7rem, 12vw, 12rem) var(--pad); }
.section-heading { max-width: 88rem; margin: 0 auto clamp(4rem, 7vw, 7rem); }
.section-heading .kicker,
.process-intro .kicker,
.faq-intro .kicker,
.about-copy .kicker { color: #245fe5; }
.section-heading .display { max-width: 12ch; }
.section-heading__body { max-width: 39rem; margin: clamp(2rem, 4vw, 3.5rem) 0 0 auto; color: var(--paper-soft); font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.72; }
.section-heading--row { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr); align-items: end; gap: 4rem; }
.section-heading--row .section-heading__body { margin: 0; }

.outcome-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 88rem; margin: auto; border-top: 1px solid rgba(16,18,22,.16); border-left: 1px solid rgba(16,18,22,.16); }
.outcome-card { position: relative; min-height: 31rem; padding: clamp(1.5rem, 3vw, 3.5rem); border-right: 1px solid rgba(16,18,22,.16); border-bottom: 1px solid rgba(16,18,22,.16); overflow: hidden; transition: color .4s, background .4s; }
.outcome-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: .25rem; background: #1c63ff; transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.22,.75,.18,1); }
.outcome-card:hover::after { transform: scaleX(1); }
.outcome-card__num { font: 600 .7rem/1 ui-monospace, monospace; letter-spacing: .1em; color: #777b80; }
.outcome-card__icon { display: grid; place-items: center; width: 3.1rem; height: 3.1rem; margin: 3.8rem 0 2.2rem; border: 1px solid rgba(16,18,22,.22); border-radius: 50%; font-size: 1.2rem; }
.outcome-card h3 { max-width: 12ch; margin: 0 0 1rem; font: 600 clamp(2rem, 3.3vw, 3.4rem)/1 "Syne", sans-serif; letter-spacing: -.05em; }
.outcome-card > p { max-width: 31rem; margin: 0; color: var(--paper-soft); line-height: 1.65; }
.outcome-card ul { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2.2rem 0 0; padding: 0; list-style: none; }
.outcome-card li { padding: .42rem .7rem; border: 1px solid rgba(16,18,22,.16); border-radius: 999px; font-size: .68rem; font-weight: 700; }
.outcome-card--dark { color: #f4f7fb; background: #0b111c; }
.outcome-card--dark > p { color: #aab4c3; }
.outcome-card--dark .outcome-card__icon,
.outcome-card--dark li { border-color: rgba(218,232,255,.2); }

.section-work { padding-top: 5rem; }
.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem) clamp(1rem, 2vw, 2rem); max-width: 88rem; margin: auto; }
.work-card--wide { grid-column: 1 / -1; }
.work-card__media { position: relative; aspect-ratio: 16 / 8.2; overflow: hidden; border-radius: .4rem; background: #060a11; }
.work-card__media--tall { aspect-ratio: 4 / 4.3; }
.work-card__media img { width: 100%; height: 115%; object-fit: cover; transform: translate3d(0,var(--parallax-y,0),0) scale(1.04); filter: saturate(.85) contrast(1.04); transition: filter .5s ease, scale .7s cubic-bezier(.22,.75,.18,1); }
.work-card:hover img { filter: saturate(1.05) contrast(1.03); scale: 1.025; }
.work-card__badge { position: absolute; left: 1.2rem; top: 1.2rem; padding: .55rem .75rem; color: #fff; background: rgba(4,8,15,.62); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; backdrop-filter: blur(10px); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.work-card__meta { display: flex; justify-content: space-between; gap: 2rem; padding: 1.4rem 0; border-bottom: 1px solid rgba(16,18,22,.16); }
.work-card__meta p { margin: 0 0 .55rem; color: #666b71; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.work-card__meta h3 { margin: 0; font: 600 clamp(1.7rem, 3vw, 3rem)/1.02 "Syne", sans-serif; letter-spacing: -.05em; }
.work-card__meta ul { display: flex; flex-wrap: wrap; justify-content: end; align-content: start; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.work-card__meta li { padding: .38rem .6rem; border: 1px solid rgba(16,18,22,.16); border-radius: 999px; font-size: .75rem; font-weight: 700; }

.section-process { display: grid; grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.28fr); gap: clamp(4rem, 9vw, 10rem); max-width: 98rem; margin: auto; background: #dfe6f2; }
.process-intro { position: sticky; top: 8.5rem; align-self: start; }
.process-intro .display { font-size: clamp(3rem, 5.4vw, 6rem); }
.process-intro > p:last-child { max-width: 30rem; margin-top: 2rem; color: #5b6470; line-height: 1.7; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(16,18,22,.2); }
.process-list li { display: grid; grid-template-columns: 3rem 1fr; gap: .6rem 1.2rem; padding: 2.6rem 0; border-bottom: 1px solid rgba(16,18,22,.2); }
.process-list li > span { padding-top: .4rem; color: #245fe5; font: 600 .7rem/1 ui-monospace, monospace; }
.process-list h3 { margin: 0; font: 600 clamp(2rem, 3.4vw, 3.6rem)/1 "Syne", sans-serif; letter-spacing: -.05em; }
.process-list p { grid-column: 2; max-width: 35rem; margin: .5rem 0; color: #58616d; line-height: 1.65; }
.process-list em { grid-column: 2; font-size: .68rem; font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.engagement-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 88rem; margin: auto; border-top: 1px solid rgba(16,18,22,.18); border-left: 1px solid rgba(16,18,22,.18); }
.engagement { display: flex; flex-direction: column; min-height: 30rem; padding: clamp(1.5rem, 2.7vw, 2.8rem); border-right: 1px solid rgba(16,18,22,.18); border-bottom: 1px solid rgba(16,18,22,.18); }
.engagement > p:first-child { margin: 0 0 4rem; color: #676c72; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.engagement h3 { margin: 0 0 .8rem; font: 600 clamp(2.2rem, 3.4vw, 3.7rem)/.96 "Syne", sans-serif; letter-spacing: -.055em; }
.engagement > span { color: #245fe5; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.engagement > p:nth-of-type(2) { margin: 2rem 0; color: var(--paper-soft); line-height: 1.65; }
.engagement a { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid rgba(16,18,22,.16); text-decoration: none; font-size: .76rem; font-weight: 700; }
.engagement--featured { color: #fff; background: #145cf5; }
.engagement--featured > p:first-child,
.engagement--featured > p:nth-of-type(2) { color: rgba(255,255,255,.72); }
.engagement--featured > span { color: #d7e6ff; }
.engagement--featured a { border-color: rgba(255,255,255,.25); }
.engagement-note { max-width: 88rem; margin: 1.1rem auto 0; color: #595e64; font-size: .75rem; line-height: 1.5; }

.section-about { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr); gap: clamp(4rem, 9vw, 10rem); min-height: 48rem; color: #f3f6fb; background: #08101d; overflow: hidden; isolation: isolate; }
.section-about::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 75% 28%, rgba(46,110,255,.22), transparent 38%), linear-gradient(135deg,#070b12,#0a1728); }
.about-copy { align-self: center; min-width: 0; }
.about-copy .display { font-size: clamp(3.2rem, 5.8vw, 6.8rem); }
.about-copy > p:nth-of-type(2) { max-width: 42rem; margin: 2.2rem 0; color: #aeb9c7; font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.7; }
.about-points { display: flex; flex-wrap: wrap; gap: .6rem; }
.about-points span { padding: .55rem .75rem; border: 1px solid rgba(194,216,255,.2); border-radius: 999px; color: #d8e3f2; font-size: .68rem; font-weight: 700; }
.principle { align-self: end; margin: 0; padding: 2rem 0 0; border-top: 1px solid rgba(208,225,255,.2); color: #dce8f9; font: 500 clamp(1.5rem, 2.5vw, 2.7rem)/1.25 "Syne", sans-serif; letter-spacing: -.04em; }
.about-orbit { position: absolute; z-index: -1; right: -8rem; top: 5rem; width: min(44vw, 42rem); aspect-ratio: 1; border: 1px solid rgba(120,172,255,.22); border-radius: 50%; transform: translate3d(0,var(--parallax-y,0),0); }
.about-orbit::before,
.about-orbit::after { content: ""; position: absolute; inset: 12%; border: 1px solid rgba(120,172,255,.16); border-radius: 50%; }
.about-orbit::after { inset: 27%; }
.about-orbit span { position: absolute; inset: 42%; border-radius: 50%; background: #2d75ff; box-shadow: 0 0 5rem #2870ff; }
.about-orbit i { position: absolute; width: .8rem; aspect-ratio: 1; border-radius: 50%; left: 11%; top: 50%; background: #ffb45c; box-shadow: 0 0 2rem #ffb45c; }

.section-faq { display: grid; grid-template-columns: minmax(15rem, .55fr) minmax(0, 1.45fr); gap: clamp(3rem, 9vw, 10rem); max-width: 98rem; margin: auto; }
.faq-intro { position: sticky; top: 8.5rem; align-self: start; }
.faq-intro .display { font-size: clamp(3rem, 5vw, 5.7rem); }
.faq-list { border-top: 1px solid rgba(16,18,22,.2); }
.faq-list details { border-bottom: 1px solid rgba(16,18,22,.2); }
.faq-list summary { display: flex; justify-content: space-between; gap: 2rem; padding: 1.8rem 0; cursor: pointer; list-style: none; font: 600 clamp(1.15rem, 1.8vw, 1.7rem)/1.3 "Syne", sans-serif; letter-spacing: -.03em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #245fe5; transition: transform .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 47rem; margin: -.4rem 3rem 2rem 0; color: var(--paper-soft); line-height: 1.7; }

.contact { position: relative; z-index: 1; min-height: 92vh; padding: clamp(8rem, 14vw, 14rem) var(--pad) 6rem; color: #f4f7fb; background: #05070b; overflow: hidden; isolation: isolate; }
.contact::after { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .14; background-image: radial-gradient(rgba(145,185,255,.6) .6px, transparent .6px); background-size: 12px 12px; mask-image: linear-gradient(transparent,#000 25%,#000 80%,transparent); }
.contact__flare { position: absolute; z-index: -1; left: 45%; bottom: -40rem; width: 70rem; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(34,103,255,.58), rgba(34,103,255,.12) 38%, transparent 68%); filter: blur(30px); transform: translate3d(0,var(--parallax-y,0),0); }
.contact .kicker { color: #8fd6ff; }
.contact .display { max-width: 12ch; }
.contact__bottom { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-top: clamp(4rem, 9vw, 9rem); }
.contact__button { display: flex; justify-content: space-between; gap: 4rem; width: min(32rem,100%); padding: 1.3rem 1.4rem; color: #05070b; background: #f5f7fb; border-radius: .7rem; text-decoration: none; font-size: .85rem; font-weight: 700; }
.contact__button:hover { background: #8fd6ff; }
.contact__bottom p { margin: 0; color: #9aa8ba; text-align: right; font-size: .76rem; line-height: 1.7; }
.footer { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: end; padding: 2rem var(--pad); color: #8f9aac; background: #05070b; border-top: 1px solid rgba(197,217,248,.16); font-size: .7rem; }
.footer a { color: #fff; text-decoration: none; font: 700 1.25rem/1 "Syne", sans-serif; }
.footer p { margin: 0; }
.footer p:last-child { justify-self: end; }

/* Scroll reveals */
.has-js .reveal { opacity: 0; transform: translateY(2rem); transition: opacity .8s ease, transform .9s cubic-bezier(.22,.75,.18,1); }
.has-js .reveal.is-visible { opacity: 1; transform: none; filter: none; }
.outcome-grid .reveal:nth-child(2),
.work-grid .reveal:nth-child(2),
.process-list .reveal:nth-child(2),
.engagement-grid .reveal:nth-child(2) { transition-delay: .08s; }
.outcome-grid .reveal:nth-child(3),
.work-grid .reveal:nth-child(3),
.process-list .reveal:nth-child(3),
.engagement-grid .reveal:nth-child(3) { transition-delay: .16s; }
.outcome-grid .reveal:nth-child(4),
.process-list .reveal:nth-child(4) { transition-delay: .24s; }

/* Project brief */
.brief { position: fixed; inset: 0; z-index: 200; visibility: hidden; pointer-events: none; }
.brief:target,
.brief.is-open { visibility: visible; pointer-events: auto; }
.brief__backdrop { position: absolute; inset: 0; padding: 0; opacity: 0; background: rgba(0, 2, 7, .78); border: 0; backdrop-filter: blur(12px); cursor: pointer; transition: opacity .45s ease; }
.brief:target .brief__backdrop,
.brief.is-open .brief__backdrop { opacity: 1; }
.brief__panel { position: absolute; top: 0; right: 0; width: min(42rem, 100%); height: 100%; overflow-y: auto; padding: clamp(4rem, 8vw, 7rem) clamp(1.4rem, 5vw, 4rem) 3rem; color: #f4f7fb; background: radial-gradient(circle at 100% 0, rgba(47, 107, 255, .24), transparent 40%), #080d16; border-left: 1px solid rgba(171, 207, 255, .18); transform: translateX(100%); transition: transform .55s cubic-bezier(.22,.75,.18,1); }
.brief:target .brief__panel,
.brief.is-open .brief__panel { transform: translateX(0); }
.brief__close { position: absolute; top: 1.35rem; right: 1.35rem; display: grid; place-items: center; width: 2.8rem; height: 2.8rem; padding: 0; color: inherit; background: transparent; border: 1px solid var(--edge); border-radius: 50%; cursor: pointer; font-size: 1.5rem; }
.brief__eyebrow { color: #8fd6ff; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.brief h2 { margin: 1rem 0 1.2rem; font-size: clamp(2.7rem, 6vw, 5.5rem); line-height: .95; }
.brief__panel > p { max-width: 34rem; color: var(--sw-ink-soft); line-height: 1.7; }
.brief__form { display: grid; gap: 1.2rem; margin-top: 2.5rem; }
.brief__delivery-note { margin: 0; color: #aab4c3; font-size: .75rem; line-height: 1.6; }
.brief__form label { display: grid; gap: .55rem; color: #ccd7e6; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.brief__form input,
.brief__form textarea { width: 100%; padding: 1rem 0; color: #fff; background: transparent; border: 0; border-bottom: 1px solid rgba(181, 211, 255, .22); border-radius: 0; outline: 0; font: 500 1rem/1.5 "Manrope", sans-serif; resize: vertical; }
.brief__form input:focus,
.brief__form textarea:focus { border-color: #8fd6ff; }
.brief__form button { display: flex; justify-content: space-between; margin-top: .7rem; padding: 1.05rem 1.2rem; color: #05070b; background: #f4f7fb; border: 0; border-radius: .8rem; font: 700 .9rem "Manrope", sans-serif; cursor: pointer; }
.brief__meta { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--edge); color: #8795a8; font-size: .76rem; }
.brief__meta a { color: #d7e9ff; text-decoration: none; }
.brief__close { text-decoration: none; }
.brief__panel { overscroll-behavior: contain; padding-bottom: calc(3rem + env(safe-area-inset-bottom)); }

@media (max-width: 980px) {
  .studio-nav__actions { grid-row: 1; grid-column: 2; gap: .5rem; }
  .studio-nav { grid-template-columns: minmax(0, 1fr) auto; gap: .2rem 1rem; background: #f0efe9; backdrop-filter: none; }
  .studio-nav__links { display: flex; grid-row: 2; grid-column: 1 / -1; justify-content: space-between; gap: .25rem; }
  .studio-nav__brand { min-height: 44px; }
  .studio-nav__links a { display: flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; padding: .4rem .25rem; font-size: .875rem; }
  .studio-nav__cta { grid-row: 1; grid-column: 2; min-height: 44px; }
  [id] { scroll-margin-top: 8rem; }
  .section-heading--row,
  .section-process,
  .section-about,
  .section-faq { grid-template-columns: minmax(0, 1fr); }
  .process-intro,
  .faq-intro { position: static; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement { min-height: 24rem; }
  .section-about { min-height: auto; }
  .principle { max-width: 32rem; justify-self: end; }
}

@media (max-width: 860px) {
  .ambient { display: none; }
  .hud__rail, .hud__corner { display: none; }
  .sw-root .sw-brand__name { font-size: 0; }
  .sw-root .sw-brand__name::after { content: "LTK ATELIER"; font-size: .84rem; letter-spacing: -.02em; }
  .sw-root .sw-brand,
  .sw-root .sw-topcta { min-height: 44px; }
  .sw-root .sw-topcta { padding: .68rem .9rem; font-size: 0; }
  .sw-root .sw-topcta::after { content: "Project"; font-size: .78rem; }
  html[lang="vi"] .sw-root .sw-topcta::after { content: "Dự án"; }
  .sw-root .sw-topbar { padding-inline: 12px; gap: 8px; }
  html[lang="vi"] .sw-copy__title { font-size: clamp(1.85rem, 8.3vw, 3.5rem); }
  .sw-root .sw-copy {
    left: .75rem;
    right: .75rem;
    bottom: calc(.75rem + 2vh + env(safe-area-inset-bottom));
    width: auto;
    padding: 1rem;
    border-radius: 1.1rem;
    backdrop-filter: none;
  }
  .sw-root .sw-copy__title { font-size: clamp(2.15rem, 10vw, 4rem); }
  .sw-root .sw-copy__body { font-size: .92rem; line-height: 1.5; }
  .sw-root .sw-copy__tags { display: none; }
  .sw-root .sw-copy { max-height: calc(100dvh - 9rem - env(safe-area-inset-top) - env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; }
  .sw-root .sw-hint { display: none; }
  .storybook-mobile .sw-root .sw-scene__video,
  .storybook-mobile .sw-root .sw-scene__still,
  .world-fallback__poster img { object-position: center top; }
  .storybook-mobile .sw-root .sw-scene__still { transform: none !important; }
  .sw-root .sw-topbar { padding-top: calc(10px + env(safe-area-inset-top)); padding-bottom: 10px; }
  .sw-root .sw-btn { min-height: 44px; display: inline-flex; align-items: center; }
  .about-copy .display { font-size: clamp(2.4rem, 10vw, 5rem); overflow-wrap: break-word; }
  .world-fallback { min-height: 38rem; }
  .brief__backdrop { backdrop-filter: none; }
  .brief__panel { height: 100dvh; scroll-padding-bottom: 34dvh; }
  .brief__form input, .brief__form textarea { scroll-margin-block: 6rem 34dvh; }
  .sw-root .sw-stage::after { background: linear-gradient(0deg, rgba(1,4,9,.78), transparent 48%, rgba(1,4,9,.2)); }
  .studio-bridge { min-height: 105vh; }
  .bridge-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .value-strip { justify-content: flex-start; overflow: hidden; }
  .value-strip p:nth-of-type(n+3),
  .value-strip i:nth-of-type(n+2) { display: none; }
  .outcome-grid,
  .work-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 26rem; }
  .work-card--wide { grid-column: auto; }
  .work-card__media,
  .work-card__media--tall { aspect-ratio: 4 / 4.3; }
  .display { font-size: clamp(2.75rem, 12vw, 5rem); }
  .display--xl { font-size: clamp(3.2rem, 14vw, 6.2rem); }
  .contact__bottom { align-items: stretch; flex-direction: column; }
  .contact__bottom p { text-align: left; }
  .footer { grid-template-columns: 1fr; }
  .footer p:last-child { justify-self: start; }
}

@media (max-width: 860px) and (hover: none) and (pointer: coarse) {
  .sw-root .sw-route__dot { width: 44px; height: 44px; }
}

@media (max-width: 560px) {
  .sw-root .sw-route { display: none; }
  .studio-nav { min-height: 4.35rem; }
  .studio-nav__cta { padding: .72rem .85rem; font-size: .75rem; }
  .studio-nav__cta span { display: none; }
  .studio-nav { padding-inline: 12px; gap: .2rem .5rem; }
  .studio-nav__cta { font-size: 0; padding-inline: .8rem; }
  .studio-nav__cta::after { content: "Project"; font-size: .75rem; }
  html[lang="vi"] .studio-nav__cta::after { content: "Dự án"; }
  .section { padding-block: 6.5rem; }
  .section-heading { margin-bottom: 3.5rem; }
  .section-heading--row { gap: 2rem; }
  .outcome-grid,
  .engagement-grid { margin-inline: -.1rem; }
  .outcome-card { padding: 1.25rem; }
  .outcome-card__icon { margin-top: 2.8rem; }
  .work-card__meta { flex-direction: column; }
  .work-card__meta ul { justify-content: flex-start; }
  .process-list li { grid-template-columns: 2.3rem 1fr; }
  .about-orbit { width: 32rem; right: -16rem; }
  .principle { font-size: 1.45rem; }
  .faq-list summary { font-size: 1.05rem; }
  .brief__meta { flex-direction: column; }
}

@media (max-width: 860px) and (max-height: 740px) {
  .sw-root .sw-copy { bottom: calc(.75rem + 2vh + env(safe-area-inset-bottom)); }
  .sw-root .sw-copy__title { font-size: clamp(1.7rem, 8vw, 2.6rem); line-height: 1; }
  .sw-root .sw-copy__eyebrow { margin-top: .6rem; font-size: .62rem; }
  .sw-root .sw-copy__body { margin-top: .8rem; font-size: .83rem; }
  .sw-root .sw-copy__cta { gap: .5rem; margin-top: 1rem; }
  .sw-root .sw-btn { padding: .75rem .9rem; font-size: .78rem; }
}

/* Extra-tall browser emulators and foldable cover screens are much narrower
   than a normal phone. Show the complete portrait composition instead of
   cropping the framed 16:9 Storybook film at both sides. */
@media (max-width: 860px) and (orientation: portrait) and (max-aspect-ratio: 2 / 5) {
  .storybook-mobile .sw-root .sw-scene__video,
  .storybook-mobile .sw-root .sw-scene__still,
  .world-fallback__poster img {
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 1279px) and (min-width: 861px) { .sw-root .sw-nav { display: none; } }

@media (max-height: 760px) and (min-width: 861px) {
  .sw-root .sw-copy { padding: 1rem 1.15rem; }
  .sw-root .sw-copy__title { font-size: clamp(2.1rem, 3.8vw, 3.5rem); }
  .sw-root .sw-copy__eyebrow { margin-top: .7rem; }
  .sw-root .sw-copy__body { margin-top: .8rem; font-size: .91rem; }
  .sw-root .sw-copy__tags { margin-top: .9rem; }
  .sw-root .sw-copy__tags li { padding: .45rem .75rem; font-size: .7rem; }
}

/* Desktop storybook: leave the physical journey visible below the copy.
   No live video blur, duplicate process overlay, or extra video decoder. */
@media (min-width: 861px) {
  .world-fallback .sw-copy { top: 32%; width: min(30rem, 31vw); padding: 1.25rem 1.4rem; border-radius: 1.1rem; }
  .world-fallback .sw-copy__title { font-size: clamp(2rem, 2.8vw, 3.3rem); line-height: 1.01; }
  .world-fallback .sw-copy__eyebrow { margin-top: .75rem; font-size: .64rem; line-height: 1.45; }
  .world-fallback .sw-copy__body { margin-top: 1rem; font-size: .95rem; line-height: 1.55; }
  .world-fallback .sw-copy__tags { display: none; }
  .world-fallback .sw-copy__cta { margin-top: 1.1rem; gap: .6rem; }
  .world-fallback .sw-btn { padding: .75rem .8rem; font-size: .74rem; }
  .storybook-desktop .sw-root .sw-copy { top: 32%; width: min(30rem, 31vw); padding: 1.25rem 1.4rem; border-radius: 1.1rem; }
  .storybook-desktop .sw-root .sw-copy:nth-child(2),
  .storybook-desktop .sw-root .sw-copy:nth-child(3),
  .storybook-desktop .sw-root .sw-copy:nth-child(4) { left: auto; right: clamp(18px, 5vw, 64px); }
  .storybook-desktop .sw-root .sw-copy__title { font-size: clamp(2rem, 2.8vw, 3.3rem); line-height: 1.01; }
  .storybook-desktop .sw-root .sw-copy__eyebrow { margin-top: .75rem; font-size: .64rem; line-height: 1.45; }
  .storybook-desktop .sw-root .sw-copy__body { margin-top: 1rem; font-size: .95rem; line-height: 1.55; }
  .storybook-desktop .sw-root .sw-copy__tags { display: none; }
  .storybook-desktop .sw-root .sw-copy__tags li { padding: .4rem .6rem; font-size: .64rem; }
  .storybook-desktop .sw-root .sw-copy__cta { margin-top: 1.1rem; gap: .6rem; }
  .storybook-desktop .sw-root .sw-btn { padding: .75rem .8rem; font-size: .74rem; }
  .storybook-desktop .sw-root .sw-copylayer::before { width: 42vw; opacity: .35; }
  .storybook-desktop .sw-root .sw-stage::after { background: linear-gradient(180deg, rgba(1,4,9,.3), transparent 20%, transparent 90%, rgba(1,4,9,.2)); box-shadow: none; }
}
@media (min-width: 861px) and (max-height: 760px) {
  .storybook-desktop .sw-root .sw-copy { top: 46%; width: min(31rem, 32vw); }
  .storybook-desktop .sw-root .sw-copy__title { font-size: clamp(1.9rem, 2.5vw, 2.6rem); }
}
/* Preserve the whole miniature on ultrawide displays instead of enlarging and
   cropping a 16:9 film to a 3:1 viewport. The quiet left field holds the story. */
@media (min-width: 861px) and (min-aspect-ratio: 21/10) {
  .storybook-desktop .sw-root .sw-stage { background: #e9d1b2; }
  .storybook-desktop .sw-root .sw-scene__video,
  .storybook-desktop .sw-root .sw-scene__still { object-fit: contain; object-position: right center; }
  .storybook-desktop .sw-root .sw-scene::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; left: calc(100% - 100vh * 16 / 9); width: clamp(64px, 5vw, 140px); background: linear-gradient(90deg, #e9d1b2, transparent); pointer-events: none; }
  .storybook-desktop .sw-root .sw-copy:nth-child(n) { left: clamp(18px, 5vw, 64px); right: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .ambient__orb { display: none; }
  .has-js .reveal { opacity: 1; transform: none; filter: none; }
}

/* Portrait Storybook: the sharp 620×349 picture sits at (50,160) in the
   720×1440 mobile encode. Render that canvas at viewport width, independent
   of browser toolbar height, and reserve its actual picture bounds for copy.
   Posters share the exact geometry, including the no-JavaScript fallback. */
@media (max-width: 860px) and (orientation: portrait) {
  .sw-root {
    --mobile-picture-top: calc(5.25rem + env(safe-area-inset-top));
    --mobile-canvas-bottom: calc(var(--mobile-picture-top) + 177.777778vw);
    /* Add breathing room on taller screens without stealing space on short
       phones. svh keeps this gap stable while the browser's toolbar moves. */
    --mobile-copy-gap: calc(1rem + clamp(0rem, calc(20svh - 8.4rem), 4rem));
    --mobile-copy-top: calc(var(--mobile-picture-top) + 48.472223vw + var(--mobile-copy-gap));
  }
  .world-fallback { height: 100dvh; min-height: 100dvh; background: #05070b; }
  .sw-root .sw-stage,
  .sw-root .sw-copylayer { bottom: auto; height: 100dvh; }
  /* The portrait encode has a fixed 1:2 canvas. On a tall/narrow browser it
     ends before the viewport does: don't expose the unrelated particle sky. */
  .sw-root .sw-stage { background: #05070b; }
  .sw-root .sw-sky { display: none; }
  .sw-root .sw-stage::after,
  .world-fallback__poster::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Scene layers use 100–1000 inside the stage stacking context. */
    z-index: 1001;
    pointer-events: none;
    box-shadow: none;
    /* Finish before the canvas edge, including non-overlay scrollbar gutters. */
    background: linear-gradient(to bottom, transparent calc(var(--mobile-canvas-bottom) - 9rem), #05070b calc(var(--mobile-canvas-bottom) - 3rem));
  }
  .storybook-mobile .sw-root .sw-scene__video,
  .storybook-mobile .sw-root .sw-scene__still,
  .world-fallback__poster img {
    position: absolute;
    inset: auto;
    left: 0;
    top: calc(var(--mobile-picture-top) - 22.222222vw);
    width: 100%;
    height: 200vw;
    object-fit: contain;
    object-position: center top;
    transform: none !important;
  }
  .sw-root .sw-copy {
    top: var(--mobile-copy-top);
    bottom: auto;
    max-width: none;
    max-height: max(4rem, calc(100dvh - var(--mobile-copy-top) - .75rem - env(safe-area-inset-bottom)));
    overflow-y: auto;
    overscroll-behavior-y: auto;
    /* Whole-card drift must not move copy back into the reserved picture.
       Opacity and the individual text-reveal transforms remain animated. */
    transform: none !important;
    padding: 1rem;
  }
  .sw-root .sw-copy__title,
  html[lang="vi"] .sw-root .sw-copy__title {
    max-width: 22ch;
    font-size: clamp(1.65rem, 7vw, 2.35rem);
    line-height: 1.08;
  }
  html[lang="vi"] .sw-root .sw-copy__title { line-height: 1.15; }
  .sw-root .sw-copy__eyebrow { margin-top: .65rem; font-size: .75rem; line-height: 1.45; letter-spacing: .09em; }
  .sw-root .sw-copy__body { margin-top: .8rem; font-size: 1rem; line-height: 1.45; }
  .sw-root .sw-copy__cta { margin-top: 1rem; gap: .5rem; }
  .sw-root .sw-btn { min-height: 44px; padding: .65rem .9rem; font-size: .875rem; }
}

/* Landscape phones can exceed the desktop breakpoint (e.g. 932×430).
   The same decoder keeps its time while picture and copy become side by side.
   This late, touch-scoped rule also supports the no-JavaScript opening. */
@media (max-width: 860px) and (max-height: 500px) and (orientation: landscape),
       (max-width: 1100px) and (max-height: 500px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .world-fallback { height: 100svh; min-height: 100svh; }
  .sw-root .sw-topbar { padding: calc(14px + env(safe-area-inset-top)) 18px 14px; }
  .sw-root .sw-brand { min-height: 44px; }
  .sw-root .sw-brand__name { font-size: 0; }
  .sw-root .sw-brand__name::after { content: "LTK ATELIER"; font-size: .84rem; }
  .sw-root .sw-topcta { min-height: 44px; padding: .68rem .9rem; font-size: 0; }
  .sw-root .sw-topcta::after { content: "Project"; font-size: .78rem; }
  html[lang="vi"] .sw-root .sw-topcta::after { content: "Dự án"; }
  .sw-root .sw-copy {
    top: auto;
    bottom: calc(.75rem + env(safe-area-inset-bottom));
    left: .75rem;
    right: auto;
    width: calc(51vw - 1.5rem);
    max-height: calc(100dvh - 5rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    overflow-y: visible;
    padding: .85rem 1rem;
    border-radius: 1.1rem;
    transform: none !important;
  }
  .sw-root .sw-copy__title { max-width: 22ch; font-size: clamp(1.4rem, 3vw, 1.65rem); line-height: 1; }
  html[lang="vi"] .sw-root .sw-copy__title { max-width: 25ch; font-size: clamp(1.4rem, 3vw, 1.65rem); line-height: 1.15; }
  .sw-root .sw-copy__eyebrow { margin-top: .45rem; font-size: .6rem; line-height: 1.45; }
  .sw-root .sw-copy__body { margin-top: .6rem; font-size: .78rem; line-height: 1.4; }
  .sw-root .sw-copy__cta { margin-top: .7rem; gap: .5rem; }
  .sw-root .sw-btn { min-height: 44px; display: inline-flex; align-items: center; padding: .75rem .9rem; font-size: .78rem; }
  .sw-root .sw-copy__num,
  .sw-root .sw-copy__tags,
  .sw-root .sw-hint,
  .sw-root .sw-nav,
  .sw-root .sw-route,
  .hud { display: none; }
  .storybook-mobile .sw-root .sw-scene__video,
  .storybook-mobile .sw-root .sw-scene__still,
  .world-fallback__poster img {
    inset: auto;
    top: 5rem;
    right: 0;
    width: 49vw;
    height: calc(100% - 6rem);
    object-fit: cover;
    object-position: center 13%;
    transform: none !important;
  }
  .world-fallback__poster img { position: absolute; }
  .sw-root .sw-stage::after,
  .sw-root .sw-copylayer::before { display: none; }
}

/* Editorial refinement: get to the work, then explain the partnership. */
.storybook-v3 .studio-bridge { min-height:0; padding:3.5rem var(--pad); display:grid; grid-template-columns:1.2fr 1fr; align-items:center; gap:3rem; background:#0b1420; }
.storybook-v3 .studio-bridge::before { background:linear-gradient(135deg,#1b1c1c,#0b1420); }
.storybook-v3 .studio-bridge::after { display:none; }
.studio-bridge h2 { max-width:26ch; margin:0; font:600 clamp(1.65rem,2.4vw,2.8rem)/1.2 "Manrope",sans-serif; letter-spacing:-.045em; }
.studio-bridge > p { max-width:37ch; margin:0; color:#b8c5d1; line-height:1.75; }
.studio-bridge__thread { position:absolute; top:0; left:var(--pad); width:1px; height:2rem; background:#83aff8; }
.storybook-v3 .value-strip { display:none; }
.storybook-v3 .section { padding-block:clamp(4rem,7vw,7rem); }
.storybook-v3 .section-services .display { max-width:22ch; font-size:clamp(2.25rem,4vw,4.4rem); }
.storybook-v3 .outcome-card { min-height:0; padding:2rem; }
.storybook-v3 .outcome-card__icon { display:none; }
.storybook-v3 .outcome-card h3 { margin-top:1.5rem; font-size:clamp(1.55rem,2.4vw,2.6rem); }
.storybook-v3 .outcome-card ul { margin-top:1.25rem; }
.storybook-v3 .section-about { min-height:0; grid-template-columns:1.15fr 1fr; gap:6vw; }
.storybook-v3 .about-copy .display { font-size:clamp(2.3rem,4.1vw,4.6rem); line-height:1.13; }
.storybook-v3 .about-copy > p:nth-of-type(2) { margin-block:1.6rem; }
.about-email { display:inline-flex; min-height:44px; align-items:center; margin-top:1.5rem; color:#c5dcff; font-size:.9rem; text-underline-offset:5px; overflow-wrap:anywhere; }
.storybook-v3 .about-copy .kicker { color:#a9c8f4; }
.about-working { align-self:center; padding-left:3rem; border-left:1px solid #7990ac48; }
.about-signature { display:block; margin-bottom:2rem; font:600 2.4rem/1 "Syne",sans-serif; letter-spacing:-.07em; color:#a9c8f4; }
.about-working h3 { margin:0 0 1.5rem; font-size:1.1rem; line-height:1.5; }
.about-working dl { margin:0; }
.about-working dl > div { padding:1rem 0; border-top:1px solid #7990ac36; }
.about-working dt { font-size:.95rem; font-weight:650; }
.about-working dd { margin:.4rem 0 0; color:#aebdce; line-height:1.7; font-size:.9rem; }
.storybook-v3 .contact { min-height:0; padding-block:5rem; }
.storybook-v3 .contact .display { max-width:18ch; font-size:clamp(2.6rem,5vw,5.5rem); }
.brief__panel { padding-top:4.2rem; }
.brief .brief__panel h2 { margin:.8rem 0; max-width:20ch; font-size:clamp(1.8rem,3vw,2.5rem); line-height:1.13; letter-spacing:-.045em; }
.brief .brief__panel > p { font-size:.95rem; margin-block:.8rem; }
.brief__form { margin-top:1.5rem; gap:.9rem; }
.brief__form input,.brief__form textarea { padding:.65rem 0; }
@media (max-width:860px) {
 .storybook-v3 .studio-bridge { grid-template-columns:1fr; gap:1rem; padding-block:2.5rem; }
 .storybook-v3 .section-about { grid-template-columns:1fr; gap:2.5rem; }
 .about-working { padding-left:0; padding-top:2rem; border-left:0; border-top:1px solid #7990ac48; }
 .about-working h3 { max-width:25ch; }
 .storybook-v3 .outcome-card { padding:1.5rem; }
 .storybook-v3 .outcome-card__num { display:none; }
 .storybook-v3 .outcome-card h3 { margin-top:0; }
 .storybook-v3 .contact { padding-block:3.5rem; }
 .brief .brief__panel { padding-top:3.5rem; }
}
