:root {
  color-scheme: light;
  --ink: #101116;
  --muted: #62646e;
  --paper: #f3f2ef;
  --paper-soft: #faf9f7;
  --blue: #5e8cff;
  --violet: #9c6cff;
  --coral: #ff8d79;
  --line: rgba(15, 17, 24, 0.1);
  --glass: rgba(255, 255, 255, 0.52);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(35, 37, 52, 0.12);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --shell: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 255, 255, 0.98), transparent 30%),
    linear-gradient(180deg, #f5f3ef 0%, #eeedea 45%, #f6f5f2 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(94, 140, 255, 0.28);
  color: #101116;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: #111219;
  color: #fff;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  position: relative;
  padding-block: 150px;
}

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

.ambient__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.46;
  will-change: transform;
}

.ambient__orb--blue {
  top: -17vw;
  right: -10vw;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle at 34% 37%, rgba(205, 232, 255, 0.92), rgba(113, 155, 255, 0.25) 48%, transparent 72%);
}

.ambient__orb--violet {
  top: 42vh;
  left: -18vw;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(202, 178, 255, 0.55), rgba(153, 118, 255, 0.16) 55%, transparent 72%);
}

.ambient__orb--sun {
  right: 12vw;
  bottom: -26vw;
  width: 43vw;
  height: 43vw;
  background: radial-gradient(circle, rgba(255, 222, 182, 0.5), rgba(255, 145, 113, 0.12) 54%, transparent 74%);
}

.ambient__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding-top: max(18px, env(safe-area-inset-top));
  pointer-events: none;
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(250, 249, 247, 0.54);
  box-shadow: 0 10px 34px rgba(42, 43, 52, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  pointer-events: auto;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.site-header.is-scrolled .nav {
  background: rgba(250, 249, 247, 0.76);
  box-shadow: 0 16px 46px rgba(42, 43, 52, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 15px;
  font-weight: 670;
  letter-spacing: -0.02em;
}

.brand__mark {
  position: relative;
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #13141a;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18);
}

.brand__mark::before,
.brand__mark span {
  position: absolute;
  width: 12px;
  height: 18px;
  border: 2px solid #f6f7fa;
  border-left-width: 5px;
  border-radius: 3px 9px 9px 3px;
  content: "";
}

.brand__mark::after {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, #b9d6ff, #a684ff);
  filter: blur(2px);
  content: "";
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__links a {
  position: relative;
  color: #5c5e67;
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: #17181d;
  content: "";
  transition: transform 0.25s var(--ease);
}

.nav__links a:hover {
  color: #17181d;
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-height: 44px;
  padding-inline: 18px 14px;
  border-radius: 15px;
  background: #16171d;
  color: #f7f7f9;
  font-size: 13px;
  font-weight: 620;
  box-shadow: 0 8px 20px rgba(16, 17, 22, 0.15);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s ease;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 17, 22, 0.22);
}

.nav__cta svg {
  width: 17px;
  height: 17px;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: clamp(42px, 7vw, 108px);
  min-height: 100svh;
  padding-top: 142px;
  padding-bottom: 90px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #4f515b;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow__pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #74b58a;
  box-shadow: 0 0 0 5px rgba(116, 181, 138, 0.13);
}

.eyebrow__pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(116, 181, 138, 0.5);
  border-radius: inherit;
  content: "";
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  70%, 100% { transform: scale(1.7); opacity: 0; }
}

.hero__title {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 6vw, 86px);
  font-weight: 680;
  letter-spacing: -0.075em;
  line-height: 0.99;
}

.gradient-type,
.soft-gradient {
  color: transparent;
  background: linear-gradient(110deg, #5d6f9d 2%, #8074b5 42%, #b46f77 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 600px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.82;
  letter-spacing: -0.015em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 640;
  letter-spacing: -0.01em;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.button:hover svg {
  transform: translateX(3px);
}

.button--dark {
  background: #15161b;
  color: #f9f9fa;
  box-shadow: 0 14px 30px rgba(17, 18, 24, 0.18);
}

.button--dark:hover {
  box-shadow: 0 20px 40px rgba(17, 18, 24, 0.24);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.48);
  color: #30313a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 12px 28px rgba(30, 31, 40, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.7);
}

.button__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7b8fff;
  box-shadow: 0 0 0 4px rgba(123, 143, 255, 0.12);
}

.hero__meta {
  display: flex;
  gap: 48px;
  margin-top: 52px;
}

.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #4e5059;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.hero__meta-label {
  color: #a0a1a8;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.hero__visual {
  position: relative;
  min-height: 600px;
  perspective: 1200px;
}

.glass-surface,
.liquid-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.32)),
    radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(255, 255, 255, 0.82), transparent 45%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82), inset 0 -1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.studio-card {
  position: absolute;
  top: 50%;
  right: 3%;
  width: min(100%, 465px);
  min-height: 540px;
  padding: 24px;
  transform: translateY(-50%) rotateY(-3deg) rotateX(2deg);
  overflow: hidden;
  border-radius: 46px;
  box-shadow: 0 45px 100px rgba(50, 54, 78, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition: transform 0.3s var(--ease);
  transform-style: preserve-3d;
}

.studio-card::before {
  position: absolute;
  top: -12%;
  left: -18%;
  width: 78%;
  height: 50%;
  transform: rotate(-15deg);
  border-radius: 50%;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.72), rgba(155, 195, 255, 0.1));
  filter: blur(16px);
  content: "";
}

.studio-card__top,
.studio-card__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777984;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-card__label {
  display: flex;
  align-items: center;
  gap: 7px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86a7ff;
  box-shadow: 0 0 0 4px rgba(134, 167, 255, 0.13);
}

.studio-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 330px;
  transform: translate(-50%, -52%);
}

.studio-orbit::before {
  position: absolute;
  inset: 1%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 184, 255, 0.18), transparent 63%);
  filter: blur(12px);
  content: "";
}

.studio-orbit__ring {
  position: absolute;
  border: 1px solid rgba(97, 102, 124, 0.16);
  border-radius: 50%;
}

.studio-orbit__ring--outer {
  inset: 0;
  border-style: dashed;
  animation: rotate 32s linear infinite;
}

.studio-orbit__ring--inner {
  inset: 43px;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 40px rgba(130, 160, 255, 0.12), inset 0 0 32px rgba(255, 255, 255, 0.38);
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.studio-orbit__core {
  position: absolute;
  inset: 81px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 44% 56% 62% 38% / 50% 45% 55% 50%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.92), transparent 18%),
    linear-gradient(145deg, rgba(132, 181, 255, 0.88), rgba(150, 120, 235, 0.78) 54%, rgba(255, 152, 135, 0.72));
  box-shadow: 0 25px 60px rgba(119, 109, 192, 0.35), inset 8px 8px 18px rgba(255, 255, 255, 0.44), inset -10px -12px 20px rgba(82, 66, 150, 0.25);
  animation: morph 8s ease-in-out infinite alternate;
}

.studio-orbit__shine {
  position: absolute;
  top: 6%;
  left: 18%;
  width: 42%;
  height: 24%;
  transform: rotate(-25deg);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  filter: blur(10px);
}

@keyframes morph {
  0% { border-radius: 44% 56% 62% 38% / 50% 45% 55% 50%; transform: rotate(-4deg) scale(0.98); }
  50% { border-radius: 58% 42% 45% 55% / 39% 58% 42% 61%; transform: rotate(3deg) scale(1.04); }
  100% { border-radius: 38% 62% 52% 48% / 61% 42% 58% 39%; transform: rotate(-1deg) scale(1); }
}

.orbit-chip {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #545660;
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(54, 58, 80, 0.1), inset 0 1px 0 #fff;
  backdrop-filter: blur(10px);
}

.orbit-chip--idea { top: 12px; left: 48px; }
.orbit-chip--build { right: -4px; bottom: 92px; }
.orbit-chip--refine { bottom: 17px; left: 41px; }

.studio-card__bottom {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.studio-card__bottom > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.studio-card__bottom strong {
  color: #3c3f49;
  font-size: 11px;
  font-weight: 650;
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 20px;
}

.signal-bars i {
  display: block;
  width: 3px;
  border-radius: 9px;
  background: linear-gradient(to top, #8f92a0, #ced0d9);
  animation: signal 1.5s ease-in-out infinite alternate;
}

.signal-bars i:nth-child(1) { height: 7px; animation-delay: -0.2s; }
.signal-bars i:nth-child(2) { height: 11px; animation-delay: -0.8s; }
.signal-bars i:nth-child(3) { height: 17px; animation-delay: -0.5s; }
.signal-bars i:nth-child(4) { height: 13px; animation-delay: -1.1s; }
.signal-bars i:nth-child(5) { height: 19px; animation-delay: -0.4s; }
.signal-bars i:nth-child(6) { height: 9px; animation-delay: -0.9s; }
.signal-bars i:nth-child(7) { height: 14px; animation-delay: -0.3s; }

@keyframes signal {
  to { transform: scaleY(0.52); opacity: 0.55; }
}

.float-pill {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 16px 8px 9px;
  border-radius: 17px;
  color: #545661;
  font-size: 11px;
  font-weight: 620;
  box-shadow: 0 18px 40px rgba(45, 48, 67, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  animation: float 5s ease-in-out infinite;
}

.float-pill--top {
  top: 13%;
  right: -4%;
}

.float-pill--top svg {
  width: 27px;
  height: 27px;
  padding: 7px;
  border-radius: 10px;
  background: #17181d;
  color: #fff;
}

.float-pill--bottom {
  bottom: 11%;
  left: -8%;
  animation-delay: -2.2s;
}

.float-pill__icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #7198ff, #9974e8);
  color: #fff;
  box-shadow: 0 7px 15px rgba(121, 119, 225, 0.26);
}

.float-pill__icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8b8c94;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 16px;
  height: 16px;
  animation: nudge 1.8s ease-in-out infinite;
}

@keyframes nudge {
  50% { transform: translateY(5px); }
}

.statement {
  padding-bottom: 90px;
  overflow: hidden;
  background: rgba(251, 250, 248, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(24, 25, 31, 0.06);
}

.statement__grid,
.section-heading {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 40px;
}

.section-index {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-top: 10px;
  color: #9a9ba1;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-index span:first-child {
  color: #393b44;
}

.section-kicker {
  margin: 0 0 20px;
  color: #8b8d96;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.statement__title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(46px, 6.2vw, 86px);
  font-weight: 640;
  letter-spacing: -0.068em;
  line-height: 1.04;
}

.statement__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  max-width: 810px;
  margin-top: 62px;
}

.statement__body p {
  margin: 0;
  color: #676973;
  font-size: 16px;
  line-height: 1.9;
}

.marquee {
  width: 100%;
  margin-top: 126px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  min-height: 84px;
  animation: marquee 30s linear infinite;
}

.marquee__track span {
  color: #393b43;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.marquee__track i {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border-radius: 2px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

@keyframes marquee {
  to { transform: translateX(calc(-50% - 16px)); }
}

.principles {
  padding-bottom: 170px;
}

.section-heading {
  align-items: start;
  margin-bottom: 72px;
}

.section-heading > div:last-child {
  max-width: 830px;
}

.section-title {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 640;
  letter-spacing: -0.062em;
  line-height: 1.09;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.principle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s ease;
}

.principle-card::after {
  position: absolute;
  top: -50%;
  left: -55%;
  width: 75%;
  height: 170%;
  transform: rotate(25deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  content: "";
  transition: left 0.7s var(--ease);
}

.principle-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 34px 80px rgba(35, 37, 52, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.principle-card:hover::after {
  left: 100%;
}

.principle-card__number {
  color: #9c9da4;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.principle-card__icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 68px 0 42px;
  place-items: center;
  border-radius: 25px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(77, 84, 124, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.42);
}

.principle-card__icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.35;
}

.principle-card__icon--blue { background: linear-gradient(145deg, #79a9ff, #557be4); }
.principle-card__icon--violet { background: linear-gradient(145deg, #b38aff, #7b5bd4); }
.principle-card__icon--coral { background: linear-gradient(145deg, #ffad91, #e97879); }

.principle-card h3 {
  margin: 0 0 13px;
  font-size: 21px;
  font-weight: 640;
  letter-spacing: -0.035em;
}

.principle-card p {
  margin: 0;
  color: #71737d;
  font-size: 14px;
  line-height: 1.85;
}

.principle-card__tag {
  margin-top: auto;
  padding-top: 25px;
  color: #aaabb1;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.work {
  background:
    radial-gradient(circle at 80% 20%, rgba(115, 127, 255, 0.09), transparent 30%),
    #16171b;
  color: #f4f4f5;
}

.work .section-index,
.work .section-kicker {
  color: #757780;
}

.work .section-index span:first-child {
  color: #c4c5ca;
}

.section-heading--work {
  margin-bottom: 82px;
}

.feature-project {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-project__visual {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 28%, rgba(140, 100, 255, 0.26), transparent 33%),
    radial-gradient(circle at 20% 78%, rgba(70, 140, 255, 0.18), transparent 38%),
    linear-gradient(145deg, #262932, #1b1d24);
}

.feature-project__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, transparent, #000 35%, #000 75%, transparent);
}

.browser-frame {
  position: relative;
  z-index: 2;
  width: 78%;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.17);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: perspective(1000px) rotateY(-7deg) rotateX(3deg);
  transition: transform 0.7s var(--ease);
}

.feature-project:hover .browser-frame {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-7px);
}

.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 13, 0.25);
}

.browser-frame__bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.browser-frame__bar > span:first-child { background: #ee887d; }
.browser-frame__bar > span:nth-child(2) { background: #e5c56f; }
.browser-frame__bar > span:nth-child(3) { background: #78bf8f; }

.browser-frame__bar div {
  min-width: 150px;
  margin-left: 12px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.42);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  text-align: center;
}

.browser-frame__content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 20px;
  min-height: 350px;
  padding: 42px;
}

.fingerprint-mark {
  color: rgba(177, 191, 255, 0.7);
}

.fingerprint-mark svg {
  width: 100%;
  filter: drop-shadow(0 0 26px rgba(128, 123, 255, 0.24));
  stroke-width: 2.2;
}

.browser-frame__copy {
  display: flex;
  flex-direction: column;
}

.browser-frame__copy > span {
  color: #8e91a1;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.browser-frame__copy strong {
  max-width: 230px;
  margin-top: 14px;
  font-size: clamp(25px, 2.8vw, 39px);
  font-weight: 580;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.metric-row {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 54px;
  margin-top: 38px;
}

.metric-row i {
  width: 12px;
  border-radius: 4px;
  background: linear-gradient(to top, rgba(101, 131, 255, 0.28), rgba(189, 159, 255, 0.68));
}

.metric-row i:nth-child(1) { height: 34%; }
.metric-row i:nth-child(2) { height: 65%; }
.metric-row i:nth-child(3) { height: 46%; }
.metric-row i:nth-child(4) { height: 92%; }
.metric-row i:nth-child(5) { height: 72%; }

.feature-project__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
}

.feature-project__meta {
  display: flex;
  justify-content: space-between;
  color: #767982;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.feature-project__info h3 {
  margin: 0 0 18px;
  font-size: clamp(45px, 5vw, 66px);
  font-weight: 610;
  letter-spacing: -0.065em;
  line-height: 1;
}

.feature-project__info p {
  margin: 0;
  color: #a1a3ab;
  font-size: 14px;
  line-height: 1.9;
}

.feature-project__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-list span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 99px;
  color: #90929a;
  font-size: 9px;
}

.round-link {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #f1f1f2;
  color: #18191e;
  transition:
    transform 0.35s var(--ease),
    background 0.3s ease;
}

.round-link:hover {
  transform: rotate(8deg) scale(1.08);
  background: #fff;
}

.round-link svg {
  width: 21px;
  height: 21px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.process-card {
  min-height: 250px;
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(121, 132, 210, 0.17), transparent 44%),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.process-card__step {
  color: #777982;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.process-card__line {
  width: 100%;
  height: 1px;
  margin: 34px 0 48px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent);
}

.process-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 570;
  letter-spacing: -0.025em;
}

.process-card p {
  margin: 0;
  color: #858790;
  font-size: 13px;
  line-height: 1.75;
}

.connect {
  padding-block: 130px;
}

.connect-card {
  position: relative;
  min-height: 600px;
  padding: 38px 42px 45px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 44px;
  background:
    radial-gradient(circle at var(--mx, 76%) var(--my, 35%), rgba(143, 129, 255, 0.28), transparent 27%),
    linear-gradient(135deg, #1d1f27, #131419 76%);
  color: #f4f4f6;
  box-shadow: 0 45px 100px rgba(27, 28, 35, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.connect-card__glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 90%;
  transform: rotate(-18deg);
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(106, 162, 255, 0.26), rgba(161, 104, 255, 0.17), rgba(255, 141, 121, 0.16));
  filter: blur(45px);
}

.connect-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #747780;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.connect-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.connect-card__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #77be8e;
  box-shadow: 0 0 0 4px rgba(119, 190, 142, 0.11);
}

.connect-card__content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  margin-top: 105px;
}

.connect-card__content .section-kicker {
  color: #777a84;
}

.connect-card h2 {
  margin: 0;
  font-size: clamp(48px, 6.7vw, 88px);
  font-weight: 600;
  letter-spacing: -0.068em;
  line-height: 1.02;
}

.connect-card h2 span {
  color: transparent;
  background: linear-gradient(110deg, #9ebdff, #af8ef5 48%, #ee9d93);
  -webkit-background-clip: text;
  background-clip: text;
}

.connect-card__content > p:not(.section-kicker) {
  max-width: 560px;
  margin: 27px 0 34px;
  color: #9698a1;
  font-size: 15px;
  line-height: 1.85;
}

.button--light {
  background: #f1f1f3;
  color: #17181d;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

.button--light:hover {
  background: #fff;
}

.connect-card__rings {
  position: absolute;
  z-index: 1;
  right: -30px;
  bottom: -80px;
  width: 390px;
  height: 390px;
}

.connect-card__rings i,
.connect-card__rings span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.connect-card__rings i:first-child { inset: 0; }
.connect-card__rings i:nth-child(2) { inset: 48px; }
.connect-card__rings i:nth-child(3) { inset: 96px; }

.connect-card__rings span {
  inset: 142px;
  border-color: rgba(255, 255, 255, 0.25);
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.58), rgba(122, 140, 255, 0.48) 26%, rgba(146, 93, 212, 0.56) 66%, rgba(236, 116, 112, 0.42));
  box-shadow: 0 0 55px rgba(128, 110, 255, 0.28), inset 5px 5px 12px rgba(255, 255, 255, 0.3);
  animation: morph 9s ease-in-out infinite alternate;
}

.site-footer {
  padding: 0 0 max(42px, env(safe-area-inset-bottom));
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__brand .brand__mark {
  width: 34px;
  height: 34px;
}

.site-footer__brand > div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.site-footer__brand strong {
  font-size: 13px;
  letter-spacing: -0.02em;
}

.site-footer__brand > div span {
  color: #9899a0;
  font-size: 9px;
}

.site-footer__right {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #898a92;
  font-size: 11px;
}

.site-footer__right a {
  transition: color 0.2s ease;
}

.site-footer__right a:hover {
  color: #282a31;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  transition-delay: calc(var(--delay, 0) * 90ms);
}

.reveal[data-delay="1"] { --delay: 1; }
.reveal[data-delay="2"] { --delay: 2; }
.reveal[data-delay="3"] { --delay: 3; }
.reveal[data-delay="4"] { --delay: 4; }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root { --shell: min(100% - 40px, 960px); }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
    gap: 42px;
  }

  .hero__title { font-size: clamp(56px, 7vw, 76px); }
  .hero__visual { min-height: 540px; }
  .studio-card { min-height: 500px; }
  .float-pill--top { right: -1%; }
  .float-pill--bottom { left: -3%; }

  .feature-project {
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  }

  .browser-frame { width: 86%; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 34px, 720px); }
  .section { padding-block: 110px; }

  .nav {
    grid-template-columns: 1fr auto;
    min-height: 58px;
  }

  .nav__links,
  .nav__cta { display: none; }

  .menu-button {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #18191e;
    color: #fff;
    cursor: pointer;
  }

  .menu-button span {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.3s var(--ease), top 0.3s var(--ease);
  }

  .menu-button span:first-child { top: 16px; }
  .menu-button span:last-child { top: 25px; }
  .menu-button[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

  .mobile-menu {
    display: block;
    width: var(--shell);
    max-height: 0;
    margin: 10px auto 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 24px;
    background: rgba(247, 246, 243, 0.88);
    box-shadow: 0 30px 70px rgba(31, 32, 40, 0.16);
    backdrop-filter: blur(28px) saturate(150%);
    -webkit-backdrop-filter: blur(28px) saturate(150%);
    pointer-events: auto;
    transition: max-height 0.45s var(--ease), border-color 0.3s ease;
  }

  .mobile-menu.is-open {
    max-height: 380px;
    border-color: rgba(255, 255, 255, 0.8);
  }

  .mobile-menu__inner {
    display: flex;
    flex-direction: column;
    padding: 14px 20px 20px;
  }

  .mobile-menu__inner a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    font-weight: 570;
  }

  .mobile-menu__inner a:last-child { border-bottom: 0; }
  .mobile-menu__inner span {
    color: #9c9da4;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
    padding-top: 152px;
    padding-bottom: 116px;
  }

  .hero__copy { max-width: 680px; }
  .hero__title { font-size: clamp(58px, 11vw, 82px); }
  .hero__lead { max-width: 610px; }
  .hero__visual { min-height: 620px; }
  .studio-card { right: 50%; transform: translate(50%, -50%); }
  .float-pill--top { right: 3%; }
  .float-pill--bottom { left: 5%; }
  .scroll-cue { bottom: 42px; }

  .statement__grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-index { padding-top: 0; }
  .statement__body { gap: 28px; }
  .marquee { margin-top: 90px; }
  .principle-grid { grid-template-columns: 1fr; }

  .principle-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto 1fr auto;
    column-gap: 25px;
    min-height: 250px;
  }

  .principle-card__number { grid-column: 1 / -1; }
  .principle-card__icon { grid-column: 1; grid-row: 2; margin: 36px 0 0; }
  .principle-card > div:nth-of-type(3) { grid-column: 2; grid-row: 2; margin-top: 36px; }
  .principle-card__tag { grid-column: 2; grid-row: 3; }

  .feature-project {
    grid-template-columns: 1fr;
  }

  .feature-project__visual { min-height: 510px; }
  .feature-project__info { min-height: 430px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 210px; }

  .connect { padding-block: 100px; }
  .connect-card { min-height: 640px; padding: 32px; }
  .connect-card__content { margin-top: 95px; }
  .connect-card__rings { right: -130px; opacity: 0.72; }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
    --radius-xl: 30px;
  }

  html { scroll-padding-top: 88px; }
  .section { padding-block: 84px; }
  .site-header { padding-top: max(10px, env(safe-area-inset-top)); }
  .nav { min-height: 54px; padding-left: 12px; border-radius: 18px; }
  .brand__word { font-size: 14px; }
  .brand__mark { width: 28px; height: 28px; border-radius: 9px; }
  .menu-button { width: 38px; height: 38px; border-radius: 12px; }
  .menu-button span { left: 11px; width: 16px; }
  .menu-button span:first-child { top: 14px; }
  .menu-button span:last-child { top: 23px; }
  .menu-button[aria-expanded="true"] span:first-child,
  .menu-button[aria-expanded="true"] span:last-child { top: 19px; }

  .hero { padding-top: 132px; padding-bottom: 100px; }
  .eyebrow { margin-bottom: 19px; font-size: 10px; }
  .hero__title { font-size: clamp(48px, 16vw, 68px); letter-spacing: -0.07em; }
  .hero__title .gradient-type { display: inline-block; font-size: 0.82em; white-space: nowrap; }
  .hero__lead { margin-top: 26px; font-size: 16px; line-height: 1.75; }
  .hero__actions { flex-direction: column; align-items: stretch; margin-top: 30px; }
  .button { width: 100%; }
  .hero__meta { gap: 32px; margin-top: 38px; }
  .hero__visual { min-height: 490px; }

  .studio-card {
    width: calc(100% - 18px);
    min-height: 450px;
    padding: 20px;
    border-radius: 36px;
  }

  .studio-orbit { width: 280px; height: 280px; }
  .studio-orbit__ring--inner { inset: 38px; }
  .studio-orbit__core { inset: 70px; }
  .studio-card__bottom { right: 20px; bottom: 20px; left: 20px; }
  .float-pill { display: none; }
  .scroll-cue { display: none; }

  .statement__grid,
  .section-heading { gap: 28px; }
  .statement__title { font-size: clamp(43px, 14vw, 60px); }
  .statement__body { grid-template-columns: 1fr; margin-top: 44px; }
  .marquee { margin-top: 70px; }
  .marquee__track { min-height: 70px; }
  .section-title { font-size: clamp(38px, 12vw, 52px); }
  .section-heading { margin-bottom: 48px; }
  .principles { padding-bottom: 92px; }

  .principle-card {
    display: flex;
    min-height: 390px;
    padding: 24px;
  }

  .principle-card__icon { margin: 58px 0 36px; }
  .principle-card > div:nth-of-type(3) { margin-top: 0; }
  .principle-card__tag { padding-top: 22px; }

  .section-heading--work { margin-bottom: 52px; }
  .feature-project { border-radius: 28px; }
  .feature-project__visual { min-height: 390px; }
  .browser-frame { width: 90%; border-radius: 20px; transform: perspective(1000px) rotateY(-4deg) rotateX(2deg); }
  .browser-frame__bar { height: 40px; }
  .browser-frame__content { grid-template-columns: 0.9fr 1.1fr; min-height: 270px; padding: 24px 18px; }
  .browser-frame__copy strong { font-size: 24px; }
  .metric-row { height: 40px; margin-top: 26px; }
  .feature-project__info { min-height: 390px; padding: 28px 24px; }
  .feature-project__info h3 { font-size: 48px; }
  .feature-project__footer { align-items: end; }
  .tag-list { max-width: 190px; }

  .process-card { min-height: 205px; }
  .connect { padding-block: 76px; }
  .connect-card { min-height: 600px; padding: 25px 22px; border-radius: 30px; }
  .connect-card__top { gap: 15px; }
  .connect-card__content { margin-top: 86px; }
  .connect-card h2 { font-size: clamp(43px, 14vw, 60px); }
  .connect-card__content > p:not(.section-kicker) { font-size: 14px; }
  .connect-card__rings { right: -180px; bottom: -110px; }

  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__right { flex-direction: column; align-items: flex-start; gap: 7px; }
}

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

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav,
  .glass-surface,
  .liquid-card,
  .mobile-menu {
    background-color: rgba(248, 247, 244, 0.94);
  }

  .work .liquid-card,
  .connect-card,
  .browser-frame {
    background-color: #1c1e25;
  }
}
