:root {
  --navy: #020a1b;
  --navy-2: #061329;
  --ink: #081126;
  --muted: #586171;
  --line: #dce1e6;
  --white: #ffffff;
  --soft: #f5f7f8;
  --cyan: #03cffa;
  --cyan-deep: #069bd4;
  --lime: #baff00;
  --lime-deep: #7fbd00;
  --shadow: 0 24px 70px rgba(2, 10, 27, .18);
  --container: min(1180px, calc(100vw - 72px));
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--navy);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px max(32px, calc((100vw - 1320px) / 2));
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 30px rgba(2,10,27,.08);
  backdrop-filter: blur(14px);
}

.brand {
  width: 164px;
  height: 64px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-actions { display: flex; align-items: center; gap: 26px; }

.header-cta {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 23px;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  font-weight: 800;
  font-size: .83rem;
  letter-spacing: -.01em;
  transition: color .25s, background .25s, transform .25s;
}

.header-cta:hover { background: var(--navy); color: white; transform: translateY(-2px); }

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  padding: 9px 5px;
  background: transparent;
  display: grid;
  align-content: center;
  gap: 7px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; }
body.menu-open .header-cta { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.7); background: rgba(255,255,255,.025); }
body.menu-open .menu-toggle span { background: white; }

.site-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(2,10,27,.48);
  backdrop-filter: blur(8px);
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s, visibility .3s;
}

.site-menu.open { visibility: visible; opacity: 1; }

.menu-panel {
  position: relative;
  margin-left: auto;
  width: min(680px, 100%);
  min-height: 100%;
  padding: 132px clamp(34px, 6vw, 76px) 54px;
  background:
    radial-gradient(circle at 88% 12%, rgba(186,255,0,.13), transparent 34%),
    radial-gradient(circle at 12% 30%, rgba(3,207,250,.16), transparent 38%),
    linear-gradient(145deg, #020a1b 0%, #041027 56%, #020a1b 100%);
  color: white;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(28px, 4vh, 50px);
  box-shadow: -34px 0 80px rgba(2,10,27,.32);
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  overflow-y: auto;
}

.site-menu.open .menu-panel { transform: none; }
.menu-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--lime), transparent);
  opacity: .64;
}
.menu-panel-head {
  max-width: 460px;
}
.menu-label { margin: 0 0 14px; color: var(--cyan); font-size: .76rem; text-transform: uppercase; letter-spacing: .22em; font-weight: 900; }
.menu-intro {
  margin: 0;
  color: #aeb9c9;
  font-size: clamp(.98rem, 1.35vw, 1.15rem);
  line-height: 1.55;
}
.menu-links {
  align-self: center;
  width: min(100%, 520px);
  display: grid;
  gap: 2px;
}
.menu-links a {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: baseline;
  gap: 20px;
  padding: clamp(9px, 1.25vh, 15px) 0;
  border-top: 1px solid rgba(255,255,255,.09);
  transition: color .22s, transform .22s, border-color .22s;
}
.menu-links a:last-child { border-bottom: 1px solid rgba(255,255,255,.09); }
.menu-links a span {
  color: var(--cyan);
  font-size: .72rem;
  letter-spacing: .18em;
  font-weight: 900;
}
.menu-links a strong {
  display: block;
  font-size: clamp(2.25rem, 5.4vw, 4.55rem);
  line-height: .94;
  letter-spacing: -.062em;
  font-weight: 850;
}
.menu-links a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--lime);
  opacity: 0;
  transform: translate(-8px, -50%);
  transition: opacity .22s, transform .22s;
}
.menu-links a:hover,
.menu-links a:focus-visible {
  color: var(--lime);
  border-color: rgba(186,255,0,.32);
  transform: translateX(8px);
}
.menu-links a:hover::after,
.menu-links a:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}
.menu-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #b9c4d3;
  font-size: 1rem;
}
.menu-contact-label {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  font-weight: 900;
}
.menu-contact a { width: fit-content; color: white; }
.menu-contact a:hover { color: var(--cyan); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 130px 24px 150px;
  isolation: isolate;
  overflow: hidden;
  background: white;
  border-bottom: 1px solid var(--line);
  user-select: none;
}

.cursor-glow {
  position: absolute;
  z-index: -3;
  left: var(--mouse-x, 74%);
  top: var(--mouse-y, 30%);
  width: min(760px, 68vw);
  height: min(760px, 68vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 48%, rgba(3,207,250,.62), transparent 46%),
    radial-gradient(circle at 67% 49%, rgba(186,255,0,.46), transparent 48%);
  filter: blur(90px);
  opacity: .08;
  pointer-events: none;
  transition: opacity .2s;
}

.hero-trail {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .72;
  filter: saturate(1.08) contrast(1.02);
  mix-blend-mode: multiply;
}

.hero-ghost-word {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(7.2rem, 25vw, 24rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.08em;
  white-space: nowrap;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 190px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(186,255,0,.12), transparent 52%),
    linear-gradient(to bottom, transparent, rgba(3,207,250,.055));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  text-align: center;
}

.hero-kicker {
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 800;
  color: #596170;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.25rem, 7.3vw, 7.5rem);
  line-height: .93;
  letter-spacing: -.075em;
  font-weight: 800;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan-deep), var(--cyan) 46%, var(--lime-deep) 82%, var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 660px;
  margin: 30px auto 30px;
  color: #3d4654;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 800;
}

.button-outline { border: 1.5px solid var(--ink); transition: background .25s, color .25s, transform .25s; }
.button-outline:hover { background: var(--navy); color: white; transform: translateY(-3px); }

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
}
.scroll-mark {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  align-items: end;
  gap: 3px;
  height: 24px;
}
.scroll-mark i {
  display: block;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--cyan), var(--lime));
}
.scroll-mark i:nth-child(1) { height: 12px; opacity: .72; }
.scroll-mark i:nth-child(2) { height: 18px; opacity: .9; }
.scroll-mark i:nth-child(3) { height: 24px; }
.scroll-label { text-align: center; line-height: 1.35; }
.scroll-line {
  position: relative;
  width: 1px;
  height: 64px;
  margin-top: 2px;
  background: linear-gradient(to bottom, var(--cyan), var(--lime));
}
.scroll-line i {
  position: absolute;
  left: 50%;
  top: 0;
  width: 13px;
  height: 13px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(186,255,0,.72), 0 0 18px rgba(3,207,250,.48);
  animation: scroll-drop 2.4s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { top: 0; opacity: 0; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.section-pad { width: var(--container); margin-inline: auto; padding: 112px 0; }

.studio-intro.studio-intro-exact {
  width: min(1570px, 100vw);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 840fr) minmax(0, 730fr);
  gap: 0;
  align-items: start;
  padding: 0;
}
.studio-media-exact {
  position: relative;
  min-height: 0;
}
.studio-exact-image {
  display: block;
  width: 100%;
  height: auto;
}
.studio-intro-exact .studio-copy {
  max-width: 660px;
  padding-top: clamp(52px, 9.35vw, 147px);
  padding-left: clamp(20px, 3.05vw, 48px);
}
.studio-intro-exact .studio-label {
  margin-bottom: clamp(26px, 3vw, 44px);
}
.studio-intro-exact .studio-copy h2 {
  max-width: 650px;
  margin-bottom: clamp(28px, 4.25vw, 66px);
  font-size: clamp(2.7rem, 3.52vw, 3.46rem);
  line-height: 1.12;
  letter-spacing: -.065em;
}
.studio-intro-exact .studio-copy h2 em {
  display: block;
}
.studio-intro-exact .studio-copy p:not(.studio-label) {
  max-width: 552px;
  margin-bottom: clamp(22px, 2.45vw, 38px);
  font-size: clamp(1rem, 1.42vw, 1.37rem);
  line-height: 1.5;
}
.studio-intro-exact .studio-button {
  min-width: 276px;
  min-height: 66px;
  margin-top: clamp(2px, 1.15vw, 18px);
  font-size: 1.2rem;
}

@media (max-width: 980px) {
  .studio-intro.studio-intro-exact {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .studio-media-exact {
    width: 100%;
    overflow: hidden;
  }
  .studio-exact-image {
    width: min(840px, 112vw);
    max-width: none;
    margin-left: -7vw;
  }
  .studio-intro-exact .studio-copy {
    width: var(--container);
    max-width: 720px;
    margin-inline: auto;
    padding: 32px 0 0;
  }
}

@media (max-width: 680px) {
  .studio-exact-image {
    width: 128vw;
    margin-left: -22vw;
  }
  .studio-intro-exact .studio-copy {
    padding-top: 26px;
  }
  .studio-intro-exact .studio-copy h2 {
    font-size: clamp(2.85rem, 12.5vw, 4.15rem);
    line-height: .98;
  }
  .studio-intro-exact .studio-copy p:not(.studio-label) {
    font-size: 1rem;
  }
  .studio-intro-exact .studio-button {
    width: 100%;
    max-width: 330px;
    min-width: 0;
    min-height: 58px;
    font-size: 1rem;
  }
}

.studio-intro {
  --intro-progress: .5;
  width: min(1460px, calc(100vw - 112px));
  display: grid;
  grid-template-columns: minmax(560px, .95fr) minmax(620px, 1.05fr);
  gap: clamp(58px, 6vw, 104px);
  align-items: center;
  min-height: 790px;
}

.studio-media {
  position: relative;
  min-height: 585px;
  isolation: isolate;
  perspective: 1400px;
}
.studio-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 92%;
  height: 76%;
  left: 2%;
  top: 17%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 64%, rgba(3,207,250,.24), transparent 50%),
    radial-gradient(circle at 74% 74%, rgba(186,255,0,.2), transparent 35%);
  filter: blur(22px);
  opacity: .92;
}
.studio-media::after {
  content: "";
  position: absolute;
  left: 74px;
  right: -18px;
  bottom: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(3,207,250,.72), rgba(186,255,0,.5), transparent);
  opacity: .42;
}
.studio-scroll {
  position: absolute;
  left: 0;
  top: 43%;
  transform: translateY(-50%);
  width: 42px;
  height: 190px;
  color: #708093;
  display: grid;
  place-items: center;
  font-size: .78rem;
  letter-spacing: .08em;
}
.studio-scroll::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #cdd6df 22%, #cdd6df 78%, transparent);
}
.studio-scroll i {
  position: absolute;
  z-index: 1;
  top: calc(28px + (var(--intro-progress) * 78px));
  left: 50%;
  width: 3px;
  height: 48px;
  border-radius: 99px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--cyan), var(--lime));
  box-shadow: 0 0 20px rgba(3,207,250,.26);
}
.studio-scroll span,
.studio-scroll em {
  position: absolute;
  left: 26px;
  font-style: normal;
}
.studio-scroll span { top: 118px; }
.studio-scroll em { top: 152px; }

.studio-shot,
.studio-logo-tile,
.studio-tag {
  position: absolute;
  will-change: transform;
}

.studio-shot {
  overflow: hidden;
  border: 1px solid rgba(8,17,38,.08);
  border-radius: 13px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 38px 90px rgba(8,17,38,.16);
  transform-style: preserve-3d;
}
.studio-shot img {
  display: block;
  width: 100%;
  height: calc(100% - 34px);
  object-fit: cover;
  object-position: top center;
}
.shot-chrome {
  height: 34px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(8,17,38,.07);
}
.shot-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b7c4cf;
}
.shot-chrome span:nth-child(1) { background: #7bd4ec; }
.shot-chrome span:nth-child(2) { background: #a8e8f5; }
.shot-chrome span:nth-child(3) { background: #baff00; }

.shot-stay {
  left: 74px;
  top: 66px;
  width: 392px;
  height: 272px;
  transform:
    translate3d(calc((var(--intro-progress) - .5) * -32px), calc((var(--intro-progress) - .5) * 16px), -28px)
    rotateY(4deg)
    rotate(-1.8deg);
  opacity: .98;
}
.shot-jrbc {
  left: 272px;
  top: 214px;
  width: 378px;
  height: 244px;
  transform:
    translate3d(calc((var(--intro-progress) - .5) * -10px), calc((var(--intro-progress) - .5) * -20px), 0)
    rotateY(-5deg)
    rotate(2deg);
  z-index: 2;
}
.shot-ln {
  left: 112px;
  top: 314px;
  width: 436px;
  height: 276px;
  transform:
    translate3d(calc((var(--intro-progress) - .5) * 24px), calc((var(--intro-progress) - .5) * -34px), 26px)
    rotateY(-3deg)
    rotate(-1.2deg);
  z-index: 3;
  box-shadow: 0 54px 110px rgba(8,17,38,.22);
}
.studio-logo-tile {
  z-index: 4;
  right: 42px;
  top: 118px;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #061226;
  box-shadow: 0 28px 64px rgba(3,207,250,.18);
  transform:
    translate3d(calc((var(--intro-progress) - .5) * 14px), calc((var(--intro-progress) - .5) * -18px), 36px)
    rotate(2deg);
}
.studio-logo-tile img {
  width: 76px;
  height: auto;
  object-fit: contain;
}
.studio-tag {
  z-index: 5;
  color: var(--ink);
  font-size: .66rem;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.studio-tag::before,
.studio-tag::after {
  content: "";
  position: absolute;
  background: var(--cyan);
}
.studio-tag-left {
  left: 20px;
  top: 236px;
}
.studio-tag-left::before {
  width: 34px;
  height: 2px;
  left: -46px;
  top: 17px;
}
.studio-tag-left::after {
  width: 10px;
  height: 10px;
  left: -58px;
  top: 12px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(3,207,250,.55);
}
.studio-tag-right {
  right: -18px;
  top: 260px;
}
.studio-tag-right::before {
  width: 32px;
  height: 2px;
  left: -42px;
  top: 17px;
  background: var(--lime);
}
.studio-tag-right::after {
  width: 10px;
  height: 10px;
  left: -54px;
  top: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 20px rgba(186,255,0,.55);
}

.studio-pane {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(8,17,38,.075);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 36px 86px rgba(8,17,38,.13);
  backdrop-filter: blur(18px);
  will-change: transform;
}
.pane-chrome {
  height: 38px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.74);
  border-bottom: 1px solid rgba(8,17,38,.06);
}
.pane-chrome.dark {
  background: rgba(7,16,34,.82);
  border-bottom-color: rgba(255,255,255,.06);
}
.pane-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4ced8;
}
.pane-chrome span:nth-child(1) { background: #ff6360; }
.pane-chrome span:nth-child(2) { background: #ffca3a; }
.pane-chrome span:nth-child(3) { background: #4cd964; }

.pane-wireframe {
  left: 38px;
  top: 74px;
  width: 340px;
  height: 410px;
  transform:
    translate3d(calc((var(--intro-progress) - .5) * -26px), calc((var(--intro-progress) - .5) * 14px), -22px)
    rotateY(4deg)
    rotate(-1.9deg);
  opacity: .82;
}
.wireframe-grid {
  padding: 30px 31px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 15px;
}
.wireframe-grid b,
.wireframe-grid i,
.wireframe-grid span {
  display: block;
  border-radius: 7px;
  background: #e4eaf0;
}
.wireframe-grid b {
  grid-column: 1 / -1;
  width: 46%;
  height: 13px;
}
.wireframe-grid i {
  grid-column: 1 / -1;
  height: 105px;
  border: 2px solid #d8e0e8;
  background:
    linear-gradient(35deg, transparent calc(50% - 1px), #d8e0e8 calc(50% - 1px), #d8e0e8 calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(-35deg, transparent calc(50% - 1px), #d8e0e8 calc(50% - 1px), #d8e0e8 calc(50% + 1px), transparent calc(50% + 1px));
}
.wireframe-grid i:nth-of-type(2),
.wireframe-grid i:nth-of-type(3) {
  height: 12px;
  border: 0;
  background: #d9e1e9;
}
.wireframe-grid span { height: 78px; }

.pane-code {
  left: 184px;
  top: 138px;
  width: 330px;
  height: 342px;
  backdrop-filter: none;
  background:
    radial-gradient(circle at 96% 2%, rgba(3,207,250,.2), transparent 36%),
    linear-gradient(145deg, #07182e, #071326 52%, #031022);
  transform:
    translate3d(calc((var(--intro-progress) - .5) * -8px), calc((var(--intro-progress) - .5) * -18px), 0)
    rotateY(-5deg)
    rotate(.9deg);
}
.code-lines {
  padding: 28px 34px 28px 84px;
  display: grid;
  gap: 9px;
  position: relative;
}
.code-lines::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 32px;
  bottom: 32px;
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255,255,255,.14), rgba(255,255,255,.04));
}
.code-lines i {
  display: block;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(3,207,250,.96) 0 26%, rgba(186,255,0,.9) 26% 34%, rgba(255,255,255,.35) 34% 72%, transparent 72%);
}
.code-lines i:nth-child(2n) {
  width: 76%;
  margin-left: 30px;
  background: linear-gradient(90deg, rgba(255,255,255,.32), rgba(3,207,250,.86) 42%, rgba(186,255,0,.82) 58%, transparent 58%);
}
.code-lines i:nth-child(3n) { width: 58%; }

.pane-preview {
  left: 264px;
  top: 214px;
  width: 420px;
  height: 330px;
  color: white;
  isolation: isolate;
  backdrop-filter: none;
  background:
    linear-gradient(115deg, transparent 0 57%, rgba(3,207,250,.18) 57% 62%, transparent 62%),
    radial-gradient(circle at 98% 86%, rgba(186,255,0,.95), transparent 28%),
    radial-gradient(circle at 78% 76%, rgba(3,207,250,.72), transparent 34%),
    linear-gradient(135deg, #06152a, #020917 56%, #071f42);
  transform:
    translate3d(calc((var(--intro-progress) - .5) * 22px), calc((var(--intro-progress) - .5) * -28px), 28px)
    rotateY(-3deg)
    rotate(-1deg);
  box-shadow: 0 54px 112px rgba(8,17,38,.24);
}
.pane-preview::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 92px 80px -42px 228px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 78%, rgba(255,255,255,.14), transparent 18%),
    linear-gradient(142deg, rgba(3,207,250,.98), rgba(19,109,255,.88) 48%, rgba(186,255,0,.98));
  transform: skewX(-13deg) rotate(-5deg);
  filter: saturate(1.1);
}
.pane-preview::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 6px;
  bottom: -44px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 34%, rgba(255,255,255,.3), transparent 24%), linear-gradient(135deg, var(--cyan), var(--lime));
  opacity: .88;
}
.preview-nav {
  height: 60px;
  padding: 13px 19px;
  display: flex;
  align-items: center;
  gap: 19px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 2;
}
.preview-nav img {
  width: 64px;
  height: auto;
  object-fit: contain;
}
.preview-nav span {
  width: 34px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,.24);
}
.preview-nav span:first-of-type { margin-left: auto; }
.preview-nav b {
  width: 42px;
  height: 20px;
  border-radius: 999px;
  background: var(--lime);
}
.preview-body {
  position: relative;
  z-index: 3;
  padding: 50px 39px;
}
.preview-body h3 {
  margin: 0 0 16px;
  max-width: 205px;
  font-size: 2.1rem;
  line-height: .98;
  letter-spacing: -.06em;
}
.preview-body h3 span { color: var(--cyan); }
.preview-body p {
  height: 7px;
  margin: 0 0 9px;
  width: 42%;
  border-radius: 99px;
  background: rgba(255,255,255,.24);
}
.preview-body p:nth-of-type(2) { width: 34%; }
.preview-body a {
  display: block;
  width: 88px;
  height: 31px;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--cyan);
}
.preview-orb {
  display: none;
}

.studio-copy {
  max-width: 720px;
  padding-top: 4px;
}
.studio-label {
  margin: 0 0 24px;
  color: #5b6576;
  font-size: .98rem;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.studio-label span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 18px rgba(3,207,250,.36);
}
.studio-copy h2 {
  margin: 0 0 42px;
  max-width: 760px;
  font-size: clamp(3.45rem, 4.45vw, 5.05rem);
  line-height: .98;
  letter-spacing: -.073em;
}
.studio-copy h2 em {
  display: block;
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, var(--cyan-deep), var(--cyan) 50%, var(--lime-deep));
  -webkit-background-clip: text;
  background-clip: text;
}
.studio-copy p:not(.studio-label) {
  max-width: 660px;
  margin: 0 0 27px;
  color: #253047;
  font-size: clamp(1.03rem, 1.35vw, 1.22rem);
  line-height: 1.56;
}
.studio-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 232px;
  min-height: 58px;
  margin-top: 12px;
  padding: 0 26px;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.studio-button:hover {
  transform: translateY(-3px);
  background: var(--navy);
  color: white;
}
.journal h2 em { color: var(--cyan-deep); font-style: normal; }

.text-links { display: flex; flex-wrap: wrap; gap: 34px; }
.text-links a, .arrow-link, .article-card > a, .journal-heading > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 800;
  font-size: .77rem;
}
.text-links a::after, .arrow-link::after, .article-card > a::after, .journal-heading > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  height: 2px;
  background: currentColor;
  transition: width .25s;
}
.text-links a:hover::after, .arrow-link:hover::after, .article-card > a:hover::after, .journal-heading > a:hover::after { width: 100%; }
.accent-link { color: var(--cyan-deep); }
.lime-link { color: var(--lime-deep); }

.featured-wrap { padding: 20px 24px 84px; }
.portfolio-wrap { scroll-margin-top: 112px; }
.section-label { margin: 0 0 19px; color: var(--lime); font-size: .71rem; letter-spacing: .17em; text-transform: uppercase; font-weight: 800; }
.section-label.cyan { color: var(--cyan-deep); }
.section-label.lime { color: var(--lime-deep); }
.arrow-link { color: var(--lime); }

.portfolio-stage {
  position: relative;
  width: min(1460px, calc(100vw - 56px));
  min-height: 720px;
  margin-inline: auto;
  padding: clamp(34px, 4vw, 54px);
  border-radius: 16px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 95% 18%, rgba(3,207,250,.24), transparent 29%),
    radial-gradient(circle at 2% 98%, rgba(3,207,250,.2), transparent 27%),
    linear-gradient(145deg, #020a1b 0%, #05162d 54%, #08243e 100%);
  box-shadow: 0 32px 82px rgba(2,10,27,.22);
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: clamp(28px, 3.5vw, 46px) clamp(30px, 4vw, 56px);
  isolation: isolate;
}
.portfolio-stage::before,
.portfolio-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(3,207,250,.25);
  border-radius: 50%;
  pointer-events: none;
}
.portfolio-stage::before {
  width: 620px;
  height: 620px;
  left: -330px;
  bottom: -290px;
}
.portfolio-stage::after {
  width: 490px;
  height: 490px;
  right: -230px;
  top: -140px;
}
.portfolio-stage-head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  padding-bottom: 6px;
}
.portfolio-stage-head .section-label {
  margin-bottom: 12px;
}
.portfolio-stage-head h2 {
  margin: 0;
  color: white;
  font-size: clamp(3.2rem, 6vw, 6.35rem);
  line-height: .9;
  letter-spacing: -.075em;
}
.portfolio-stage-head p:not(.section-label) {
  margin: 0 0 9px;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem, 1.28vw, 1.15rem);
  line-height: 1.55;
}
.portfolio-rail {
  grid-column: 1;
  grid-row: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.portfolio-rail p {
  margin: 34px 0 20px;
  color: var(--cyan);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
}
.portfolio-rail ul {
  list-style: none;
  margin: 0;
  padding: 0 0 34px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  display: grid;
  gap: 3px;
}
.portfolio-rail li {
  min-height: 45px;
  padding: 10px 13px 10px 17px;
  border-radius: 7px;
  color: rgba(255,255,255,.78);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .9rem;
}
.portfolio-rail li.active {
  position: relative;
  background: rgba(255,255,255,.09);
  color: white;
  font-weight: 900;
}
.portfolio-rail li.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 99px;
  background: var(--lime);
}
.portfolio-rail strong {
  font-size: .86rem;
}
.rail-note {
  margin-top: auto;
  padding-left: 18px;
  border-left: 4px solid var(--lime);
  color: rgba(255,255,255,.82);
  line-height: 1.35;
}
.portfolio-rail img {
  width: 190px;
  margin-top: 46px;
  filter: drop-shadow(0 18px 28px rgba(3,207,250,.2));
}
.portfolio-grid {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1.2fr;
  grid-template-rows: auto auto 1fr;
  gap: 30px 24px;
  align-items: start;
}
.portfolio-card {
  position: relative;
  min-width: 0;
}
.portfolio-reveal {
  opacity: 0;
  transform: translateY(54px) scale(.965);
  transform-origin: 50% 90%;
  transition: opacity .82s ease, transform .92s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--portfolio-delay, 0ms);
  will-change: transform, opacity;
}
.portfolio-card-main.portfolio-reveal { transform: translateY(62px) translateX(22px) scale(.96); }
.portfolio-card-shine.portfolio-reveal { transform: translateY(48px) translateX(-26px) scale(.965); }
.portfolio-card-jrbc.portfolio-reveal { transform: translateY(58px) translateX(-18px) scale(.965); }
.portfolio-card-ln.portfolio-reveal { transform: translateY(46px) translateX(18px) scale(.965); }
.portfolio-reveal.is-visible,
.portfolio-card-main.portfolio-reveal.is-visible,
.portfolio-card-shine.portfolio-reveal.is-visible,
.portfolio-card-jrbc.portfolio-reveal.is-visible,
.portfolio-card-ln.portfolio-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.portfolio-card a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 11px;
  background: white;
  box-shadow: 0 24px 58px rgba(0,0,0,.34);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .45s ease;
}
.portfolio-card a:hover {
  transform: translateY(-8px);
  border-color: rgba(186,255,0,.65);
  box-shadow: 0 34px 72px rgba(0,0,0,.45), 0 0 0 1px rgba(186,255,0,.16);
}
.browser-top {
  height: 30px;
  padding: 0 13px;
  background: #f4f7fb;
  display: flex;
  align-items: center;
  gap: 8px;
}
.browser-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4ccd6;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
}
.portfolio-card-main {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.portfolio-card-main a {
  aspect-ratio: 16 / 9;
  border-radius: 13px;
}
.portfolio-card-shine {
  grid-column: 1;
  grid-row: 1;
  margin-top: 36px;
}
.portfolio-card-shine a { aspect-ratio: 1.55; }
.portfolio-card-jrbc {
  grid-column: 1;
  grid-row: 2 / span 2;
}
.portfolio-card-jrbc a { aspect-ratio: 1.62; }
.portfolio-card-ln {
  grid-column: 2;
  grid-row: 3;
  width: 68%;
  margin-top: -4px;
}
.portfolio-card-ln a { aspect-ratio: 1.9; }
.portfolio-card-caption {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 15px;
}
.portfolio-card-caption > span {
  min-width: 96px;
  padding: 5px 14px 6px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--lime);
  text-align: center;
  font-size: .76rem;
  font-weight: 900;
}
.portfolio-card-jrbc .portfolio-card-caption > span,
.portfolio-card-main .portfolio-card-caption > span {
  color: #ffd86c;
}
.portfolio-card h3 {
  margin: 0 0 2px;
  font-size: 1.02rem;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.portfolio-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .85rem;
  line-height: 1.35;
}
.portfolio-pager {
  position: absolute;
  right: 0;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: white;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.portfolio-pager i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.portfolio-pager i::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  margin: 20px 0 0 18px;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  transform: rotate(45deg);
}

@media (min-width: 981px) {
  .portfolio-wrap {
    height: 212vh;
    min-height: 1600px;
    padding-bottom: 18vh;
  }

  .portfolio-stage {
    position: sticky;
    top: 92px;
    min-height: min(790px, calc(100vh - 116px));
    align-content: start;
  }

  .portfolio-grid {
    min-height: min(540px, calc(100vh - 292px));
    display: block;
    perspective: 1200px;
  }

  .portfolio-stage[data-diagonal-active="true"] .portfolio-card {
    position: absolute;
    width: min(73%, 880px);
    left: 0;
    top: 0;
    z-index: var(--card-z, 1);
    opacity: var(--card-opacity, 1);
    transform:
      translate3d(var(--card-x, 0px), var(--card-y, 0px), 0)
      rotate(var(--card-rotate, 0deg))
      scale(var(--card-scale, 1));
    transform-origin: 50% 62%;
  }

  .portfolio-stage[data-diagonal-active="true"] .portfolio-card a {
    aspect-ratio: 16 / 9;
    box-shadow:
      0 30px 76px rgba(0,0,0,.42),
      0 0 0 1px rgba(255,255,255,.12);
  }

  .portfolio-stage[data-diagonal-active="true"] .portfolio-card-main,
  .portfolio-stage[data-diagonal-active="true"] .portfolio-card-shine,
  .portfolio-stage[data-diagonal-active="true"] .portfolio-card-jrbc,
  .portfolio-stage[data-diagonal-active="true"] .portfolio-card-ln {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .portfolio-stage[data-diagonal-active="true"] .portfolio-card-ln {
    width: min(73%, 880px);
  }

  .portfolio-stage[data-diagonal-active="true"] .portfolio-card-caption {
    width: min(100%, 860px);
    padding: 0 8px;
  }

  .portfolio-stage[data-diagonal-active="true"] .portfolio-card-main.portfolio-reveal,
  .portfolio-stage[data-diagonal-active="true"] .portfolio-card-shine.portfolio-reveal,
  .portfolio-stage[data-diagonal-active="true"] .portfolio-card-jrbc.portfolio-reveal,
  .portfolio-stage[data-diagonal-active="true"] .portfolio-card-ln.portfolio-reveal {
    transition:
      opacity .28s ease,
      filter .28s ease,
      transform .05s linear;
  }

  .portfolio-stage[data-diagonal-active="true"] .portfolio-card::after {
    content: "";
    position: absolute;
    inset: -12px;
    z-index: -1;
    border-radius: 20px;
    background: radial-gradient(circle at 55% 20%, rgba(3,207,250,.22), transparent 46%);
    opacity: var(--card-glow, 0);
    filter: blur(12px);
    transition: opacity .3s ease;
    pointer-events: none;
  }
}

.design-showcase {
  width: min(1200px, calc(100vw - 170px));
  margin-inline: auto;
  padding-block: clamp(100px, 8vw, 140px);
  display: grid;
  grid-template-columns: minmax(310px, .74fr) minmax(560px, 1fr);
  gap: clamp(72px, 7vw, 104px);
  align-items: center;
  background: #fff;
  color: var(--navy);
  scroll-margin-top: 110px;
}
.design-showcase-left {
  display: grid;
  gap: clamp(56px, 5vw, 78px);
  align-content: center;
}
.design-showcase-left h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.8rem, 6.2vw, 6.55rem);
  line-height: .88;
  letter-spacing: -.075em;
  text-shadow: 0 11px 28px rgba(2,10,27,.07);
}
.design-orbit {
  --orbit-size: min(318px, 22vw);
  --spoke-angle: 0deg;
  --spoke-opacity: .9;
  position: relative;
  width: var(--orbit-size);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(8,28,58,.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 37%, rgba(186,255,0,.2), transparent 17%),
    radial-gradient(circle at 34% 69%, rgba(3,207,250,.2), transparent 19%);
  box-shadow: 0 28px 64px rgba(3,207,250,.1);
}
.design-orbit::before,
.design-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.design-orbit::before {
  inset: 15%;
  border: 1px solid rgba(8,28,58,.08);
}
.design-orbit::after {
  left: 50%;
  bottom: 50%;
  width: 3px;
  height: calc(var(--orbit-size) * .43);
  border-radius: 999px;
  background:
    linear-gradient(to top, rgba(3,207,250,0), rgba(3,207,250,.45) 24%, rgba(186,255,0,.92) 100%);
  opacity: var(--spoke-opacity);
  filter: drop-shadow(0 0 12px rgba(186,255,0,.42));
  transform: translateX(-50%) rotate(var(--spoke-angle));
  transform-origin: 50% 100%;
  transition: transform .28s cubic-bezier(.22,1,.36,1), opacity .22s ease;
}
.design-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 104px;
  height: 104px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 42px rgba(2,10,27,.12);
}
.design-orbit-core strong {
  font-size: 2.32rem;
  line-height: .8;
  letter-spacing: -.1em;
}
.design-orbit-core strong span { color: var(--lime-deep); }
.design-orbit-core small {
  color: rgba(2,10,27,.72);
  font-size: .56rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: .2em;
  text-align: center;
  text-transform: uppercase;
}
.design-orbit-item {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 5;
  transform: translate(-50%, -50%);
  width: 98px;
  min-height: 58px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  cursor: pointer;
  text-align: center;
}
.design-orbit-item i {
  width: 42px;
  height: 42px;
  margin: 0 auto 6px;
  border: 1px solid rgba(8,28,58,.13);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 27px rgba(2,10,27,.1);
  color: var(--navy);
  font-style: normal;
  font-weight: 900;
  transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.design-orbit-item svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.design-orbit-item span {
  display: block;
  color: var(--navy);
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  text-shadow: 0 1px 0 white;
}
.design-orbit-item.active i,
.design-orbit-item:hover i,
.design-orbit-item:focus-visible i {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(186,255,0,.82);
  background: linear-gradient(135deg, #fff 0%, rgba(3,207,250,.13) 54%, rgba(186,255,0,.32) 100%);
  box-shadow: 0 14px 30px rgba(3,207,250,.18), 0 0 0 6px rgba(186,255,0,.12);
}
.design-orbit-item.active span {
  color: #05162d;
  text-shadow: 0 0 18px rgba(186,255,0,.25), 0 1px 0 white;
}
.design-showcase-right {
  min-width: 0;
  display: grid;
  gap: clamp(24px, 3vw, 34px);
}
.design-mosaic {
  position: relative;
  width: 100%;
  height: clamp(380px, 29vw, 445px);
  isolation: isolate;
}
.design-card {
  position: absolute;
  left: var(--slot-x);
  top: var(--slot-y);
  z-index: var(--slot-z);
  width: var(--slot-w);
  height: var(--slot-h);
  display: block;
  overflow: hidden;
  border: 1px solid rgba(8,28,58,.08);
  border-radius: 13px;
  background: #eef6fb;
  box-shadow: 0 18px 42px rgba(2,10,27,.13);
  transform: translate3d(0, 0, 0) scale(var(--slot-scale, 1));
  transition:
    left .75s cubic-bezier(.19,1,.22,1),
    top .75s cubic-bezier(.19,1,.22,1),
    width .75s cubic-bezier(.19,1,.22,1),
    height .75s cubic-bezier(.19,1,.22,1),
    transform .75s cubic-bezier(.19,1,.22,1),
    box-shadow .35s ease,
    filter .45s ease;
}
.design-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2,10,27,.5) 100%);
  pointer-events: none;
}
.design-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  transition: transform .75s cubic-bezier(.19,1,.22,1);
}
.design-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(2,10,27,.76);
  color: white;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.design-card:hover,
.design-card:focus-visible {
  z-index: 20;
  transform: translateY(-8px) scale(calc(var(--slot-scale, 1) + .015));
  box-shadow: 0 28px 58px rgba(2,10,27,.2), 0 0 0 5px rgba(3,207,250,.11);
}
.design-card:hover img,
.design-card:focus-visible img { transform: scale(1.045); }
.design-card[data-slot="wide-a"] {
  --slot-x: 0%;
  --slot-y: 0%;
  --slot-w: 49%;
  --slot-h: 43%;
  --slot-z: 6;
  --slot-scale: 1;
}
.design-card[data-slot="wide-b"] {
  --slot-x: 51.5%;
  --slot-y: 0%;
  --slot-w: 48.5%;
  --slot-h: 43%;
  --slot-z: 5;
  --slot-scale: 1;
}
.design-card[data-slot="tall"] {
  --slot-x: 0%;
  --slot-y: 46%;
  --slot-w: 24%;
  --slot-h: 54%;
  --slot-z: 4;
  --slot-scale: 1;
}
.design-card[data-slot="mid-a"] {
  --slot-x: 27%;
  --slot-y: 46%;
  --slot-w: 22%;
  --slot-h: 25.5%;
  --slot-z: 3;
  --slot-scale: 1;
}
.design-card[data-slot="mid-b"] {
  --slot-x: 27%;
  --slot-y: 74.5%;
  --slot-w: 22%;
  --slot-h: 25.5%;
  --slot-z: 2;
  --slot-scale: 1;
}
.design-card[data-slot="large-b"] {
  --slot-x: 51.5%;
  --slot-y: 46%;
  --slot-w: 48.5%;
  --slot-h: 54%;
  --slot-z: 7;
  --slot-scale: 1;
}
.design-copy {
  width: min(690px, 100%);
  margin-left: auto;
  padding-right: clamp(0px, 1vw, 12px);
}
.design-copy h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.35vw, 2.25rem);
  line-height: 1.06;
  letter-spacing: -.065em;
}
.design-copy p {
  margin: 0;
  color: rgba(8,28,58,.64);
  font-size: clamp(.98rem, 1.08vw, 1.06rem);
  line-height: 1.47;
  max-width: 650px;
}
.design-button {
  width: fit-content;
  margin-top: 22px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid rgba(8,28,58,.95);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-weight: 900;
  transition: transform .28s cubic-bezier(.22,1,.36,1), background .28s ease, color .28s ease, box-shadow .28s ease;
}
.design-button:hover,
.design-button:focus-visible {
  transform: translateY(-3px);
  background: var(--navy);
  color: white;
  box-shadow: 0 18px 38px rgba(2,10,27,.18);
}

@media (max-width: 1120px) {
  .design-showcase {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .design-showcase-left {
    width: min(760px, 100%);
  }
  .design-orbit {
    --orbit-size: min(350px, calc(100vw - 180px));
    margin-left: 72px;
  }
  .design-showcase-right {
    width: min(820px, 100%);
    margin-left: auto;
  }
}

@media (max-width: 980px) {
  .design-showcase {
    width: var(--container);
    padding-block: 86px;
  }
  .design-showcase-left {
    width: 100%;
  }
  .design-showcase-left h2 {
    font-size: clamp(4.2rem, 17vw, 7rem);
  }
  .design-orbit {
    --orbit-size: min(380px, calc(100vw - 120px));
    margin-left: auto;
    margin-right: auto;
  }
  .design-orbit-item {
    width: 112px;
  }
  .design-orbit-item span {
    font-size: .84rem;
  }
  .design-mosaic {
    height: 760px;
  }
  .design-card[data-slot="wide-a"],
  .design-card[data-slot="wide-b"],
  .design-card[data-slot="tall"],
  .design-card[data-slot="mid-a"],
  .design-card[data-slot="mid-b"],
  .design-card[data-slot="large-b"] {
    --slot-x: auto;
    --slot-y: auto;
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
  }
  .design-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
    gap: 14px;
  }
  .design-card {
    position: relative;
    min-height: 0;
  }
  .design-card:nth-child(1),
  .design-card:nth-child(6) {
    grid-column: 1 / -1;
  }
  .design-copy {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .design-showcase {
    width: var(--container);
    padding-block: 74px;
    gap: 44px;
  }
  .design-showcase-left {
    gap: 62px;
  }
  .design-showcase-left h2 {
    font-size: clamp(3.35rem, 14.5vw, 4.25rem);
    line-height: .9;
  }
  .design-orbit {
    --orbit-size: min(252px, calc(100vw - 108px));
    margin-inline: auto;
  }
  .design-orbit-core {
    width: 102px;
    height: 102px;
  }
  .design-orbit-core strong {
    font-size: 2.35rem;
  }
  .design-orbit-core small {
    font-size: .55rem;
  }
  .design-orbit-item {
    width: 92px;
  }
  .design-orbit-item i {
    width: 44px;
    height: 44px;
    margin-bottom: 6px;
  }
  .design-orbit-item span {
    font-size: .68rem;
  }
  .design-mosaic {
    height: auto;
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .design-card:nth-child(1),
  .design-card:nth-child(6) {
    grid-column: auto;
  }
  .design-copy h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .design-button {
    width: 100%;
    justify-content: center;
  }
}

.services { width: var(--container); margin-inline: auto; }
.service {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: 112px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.service::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}
.service-a::before { background: linear-gradient(110deg, rgba(3,207,250,.035), transparent 42%); }
.service-b::before { background: linear-gradient(250deg, rgba(186,255,0,.055), transparent 48%); }
.service-c::before { background: linear-gradient(110deg, rgba(3,207,250,.045), transparent 46%); }
.service-copy h2 { margin: 0 0 24px; max-width: 560px; font-size: clamp(2.75rem, 3.8vw, 4.2rem); line-height: .96; letter-spacing: -.06em; }
.service-copy p:not(.section-label) { max-width: 570px; margin: 0 0 18px; color: var(--muted); font-size: clamp(.98rem, 1.1vw, 1.08rem); }
.service-copy .text-links { margin-top: 30px; }
.service-art {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  opacity: 0;
  transition: opacity .2s ease;
}
.service-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,207,250,.105), rgba(186,255,0,.04) 45%, transparent 72%);
  filter: blur(10px);
  opacity: .72;
}
.service-b .service-art::before { background: radial-gradient(circle, rgba(186,255,0,.12), rgba(3,207,250,.035) 46%, transparent 72%); }
.service-art.draw-ready { opacity: 1; }
.service-art svg { position: relative; z-index: 1; width: 100%; overflow: visible; }
.art-lines,
.art-accent,
.art-lime {
  fill: none;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.art-lines { stroke: var(--ink); }
.art-accent { stroke: var(--cyan-deep); }
.art-lime { stroke: var(--lime-deep); }
.service-c .art-accent { stroke: var(--cyan); }
.draw-stroke {
  vector-effect: non-scaling-stroke;
  stroke-dasharray: var(--draw-length) var(--draw-length);
  stroke-dashoffset: var(--draw-length);
  transition: stroke-dashoffset 1.45s cubic-bezier(.65,0,.35,1);
  transition-delay: var(--draw-delay, 0ms);
}
.service-art.is-drawn .draw-stroke { stroke-dashoffset: 0; }
.flow-path {
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 7 12;
  opacity: 0;
}
.service-art.is-drawn .flow-path {
  opacity: .9;
  animation: flow-line 7s linear 2.2s infinite;
}
.art-fill {
  fill: var(--lime);
  stroke: var(--ink);
  stroke-width: 2.5;
  opacity: 0;
  transform: scale(.25);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .3s ease 1.9s, transform .6s cubic-bezier(.2,1.6,.4,1) 1.9s;
}
.service-art.is-drawn .art-fill { opacity: 1; transform: scale(1); }
.art-cursor {
  fill: rgba(186,255,0,.22);
  fill-opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transition: stroke-dashoffset 1.45s cubic-bezier(.65,0,.35,1), fill-opacity .35s ease 1.75s;
  transition-delay: var(--draw-delay, 0ms), 1.75s;
}
.service-art.is-drawn .art-cursor {
  fill-opacity: 1;
  animation: cursor-nudge 3.6s ease-in-out 2.4s infinite;
}
.service-art.is-drawn .pulse-dot { animation: pulse-dot 2.4s ease-in-out 2.2s infinite; }
.service-art.is-drawn .delay-one { animation-delay: 2.55s; }
.service-art.is-drawn .delay-two { animation-delay: 2.9s; }
.service-art.is-drawn .backup-arrow { animation: signal-pulse 2.8s ease-in-out 2.4s infinite; }
@keyframes flow-line { to { stroke-dashoffset: -190; } }
@keyframes cursor-nudge { 50% { transform: translate(7px, 5px) rotate(2deg); } }
@keyframes pulse-dot { 50% { transform: scale(1.55); opacity: .48; } }
@keyframes signal-pulse { 50% { opacity: .35; } }

.testimonial {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: var(--container);
  min-height: 350px;
  margin: 72px auto 0;
  padding: 68px 70px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 34px;
  align-items: center;
  border-radius: 52px 6px 52px 6px;
  color: white;
  background:
    radial-gradient(circle at 103% -12%, rgba(186,255,0,.22), transparent 34%),
    radial-gradient(circle at -8% 115%, rgba(3,207,250,.22), transparent 38%),
    linear-gradient(120deg, var(--navy), #071b37);
  box-shadow: 0 30px 80px rgba(2,10,27,.16);
}
.testimonial::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -105px;
  top: -108px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255,255,255,.025), 0 0 0 108px rgba(255,255,255,.018);
}
.quote-mark { align-self: start; padding-top: 82px; font-family: Georgia, serif; font-size: 8rem; line-height: .4; color: var(--cyan); }
.testimonial-meta { display: flex; justify-content: space-between; gap: 24px; margin: 0 0 28px; color: var(--lime); font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.testimonial blockquote { max-width: 850px; margin: 0 0 24px; font-size: clamp(1.55rem, 2.3vw, 2.55rem); line-height: 1.22; letter-spacing: -.042em; font-weight: 650; }
.testimonial-body > p { margin: 0; font-weight: 800; color: #aebed2; }
.quote-controls { display: flex; gap: 12px; }
.quote-controls button { width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(255,255,255,.06); color: white; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s, color .2s; }
.quote-controls button:hover { background: var(--lime); transform: scale(1.08); }

.journal { padding-block: 128px 116px; }
.journal-heading { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; margin-bottom: 38px; }
.journal h2 { margin: 0; font-size: clamp(3.2rem, 5vw, 5.4rem); line-height: .95; letter-spacing: -.064em; }
.journal h2 em { color: var(--lime-deep); }
.journal-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 64px 24px; }
.article-card { grid-column: span 3; padding-top: 14px; border-top: 1px solid var(--line); }
.article-card:nth-child(1) { grid-column: span 7; border-top: 3px solid var(--cyan); }
.article-card:nth-child(2) { grid-column: span 5; border-top: 3px solid var(--lime-deep); }
.article-image { aspect-ratio: 1.35; margin-bottom: 24px; background-position: center; background-size: 100%; transition: background-size .7s cubic-bezier(.22,1,.36,1), filter .4s ease; }
.article-card:nth-child(1) .article-image { aspect-ratio: 1.72; }
.article-card:nth-child(2) .article-image { aspect-ratio: 1.2; }
.article-card:hover .article-image { background-size: 106%; filter: saturate(1.08) contrast(1.03); }
.article-planning { background-image: url("assets/journal-commerce.png"); }
.article-local { background-image: url("assets/featured-property.png"); }
.article-care { background-image: url("assets/journal-consultancy.png"); }
.article-conversion { background-image: linear-gradient(135deg, rgba(3,207,250,.28), rgba(186,255,0,.18)), url("assets/journal-consultancy.png"); background-position: 70% center; }
.article-content { background-image: linear-gradient(135deg, rgba(2,10,27,.02), rgba(3,207,250,.24)), url("assets/journal-commerce.png"); background-position: 65% center; }
.article-hosting { background-image: linear-gradient(135deg, rgba(2,10,27,.62), rgba(186,255,0,.1)), url("assets/featured-property.png"); background-position: 72% center; }
.article-card h3 { margin: 0 0 12px; font-size: clamp(1.2rem, 1.55vw, 1.58rem); line-height: 1.08; letter-spacing: -.04em; }
.article-card:nth-child(-n+2) h3 { font-size: clamp(1.75rem, 2.5vw, 2.65rem); }
.article-card p { min-height: 84px; margin: 0 0 22px; color: var(--muted); }
.article-card:nth-child(-n+2) p { max-width: 590px; font-size: 1.05rem; }

.trust-banner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 64px));
  margin: 0 auto -54px;
  padding: 46px 58px;
  overflow: hidden;
  border-radius: 28px 4px 28px 4px;
  background:
    radial-gradient(circle at 92% 20%, rgba(255,255,255,.42), transparent 23%),
    linear-gradient(105deg, var(--cyan), var(--lime));
  color: var(--navy);
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: center;
  gap: 50px;
  box-shadow: 0 22px 55px rgba(2,10,27,.18);
}
.trust-banner h2 { margin: 0 0 5px; font-size: clamp(1.7rem, 3vw, 3.2rem); line-height: 1.03; letter-spacing: -.05em; }
.trust-banner p { margin: 0; }
.review-placeholder { padding-left: 50px; border-left: 1px solid rgba(2,10,27,.35); }
.review-placeholder span { display: block; font-weight: 800; }
.review-stars {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0;
}
.review-stars span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.7px var(--navy);
  text-shadow: 0 0 0 rgba(255,255,255,0);
  filter: drop-shadow(0 0 0 rgba(255,255,255,0));
  transform: translateY(5px) scale(.88);
  opacity: .58;
  animation:
    review-star-fill 4.6s cubic-bezier(.2,.8,.2,1) calc(var(--star-index) * 145ms) infinite both;
}
.review-stars span:nth-child(5) {
  animation:
    review-star-fill 4.6s cubic-bezier(.2,.8,.2,1) calc(var(--star-index) * 145ms) infinite both,
    review-star-glow 4.6s ease-in-out 520ms infinite both;
}
@keyframes review-star-fill {
  0%, 8% {
    color: transparent;
    transform: translateY(5px) scale(.88);
    opacity: .58;
  }
  15%, 72% {
    color: var(--navy);
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  84%, 100% {
    color: transparent;
    transform: translateY(5px) scale(.88);
    opacity: .58;
  }
}
@keyframes review-star-glow {
  0%, 22%, 66%, 100% {
    text-shadow: 0 0 0 rgba(255,255,255,0), 0 0 0 rgba(183,255,0,0);
    filter: drop-shadow(0 0 0 rgba(255,255,255,0));
  }
  32%, 56% {
    text-shadow:
      0 0 9px rgba(255,255,255,1),
      0 0 24px rgba(255,255,255,.85),
      0 0 42px rgba(183,255,0,.95),
      0 0 62px rgba(0,198,255,.55);
    filter: drop-shadow(0 0 16px rgba(255,255,255,.85));
    transform: translateY(0) scale(1.13);
  }
}

.site-footer {
  min-height: 430px;
  padding: 135px max(32px, calc((100vw - 1180px) / 2)) 60px;
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .8fr;
  gap: 60px;
}
.footer-brand img { width: 220px; }
.footer-brand p { max-width: 300px; color: #aeb9c9; }
.footer-brand small { display: block; margin-top: 70px; color: #7f8b9c; }
.site-footer h2 { margin: 13px 0 19px; color: var(--lime); font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; }
.site-footer > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.site-footer a, .site-footer p { color: #b9c4d3; }
.site-footer a:hover { color: var(--cyan); }
.social-links { display: flex; gap: 11px; margin-top: 20px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #566174; border-radius: 50%; color: white; font-weight: 800; font-size: .78rem; }

.contact-fab {
  position: fixed;
  z-index: 70;
  right: 25px;
  bottom: 25px;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 14px 35px rgba(2,10,27,.25);
  cursor: pointer;
  transition: transform .25s;
}
.contact-fab:hover { transform: scale(1.08) rotate(-4deg); }
.contact-fab svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 2; }

.contact-popover {
  position: fixed;
  z-index: 69;
  right: 28px;
  bottom: 101px;
  width: min(330px, calc(100vw - 56px));
  padding: 28px;
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow);
  display: grid;
  gap: 7px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .25s;
}
.contact-popover.open { opacity: 1; visibility: visible; transform: none; }
.contact-popover button { position: absolute; top: 9px; right: 12px; border: 0; background: none; font-size: 1.5rem; cursor: pointer; }
.contact-popover span { color: var(--cyan-deep); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.contact-popover strong { font-size: 1.2rem; }
.contact-popover a { margin-top: 8px; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .85s ease, transform .85s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --container: min(100% - 44px, 780px); }
  .site-header { padding-inline: 22px; }
  .hero { min-height: 820px; }
  .studio-intro {
    width: var(--container);
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: 0;
  }
  .studio-media {
    min-height: 510px;
    max-width: 720px;
    margin-inline: auto;
    width: 100%;
  }
  .studio-copy {
    max-width: 720px;
    margin-inline: auto;
    padding-top: 0;
  }
  .shot-stay {
    left: 5%;
    top: 48px;
    width: 47%;
    height: 260px;
  }
  .shot-jrbc {
    left: 37%;
    top: 164px;
    width: 45%;
    height: 238px;
  }
  .shot-ln {
    left: 16%;
    top: 280px;
    width: 58%;
    height: 270px;
  }
  .studio-logo-tile {
    right: 7%;
    top: 96px;
  }
  .studio-tag-right { right: 0; }
  .pane-wireframe {
    left: 6%;
    top: 48px;
  }
  .pane-code {
    left: 24%;
    top: 126px;
  }
  .pane-preview {
    left: 36%;
    top: 218px;
    width: min(430px, 58vw);
  }
  .portfolio-stage {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 28px;
  }
  .portfolio-stage-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .portfolio-stage-head p:not(.section-label) {
    max-width: 680px;
  }
  .portfolio-rail {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
  }
  .portfolio-rail p { margin-top: 0; }
  .portfolio-rail ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-bottom: 0;
    gap: 8px;
    padding-bottom: 0;
  }
  .portfolio-rail li {
    min-height: 0;
    justify-content: center;
    text-align: center;
  }
  .portfolio-rail li strong,
  .rail-note,
  .portfolio-rail img { display: none; }
  .portfolio-grid {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-card-main,
  .portfolio-card-shine,
  .portfolio-card-jrbc,
  .portfolio-card-ln {
    grid-column: auto;
    grid-row: auto;
    width: auto;
    margin: 0;
  }
  .portfolio-card-main { grid-column: 1 / -1; }
  .portfolio-card-ln a,
  .portfolio-card-shine a,
  .portfolio-card-jrbc a { aspect-ratio: 1.55; }
  .portfolio-pager { display: none; }
  .service { min-height: auto; grid-template-columns: 1fr; gap: 32px; padding-block: 78px; }
  .service-b .service-art { order: 2; }
  .service-art { max-width: 620px; margin-inline: auto; }
  .testimonial { grid-template-columns: 64px 1fr; padding: 54px 46px; }
  .quote-controls { grid-column: 2; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .article-card, .article-card:nth-child(1), .article-card:nth-child(2) { grid-column: span 1; }
  .article-card:nth-child(1) { grid-column: 1 / -1; }
  .article-card:nth-child(1) .article-image, .article-card:nth-child(2) .article-image { aspect-ratio: 1.55; }
  .site-footer { grid-template-columns: 1.5fr 1fr 1fr; }
  .site-footer > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  :root { --container: calc(100vw - 36px); }
  .site-header { height: 72px; padding: 8px 16px; }
  .site-header.scrolled { height: 66px; }
  .brand { width: 118px; height: 50px; }
  .header-cta { display: none; }
  .header-actions { gap: 6px; }
  .menu-panel {
    width: 100%;
    padding: 98px 28px 34px;
    gap: 26px;
  }
  .menu-label { margin-bottom: 10px; font-size: .68rem; }
  .menu-intro { font-size: .95rem; max-width: 320px; }
  .menu-links {
    align-self: start;
    width: 100%;
  }
  .menu-links a {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
    padding: 10px 0;
  }
  .menu-links a strong {
    font-size: clamp(2rem, 12vw, 3.85rem);
    letter-spacing: -.065em;
  }
  .menu-links a::after { display: none; }
  .menu-contact { padding-top: 18px; font-size: .95rem; }
  .hero { min-height: 100svh; padding: 90px 18px 132px; }
  .hero-ghost-word { top: 46%; font-size: clamp(5.6rem, 32vw, 11rem); }
  .hero-kicker { font-size: .61rem; letter-spacing: .13em; }
  .hero h1 { font-size: clamp(3.15rem, 14vw, 5rem); }
  .hero-copy { font-size: 1rem; }
  .cursor-glow { width: 420px; height: 420px; }
  .scroll-cue { bottom: 22px; gap: 8px; font-size: .53rem; letter-spacing: .18em; }
  .scroll-mark { height: 18px; grid-template-columns: repeat(3, 4px); gap: 3px; }
  .scroll-mark i { width: 4px; }
  .scroll-mark i:nth-child(1) { height: 9px; }
  .scroll-mark i:nth-child(2) { height: 14px; }
  .scroll-mark i:nth-child(3) { height: 18px; }
  .scroll-line { height: 42px; }
  .section-pad { padding-block: 74px; }
  .studio-intro { width: var(--container); gap: 38px; }
  .studio-media {
    min-height: 382px;
    overflow: hidden;
  }
  .studio-media::after { left: 18px; right: 18px; bottom: 14px; }
  .studio-scroll { display: none; }
  .studio-tag { display: none; }
  .shot-chrome {
    height: 28px;
    padding-inline: 10px;
    gap: 6px;
  }
  .shot-chrome span { width: 7px; height: 7px; }
  .studio-shot img { height: calc(100% - 28px); }
  .shot-stay {
    left: 0;
    top: 34px;
    width: 238px;
    height: 168px;
  }
  .shot-jrbc {
    left: 88px;
    top: 128px;
    width: 238px;
    height: 158px;
  }
  .shot-ln {
    left: 34px;
    top: 214px;
    width: min(310px, calc(100% - 18px));
    height: 174px;
  }
  .studio-logo-tile {
    right: 0;
    top: 56px;
    width: 76px;
    height: 76px;
    border-radius: 14px;
  }
  .studio-logo-tile img { width: 52px; }
  .pane-wireframe {
    left: 0;
    top: 38px;
    width: 222px;
    height: 280px;
  }
  .pane-code {
    left: 62px;
    top: 92px;
    width: 246px;
    height: 268px;
  }
  .pane-preview {
    left: 94px;
    top: 158px;
    width: min(270px, calc(100% - 98px));
    height: 236px;
  }
  .preview-nav { height: 50px; padding: 10px 13px; gap: 10px; }
  .preview-nav img { width: 38px; }
  .preview-nav span { width: 24px; height: 5px; }
  .preview-nav b { width: 30px; height: 16px; }
  .preview-body { padding: 28px 24px; }
  .preview-body h3 { max-width: 168px; font-size: 1.46rem; }
  .pane-preview::before {
    inset: 76px 28px -36px 144px;
    border-radius: 28px;
  }
  .pane-preview::after {
    right: -16px;
    bottom: -50px;
    width: 136px;
    height: 136px;
  }
  .preview-orb { width: 146px; height: 146px; right: -58px; bottom: -54px; }
  .studio-copy h2 { font-size: clamp(3.05rem, 12vw, 4.7rem); }
  .studio-copy p:not(.studio-label) { font-size: 1rem; }
  .studio-label { font-size: .88rem; }
  .studio-button { width: 100%; max-width: 330px; }
  .text-links { gap: 24px; flex-direction: column; align-items: flex-start; }
  .featured-wrap { padding: 0 12px 52px; }
  .portfolio-stage {
    width: calc(100vw - 24px);
    padding: 28px 18px 30px;
    border-radius: 36px 4px 36px 4px;
  }
  .portfolio-stage-head h2 { font-size: clamp(3.2rem, 16vw, 5.1rem); }
  .portfolio-stage-head p:not(.section-label) { font-size: .98rem; }
  .portfolio-rail ul {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-rail li {
    padding: 9px 10px;
    font-size: .78rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .portfolio-card-main { grid-column: auto; }
  .portfolio-card-main a,
  .portfolio-card-ln a,
  .portfolio-card-shine a,
  .portfolio-card-jrbc a { aspect-ratio: 1.42; }
  .browser-top {
    height: 23px;
    padding-inline: 10px;
    gap: 6px;
  }
  .browser-top i { width: 6px; height: 6px; }
  .portfolio-card-caption {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .portfolio-card-caption > span {
    width: fit-content;
    min-width: 0;
    padding: 4px 12px 5px;
  }
  .service { padding-block: 76px; gap: 28px; }
  .service-copy h2 { font-size: clamp(2.65rem, 11.5vw, 3.65rem); }
  .service-copy p:not(.section-label) { font-size: 1rem; }
  .service-art { max-width: 430px; }
  .testimonial { width: calc(100vw - 28px); margin-top: 42px; padding: 46px 26px; grid-template-columns: 1fr; gap: 14px; border-radius: 36px 4px 36px 4px; }
  .quote-mark { padding-top: 12px; font-size: 5rem; }
  .testimonial-meta { margin-bottom: 20px; }
  .testimonial blockquote { font-size: 1.5rem; }
  .quote-controls { grid-column: 1; }
  .journal-heading { align-items: flex-start; flex-direction: column; }
  .journal h2 { font-size: 3.25rem; }
  .journal { padding-block: 92px 84px; }
  .journal-grid { grid-template-columns: 1fr; gap: 52px; }
  .article-card, .article-card:nth-child(1), .article-card:nth-child(2) { grid-column: 1; }
  .article-card:nth-child(1) .article-image, .article-card:nth-child(2) .article-image { aspect-ratio: 1.35; }
  .article-card:nth-child(-n+2) h3 { font-size: 1.85rem; }
  .article-card p { min-height: 0; }
  .trust-banner { width: calc(100vw - 28px); margin-bottom: -38px; padding: 34px 26px; grid-template-columns: 1fr; gap: 26px; }
  .review-placeholder { padding: 24px 0 0; border-left: 0; border-top: 1px solid rgba(2,10,27,.35); }
  .site-footer { padding: 100px 24px 80px; grid-template-columns: 1fr 1fr; gap: 44px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand small { margin-top: 34px; }
  .site-footer > div:last-child { grid-column: 1 / -1; }
  .contact-fab { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .contact-popover { right: 16px; bottom: 82px; }
}

@media (max-width: 480px), (pointer: coarse) {
  .hero-trail { display: none; }
}

@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; }
  .hero-trail { display: none; }
  .service-art { opacity: 1; }
  .draw-stroke { stroke-dashoffset: 0 !important; }
  .flow-path { opacity: .7; }
  .art-fill { opacity: 1; transform: none; }
}
