@font-face {
  font-family: "Syne";
  src: url("../fonts/syne-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #050507;
  --ink-soft: #0b0b10;
  --paper: #f1efe8;
  --paper-bright: #fffef8;
  --muted: #9d9ca3;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(5, 5, 7, 0.14);
  --blue: #3155ff;
  --blue-light: #7c96ff;
  --cyan: #6de8ff;
  --gold: #d8a74a;
  --gold-light: #ffd783;
  --shell: min(92vw, 1480px);
  --header-h: 88px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --mx: 50vw;
  --my: 30vh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.is-loading {
  overflow: hidden;
}

::selection {
  background: var(--blue);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 99999;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  border-radius: 100px;
  background: var(--paper);
  color: var(--ink);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(96px, 12vw, 190px);
}

.site-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  background: #020203;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.site-loader::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at center, rgba(49, 85, 255, 0.14), transparent 38%);
}

.site-loader.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__mark {
  position: relative;
  display: flex;
  gap: 0.08em;
  font: 700 clamp(54px, 9vw, 120px)/0.8 "Syne", sans-serif;
  letter-spacing: -0.12em;
}

.site-loader__mark span {
  display: inline-block;
  animation: loader-letter 1.1s var(--ease) both;
}

.site-loader__mark span:nth-child(2) { animation-delay: 0.08s; color: var(--blue-light); }
.site-loader__mark span:nth-child(3) { animation-delay: 0.16s; }

.site-loader__line {
  width: min(260px, 62vw);
  height: 1px;
  margin-top: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.17);
}

.site-loader__line i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 0.12s linear;
}

.site-loader p {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: min(260px, 62vw);
  margin: 12px 0 0;
  color: #85858c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes loader-letter {
  from { opacity: 0; transform: translateY(80%) rotateX(-80deg); }
  to { opacity: 1; transform: none; }
}

.ambient-layer {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

#shader-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.42;
  mix-blend-mode: screen;
}

.ambient-layer__orb {
  position: absolute;
  width: 45vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.11;
  will-change: transform;
}

.ambient-layer__orb--one {
  top: -22vw;
  right: -10vw;
  background: var(--blue);
  transform: translate(calc((var(--mx) - 50vw) * 0.04), calc((var(--my) - 50vh) * 0.04));
}

.ambient-layer__orb--two {
  bottom: -28vw;
  left: -15vw;
  background: var(--gold);
  transform: translate(calc((var(--mx) - 50vw) * -0.025), calc((var(--my) - 50vh) * -0.025));
}

.film-grain {
  position: absolute;
  inset: -60%;
  opacity: 0.055;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  animation: grain 0.19s steps(2) infinite;
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(3%, -4%); }
  50% { transform: translate(-5%, 2%); }
  75% { transform: translate(4%, 5%); }
  100% { transform: translate(-3%, -2%); }
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
}

.cursor {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s, background 0.25s;
  mix-blend-mode: difference;
}

.cursor span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.cursor.is-visible { opacity: 1; }
.cursor.is-active { width: 72px; height: 72px; background: #fff; border-color: #fff; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), border-color 0.45s, transform 0.45s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 5, 7, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.admin-bar .site-header { top: 32px; }

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  min-height: var(--header-h);
  gap: 32px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.brand-mark__monogram {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font: 760 12px/1 "Syne", sans-serif;
  letter-spacing: -0.08em;
}

.brand-mark__copy {
  display: flex;
  flex-direction: column;
  font: 700 12px/1.2 "Syne", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark__copy small {
  margin-top: 5px;
  color: #77777f;
  font: 600 8px/1.2 "Manrope", sans-serif;
  letter-spacing: 0.12em;
}

.custom-logo-link { display: block; }
.custom-logo { width: auto; max-width: 190px; max-height: 52px; object-fit: contain; }

.site-nav .menu {
  display: flex;
  align-items: center;
  gap: 27px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
  color: #aaa9b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--paper); }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.availability-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #78f7a0;
  box-shadow: 0 0 12px #78f7a0;
  animation: status-pulse 2s infinite;
}

@keyframes status-pulse { 50% { opacity: 0.35; transform: scale(0.75); } }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 1px;
  margin-block: 6px;
  background: var(--paper);
  transition: transform 0.3s, opacity 0.3s;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 55px);
  padding-bottom: 72px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 86%);
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 88px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: #a6a5ac;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 27px;
  height: 1px;
  background: currentColor;
}

.hero__title {
  position: relative;
  z-index: 3;
  margin: clamp(28px, 4vh, 52px) 0 0;
  font: 730 clamp(82px, 10.6vw, 178px)/0.72 "Syne", sans-serif;
  letter-spacing: -0.095em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__title-line {
  display: block;
  will-change: transform;
}

.hero__title-line--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(241, 239, 232, 0.85);
}

.hero__lower {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px 50px;
  align-items: start;
  max-width: 790px;
  margin-top: clamp(42px, 6vh, 72px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero__roles {
  margin: 0;
  font: 660 clamp(15px, 1.2vw, 19px)/1.5 "Syne", sans-serif;
  letter-spacing: -0.02em;
}

.hero__intro {
  margin: 0;
  color: #aaa9b0;
  font-size: 13px;
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 205px;
  min-height: 58px;
  padding: 13px 13px 13px 23px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.4s, border-color 0.4s, background 0.4s;
}

.button span,
.button i { position: relative; z-index: 1; font-style: normal; }

.button i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  transition: transform 0.4s var(--ease), background 0.4s;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--paper);
  transform: translateY(102%);
  transition: transform 0.5s var(--ease);
}

.button:hover { color: var(--ink); border-color: var(--paper); }
.button:hover::before { transform: none; }
.button:hover i { background: var(--ink); color: var(--paper); transform: rotate(-45deg); }

.button--primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button--primary::before { background: var(--blue); }
.button--primary:hover { color: #fff; border-color: var(--blue); }
.button--primary i { background: var(--ink); color: var(--paper); }

.hero__visual {
  position: relative;
  height: min(67vh, 720px);
  min-height: 510px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero__visual::before {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: -17%;
  width: 85%;
  aspect-ratio: 1;
  border: 1px solid rgba(93, 122, 255, 0.27);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 140px rgba(49, 85, 255, 0.18), inset 0 0 80px rgba(49, 85, 255, 0.08);
  animation: orbit-breathe 7s ease-in-out infinite;
}

@keyframes orbit-breathe { 50% { transform: scale(1.08); opacity: 0.5; } }

.hero-frame {
  position: absolute;
  overflow: hidden;
  background: #0b0b0d;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
  transform-style: preserve-3d;
}

.hero-frame--main {
  inset: 3% 3% 4% 9%;
  clip-path: polygon(10% 0, 100% 5%, 92% 100%, 0 94%);
}

.hero-frame--main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(150deg, transparent 35%, rgba(49, 85, 255, 0.2)), linear-gradient(to top, rgba(2, 2, 4, 0.75), transparent 45%);
  mix-blend-mode: screen;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.13);
  transition: transform 1.2s var(--ease), filter 0.8s;
}

.hero-frame--main img {
  object-position: 40% 32%;
  transform: scale(1.14);
}

.hero__visual:hover .hero-frame--main img { transform: scale(1.2); filter: saturate(1) contrast(1.08); }

.hero-frame--float {
  z-index: 3;
  right: -2%;
  bottom: 4%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0,0,0,.7), 0 0 0 8px rgba(5,5,7,.55);
}

.hero-frame--logo img {
  position: absolute;
  top: 95%;
  left: 50%;
  width: 230%;
  max-width: none;
  height: auto;
  object-fit: initial;
  filter: none;
  transform: translate(-50%, -50%);
}

.hero__visual:hover .hero-frame--logo img { transform: translate(-50%, -50%) scale(1.03); }

.hero-frame__scan {
  position: absolute;
  z-index: 2;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 12px var(--cyan);
  animation: scan 4.8s ease-in-out infinite;
}

@keyframes scan { 0%, 100% { top: 12%; opacity: 0; } 20%, 80% { opacity: 0.7; } 50% { top: 86%; } }

.frame-corner {
  position: absolute;
  z-index: 3;
  width: 24px;
  height: 24px;
  border-color: rgba(255,255,255,.75);
}
.frame-corner--tl { top: 10%; left: 9%; border-top: 1px solid; border-left: 1px solid; }
.frame-corner--tr { top: 10%; right: 9%; border-top: 1px solid; border-right: 1px solid; }
.frame-corner--bl { bottom: 10%; left: 9%; border-bottom: 1px solid; border-left: 1px solid; }
.frame-corner--br { right: 9%; bottom: 10%; border-right: 1px solid; border-bottom: 1px solid; }

.hero__orbit {
  position: absolute;
  z-index: 4;
  top: 3%;
  right: -7%;
  width: 165px;
  height: 165px;
  border: 1px dashed rgba(255,255,255,.27);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

.hero__orbit span {
  position: absolute;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(5,5,7,.75);
  color: #bdbcc2;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero__orbit span:nth-child(1) { top: -9px; left: 60px; }
.hero__orbit span:nth-child(2) { top: 66px; right: -22px; }
.hero__orbit span:nth-child(3) { bottom: -9px; left: 62px; }
.hero__orbit span:nth-child(4) { top: 66px; left: -23px; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.hero__meta {
  position: absolute;
  z-index: 5;
  bottom: 1%;
  left: 2%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 13px 16px;
  border-left: 2px solid var(--blue-light);
  background: rgba(5,5,7,.7);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #9e9da4;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #74737a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 23px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

.scroll-cue i::before {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 2px;
  height: 7px;
  border-radius: 2px;
  content: "";
  background: var(--paper);
  animation: scroll-dot 1.7s ease-in-out infinite;
}
@keyframes scroll-dot { to { transform: translateY(12px); opacity: 0; } }

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(5,5,7,.68);
}

.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  padding-block: 17px;
  animation: ticker-move 33s linear infinite;
}

.ticker__track span {
  margin-inline: 28px;
  font: 680 10px/1 "Syne", sans-serif;
  letter-spacing: .16em;
}

.ticker__track i { color: var(--blue-light); font-style: normal; font-size: 9px; }
@keyframes ticker-move { to { transform: translateX(-50%); } }

.section-index {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-index span {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.section-index p {
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: .35fr 1.3fr .35fr;
  align-items: start;
  gap: clamp(34px, 6vw, 100px);
}

.manifesto__statement > p {
  margin: 0 0 27px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.manifesto__statement h2 {
  max-width: 1020px;
  margin: 0;
  font: 530 clamp(42px, 5.2vw, 82px)/1.08 "Syne", sans-serif;
  letter-spacing: -.055em;
}

.manifesto__statement em {
  color: var(--blue-light);
  font-style: normal;
}

.manifesto__note {
  padding-top: 80px;
  color: #8a8990;
}

.manifesto__note span { color: var(--gold); font-size: 22px; }
.manifesto__note p { margin: 14px 0 0; font-size: 11px; line-height: 1.8; }

.section-heading {
  margin-bottom: clamp(64px, 9vw, 120px);
}

.section-heading h2 {
  margin: 32px 0 0;
  font: 630 clamp(52px, 7.2vw, 110px)/.94 "Syne", sans-serif;
  letter-spacing: -.07em;
}

.section-heading h2 span { color: transparent; -webkit-text-stroke: 1px rgba(241,239,232,.5); }

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.expertise {
  border-block: 1px solid var(--line);
  background: rgba(9, 9, 13, .72);
}

.expertise__layout {
  display: grid;
  grid-template-columns: .32fr 1.68fr;
  gap: clamp(36px, 8vw, 130px);
}

.expertise__sticky {
  position: sticky;
  top: 130px;
  align-self: start;
  display: flex;
  justify-content: space-between;
  height: 420px;
}

.vertical-label {
  margin: 0;
  color: #626168;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.expertise__dial {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.expertise__dial::before,
.expertise__dial::after {
  position: absolute;
  width: 140px;
  height: 1px;
  content: "";
  background: var(--line);
}
.expertise__dial::after { transform: rotate(90deg); }
.expertise__dial > div { display: grid; grid-template-columns: 1fr 1fr; gap: 57px; font: 700 9px/1 "Syne", sans-serif; }
.expertise__dial > div span:nth-child(2), .expertise__dial > div span:nth-child(4) { text-align: right; }

.expertise__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  perspective: 1000px;
}

.expertise-card {
  position: relative;
  min-height: 470px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0e0e14;
  transform-style: preserve-3d;
  transition: border-color .4s, box-shadow .4s;
}

.expertise-card::before {
  position: absolute;
  right: -35%;
  bottom: -42%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(49,85,255,.32), transparent 68%);
  transition: transform .7s var(--ease);
}

.expertise-card:hover { border-color: rgba(124,150,255,.65); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.expertise-card:hover::before { transform: translate(-25%, -20%) scale(1.2); }

.expertise-card__number {
  color: #77767e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.expertise-card h3 {
  margin: 68px 0 22px;
  font: 650 clamp(28px, 3vw, 44px)/1.02 "Syne", sans-serif;
  letter-spacing: -.055em;
}

.expertise-card p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0;
  color: #9b9aa1;
  font-size: 12px;
  line-height: 1.75;
}

.expertise-card ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.expertise-card li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: #b5b4ba;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.expertise-card__symbol {
  position: absolute;
  right: 33px;
  bottom: 23px;
  color: rgba(255,255,255,.17);
  font: 300 64px/1 "Syne", sans-serif;
}

.expertise-card--gold { background: #17120a; }
.expertise-card--gold::before { background: radial-gradient(circle, rgba(216,167,74,.34), transparent 68%); }
.expertise-card--gold:hover { border-color: rgba(216,167,74,.65); }
.expertise-card--light { background: var(--paper); color: var(--ink); }
.expertise-card--light p, .expertise-card--light .expertise-card__number { color: #66646a; }
.expertise-card--light li { border-color: var(--line-dark); color: #55535a; }
.expertise-card--light::before { background: radial-gradient(circle, rgba(49,85,255,.2), transparent 68%); }
.expertise-card--blue { background: #0b1230; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.text-link i { font-style: normal; font-size: 15px; transition: transform .3s var(--ease); }
.text-link:hover i { transform: translate(4px, -4px); }

.work {
  overflow: hidden;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.4vw, 34px);
}

.work-card {
  grid-column: span 5;
  perspective: 1200px;
}

.work-card:nth-child(2), .work-card:nth-child(3) { grid-column: span 5; }
.work-card--wide { grid-column: span 7; }

.work-card__media {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #111116;
}

.work-card--wide .work-card__media { aspect-ratio: 1.35 / 1; }

.work-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(4,4,6,.8), transparent 45%);
  transition: opacity .6s;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.64) contrast(1.15);
  transform: scale(1.02);
  transition: transform 1.2s var(--ease), filter .8s;
}

.work-card:nth-child(1) .work-card__media img { object-position: 40% 34%; }
.work-card:nth-child(2) .work-card__media img { object-position: 50% 45%; }

.work-card:nth-child(3) .work-card__media img { object-position: center 28%; }
.work-card:nth-child(4) .work-card__media img { object-position: 50% 44%; }
.work-card:hover .work-card__media img { transform: scale(1.09); filter: saturate(1) contrast(1.06); }
.work-card:hover .work-card__media::after { opacity: .6; }

.work-card__view {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, -30%) scale(.75);
  transition: opacity .5s, transform .55s var(--ease);
}

.work-card:hover .work-card__view { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.work-card__meta {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  align-items: start;
  gap: 20px;
  padding-top: 17px;
}

.work-card__meta > div { display: flex; gap: 13px; align-items: center; }
.work-card__meta span { color: var(--blue-light); font-size: 8px; font-weight: 800; }
.work-card__meta p { margin: 0; color: #79787f; font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.work-card__meta h3 { margin: 0; font: 630 clamp(20px, 2.2vw, 34px)/1.1 "Syne", sans-serif; letter-spacing: -.045em; }

.shotby {
  min-height: 870px;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
}

.shotby::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 90px 90px;
}

.shotby__word {
  position: absolute;
  top: 2%;
  left: -2%;
  color: transparent;
  font: 750 clamp(100px, 17vw, 290px)/1 "Syne", sans-serif;
  letter-spacing: -.09em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255,255,255,.22);
  transform: rotate(-3deg);
}

.shotby__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(50px, 9vw, 150px);
  min-height: 620px;
}

.shotby__visual {
  position: relative;
  height: 560px;
  perspective: 1100px;
}

.shotby__image {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 40px 100px rgba(0,0,0,.3);
}
.shotby__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.08); }
.shotby__image--back img { object-position: 50% 42%; }
.shotby__image--front img { object-position: 40% 30%; }
.shotby__image--back { top: 4%; right: 0; width: 58%; height: 72%; transform: rotate(8deg) translateZ(-30px); }
.shotby__image--front { bottom: 0; left: 2%; width: 64%; height: 77%; transform: rotate(-6deg) translateZ(30px); }

.shotby__play {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 8%;
  display: grid;
  place-items: center;
  width: 125px;
  height: 125px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: rgba(5,5,7,.82);
}
.shotby__play span { font-size: 20px; transform: translateX(2px); }
.shotby__play small { font-size: 7px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.shotby__content { position: relative; z-index: 2; }
.shotby__content .eyebrow { color: rgba(255,255,255,.7); }
.shotby__content h2 { margin: 35px 0; font: 630 clamp(48px, 5.7vw, 86px)/.99 "Syne", sans-serif; letter-spacing: -.07em; }
.shotby__content h2 em { color: var(--gold-light); font-style: normal; }
.shotby__content > p { max-width: 600px; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.8; }
.button--light { margin-top: 25px; border-color: rgba(255,255,255,.55); background: #fff; color: var(--ink); }
.button--light i { background: var(--ink); color: #fff; }

.security {
  overflow: hidden;
  background: #03040a;
}

.security::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(49,85,255,.18), transparent 64%);
  transform: translate(-10%, -50%);
}

.security__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(55px, 9vw, 150px);
}

.security__content h2 {
  margin: 42px 0 30px;
  font: 640 clamp(52px, 6vw, 94px)/.96 "Syne", sans-serif;
  letter-spacing: -.07em;
}
.security__content h2 span { color: var(--cyan); }
.security__content > p { max-width: 590px; margin: 0; color: #898991; font-size: 13px; line-height: 1.85; }
.security__points { display: grid; gap: 0; margin-top: 45px; border-top: 1px solid var(--line); }
.security__points div { display: grid; grid-template-columns: 55px 1fr; gap: 15px; padding-block: 15px; border-bottom: 1px solid var(--line); }
.security__points strong { color: var(--blue-light); font-size: 9px; }
.security__points span { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

.security__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 610px;
  perspective: 900px;
}

.security__core {
  position: relative;
  display: grid;
  place-items: center;
  width: min(32vw, 440px);
  aspect-ratio: 1;
  border: 1px solid rgba(109,232,255,.45);
  border-radius: 38% 62% 54% 46% / 45% 38% 62% 55%;
  background: radial-gradient(circle, rgba(49,85,255,.28), rgba(3,4,10,.92) 62%);
  box-shadow: inset 0 0 100px rgba(49,85,255,.22), 0 0 100px rgba(49,85,255,.18);
  animation: core-morph 8s ease-in-out infinite;
}

.security__core::before,
.security__core::after {
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(109,232,255,.27);
  border-radius: inherit;
  content: "";
  animation: orbit-spin 20s linear infinite;
}
.security__core::after { inset: -12%; animation-direction: reverse; animation-duration: 30s; }
.security__core > span { font: 740 clamp(40px, 6vw, 84px)/1 "Syne", sans-serif; letter-spacing: -.12em; text-shadow: 0 0 30px var(--blue); }
.security__core > i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.security__core > i:nth-of-type(1) { top: 17%; left: 24%; }
.security__core > i:nth-of-type(2) { right: 12%; bottom: 33%; }
.security__core > i:nth-of-type(3) { bottom: 8%; left: 38%; }
@keyframes core-morph { 50% { border-radius: 57% 43% 37% 63% / 62% 55% 45% 38%; transform: rotateY(12deg) rotateX(-6deg); } }

.security__telemetry {
  position: absolute;
  right: 0;
  bottom: 2%;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #666a7f;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .18em;
}

.process__steps { border-top: 1px solid var(--line); }
.process-step {
  display: grid;
  grid-template-columns: .22fr 1.6fr auto;
  align-items: center;
  gap: 30px;
  padding-block: clamp(30px, 4.5vw, 62px);
  border-bottom: 1px solid var(--line);
  transition: padding .5s var(--ease), color .4s, background .4s;
}
.process-step:hover { padding-inline: 24px; background: var(--paper); color: var(--ink); }
.process-step > span { color: var(--blue-light); font: 650 clamp(28px, 4vw, 55px)/1 "Syne", sans-serif; }
.process-step > div { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 30px; }
.process-step h3 { margin: 0; font: 650 clamp(38px, 5vw, 72px)/1 "Syne", sans-serif; letter-spacing: -.06em; }
.process-step p { max-width: 480px; margin: 0; color: #89888f; font-size: 12px; }
.process-step > i { font-style: normal; font-size: 25px; transition: transform .4s var(--ease); }
.process-step:hover > i { transform: rotate(-45deg); }

.about {
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.about__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
}

.about__portraits {
  position: relative;
  min-height: 670px;
  perspective: 1200px;
}

.about__portrait {
  position: absolute;
  overflow: hidden;
  background: #d4d0c5;
  box-shadow: 0 30px 80px rgba(18,17,20,.18);
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.06); }
.about__portrait--main img { object-position: 50% 42%; }
.about__portrait--side img { object-position: 40% 30%; }
.about__portrait--main { top: 0; left: 0; width: 76%; height: 78%; transform: rotate(-4deg); }
.about__portrait--side { right: 0; bottom: 0; width: 48%; height: 48%; border: 8px solid var(--paper); transform: rotate(6deg); }

.about__stamp {
  position: absolute;
  z-index: 3;
  right: 13%;
  top: 4%;
  display: grid;
  place-content: center;
  width: 135px;
  height: 135px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--gold-light);
  text-align: center;
  transform: rotate(8deg);
}
.about__stamp span { font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.about__stamp strong { font: 750 38px/.9 "Syne", sans-serif; }
.about__stamp small { margin-top: 6px; font-size: 6px; font-weight: 800; letter-spacing: .12em; }

.about__content .section-index { color: #55545a; }
.about__content h2 { margin: 40px 0 30px; font: 650 clamp(46px, 5.2vw, 78px)/1.01 "Syne", sans-serif; letter-spacing: -.065em; }
.about__content h2 span { color: var(--blue); }
.about__content > p { max-width: 680px; color: #59585e; font-size: 13px; line-height: 1.85; }
.about__content .text-link { margin-top: 38px; }

.about__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 45px;
  border-block: 1px solid var(--line-dark);
}
.about__metrics > div { position: relative; padding: 25px 20px 24px 0; }
.about__metrics > div + div { padding-left: 20px; border-left: 1px solid var(--line-dark); }
.about__metrics strong { font: 690 clamp(38px, 4vw, 62px)/1 "Syne", sans-serif; letter-spacing: -.07em; }
.about__metrics i { color: var(--blue); font-style: normal; font-size: 22px; }
.about__metrics span { display: block; margin-top: 8px; color: #6b696f; font-size: 7px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }

.contact {
  display: grid;
  align-items: center;
  min-height: 92svh;
  overflow: hidden;
  text-align: center;
}

.contact__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78vw, 1050px);
  aspect-ratio: 1;
  border: 1px solid rgba(124,150,255,.22);
  border-radius: 50%;
  box-shadow: 0 0 150px rgba(49,85,255,.13), inset 0 0 150px rgba(49,85,255,.09);
  transform: translate(-50%, -50%);
  animation: orbit-breathe 7s ease-in-out infinite;
}

.contact__inner { position: relative; z-index: 2; }
.contact .eyebrow { justify-content: center; }
.contact h2 { margin: 40px auto 0; font: 670 clamp(60px, 8.5vw, 140px)/.9 "Syne", sans-serif; letter-spacing: -.08em; }
.contact h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(241,239,232,.7); }

.contact__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 70px;
}

.contact-orb {
  display: grid;
  place-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 25px 80px rgba(49,85,255,.35);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .5s var(--ease), background .4s;
}
.contact-orb:hover { background: var(--paper); color: var(--ink); transform: scale(1.07); }
.contact-orb i { margin-top: 8px; font-style: normal; font-size: 19px; }
.contact__actions > div { text-align: left; }
.contact__actions > div p { margin: 0; font: 650 15px/1.3 "Syne", sans-serif; }
.contact__actions > div span { display: block; max-width: 180px; margin-top: 8px; color: #77767d; font-size: 9px; line-height: 1.6; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #030304;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-block: 55px;
}

.social-links { display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr)); gap: 10px 45px; }
.social-links a { display: flex; justify-content: space-between; gap: 30px; padding-bottom: 8px; border-bottom: 1px solid var(--line); color: #aaa9b0; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: color .3s; }
.social-links a:hover { color: var(--paper); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  color: #66656c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-footer__bottom p { margin: 0; }

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

[data-tilt] {
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .2s ease-out;
  will-change: transform;
}

.content-page,
.project-hero,
.error-page {
  min-height: 70vh;
  padding-top: calc(var(--header-h) + 100px);
}

.content-page__header { max-width: 1100px; margin-bottom: 70px; }
.content-page__header h1,
.project-hero h1,
.error-page h1 { margin: 35px 0 0; font: 670 clamp(58px, 9vw, 140px)/.92 "Syne", sans-serif; letter-spacing: -.08em; }
.content-page__image,
.project-cover { overflow: hidden; max-height: 80vh; }
.content-page__image img,
.project-cover img { width: 100%; height: 100%; object-fit: cover; }
.project-cover { width: var(--shell); margin: 0 auto; }
.project-hero > p:not(.eyebrow) { max-width: 700px; color: #8b8a91; }
.editor-content { max-width: 900px; color: #c2c0c4; font-size: 17px; line-height: 1.85; }
.editor-content h2,
.editor-content h3 { color: var(--paper); font-family: "Syne", sans-serif; letter-spacing: -.04em; }
.editor-content a { color: var(--cyan); text-decoration: underline; }
.editor-content img { height: auto; }
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.post-card { border: 1px solid var(--line); }
.post-card > a { display: block; padding: 25px; }
.post-card__media { margin: -25px -25px 25px; aspect-ratio: 16/10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card p { color: #79787f; font-size: 9px; text-transform: uppercase; }
.post-card h2 { font: 650 32px/1.1 "Syne", sans-serif; letter-spacing: -.04em; }
.error-page { display: grid; align-content: center; gap: 40px; }
.error-page .button { width: fit-content; }

@supports (animation-timeline: view()) {
  .work-card__media img,
  .about__portrait img {
    animation: image-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes image-drift {
    from { transform: scale(1.14) translateY(-3%); }
    to { transform: scale(1.14) translateY(3%); }
  }
}

@media (max-width: 1180px) {
  :root { --shell: min(92vw, 1080px); }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .site-nav { position: fixed; inset: 0; z-index: -1; display: grid; place-items: center; background: rgba(5,5,7,.97); opacity: 0; visibility: hidden; transition: opacity .45s, visibility .45s; }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .site-nav .menu { flex-direction: column; gap: 7px; }
  .site-nav a { color: var(--paper); font: 650 clamp(37px, 6vw, 72px)/1.15 "Syne", sans-serif; letter-spacing: -.04em; text-transform: none; }
  .availability-pill { display: none; }
  .menu-toggle { position: relative; z-index: 2; display: block; justify-self: end; }
  .menu-open .menu-toggle > span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle > span:nth-child(2) { transform: rotate(-45deg); }
  .hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); }
  .hero__title { font-size: clamp(76px, 10vw, 122px); }
  .hero__lower { grid-template-columns: 1fr; }
  .hero__intro { max-width: 590px; }
  .button-row { grid-column: auto; }
  .manifesto { grid-template-columns: .28fr 1fr; }
  .manifesto__note { grid-column: 2; padding-top: 10px; max-width: 390px; }
  .expertise__layout { grid-template-columns: 1fr; }
  .expertise__sticky { display: none; }
  .shotby__grid { gap: 60px; }
  .security__grid { gap: 60px; }
  .about__grid { gap: 70px; }
}

@media (max-width: 860px) {
  :root { --header-h: 74px; }
  .admin-bar .site-header { top: 46px; }
  .brand-mark__copy { display: none; }
  .hero { align-items: flex-start; padding-top: calc(var(--header-h) + 70px); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { position: relative; z-index: 4; }
  .hero__title { font-size: clamp(72px, 16vw, 125px); }
  .hero__visual { width: min(80vw, 550px); height: 570px; min-height: 0; margin: -15px auto 0; }
  .hero__orbit { right: -3%; }
  .hero__lower { max-width: 680px; }
  .scroll-cue { display: none; }
  .expertise__cards { grid-template-columns: 1fr; }
  .expertise-card { min-height: 410px; }
  .work-card,
  .work-card:nth-child(2),
  .work-card:nth-child(3),
  .work-card--wide { grid-column: span 6; }
  .work-card__media,
  .work-card--wide .work-card__media { aspect-ratio: .9/1; }
  .work-card__meta { grid-template-columns: 1fr; }
  .section-heading--row { align-items: flex-start; flex-direction: column; }
  .shotby { min-height: 0; }
  .shotby__grid { grid-template-columns: 1fr; }
  .shotby__visual { height: 520px; width: min(90%, 620px); margin-inline: auto; }
  .security__grid { grid-template-columns: 1fr; }
  .security__visual { min-height: 510px; }
  .security__core { width: min(64vw, 430px); }
  .process-step > div { grid-template-columns: .8fr 1.2fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__portraits { width: min(85vw, 600px); min-height: 630px; margin-inline: auto; }
  .post-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --shell: 90vw; }
  .section { padding-block: 92px; }
  .site-header__inner { min-height: 72px; }
  .brand-mark__monogram { width: 42px; height: 42px; }
  .hero { min-height: auto; padding-top: 115px; padding-bottom: 70px; }
  .hero__title { margin-top: 25px; font-size: clamp(63px, 19.2vw, 96px); line-height: .78; }
  .hero__title-line { white-space: nowrap; }
  .hero__lower { grid-template-columns: 1fr; gap: 20px; margin-top: 35px; }
  .hero__roles { font-size: 14px; }
  .hero__intro { font-size: 11px; }
  .button-row { flex-direction: column; }
  .button { width: 100%; }
  .hero__visual { width: 100%; height: 475px; margin-top: 10px; }
  .hero-frame--main { inset: 4% 0 3% 1%; }
  .hero-frame--float { width: 92px; height: 92px; right: 0; }
  .hero__orbit { top: -3%; right: -13%; transform: scale(.75); }
  .hero__meta { left: 0; }
  .manifesto { grid-template-columns: 1fr; gap: 40px; }
  .manifesto__note { grid-column: auto; }
  .manifesto__statement h2 { font-size: 40px; }
  .section-heading h2 { font-size: 50px; }
  .expertise-card { min-height: 430px; padding: 27px; }
  .expertise-card h3 { margin-top: 55px; font-size: 34px; }
  .expertise-card__symbol { font-size: 48px; }
  .work-grid { gap: 55px; }
  .work-card,
  .work-card:nth-child(2),
  .work-card:nth-child(3),
  .work-card--wide { grid-column: 1 / -1; }
  .work-card__media,
  .work-card--wide .work-card__media { aspect-ratio: 1/1.08; }
  .work-card__meta { gap: 10px; }
  .work-card__meta h3 { font-size: 27px; }
  .work-card__view { opacity: 1; top: auto; right: 13px; bottom: 13px; left: auto; width: 68px; height: 68px; transform: none; }
  .work-card:hover .work-card__view { transform: none; }
  .shotby__word { font-size: 95px; }
  .shotby__visual { height: 400px; width: 100%; }
  .shotby__image--front { width: 68%; }
  .shotby__image--back { width: 62%; }
  .shotby__play { width: 90px; height: 90px; }
  .shotby__content h2 { font-size: 48px; }
  .security__content h2 { font-size: 52px; }
  .security__visual { min-height: 390px; }
  .security__core { width: 76vw; }
  .process-step { grid-template-columns: 48px 1fr auto; gap: 12px; }
  .process-step > span { font-size: 24px; }
  .process-step > div { grid-template-columns: 1fr; gap: 9px; }
  .process-step h3 { font-size: 39px; }
  .process-step p { font-size: 9px; }
  .about__portraits { width: 100%; min-height: 470px; }
  .about__portrait--main { width: 80%; height: 78%; }
  .about__portrait--side { width: 49%; height: 45%; }
  .about__stamp { right: 2%; width: 108px; height: 108px; }
  .about__content h2 { font-size: 46px; }
  .about__metrics { grid-template-columns: 1fr; }
  .about__metrics > div { padding: 20px 0; }
  .about__metrics > div + div { padding-left: 0; border-top: 1px solid var(--line-dark); border-left: 0; }
  .contact { min-height: 82svh; }
  .contact h2 { font-size: 56px; }
  .contact__actions { flex-direction: column; }
  .contact__actions > div { text-align: center; }
  .contact-orb { width: 150px; height: 150px; }
  .site-footer__top { flex-direction: column; }
  .social-links { width: 100%; grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
  [data-tilt] { transform: none !important; }
}

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

.theme-reduced-motion .film-grain,
.theme-reduced-motion #shader-canvas { display: none; }

.theme-reduced-motion *,
.theme-reduced-motion *::before,
.theme-reduced-motion *::after {
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .01ms !important;
}

/* Ullas Viral Portfolio — warm editorial system */
.viral-portfolio-theme { --viral-bg:#eee9df; --viral-card:#f7f4ee; --viral-ink:#0d0d0d; --viral-muted:#77726a; --viral-line:rgba(13,13,13,.14); --viral-radius:34px; margin:0; background:var(--viral-bg); color:var(--viral-ink); font-family:"Manrope",sans-serif; }
.viral-portfolio-theme::selection { background:#0d0d0d; color:#fff; }.viral-portfolio-theme a { color:inherit; }.viral-main { overflow:clip; }
.viral-progress { position:fixed; z-index:999; top:0; right:0; left:0; height:3px; }.viral-progress span { display:block; width:100%; height:100%; background:#0d0d0d; transform:scaleX(0); transform-origin:left; }
.viral-header { position:fixed; z-index:100; top:18px; right:22px; left:22px; }.admin-bar .viral-header { top:50px; }.viral-header__inner { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; width:min(1180px,calc(100vw - 44px)); min-height:66px; margin:auto; padding:8px 10px 8px 16px; border:1px solid rgba(255,255,255,.75); border-radius:20px; background:rgba(247,244,238,.82); box-shadow:0 12px 35px rgba(20,16,12,.08); backdrop-filter:blur(18px); }
.viral-brand { display:flex; align-items:center; gap:10px; width:max-content; }.viral-brand img { width:34px; height:34px; object-fit:cover; object-position:center 28%; border-radius:9px; background:#111; }.viral-brand strong { font-size:13px; letter-spacing:-.03em; }.viral-nav .menu { display:flex; gap:30px; margin:0; padding:0; list-style:none; }.viral-nav a { position:relative; font-size:11px; font-weight:650; }.viral-nav a::after { position:absolute; right:0; bottom:-6px; left:0; height:1px; content:""; background:#111; transform:scaleX(0); transition:transform .3s; }.viral-nav a:hover::after,.viral-nav a.is-active::after { transform:scaleX(1); }
.viral-book,.viral-button { display:inline-flex; align-items:center; justify-content:space-between; gap:28px; border-radius:100px; background:#0d0d0d; color:#fff!important; font-size:11px; font-weight:700; transition:transform .3s,background .3s; }.viral-book { justify-self:end; padding:14px 18px; }.viral-button { padding:17px 21px; }.viral-book:hover,.viral-button:hover { transform:translateY(-3px); background:#332f2a; }.viral-menu { display:none; background:transparent; }
.viral-hero { position:relative; display:grid; grid-template-columns:minmax(0,1.1fr) minmax(340px,.9fr); align-items:center; min-height:100svh; width:min(1180px,calc(100vw - 44px)); margin:auto; padding:140px 54px 70px; }.viral-social { position:absolute; top:34%; left:0; display:flex; gap:8px; }.viral-social a { display:grid; place-items:center; width:27px; height:27px; border:1px solid var(--viral-line); border-radius:6px; background:rgba(255,255,255,.35); font-size:8px; font-weight:800; text-transform:uppercase; transition:background .25s,color .25s; }.viral-social a:hover { background:#111; color:#fff; }
.viral-label { margin:0; font-size:9px; font-weight:800; letter-spacing:.17em; }.viral-hero h1,.viral-section-head h2,.viral-proof h2,.viral-about h2,.viral-contact h2 { margin:26px 0; color:#080808; font:520 clamp(66px,8vw,125px)/.84 "Syne",sans-serif; letter-spacing:-.085em; }.viral-hero h1 em,.viral-section-head h2 em,.viral-proof h2 em,.viral-about h2 em,.viral-contact h2 em { font-family:Georgia,serif; font-weight:400; font-style:italic; letter-spacing:-.07em; }.viral-intro { max-width:540px; margin:0 0 32px; color:var(--viral-muted); font-size:15px; line-height:1.65; }
.viral-phone { position:relative; justify-self:end; width:min(370px,34vw); height:min(650px,70vh); padding:10px; border:1px solid rgba(255,255,255,.9); border-radius:34px; background:rgba(255,255,255,.44); box-shadow:0 28px 70px rgba(38,30,22,.13),inset 0 0 0 1px rgba(0,0,0,.06); }.viral-phone>img { width:100%; height:100%; object-fit:cover; object-position:40% 30%; border-radius:25px; filter:saturate(.82) contrast(1.03); }.viral-phone::after { position:absolute; inset:10px; content:""; border-radius:25px; background:linear-gradient(180deg,rgba(0,0,0,.25),transparent 24%,transparent 62%,rgba(0,0,0,.58)); pointer-events:none; }.viral-phone__top { position:absolute; z-index:3; top:29px; right:28px; left:28px; display:flex; justify-content:space-between; color:#fff; font-size:8px; font-weight:700; }.viral-phone__top span { display:flex; gap:7px; align-items:center; }.viral-phone__top i { width:6px; height:6px; border-radius:50%; background:#7cff5c; }.viral-phone__caption { position:absolute; z-index:3; right:28px; bottom:30px; left:28px; display:grid; color:#fff; }.viral-phone__caption strong { font:600 22px/1.1 "Syne",sans-serif; }.viral-phone__caption span { margin-top:6px; font-size:8px; letter-spacing:.12em; }.viral-star { display:grid; place-items:center; width:58px; height:58px; border-radius:15px; background:#111; color:#fff; font-size:30px; }.viral-phone>.viral-star { position:absolute; z-index:5; right:-18px; bottom:-18px; animation:viral-spin 12s linear infinite; }
.viral-ticker { overflow:hidden; padding:18px 0; border-block:1px solid var(--viral-line); background:rgba(255,255,255,.25); }.viral-ticker>div { display:flex; gap:32px; align-items:center; width:max-content; animation:viral-marquee 25s linear infinite; }.viral-ticker span { font:650 13px/1 "Syne",sans-serif; letter-spacing:.05em; }.viral-ticker i { font-style:normal; }
.viral-proof,.viral-services,.viral-work,.viral-process { width:min(1180px,calc(100vw - 44px)); margin:auto; padding:clamp(100px,12vw,180px) 0; }.viral-proof { text-align:center; }.viral-proof h2 { font-size:clamp(58px,7.5vw,110px); }.viral-stats { display:grid; grid-template-columns:repeat(4,1fr); margin-top:80px; border-block:1px solid var(--viral-line); }.viral-stats article { display:grid; padding:34px 20px; border-right:1px solid var(--viral-line); }.viral-stats article:last-child { border:0; }.viral-stats strong { font:600 clamp(38px,4vw,64px)/1 "Syne",sans-serif; }.viral-stats span { margin-top:8px; color:var(--viral-muted); font-size:9px; letter-spacing:.08em; text-transform:uppercase; }
.viral-section-head { display:flex; justify-content:space-between; gap:60px; align-items:flex-start; margin-bottom:70px; }.viral-section-head h2 { max-width:900px; margin:0; font-size:clamp(58px,7vw,105px); }.viral-service-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }.viral-service-grid article { position:relative; min-height:520px; padding:34px; border:1px solid rgba(255,255,255,.8); border-radius:var(--viral-radius); background:rgba(247,244,238,.76); box-shadow:inset 0 0 0 1px rgba(13,13,13,.05); transition:transform .45s var(--ease),box-shadow .45s; }.viral-service-grid article:hover { transform:translateY(-8px); box-shadow:0 24px 65px rgba(31,24,17,.09); }.viral-service-grid article>span { font-size:10px; }.viral-service-icon { position:absolute; top:26px; right:26px; display:grid; place-items:center; width:68px; height:68px; border-radius:18px; background:#111; color:#fff; font-size:27px; }.viral-service-grid h3 { margin:120px 0 24px; font:600 clamp(35px,4vw,56px)/.95 "Syne",sans-serif; letter-spacing:-.06em; }.viral-service-grid p { max-width:490px; color:var(--viral-muted); }.viral-service-grid ul { position:absolute; right:34px; bottom:30px; left:34px; display:flex; gap:8px; flex-wrap:wrap; margin:0; padding:20px 0 0; border-top:1px solid var(--viral-line); list-style:none; }.viral-service-grid li { padding:8px 10px; border:1px solid var(--viral-line); border-radius:100px; font-size:8px; text-transform:uppercase; }
.viral-case-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:70px 18px; }.viral-case--wide { grid-column:1/-1; }.viral-case>div { position:relative; overflow:hidden; aspect-ratio:4/5; border-radius:var(--viral-radius); background:#ddd; }.viral-case--wide>div { aspect-ratio:16/9; }.viral-case img { width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease),filter .5s; }.viral-case--wide img { object-position:center 32%; }.viral-case:not(.viral-case--wide):nth-child(2) img { object-position:center 42%; }.viral-case:not(.viral-case--wide):nth-child(3) img { object-position:center 36%; }.viral-case:hover img { transform:scale(1.045); filter:saturate(.72); }.viral-case>div span { position:absolute; right:22px; bottom:22px; padding:13px 16px; border-radius:100px; background:#fff; font-size:9px; font-weight:750; }.viral-case>p { margin:20px 0 9px; color:var(--viral-muted); font-size:8px; letter-spacing:.16em; }.viral-case h3 { max-width:650px; margin:0; font:600 clamp(30px,3.3vw,48px)/1.05 "Syne",sans-serif; letter-spacing:-.055em; }
.viral-about { display:grid; grid-template-columns:1fr 1fr; gap:clamp(60px,8vw,130px); align-items:center; width:min(1180px,calc(100vw - 44px)); margin:clamp(90px,10vw,160px) auto; padding:60px; border-radius:48px; background:#111; color:#fff; }.viral-about__media { position:relative; height:650px; }.viral-about__media img { width:100%; height:100%; object-fit:cover; object-position:center 40%; border-radius:30px; filter:saturate(.75); }.viral-about__media .viral-star { position:absolute; right:-22px; bottom:-22px; background:#fff; color:#111; }.viral-about h2 { color:#fff; font-size:clamp(53px,5.5vw,82px); }.viral-about__copy>p:not(.viral-label) { color:#aaa6a0; }.viral-about__copy>a { display:inline-block; margin-top:25px; padding-bottom:9px; border-bottom:1px solid #fff; font-size:10px; }
.viral-process-list { border-top:1px solid var(--viral-line); }.viral-process-list article { display:grid; grid-template-columns:80px .55fr 1fr; gap:25px; align-items:center; padding:35px 0; border-bottom:1px solid var(--viral-line); }.viral-process-list span { font-size:10px; }.viral-process-list h3 { margin:0; font:600 clamp(38px,4.2vw,62px)/1 "Syne",sans-serif; letter-spacing:-.06em; }.viral-process-list p { margin:0; color:var(--viral-muted); }
.viral-contact { display:grid; grid-template-columns:1fr 1fr; gap:clamp(50px,8vw,130px); width:min(1180px,calc(100vw - 44px)); margin:clamp(90px,10vw,170px) auto; padding:70px; border-radius:48px; background:#d9cfbf; }.viral-contact h2 { font-size:clamp(58px,6.4vw,95px); }.viral-contact__copy>p:last-child { max-width:440px; color:var(--viral-muted); }.viral-form { display:grid; gap:20px; align-self:center; }.viral-form label { display:grid; gap:8px; }.viral-form label>span { font-size:8px; font-weight:800; letter-spacing:.15em; text-transform:uppercase; }.viral-form input,.viral-form select,.viral-form textarea { width:100%; padding:15px 0; border:0; border-bottom:1px solid rgba(13,13,13,.28); outline:0; background:transparent; color:#111; resize:vertical; }.viral-form input:focus,.viral-form select:focus,.viral-form textarea:focus { border-color:#111; }.viral-form button { display:flex; justify-content:space-between; margin-top:10px; padding:18px 22px; border-radius:100px; background:#111; color:#fff; cursor:pointer; }.viral-form__success { padding:12px 15px; border-radius:12px; background:#fff; font-size:11px; }
.viral-footer { padding:70px max(22px,calc((100vw - 1180px)/2)); background:#111; color:#fff; }.viral-footer__top { display:flex; justify-content:space-between; align-items:flex-start; padding-bottom:70px; }.viral-footer__top>div { display:grid; grid-template-columns:auto 1fr; gap:5px 12px; align-items:center; }.viral-footer__top img { grid-row:1/3; width:46px; height:46px; object-fit:cover; object-position:center 28%; border-radius:12px; }.viral-footer__top p { margin:0; color:#777; font-size:9px; }.viral-footer nav { display:grid; grid-template-columns:1fr 1fr; gap:12px 55px; }.viral-footer nav a { padding-bottom:8px; border-bottom:1px solid rgba(255,255,255,.18); font-size:10px; }.viral-footer__bottom { display:flex; justify-content:space-between; padding-top:22px; border-top:1px solid rgba(255,255,255,.18); color:#777; font-size:9px; }
@keyframes viral-spin { to { transform:rotate(360deg); } } @keyframes viral-marquee { to { transform:translateX(-50%); } }
@media(max-width:900px){.viral-header__inner{grid-template-columns:1fr auto auto}.viral-nav{position:fixed;z-index:-1;inset:0;display:flex;justify-content:center;align-items:center;background:var(--viral-bg);opacity:0;visibility:hidden;transition:.35s}.viral-nav.is-open{opacity:1;visibility:visible}.viral-nav .menu{flex-direction:column;align-items:center;gap:12px}.viral-nav a{font:600 48px/1.1 "Syne",sans-serif}.viral-book{margin-right:8px}.viral-menu{position:relative;z-index:2;display:grid;gap:5px;padding:16px;border-radius:14px;background:#111}.viral-menu i{display:block;width:20px;height:1px;background:#fff}.viral-hero{grid-template-columns:1fr;padding-top:150px}.viral-social{top:125px;left:2px}.viral-phone{justify-self:center;width:min(500px,70vw);height:650px;margin-top:65px}.viral-stats{grid-template-columns:1fr 1fr}.viral-stats article:nth-child(2){border-right:0}.viral-stats article:nth-child(-n+2){border-bottom:1px solid var(--viral-line)}.viral-about,.viral-contact{grid-template-columns:1fr}.viral-about__media{height:600px}}
@media(max-width:620px){.viral-header{top:10px;right:10px;left:10px}.viral-header__inner{width:100%;min-height:58px}.viral-brand strong{display:none}.viral-book{padding:12px 14px;font-size:9px}.viral-hero{width:90vw;padding:120px 0 70px}.viral-hero h1{font-size:clamp(58px,18vw,86px)}.viral-intro{font-size:13px}.viral-phone{width:90vw;height:560px;margin-left:-1vw}.viral-phone>.viral-star{right:3px}.viral-proof,.viral-services,.viral-work,.viral-process{width:90vw;padding-block:95px}.viral-proof h2,.viral-section-head h2{font-size:52px}.viral-stats{margin-top:50px}.viral-section-head{display:block;margin-bottom:50px}.viral-section-head h2{margin-top:24px}.viral-service-grid{grid-template-columns:1fr}.viral-service-grid article{min-height:490px;padding:25px}.viral-service-grid h3{font-size:38px}.viral-service-grid ul{right:25px;left:25px}.viral-case-grid{grid-template-columns:1fr;gap:50px}.viral-case--wide{grid-column:auto}.viral-case--wide>div,.viral-case>div{aspect-ratio:4/5}.viral-about{width:94vw;margin-block:70px;padding:18px;border-radius:30px}.viral-about__media{height:520px}.viral-about__copy{padding:30px 12px}.viral-about h2{font-size:48px}.viral-process-list article{grid-template-columns:45px 1fr}.viral-process-list p{grid-column:2}.viral-contact{width:94vw;margin-block:70px;padding:45px 22px;border-radius:30px}.viral-contact h2{font-size:55px}.viral-footer{padding:55px 22px}.viral-footer__top{display:grid;gap:50px}.viral-footer nav{gap:12px 25px}.viral-footer__bottom{flex-direction:column;gap:12px}}
@media(prefers-reduced-motion:reduce){.viral-ticker>div,.viral-phone>.viral-star{animation:none}.reveal{opacity:1!important;transform:none!important}}

/* V1.1 conversion and content enhancements */
.viral-name{display:inline-flex;margin:0 0 12px;padding:7px 10px;border:1px solid var(--viral-line);border-radius:100px;background:rgba(255,255,255,.3);font-size:9px;font-weight:800;letter-spacing:.15em;text-transform:uppercase}
.viral-hero__actions{display:flex;align-items:center;gap:24px}.viral-showreel{display:inline-flex;align-items:center;gap:10px;font-size:10px;font-weight:750}.viral-showreel i{display:grid;place-items:center;width:38px;height:38px;border:1px solid var(--viral-line);border-radius:50%;font-size:9px;font-style:normal;transition:.25s}.viral-showreel:hover i{background:#111;color:#fff;transform:scale(1.08)}
.viral-faq{width:min(1180px,calc(100vw - 44px));margin:auto;padding:clamp(100px,12vw,180px) 0}.viral-faq__list{border-top:1px solid var(--viral-line)}.viral-faq details{border-bottom:1px solid var(--viral-line)}.viral-faq summary{display:flex;justify-content:space-between;gap:30px;align-items:center;padding:28px 0;cursor:pointer;list-style:none;font:580 clamp(22px,2.4vw,34px)/1.2 "Syne",sans-serif;letter-spacing:-.045em}.viral-faq summary::-webkit-details-marker{display:none}.viral-faq summary span{font:400 27px/1 Manrope,sans-serif;transition:transform .3s}.viral-faq details[open] summary span{transform:rotate(45deg)}.viral-faq details p{max-width:760px;margin:0;padding:0 0 30px;color:var(--viral-muted)}
.viral-honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
@media(max-width:620px){.viral-hero__actions{align-items:flex-start;flex-direction:column;gap:16px}.viral-faq{width:90vw;padding-block:95px}}
