@font-face {
  font-family: "Geist";
  src: url("/assets/geist-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}
@font-face {
  font-family: "Geist Mono";
  src: url("/assets/geist-mono-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
  --ink: #050611;
  --ink-soft: #0b0e20;
  --paper: #f6f8ff;
  --white: #f7f9ff;
  --muted: #a8b0c8;
  --line: rgba(161, 181, 239, 0.16);
  --cyan: #39dff2;
  --blue: #315efb;
  --violet: #8b5cf6;
  --pink: #e33da8;
  --page: min(1320px, calc(100vw - 96px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: white; background: var(--blue); }

.studio-site {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  background:
    radial-gradient(circle at 70% 14%, rgba(70, 84, 226, .09), transparent 28%),
    linear-gradient(180deg, rgba(5, 6, 17, .1), rgba(5, 6, 17, .98));
}
.fluid-field { position: fixed; z-index: 0; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.ambient-shade {
  position: fixed;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 4, 13, .68), rgba(3, 4, 13, .12) 58%, rgba(3, 4, 13, .23)),
    radial-gradient(circle at 70% 45%, transparent 15%, rgba(3, 4, 13, .22) 66%, rgba(3, 4, 13, .62));
}
.studio-site main, .studio-site footer, .site-header { position: relative; z-index: 2; }

.intro-loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  background: #03040d;
  transition: opacity .44s var(--ease), visibility .44s;
}
.studio-site.is-loaded .intro-loader { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-loader img { width: min(560px, 72vw); height: 150px; object-fit: contain; filter: brightness(0) invert(1); animation: loader-form .58s var(--ease) both; }
.intro-loader > span {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -20px;
  color: #8790aa;
  font: 700 8px/1 var(--font-geist-mono), monospace;
  letter-spacing: .32em;
}
.intro-loader > span i { width: 90px; height: 1px; background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink)); animation: loader-line .6s .1s var(--ease) both; transform-origin: left; }
@keyframes loader-form { from { opacity: 0; filter: blur(10px) brightness(0) invert(1); transform: scale(.94); } }
@keyframes loader-line { from { transform: scaleX(0); } }

.site-progress { position: fixed; z-index: 120; top: 0; left: 0; width: 100%; height: 2px; background: rgba(255,255,255,.035); }
.site-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet), var(--pink)); box-shadow: 0 0 15px rgba(75, 179, 255, .6); transform: scaleX(0); transform-origin: left; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 0 max(48px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid rgba(181, 198, 246, .1);
  transition: height .35s var(--ease), background .35s, backdrop-filter .35s;
}
.header-scrolled .site-header { height: 74px; background: rgba(5, 6, 17, .78); backdrop-filter: blur(20px) saturate(135%); }
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: start;
  width: 198px;
  transform-origin: left center;
  transition: width .35s var(--ease), transform .35s var(--ease);
}
.brand img {
  width: 190px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
  transition: width .35s var(--ease), filter .35s;
}
.brand span {
  width: 100%;
  margin-top: 3px;
  color: #9aa8c6;
  font: 700 7px/1 var(--font-geist-mono), monospace;
  letter-spacing: .38em;
  text-align: center;
}
.header-scrolled .brand { width: 180px; }
.header-scrolled .brand img { width: 172px; }
.site-header nav { display: flex; gap: 39px; justify-self: center; }
.site-header nav a { position: relative; padding: 12px 0; color: #c3c8d8; font-size: 13px; opacity: .78; transition: opacity .2s; }
.site-header nav a:hover { opacity: 1; }
.site-header nav a::after { position: absolute; right: 50%; bottom: 5px; left: 50%; height: 1px; content: ""; background: linear-gradient(90deg, var(--cyan), var(--violet)); transition: .25s var(--ease); }
.site-header nav a:hover::after { right: 0; left: 0; }
.header-actions { display: flex; gap: 10px; align-items: center; justify-self: end; }
.motion-control, .header-cta, .menu-toggle {
  min-height: 43px;
  border: 1px solid rgba(168, 189, 244, .22);
  border-radius: 99px;
  background: rgba(8, 11, 26, .38);
  backdrop-filter: blur(14px);
}
.motion-control { display: flex; align-items: center; gap: 9px; padding: 0 15px; cursor: pointer; font-size: 9px; }
.motion-control > i { display: flex; align-items: center; gap: 2px; width: 12px; height: 12px; }
.motion-control b { display: block; width: 2px; height: 5px; background: linear-gradient(var(--cyan), var(--violet)); border-radius: 2px; animation: equalise .75s ease-in-out infinite alternate; }
.motion-control b:nth-child(2) { animation-delay: -.25s; }
.motion-control b:nth-child(3) { animation-delay: -.5s; }
.motion-paused .motion-control b { animation: none; }
@keyframes equalise { to { height: 12px; } }
.header-cta { display: flex; align-items: center; gap: 18px; padding: 0 18px; font-size: 10px; font-weight: 650; transition: border-color .2s, transform .2s; }
.header-cta:hover { border-color: rgba(76, 218, 242, .58); transform: translateY(-2px); }
.menu-toggle { display: none; width: 43px; padding: 0 12px; cursor: pointer; }
.menu-toggle i { display: block; width: 100%; height: 1px; margin: 5px 0; background: currentColor; }

.eyebrow, .section-number {
  margin: 0;
  color: #8e99b8;
  font: 700 8px/1.4 var(--font-geist-mono), monospace;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow i { width: 29px; height: 1px; background: linear-gradient(90deg, var(--cyan), var(--violet)); }
h1, h2 { margin: 0; font-weight: 520; letter-spacing: -.07em; line-height: .92; text-wrap: balance; }
h1 em, h2 em { color: transparent; font-style: normal; background: linear-gradient(96deg, #5ae5f1, #4c6eff 49%, #cf42ce); background-clip: text; -webkit-background-clip: text; }

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  align-items: center;
  min-height: 100svh;
  padding: 148px max(48px, calc((100vw - 1320px) / 2)) 128px;
  isolation: isolate;
}
.hero-section::before {
  position: absolute;
  z-index: -1;
  inset: 100px 0 0;
  content: "";
  opacity: .32;
  background-image: linear-gradient(rgba(118, 141, 211, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(118, 141, 211, .07) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: radial-gradient(circle at 74% 48%, #000, transparent 64%);
}
.hero-copy { position: relative; z-index: 3; max-width: 760px; }
.hero-copy h1 { margin-top: 31px; font-size: clamp(62px, 6.15vw, 101px); }
.hero-description { max-width: 620px; margin: 31px 0 0; color: #abb4cd; font-size: 18px; letter-spacing: -.024em; line-height: 1.58; }
.hero-actions, .contact-actions { display: flex; gap: 14px; align-items: center; margin-top: 35px; }
.primary-button, .text-button, .contact-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 58px;
  padding: 0 25px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 660;
}
.primary-button { color: white; border: 1px solid rgba(114, 225, 255, .58); background: linear-gradient(108deg, #12bfdc, #3b69f5 49%, #8038df); box-shadow: 0 16px 45px rgba(54, 96, 244, .26), inset 0 1px rgba(255,255,255,.32); transition: transform .25s var(--ease), box-shadow .25s; }
.primary-button:hover { transform: translateY(-3px); box-shadow: 0 21px 58px rgba(54, 96, 244, .38); }
.text-button, .contact-actions button { border: 1px solid var(--line); background: rgba(8, 11, 27, .38); backdrop-filter: blur(15px); }
.text-button:hover { border-color: rgba(94, 212, 240, .46); }

.hero-system { position: absolute; top: 50%; right: max(70px, calc((100vw - 1320px) / 2)); width: min(49vw, 710px); aspect-ratio: 1; pointer-events: none; transform: translateY(-50%); }
.system-orbit { position: absolute; border: 1px solid rgba(102, 189, 243, .16); border-radius: 46% 54% 53% 47%; animation: orbit-spin 24s linear infinite; }
.system-orbit i { position: absolute; top: 15%; left: 18%; width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 17px var(--cyan); }
.orbit-one { inset: 5%; }
.orbit-two { inset: 20%; border-color: rgba(143, 91, 255, .22); border-style: dashed; animation-duration: 17s; animation-direction: reverse; }
.orbit-two i { top: auto; right: 14%; bottom: 12%; left: auto; background: #ab62ff; box-shadow: 0 0 17px #9e4cff; }
.orbit-three { inset: 35%; border-color: rgba(227, 61, 168, .18); animation-duration: 13s; }
@keyframes orbit-spin { to { transform: rotate(1turn); } }
.system-core, .ecosystem-core, .formation-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(92, 216, 238, .34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 70, 174, .88), rgba(7, 11, 31, .88));
  box-shadow: 0 0 70px rgba(62, 104, 239, .23), 0 0 0 30px rgba(80, 93, 255, .035);
  transform: translate(-50%, -50%);
}
.system-core { width: 176px; height: 176px; }
.system-core b, .ecosystem-core b { font-size: 26px; letter-spacing: .18em; }
.system-core small, .ecosystem-core small { margin-top: 10px; color: #7adfe9; font: 700 6px/1 var(--font-geist-mono), monospace; letter-spacing: .26em; }
.system-tag { position: absolute; padding: 9px 12px; color: #b8c1da; border: 1px solid rgba(142, 168, 234, .18); border-radius: 99px; background: rgba(7, 11, 29, .62); font: 650 7px/1 var(--font-geist-mono), monospace; letter-spacing: .13em; backdrop-filter: blur(10px); }
.tag-a { top: 17%; right: 2%; }
.tag-b { right: -2%; bottom: 25%; }
.tag-c { bottom: 9%; left: 13%; }
.hero-index { position: absolute; right: max(48px, calc((100vw - 1320px) / 2)); bottom: 31px; left: max(48px, calc((100vw - 1320px) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #687492; font: 700 7px/1 var(--font-geist-mono), monospace; letter-spacing: .19em; }
.hero-index b { color: #9ba7c5; font-size: 7px; }
.hero-index span:last-child { justify-self: end; }

[data-reveal] {
  opacity: .03;
  filter: blur(10px) brightness(.76);
  transform: translate3d(0, 46px, 0) scale(.98);
  transition:
    opacity .5s var(--ease),
    filter .64s var(--ease),
    transform .74s var(--ease),
    clip-path .76s var(--ease);
  will-change: opacity, filter, transform, clip-path;
}
[data-reveal].is-visible { opacity: 1; filter: none; transform: none; }
[data-reveal="cinema-title"] {
  clip-path: inset(0 0 72% 0);
  transform: perspective(1200px) translate3d(0, 62px, -95px) rotateX(4deg);
  transform-origin: 50% 100%;
}
[data-reveal="cinema-title"].is-visible { clip-path: inset(-8% -4% -8% -4%); }
[data-reveal="cinema-copy"] {
  transform: perspective(1200px) translate3d(-54px, 30px, -105px) rotateY(5deg);
  transform-origin: left center;
}
[data-reveal="cinema-visual"] {
  clip-path: inset(7% 0 7% 17% round 28px);
  transform: perspective(1500px) translate3d(82px, 48px, -185px) rotateY(-8deg) rotateX(2deg);
  transform-origin: right center;
  transition-duration: .55s, .68s, .82s, .84s;
}
[data-reveal="cinema-visual"].is-visible { clip-path: inset(-7% -7% -7% -7% round 0); }
[data-reveal="cinema-grid"] {
  clip-path: inset(0 75% 0 0);
  transform: perspective(1300px) translate3d(0, 54px, -125px) rotateX(5deg);
  transform-origin: center top;
}
[data-reveal="cinema-grid"].is-visible { clip-path: inset(-5%); }
[data-reveal="cinema-grid"] article {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .55s var(--ease), transform .72s var(--ease);
}
[data-reveal="cinema-grid"].is-visible article { opacity: 1; transform: none; }
[data-reveal="cinema-grid"].is-visible article:nth-child(1) { transition-delay: .12s; }
[data-reveal="cinema-grid"].is-visible article:nth-child(2) { transition-delay: .22s; }
[data-reveal="cinema-grid"].is-visible article:nth-child(3) { transition-delay: .32s; }
[data-reveal="cinema-grid"].is-visible article:nth-child(4) { transition-delay: .42s; }
[data-reveal="cinema-orbit"] {
  transform: perspective(1400px) translate3d(58px, 38px, -165px) rotateY(-6deg) scale(.91);
  transform-origin: center;
}

.cinema-section { position: relative; overflow: clip; isolation: isolate; }
.cinema-section::after {
  position: absolute;
  z-index: 20;
  inset: -30% -20%;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(112deg, transparent 40%, rgba(74, 225, 246, .11) 48%, rgba(126, 78, 255, .13) 51%, rgba(232, 66, 176, .08) 54%, transparent 62%);
  mix-blend-mode: screen;
  transform: translate3d(-85%, 0, 0);
}
.cinema-section.cinema-active::after { animation: cinema-light-sweep 1.35s .08s var(--ease) both; }
@keyframes cinema-light-sweep {
  0% { opacity: 0; transform: translate3d(-80%, 0, 0); }
  22% { opacity: 1; }
  75% { opacity: .72; }
  100% { opacity: 0; transform: translate3d(80%, 0, 0); }
}

.signal-section {
  display: grid;
  align-items: center;
  min-height: 78svh;
  padding: 130px max(48px, calc((100vw - 1320px) / 2));
}
.signal-line { position: relative; max-width: 1120px; padding: 45px 0 52px 84px; border-left: 1px solid rgba(82, 214, 239, .32); }
.signal-line::before, .signal-line::after { position: absolute; left: -5px; width: 9px; height: 9px; content: ""; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 18px var(--cyan); }
.signal-line::before { top: 0; }
.signal-line::after { bottom: 0; background: var(--violet); box-shadow: 0 0 18px var(--violet); }
.signal-line > p { margin: 0 0 23px; color: #75e8f2; font: 700 8px/1 var(--font-geist-mono), monospace; letter-spacing: .24em; }
.signal-line h2 { font-size: clamp(56px, 6.7vw, 102px); }
.signal-line > span { display: block; max-width: 590px; margin-top: 29px; color: #a9b3ca; font-size: 16px; line-height: 1.6; }

.product-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(500px, 1.14fr);
  gap: 6vw;
  align-items: center;
  min-height: 112svh;
  padding: 150px max(48px, calc((100vw - 1320px) / 2));
  isolation: isolate;
}
.product-section::before { position: absolute; z-index: -1; right: -20vw; width: 72vw; aspect-ratio: 1; content: ""; border: 1px solid rgba(83, 204, 239, .08); border-radius: 50%; box-shadow: 0 0 0 110px rgba(87, 89, 245, .018), 0 0 0 220px rgba(225, 57, 168, .012); }
.product-social::before { border-color: rgba(154, 86, 255, .11); }
.product-learn::before { border-color: rgba(227, 61, 168, .1); }
.product-copy { position: relative; z-index: 5; }
.product-copy .section-number { color: #75e8f2; }
.product-social .section-number { color: #b48cff; }
.product-learn .section-number { color: #ef78bd; }
.product-copy h2 { margin-top: 28px; font-size: clamp(56px, 5.8vw, 89px); }
.product-copy > p:not(.section-number) { max-width: 560px; margin: 28px 0 0; color: #abb5cd; font-size: 17px; line-height: 1.65; }
.product-copy ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0 0; padding: 0; list-style: none; }
.product-copy li { padding: 9px 12px; color: #aebbd5; border: 1px solid rgba(139, 169, 230, .17); border-radius: 99px; background: rgba(8, 12, 30, .36); font: 650 7px/1 var(--font-geist-mono), monospace; letter-spacing: .09em; }
.product-copy > a { display: inline-flex; align-items: center; gap: 16px; margin-top: 31px; padding-bottom: 8px; border-bottom: 1px solid rgba(93, 221, 238, .4); font-size: 13px; font-weight: 650; }
.product-copy > a span { color: var(--cyan); }
.product-visual { position: relative; min-height: 650px; }
.product-visual::after {
  position: absolute;
  z-index: 8;
  top: 7%;
  bottom: 7%;
  left: 8%;
  width: 16%;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(169, 239, 255, .2), transparent);
  filter: blur(10px);
  transform: skewX(-12deg) translateX(-180%);
}
.product-visual.is-visible::after { animation: product-lens-scan 1.25s .28s var(--ease) both; }
@keyframes product-lens-scan {
  0% { opacity: 0; transform: skewX(-12deg) translateX(-180%); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: skewX(-12deg) translateX(650%); }
}
.visual-orbit { position: absolute; inset: -9%; animation: visual-orbit 18s linear infinite; }
.visual-orbit i { position: absolute; inset: 11%; border: 1px solid rgba(78, 212, 237, .13); border-radius: 49% 51%; }
.visual-orbit i:nth-child(2) { inset: 25%; border-color: rgba(142, 83, 255, .18); border-style: dashed; }
.visual-orbit i:nth-child(3) { inset: 39%; border-color: rgba(229, 58, 168, .14); }
@keyframes visual-orbit { to { transform: rotate(1turn); } }
.product-window, .learn-console {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(49vw, 720px);
  margin: 0;
  padding: 11px;
  overflow: hidden;
  border: 1px solid rgba(151, 184, 246, .26);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(20, 30, 59, .9), rgba(6, 9, 24, .94));
  box-shadow: 0 38px 105px rgba(0,0,0,.47), 0 0 75px rgba(55, 95, 245, .14), inset 0 1px rgba(255,255,255,.08);
  transform: translateY(-50%) perspective(1200px) rotateY(-7deg) rotateX(1.5deg);
  animation: screen-float 7s ease-in-out infinite;
  backdrop-filter: blur(20px);
}
.product-social .product-window { box-shadow: 0 38px 105px rgba(0,0,0,.47), 0 0 85px rgba(131, 67, 255, .18); }
@keyframes screen-float { 50% { transform: translateY(calc(-50% - 8px)) perspective(1200px) rotateY(-5deg) rotateX(.5deg); } }
.window-bar { display: flex; align-items: center; gap: 6px; height: 39px; padding: 0 9px; color: #8e9ab8; font: 650 7px/1 var(--font-geist-mono), monospace; letter-spacing: .13em; }
.window-bar i { width: 6px; height: 6px; background: #ff657d; border-radius: 50%; }
.window-bar i:nth-child(2) { background: #ffc864; }
.window-bar i:nth-child(3) { background: #43dca3; }
.window-bar span { margin-left: 8px; }
.product-window > img { display: block; width: 100%; height: auto; max-height: 560px; object-fit: cover; object-position: top; border: 1px solid rgba(142, 169, 229, .16); border-radius: 16px; }
.product-window figcaption { position: absolute; right: 27px; bottom: 26px; display: flex; flex-direction: column; gap: 4px; padding: 11px 14px; color: #061225; border: 1px solid rgba(255,255,255,.68); border-radius: 12px; background: rgba(242,248,255,.86); box-shadow: 0 12px 32px rgba(7,13,37,.22); backdrop-filter: blur(12px); }
.product-window figcaption span { color: #405475; font: 700 6px/1 var(--font-geist-mono), monospace; letter-spacing: .14em; }
.product-window figcaption strong { font-size: 10px; }

.learn-console { right: 3%; width: min(42vw, 570px); padding: 29px; }
.learn-console header { display: flex; justify-content: space-between; padding-bottom: 18px; color: #8fa0c1; border-bottom: 1px solid rgba(142, 169, 229, .15); font: 700 8px/1 var(--font-geist-mono), monospace; letter-spacing: .16em; }
.learn-console header i { color: #5ce4da; font-style: normal; }
.learn-score { display: grid; grid-template-columns: auto auto 1fr; align-items: end; margin: 43px 0 30px; }
.learn-score strong { font-size: 112px; font-weight: 520; letter-spacing: -.085em; line-height: .7; }
.learn-score > span { margin-left: 3px; color: #ea6bb8; font-size: 29px; }
.learn-score small { justify-self: end; color: #7e8eaf; font: 700 7px/1 var(--font-geist-mono), monospace; letter-spacing: .18em; }
.learn-console ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.learn-console li { display: grid; grid-template-columns: 37px 1fr auto; gap: 13px; align-items: center; padding: 13px; border: 1px solid rgba(143,168,229,.13); border-radius: 11px; background: rgba(77,93,144,.09); font-size: 11px; }
.learn-console li b { display: grid; place-items: center; width: 34px; height: 34px; color: #67e3df; border-radius: 9px; background: rgba(59,217,221,.09); font: 700 8px/1 var(--font-geist-mono), monospace; }
.learn-console li i { color: #6de1d8; font: 700 8px/1 var(--font-geist-mono), monospace; font-style: normal; }

.method-section { position: relative; min-height: 120svh; padding: 170px max(48px, calc((100vw - 1320px) / 2)); }
.method-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; }
.method-heading .section-number { grid-column: 1 / -1; }
.method-heading h2 { font-size: clamp(60px, 7vw, 106px); }
.method-heading > p:last-child { max-width: 500px; margin: 0 0 7px; color: #abb5cd; font-size: 17px; line-height: 1.65; }
.method-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 95px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method-flow article { position: relative; min-height: 320px; padding: 30px 27px; border-right: 1px solid var(--line); }
.method-flow article:last-child { border-right: 0; }
.method-flow article > span { color: #6bdfea; font: 700 8px/1 var(--font-geist-mono), monospace; letter-spacing: .17em; }
.method-flow h3 { margin: 88px 0 0; font-size: 23px; font-weight: 560; letter-spacing: -.035em; }
.method-flow p { margin: 15px 0 0; color: #8e9ab6; font-size: 13px; line-height: 1.6; }
.method-flow article > i { position: absolute; right: 24px; bottom: 25px; width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 14px var(--cyan); }
.method-flow article:nth-child(2) > i { background: var(--blue); box-shadow: 0 0 14px var(--blue); }
.method-flow article:nth-child(3) > i { background: var(--violet); box-shadow: 0 0 14px var(--violet); }
.method-flow article:nth-child(4) > i { background: var(--pink); box-shadow: 0 0 14px var(--pink); }

.ecosystem-section {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 6vw;
  align-items: center;
  min-height: 116svh;
  padding: 150px max(48px, calc((100vw - 1320px) / 2));
}
.ecosystem-copy h2 { margin-top: 27px; font-size: clamp(61px, 6.6vw, 100px); }
.ecosystem-copy > p:last-child { max-width: 560px; margin: 28px 0 0; color: #abb5cd; font-size: 17px; line-height: 1.65; }
.ecosystem-map { position: relative; min-height: 670px; }
.ecosystem-core { width: 170px; height: 170px; }
.ecosystem-product { position: absolute; display: grid; grid-template-columns: auto 1fr; gap: 3px 12px; align-items: center; min-width: 185px; padding: 13px 15px; color: #dbe4f7; border: 1px solid rgba(147,174,238,.21); border-radius: 14px; background: rgba(7,11,29,.72); box-shadow: 0 16px 40px rgba(0,0,0,.24); backdrop-filter: blur(15px); }
.ecosystem-product::before { position: absolute; right: 100%; width: 80px; height: 1px; content: ""; background: linear-gradient(90deg, transparent, rgba(92,223,234,.42)); }
.ecosystem-product > span { grid-row: 1 / 3; display: grid; place-items: center; width: 32px; height: 32px; color: #6ce8e7; border-radius: 9px; background: rgba(68,213,224,.1); font: 700 7px/1 var(--font-geist-mono), monospace; }
.ecosystem-product b { font-size: 12px; }
.ecosystem-product small { color: #7e8da9; font: 700 6px/1 var(--font-geist-mono), monospace; letter-spacing: .09em; }
.eco-1 { top: 15%; right: 0; }
.eco-2 { right: 3%; bottom: 16%; }
.eco-3 { top: 45%; left: 0; }
.eco-3::before { right: auto; left: 100%; background: linear-gradient(90deg, rgba(226,65,169,.42), transparent); }
.eco-ring { position: absolute; top: 50%; left: 50%; width: 82%; aspect-ratio: 1; border: 1px solid rgba(84, 205, 239, .12); border-radius: 46% 54%; transform: translate(-50%, -50%); animation: orbit-spin 23s linear infinite; }
.eco-ring.ring-b { width: 57%; border-color: rgba(152, 89, 255, .16); border-style: dashed; animation-duration: 17s; animation-direction: reverse; }

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 7vw;
  align-items: center;
  min-height: 112svh;
  padding: 150px max(48px, calc((100vw - 1320px) / 2));
  background: linear-gradient(180deg, rgba(5,6,17,0), rgba(5,6,17,.62));
}
.contact-copy h2 { max-width: 850px; margin-top: 27px; font-size: clamp(62px, 6.8vw, 102px); }
.contact-copy > p:not(.section-number) { max-width: 580px; margin: 28px 0 0; color: #abb5cd; font-size: 17px; line-height: 1.65; }
.contact-actions button { cursor: pointer; }
.contact-formation { position: relative; width: min(40vw, 540px); aspect-ratio: 1; justify-self: center; }
.formation-core { width: 160px; height: 160px; }
.formation-core b { font-size: 22px; letter-spacing: .15em; }
.formation-core small { margin-top: 9px; color: #7ddfe9; font: 700 6px/1 var(--font-geist-mono), monospace; letter-spacing: .19em; }
.contact-formation > i { position: absolute; inset: 7%; border: 1px solid rgba(81,205,237,.19); border-radius: 44% 56%; animation: formation 17s linear infinite; }
.contact-formation > i:nth-child(2) { inset: 20%; border-color: rgba(158,93,255,.22); border-style: dashed; animation-duration: 12s; animation-direction: reverse; }
.contact-formation > i:nth-child(3) { inset: 34%; border-color: rgba(226,62,169,.18); animation-duration: 9s; }
@keyframes formation { to { transform: rotate(1turn) scale(1.04); } }

.studio-site footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; width: var(--page); margin: auto; padding: 65px 0 35px; border-top: 1px solid var(--line); }
.footer-brand img { width: 156px; height: auto; object-fit: contain; filter: brightness(0) invert(1); }
.studio-site footer > p { margin: 0; color: #8a95af; font-size: 12px; }
.studio-site footer nav { display: flex; gap: 27px; color: #b6bed1; font-size: 12px; }
.studio-site footer > small { grid-column: 1 / -1; padding-top: 25px; color: #58637d; border-top: 1px solid rgba(155,176,232,.08); font: 700 6px/1 var(--font-geist-mono), monospace; letter-spacing: .15em; }

/* Continuous WebGL journey */
.cinematic-world {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.studio-site {
  background:
    radial-gradient(circle at 52% 46%, rgba(36, 61, 150, .09), transparent 38%),
    #050611;
}
.ambient-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 4, 13, .78), rgba(3, 4, 13, .08) 48%, rgba(3, 4, 13, .31)),
    radial-gradient(circle at 50% 48%, transparent 12%, rgba(3, 4, 13, .16) 57%, rgba(3, 4, 13, .72) 100%);
}
.ambient-shade::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.cinematic-chapter::before {
  position: absolute;
  z-index: 12;
  top: 50%;
  right: 24px;
  content: attr(data-chapter);
  color: rgba(147, 172, 224, .48);
  font: 700 6px/1 var(--font-geist-mono), monospace;
  letter-spacing: .25em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}
.cinema-section {
  min-height: 108svh;
  overflow: clip;
  background: transparent;
}
.cinema-section::after { display: none; }
.hero-section::before {
  opacity: .17;
  mask-image: radial-gradient(circle at 55% 50%, #000, transparent 67%);
}
.cinematic-console {
  top: 50%;
  right: max(70px, calc((100vw - 1320px) / 2));
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(44vw, 650px);
  aspect-ratio: 1;
  padding: 13%;
  border: 1px solid rgba(111, 187, 242, .13);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 19, 48, .13), transparent 61%);
  transform: translateY(-50%);
}
.cinematic-console::before,
.cinematic-console::after {
  position: absolute;
  inset: 13%;
  content: "";
  border: 1px dashed rgba(115, 112, 255, .19);
  border-radius: 47% 53%;
  animation: orbit-spin 21s linear infinite;
}
.cinematic-console::after {
  inset: 28%;
  border-style: solid;
  border-color: rgba(59, 224, 235, .25);
  animation-duration: 14s;
  animation-direction: reverse;
}
.console-kicker {
  position: absolute;
  top: 9%;
  color: #7de5ed;
  font: 700 7px/1 var(--font-geist-mono), monospace;
  letter-spacing: .24em;
}
.console-crosshair { position: absolute; inset: 49%; }
.console-crosshair i { position: absolute; top: 50%; left: 50%; width: 240px; height: 1px; background: linear-gradient(90deg, transparent, rgba(98, 221, 239, .32), transparent); transform: translate(-50%, -50%); }
.console-crosshair i:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.cinematic-console strong {
  position: relative;
  z-index: 2;
  font-size: clamp(28px, 3.5vw, 51px);
  font-weight: 520;
  letter-spacing: -.055em;
  line-height: .86;
  text-align: center;
}
.cinematic-console small {
  position: relative;
  z-index: 2;
  margin-top: 19px;
  color: #8996b4;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}
.cinematic-console > b {
  position: absolute;
  right: 12%;
  bottom: 15%;
  color: #9e75ff;
  font: 700 6px/1 var(--font-geist-mono), monospace;
  letter-spacing: .22em;
}
.signal-section { min-height: 90svh; }
.signal-line {
  max-width: 970px;
  padding-left: 55px;
  background: linear-gradient(90deg, rgba(5, 6, 17, .62), transparent);
}
.product-section {
  min-height: 112svh;
  background: linear-gradient(90deg, rgba(5, 6, 17, .84) 0%, rgba(5, 6, 17, .42) 45%, rgba(5, 6, 17, .05) 76%);
}
.product-section:nth-of-type(even) {
  background: linear-gradient(270deg, rgba(5, 6, 17, .76) 0%, rgba(5, 6, 17, .32) 43%, rgba(5, 6, 17, .05) 76%);
}
.product-section::before { opacity: .45; }
.product-visual { perspective: 1600px; }
.product-window, .learn-console {
  border-color: rgba(144, 187, 249, .34);
  background: linear-gradient(145deg, rgba(21, 31, 62, .86), rgba(6, 9, 24, .86));
  box-shadow:
    0 45px 120px rgba(0, 0, 0, .58),
    0 0 100px rgba(56, 97, 245, .17),
    inset 0 1px rgba(255, 255, 255, .1);
}
.product-visual.is-visible .product-window,
.product-visual.is-visible .learn-console {
  animation: screen-float 7s ease-in-out infinite, product-arrival 1s var(--ease) both;
}
@keyframes product-arrival {
  from {
    opacity: 0;
    filter: blur(16px) saturate(.6);
    transform: translateY(-42%) perspective(1200px) translateZ(-260px) rotateY(-17deg);
  }
}
.method-section {
  background: radial-gradient(circle at 50% 52%, rgba(20, 31, 84, .2), transparent 56%);
}
.method-flow article {
  background: linear-gradient(145deg, rgba(13, 19, 43, .53), rgba(5, 7, 19, .28));
  backdrop-filter: blur(8px);
}
.ecosystem-section {
  background: radial-gradient(circle at 68% 50%, rgba(71, 53, 183, .12), transparent 42%);
}
.contact-section {
  min-height: 116svh;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 17, .72) 83%);
}
.studio-site footer { background: rgba(5, 6, 17, .72); }

.motion-paused *, .motion-paused *::before, .motion-paused *::after { animation-play-state: paused !important; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; filter: none; clip-path: none; transform: none; }
  [data-reveal="cinema-grid"] article { opacity: 1; transform: none; }
}

/* Owner dashboard */
.admin-shell { min-height: 100vh; color: #eaf0ff; background: #070914; }
.admin-sidebar {
  position: fixed;
  z-index: 20;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 250px;
  padding: 27px 21px;
  border-right: 1px solid rgba(149, 171, 232, .12);
  background: linear-gradient(180deg, #0b1021, #070914);
}
.admin-logo { display: flex; flex-direction: column; align-items: center; width: 168px; }
.admin-logo img { width: 164px; height: auto; object-fit: contain; filter: brightness(0) invert(1); }
.admin-logo span { width: 100%; margin-top: 4px; color: #6f7e9f; font: 700 6px/1 var(--font-geist-mono), monospace; letter-spacing: .27em; text-align: center; }
.admin-sidebar nav { display: grid; gap: 6px; margin-top: 60px; }
.admin-sidebar nav a { padding: 13px 15px; color: #8190ae; border: 1px solid transparent; border-radius: 10px; font-size: 12px; }
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { color: #e8f4ff; border-color: rgba(66, 211, 235, .18); background: rgba(47, 115, 188, .1); }
.admin-profile { display: flex; gap: 11px; align-items: center; margin-top: auto; padding: 15px; border: 1px solid rgba(143,166,225,.12); border-radius: 13px; background: rgba(16,21,42,.72); }
.admin-profile > i { display: grid; place-items: center; width: 34px; height: 34px; color: #05101d; background: linear-gradient(135deg, var(--cyan), #8c72ff); border-radius: 9px; font-style: normal; font-weight: 700; }
.admin-profile span { display: grid; min-width: 0; }
.admin-profile b { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.admin-profile small { margin-top: 4px; color: #6f7d9c; font-size: 8px; }
.admin-main { width: calc(100% - 250px); min-height: 100vh; margin-left: 250px; padding: 42px 48px 100px; background: radial-gradient(circle at 82% 0, rgba(53,93,218,.09), transparent 27%); }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; }
.admin-topbar p { margin: 0; color: #61ddea; font: 700 7px/1 var(--font-geist-mono), monospace; letter-spacing: .2em; }
.admin-topbar h1 { margin: 9px 0 0; font-size: 37px; font-weight: 560; letter-spacing: -.045em; }
.admin-actions { display: flex; gap: 10px; }
.admin-actions a, .admin-actions button { min-height: 45px; padding: 0 17px; border: 1px solid rgba(145,171,230,.18); border-radius: 11px; background: rgba(13,18,38,.65); font-size: 10px; font-weight: 650; }
.admin-actions a { display: flex; align-items: center; }
.admin-actions button { color: white; cursor: pointer; border-color: rgba(90,212,239,.5); background: linear-gradient(110deg,#18bcd7,#3f68ef 52%,#7d3fd6); }
.admin-actions button:disabled { cursor: wait; opacity: .65; }
.admin-notice { position: sticky; z-index: 10; top: 18px; margin: 24px 0 -5px; padding: 13px 15px; border: 1px solid rgba(90, 222, 179, .25); border-radius: 11px; background: rgba(13, 50, 42, .88); font-size: 11px; backdrop-filter: blur(15px); }
.notice-error { border-color: rgba(243,98,130,.28); background: rgba(64,19,35,.9); }
.admin-overview { display: grid; grid-template-columns: repeat(4,1fr); gap: 13px; margin-top: 41px; }
.admin-overview article { min-height: 135px; padding: 20px; border: 1px solid rgba(143,166,225,.12); border-radius: 17px; background: linear-gradient(145deg,rgba(17,23,48,.9),rgba(9,12,29,.82)); }
.admin-overview span { color: #6f7e9d; font: 700 7px/1 var(--font-geist-mono), monospace; letter-spacing: .17em; }
.admin-overview b { display: block; margin-top: 26px; font-size: 26px; font-weight: 570; text-transform: capitalize; }
.admin-overview small { display: block; margin-top: 5px; color: #73809b; font-size: 9px; }
.admin-panel { margin-top: 22px; padding: 28px; scroll-margin-top: 30px; border: 1px solid rgba(143,166,225,.12); border-radius: 21px; background: linear-gradient(145deg,rgba(17,23,48,.85),rgba(8,11,27,.78)); box-shadow: 0 20px 55px rgba(0,0,0,.15); }
.admin-panel > header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 23px; border-bottom: 1px solid rgba(141,164,223,.1); }
.admin-panel > header > div { display: flex; align-items: center; gap: 12px; }
.admin-panel > header span { display: grid; place-items: center; width: 31px; height: 31px; color: #65dfe9; border-radius: 9px; background: rgba(62,210,226,.09); font: 700 7px/1 var(--font-geist-mono), monospace; }
.admin-panel h2 { font-size: 19px; font-weight: 580; letter-spacing: -.03em; }
.admin-panel > header p { margin: 0; color: #72809e; font-size: 10px; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.field-grid label { display: grid; gap: 8px; color: #91a0bd; font-size: 9px; font-weight: 650; }
.field-grid label.wide { grid-column: 1 / -1; }
.field-grid input, .field-grid textarea, .field-grid select { width: 100%; color: #e9efff; border: 1px solid rgba(141,164,222,.16); border-radius: 10px; outline: none; background: rgba(5,8,22,.58); transition: border-color .2s, box-shadow .2s; }
.field-grid input, .field-grid select { height: 45px; padding: 0 13px; }
.field-grid textarea { resize: vertical; padding: 13px; line-height: 1.55; }
.field-grid input:focus, .field-grid textarea:focus, .field-grid select:focus { border-color: rgba(70,211,232,.55); box-shadow: 0 0 0 3px rgba(56,198,226,.08); }
.admin-product-list { display: grid; gap: 16px; margin-top: 22px; }
.admin-product-list article { padding: 21px; border: 1px solid rgba(139,163,222,.11); border-radius: 15px; background: rgba(7,10,25,.36); }
.product-admin-head { display: grid; grid-template-columns: 39px 1fr auto; gap: 12px; align-items: center; }
.product-admin-head > span { display: grid; place-items: center; width: 39px; height: 39px; color: #67dfe9; border-radius: 10px; background: rgba(54,203,224,.09); font: 700 8px/1 var(--font-geist-mono), monospace; }
.product-admin-head h3 { margin: 0; font-size: 14px; }
.product-admin-head small { display: block; margin-top: 4px; color: #697895; font: 700 6px/1 var(--font-geist-mono), monospace; letter-spacing: .12em; }
.upload-button { position: relative; padding: 10px 12px; overflow: hidden; border: 1px solid rgba(137,163,222,.18); border-radius: 9px; cursor: pointer; font-size: 8px; }
.upload-button input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.search-preview { margin-top: 23px; padding: 20px; border: 1px solid rgba(139,163,222,.1); border-radius: 13px; background: #f8faff; }
.search-preview span { color: #506b47; font-size: 10px; }
.search-preview h3 { margin: 7px 0 0; color: #274fc4; font-size: 18px; font-weight: 500; }
.search-preview p { max-width: 650px; margin: 6px 0 0; color: #51596b; font-size: 11px; line-height: 1.5; }
.admin-denied { display: grid; min-height: 100vh; place-items: center; padding: 30px; color: white; background: #050611; }
.admin-denied > div { max-width: 560px; padding: 45px; border: 1px solid var(--line); border-radius: 25px; background: rgba(14,19,42,.8); }
.admin-denied span { color: var(--cyan); font: 700 8px/1 var(--font-geist-mono), monospace; letter-spacing: .2em; }
.admin-denied h1 { margin: 22px 0 0; font-size: 48px; }
.admin-denied p { color: #9ca8c3; line-height: 1.6; }
.admin-denied a { display: inline-block; margin-top: 15px; padding-bottom: 5px; border-bottom: 1px solid var(--cyan); }

@media (max-width: 1100px) {
  :root { --page: min(100% - 64px, 1050px); }
  .site-header { padding-right: 32px; padding-left: 32px; }
  .site-header nav { gap: 24px; }
  .motion-control { display: none; }
  .hero-section, .product-section, .signal-section, .method-section, .ecosystem-section, .contact-section { padding-right: 32px; padding-left: 32px; }
  .hero-system { right: 20px; width: 52vw; }
  .product-section { grid-template-columns: minmax(310px,.85fr) minmax(440px,1.15fr); gap: 4vw; }
  .product-window { width: 50vw; }
  .method-flow article { padding: 25px 20px; }
  .admin-main { padding-right: 30px; padding-left: 30px; }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 40px); }
  .ambient-shade { background: linear-gradient(180deg, rgba(3,4,13,.18), rgba(3,4,13,.54)); }
  .site-header { grid-template-columns: 1fr auto; height: 76px; padding: 0 20px; }
  .brand, .header-scrolled .brand { width: 148px; }
  .brand img, .header-scrolled .brand img { width: 144px; height: auto; }
  .brand span { margin-top: 2px; font-size: 5.5px; letter-spacing: .32em; }
  .site-header nav { position: fixed; z-index: -1; top: 0; right: 0; left: 0; display: grid; gap: 0; justify-items: center; padding: 115px 20px 35px; opacity: 0; visibility: hidden; background: rgba(5,6,17,.96); backdrop-filter: blur(20px); transform: translateY(-15px); transition: .3s var(--ease); }
  .site-header nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-header nav a { font-size: 18px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-section { display: block; min-height: 100svh; padding: 145px 20px 110px; }
  .hero-copy h1 { font-size: clamp(53px, 15vw, 72px); }
  .hero-description { font-size: 15px; }
  .hero-system { top: 64%; right: -38vw; width: 112vw; opacity: .52; }
  .system-core { width: 130px; height: 130px; }
  .system-core b { font-size: 20px; }
  .system-tag { display: none; }
  .hero-index { right: 20px; bottom: 24px; left: 20px; grid-template-columns: 1fr auto; }
  .hero-index span:last-child { display: none; }
  .signal-section, .product-section, .method-section, .ecosystem-section, .contact-section { padding-right: 20px; padding-left: 20px; }
  .signal-section { min-height: 82svh; padding-top: 105px; padding-bottom: 105px; }
  .signal-line { padding: 30px 0 36px 25px; }
  .signal-line h2 { font-size: clamp(48px, 14vw, 68px); }
  .product-section { display: flex; flex-direction: column; gap: 45px; min-height: auto; padding-top: 125px; padding-bottom: 100px; }
  .product-copy h2 { font-size: clamp(50px, 14vw, 70px); }
  .product-copy > p:not(.section-number) { font-size: 15px; }
  .product-visual { width: 100%; min-height: 440px; }
  .product-window, .learn-console { right: -2%; width: 104%; }
  .product-window { transform: translateY(-50%) perspective(900px) rotateY(-3deg); }
  @keyframes screen-float { 50% { transform: translateY(calc(-50% - 5px)) perspective(900px) rotateY(-2deg); } }
  .learn-console { padding: 18px; }
  .learn-score strong { font-size: 82px; }
  .learn-console li { padding: 9px; font-size: 9px; }
  .visual-orbit { inset: -2%; }
  .method-section { min-height: auto; padding-top: 120px; padding-bottom: 120px; }
  .method-heading { grid-template-columns: 1fr; gap: 25px; }
  .method-heading h2 { font-size: clamp(52px, 14vw, 73px); }
  .method-heading > p:last-child { font-size: 15px; }
  .method-flow { grid-template-columns: 1fr; margin-top: 60px; }
  .method-flow article { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-flow article:last-child { border-bottom: 0; }
  .method-flow h3 { margin-top: 45px; }
  .ecosystem-section, .contact-section { grid-template-columns: 1fr; min-height: auto; padding-top: 125px; padding-bottom: 125px; }
  .ecosystem-copy h2, .contact-copy h2 { font-size: clamp(52px, 14vw, 73px); }
  .ecosystem-map { min-height: 530px; margin-top: 20px; }
  .ecosystem-core { width: 125px; height: 125px; }
  .ecosystem-product { min-width: 145px; padding: 9px; }
  .ecosystem-product::before { width: 35px; }
  .eco-1 { top: 10%; }
  .eco-2 { right: 0; bottom: 10%; }
  .eco-3 { top: 47%; }
  .contact-formation { width: 94vw; margin: 30px -7vw 0; }
  .contact-actions { display: grid; }
  .contact-actions .primary-button, .contact-actions button { width: 100%; }
  .studio-site footer { grid-template-columns: 1fr; padding-top: 50px; }
  .studio-site footer nav { justify-self: start; }
  .intro-loader img { height: 100px; }
  .intro-loader > span { margin-top: -9px; font-size: 6px; }
  .intro-loader > span i { width: 50px; }

  .admin-sidebar { position: relative; width: 100%; height: auto; padding: 20px; border-right: 0; border-bottom: 1px solid rgba(149,171,232,.12); }
  .admin-sidebar nav { grid-template-columns: repeat(3,1fr); margin-top: 25px; }
  .admin-sidebar nav a { padding: 10px; text-align: center; }
  .admin-profile { margin-top: 22px; }
  .admin-main { width: 100%; margin: 0; padding: 28px 20px 80px; }
  .admin-topbar { align-items: flex-start; }
  .admin-topbar h1 { font-size: 30px; }
  .admin-actions a { display: none; }
  .admin-overview { grid-template-columns: repeat(2,1fr); }
  .field-grid { grid-template-columns: 1fr; }
  .field-grid label.wide { grid-column: auto; }
  .admin-panel { padding: 20px; }
  .admin-panel > header { align-items: flex-start; }
  .admin-panel > header p { display: none; }
}

@media (max-width: 760px) {
  .cinematic-world { opacity: .82; }
  .ambient-shade {
    background:
      linear-gradient(180deg, rgba(3, 4, 13, .2), rgba(3, 4, 13, .58)),
      radial-gradient(circle at 56% 45%, transparent 8%, rgba(3, 4, 13, .18) 56%, rgba(3, 4, 13, .72));
  }
  .cinematic-chapter::before { right: 7px; opacity: .72; }
  .cinematic-console {
    top: 66%;
    right: -27vw;
    width: 100vw;
    opacity: .65;
  }
  .console-kicker { display: none; }
  .cinematic-console strong { font-size: 32px; }
  .product-section,
  .product-section:nth-of-type(even) {
    min-height: auto;
    background: linear-gradient(180deg, rgba(5, 6, 17, .45), rgba(5, 6, 17, .78));
  }
}
