/* Amindu Saputhanthri — premium portfolio system */
:root {
  --ink: #0b0b0a;
  --ink-soft: #11110f;
  --ink-raised: #171714;
  --paper: #f0eee7;
  --paper-soft: #d8d4ca;
  --muted: #89867d;
  --bronze: #b98c63;
  --bronze-light: #d4ae87;
  --line: rgba(240, 238, 231, 0.15);
  --line-dark: rgba(11, 11, 10, 0.14);
  --display: "Cabinet Grotesk", "Avenir Next", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "DM Mono", monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --content: min(92vw, 1560px);
  --z-grain: 40;
  --z-nav: 60;
  --z-menu: 55;
  --z-loader: 80;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body.premium-home {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.premium-home ::selection,
body.premium-shell ::selection {
  color: var(--ink);
  background: var(--bronze-light);
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-200%);
  transition: transform 400ms var(--ease-out);
}

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

:focus-visible {
  outline: 1px solid var(--bronze-light);
  outline-offset: 5px;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.045;
  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='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
}

.scroll-line {
  position: fixed;
  right: 0;
  top: 0;
  z-index: calc(var(--z-nav) + 1);
  width: 3px;
  height: 100%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--bronze-light);
  transform: scaleY(0);
  transform-origin: 50% 0;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 3rem;
  height: 3rem;
  pointer-events: none;
  border: 1px solid rgba(240, 238, 231, 0.5);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: width 500ms var(--ease-out), height 500ms var(--ease-out), border-color 500ms var(--ease-out), background 500ms var(--ease-out);
}

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

.cursor.is-active {
  width: 5rem;
  height: 5rem;
  border-color: var(--bronze-light);
  background: rgba(185, 140, 99, 0.1);
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 4rem);
  color: var(--ink);
  background: var(--paper);
  transform-origin: 50% 0;
}

.intro-loader__top,
.intro-loader__foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.intro-loader__mark {
  position: relative;
  align-self: center;
  justify-self: center;
  width: clamp(12rem, 23vw, 21rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.intro-loader__logo-shell {
  position: relative;
  z-index: 2;
  width: clamp(8.4rem, 14vw, 12.8rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: clamp(0.38rem, 0.7vw, 0.62rem);
  border: 1px solid rgba(11, 11, 10, 0.14);
  border-radius: 50%;
  background: rgba(11, 11, 10, 0.045);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.82), 0 1.8rem 4.5rem rgba(72, 52, 35, 0.13);
}

.intro-loader__logo-shell::before {
  content: "";
  position: absolute;
  inset: 0.28rem;
  border: 1px solid rgba(11, 11, 10, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.intro-loader__logo-shell::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 10%;
  width: 0.48rem;
  aspect-ratio: 1;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 1px rgba(11, 11, 10, 0.12);
}

.intro-loader__logo-core {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.62), 0 0 0 1px rgba(11, 11, 10, 0.07);
}

.intro-loader__logo-core img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.intro-loader__orbit {
  position: absolute;
  z-index: 1;
  display: block;
  border: 1px solid rgba(151, 102, 65, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.intro-loader__orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.18rem;
  width: 0.35rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bronze);
  transform: translateY(-50%);
}

.intro-loader__orbit--wide {
  width: 112%;
  height: 42%;
  transform: rotate(-24deg);
}

.intro-loader__orbit--tight {
  width: 92%;
  height: 34%;
  border-color: rgba(11, 11, 10, 0.16);
  transform: rotate(31deg);
}

.intro-loader__orbit--tight::after {
  top: 18%;
  right: 4%;
  width: 0.25rem;
  background: var(--ink);
}

.intro-loader__bar {
  height: 1px;
  overflow: hidden;
  background: rgba(11, 11, 10, 0.14);
}

.intro-loader__bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.premium-nav {
  position: fixed;
  top: clamp(0.8rem, 2vw, 1.6rem);
  left: 50%;
  z-index: var(--z-nav);
  width: min(94vw, 1500px);
  min-height: 4.2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  border: 1px solid rgba(240, 238, 231, 0.15);
  border-radius: 999px;
  background: rgba(11, 11, 10, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1.5rem 4rem rgba(28, 22, 17, 0.22);
  backdrop-filter: blur(18px) saturate(130%);
  transform: translateX(-50%);
  transition: transform 700ms var(--ease-out), background 700ms var(--ease-out);
}

.premium-nav.is-hidden {
  transform: translate(-50%, -150%);
}

.premium-nav__identity {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--paper);
  text-decoration: none;
}

.premium-nav__monogram {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0.16rem;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(240, 238, 231, 0.28);
  background: rgba(240, 238, 231, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 0.55rem 1.4rem rgba(0, 0, 0, 0.2);
  transition: transform 800ms var(--ease-out), border-color 800ms var(--ease-out), box-shadow 800ms var(--ease-out);
}

.premium-nav__monogram::after {
  content: "";
  position: absolute;
  inset: 0.16rem;
  border-radius: 50%;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.46);
  pointer-events: none;
}

.premium-nav__monogram img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: transform 1000ms var(--ease-out);
}

.premium-nav__identity:hover .premium-nav__monogram {
  border-color: rgba(212, 174, 135, 0.62);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.24), 0 0.75rem 1.8rem rgba(69, 43, 26, 0.28);
  transform: rotate(-4deg) scale(1.045);
}

.premium-nav__identity:hover .premium-nav__monogram img {
  transform: rotate(4deg) scale(1.025);
}

.premium-nav__name {
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.premium-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.8rem);
}

.premium-nav__links a {
  position: relative;
  color: var(--paper-soft);
  font-size: 0.76rem;
  font-weight: 500;
  text-decoration: none;
}

.premium-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: var(--bronze-light);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 500ms var(--ease-out);
}

.premium-nav__links a:hover::after,
.premium-nav__links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.premium-nav__end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--paper-soft);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
}

.availability i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--bronze-light);
  box-shadow: 0 0 0 0 rgba(212, 174, 135, 0.6);
  animation: status-pulse 2.8s infinite var(--ease-out);
}

@keyframes status-pulse {
  55% { box-shadow: 0 0 0 0.45rem rgba(212, 174, 135, 0); }
}

.round-link {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transition: transform 600ms var(--ease-spring), background 400ms var(--ease-out);
}

.round-link span {
  transition: transform 600ms var(--ease-out);
}

.round-link:hover {
  background: var(--bronze-light);
}

.round-link:hover span {
  transform: translate(2px, -2px);
}

.round-link:active,
.action-link:active,
.contact__email:active {
  transform: scale(0.98);
}

.menu-button {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.menu-button span {
  position: absolute;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: transform 600ms var(--ease-out);
}

.menu-button span:first-child { transform: translate(-50%, -3px); }
.menu-button span:last-child { transform: translate(-50%, 3px); }
.menu-button.is-open span:first-child { transform: translate(-50%, 0) rotate(45deg); }
.menu-button.is-open span:last-child { transform: translate(-50%, 0) rotate(-45deg); }

.signal-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(8rem, 13vh, 10.5rem) 0 clamp(2rem, 5vh, 4rem);
}

.signal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 74% 46%, rgba(185, 140, 99, 0.17), transparent 28%),
    radial-gradient(circle at 95% 10%, rgba(240, 238, 231, 0.06), transparent 24%),
    var(--ink);
}

.signal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(11, 11, 10, 0.94) 0%, rgba(11, 11, 10, 0.72) 38%, rgba(11, 11, 10, 0.04) 70%);
}

.signal-hero__ambient {
  position: absolute;
  right: 8%;
  top: 20%;
  z-index: 0;
  width: min(50vw, 52rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(185, 140, 99, 0.08);
  box-shadow: 0 0 12rem rgba(185, 140, 99, 0.14);
}

.signal-companion {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
}

#signal-canvas {
  width: 100%;
  height: 100%;
}

#signal-canvas.is-fallback {
  background: radial-gradient(circle at 72% 45%, rgba(185, 140, 99, 0.18), transparent 23%);
}

.signal-companion__hud {
  position: absolute;
  left: 0;
  top: 0;
  width: max-content;
  display: grid;
  gap: 0.18rem;
  padding-left: 1.65rem;
  color: var(--bronze-light);
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
  opacity: 0;
  translate: 0 -50%;
  will-change: transform, opacity;
}

.signal-companion__hud[data-align="left"] {
  padding-right: 1.65rem;
  padding-left: 0;
  text-align: right;
  translate: -100% -50%;
}

.signal-companion__phase {
  color: currentColor;
}

.signal-companion__coordinates {
  color: var(--muted);
  font-size: 0.43rem;
}

.signal-companion__reticle {
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.signal-companion__reticle::before,
.signal-companion__reticle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.signal-companion__reticle::before {
  width: 1.15rem;
  height: 1px;
}

.signal-companion__reticle::after {
  width: 1px;
  height: 1.15rem;
}

.signal-companion__hud[data-align="left"] .signal-companion__reticle {
  right: 0;
  left: auto;
}

.signal-hero__content {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
}

.hero-status {
  width: min(100%, 74rem);
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 4vh, 3rem);
  font-family: var(--mono);
  font-size: clamp(0.56rem, 0.65vw, 0.7rem);
  letter-spacing: 0.08em;
}

.hero-status span:last-child {
  color: var(--muted);
}

.hero-title {
  position: relative;
  z-index: 2;
  max-width: 13ch;
  margin: 0;
  font-size: clamp(4rem, 10.6vw, 11.3rem);
  font-weight: 500;
  line-height: 0.76;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hero-title__line {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.hero-title__line--second {
  margin-left: clamp(1rem, 7vw, 7rem);
  gap: clamp(0.8rem, 2vw, 2rem);
}

.hero-title em {
  color: var(--bronze-light);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.inline-portrait {
  position: relative;
  flex: 0 0 auto;
  width: clamp(4.7rem, 9.3vw, 10.2rem);
  height: clamp(2.55rem, 5.1vw, 5.8rem);
  display: block;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transform: rotate(-4deg);
  transition: transform 760ms var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}

.inline-portrait__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 238, 231, 0.25);
  border-radius: inherit;
  background: var(--bronze);
  box-shadow: 0 0.75rem 2.2rem rgba(38, 24, 16, 0.18);
  transform: translateZ(0);
}

.inline-portrait__frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 244, 228, 0.2) 50%, transparent 76%);
  opacity: 0;
  transform: translateX(-72%);
  transition: transform 900ms var(--ease-out), opacity 700ms var(--ease-out);
  pointer-events: none;
}

.inline-portrait__frame::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.inline-portrait__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 235%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(-12%);
  transition: transform 900ms var(--ease-out), opacity 750ms var(--ease-out);
  pointer-events: none;
}

.inline-portrait__image--base {
  filter: grayscale(1) contrast(1.08) sepia(0.18);
}

.inline-portrait__image--color {
  z-index: 1;
  opacity: 0;
  filter: contrast(1.05) saturate(0.82) sepia(0.05);
}

.inline-portrait__sheen {
  position: absolute;
  z-index: 3;
  top: -75%;
  bottom: -75%;
  left: 45%;
  width: 18%;
  background: rgba(255, 248, 237, 0.18);
  opacity: 0;
  transform: translateX(-520%) rotate(14deg);
  transition: transform 950ms var(--ease-out), opacity 650ms var(--ease-out);
  pointer-events: none;
}

.inline-portrait__signal {
  position: absolute;
  z-index: -1;
  inset: -0.25rem;
  border: 1px solid rgba(212, 174, 135, 0.72);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.82);
  pointer-events: none;
}

.inline-portrait:hover {
  transform: translateY(-0.06em) rotate(-1.5deg) scale(1.055);
}

.inline-portrait:hover .inline-portrait__frame::before {
  opacity: 1;
  transform: translateX(72%);
}

.inline-portrait:hover .inline-portrait__image {
  transform: translateY(-13%) scale(1.035);
}

.inline-portrait:hover .inline-portrait__image--color {
  opacity: 0.58;
}

.inline-portrait:hover .inline-portrait__sheen {
  opacity: 0.72;
  transform: translateX(520%) rotate(14deg);
}

.inline-portrait:active {
  transform: rotate(-2.5deg) scale(0.98);
}

.inline-portrait:focus-visible {
  outline: none;
}

.inline-portrait:focus-visible .inline-portrait__frame {
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px var(--bronze-light), 0 0.75rem 2.2rem rgba(38, 24, 16, 0.18);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  width: min(100%, 71rem);
  display: grid;
  grid-template-columns: minmax(16rem, 30rem) auto;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-top: clamp(2.4rem, 7vh, 5.5rem);
}

.hero-bottom > p {
  max-width: 54ch;
  margin: 0;
  color: var(--paper-soft);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.5;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.action-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 3.8rem;
  padding: 0.45rem 0.5rem 0.45rem 1.3rem;
  border: 1px solid rgba(240, 238, 231, 0.2);
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 500ms var(--ease-out), background 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.action-link i {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
  transition: transform 600ms var(--ease-out), background 500ms var(--ease-out);
}

.action-link--light {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.action-link--light i {
  color: var(--paper);
  background: var(--ink);
}

.action-link:hover i {
  transform: translate(2px, -2px) scale(1.06);
  background: var(--bronze);
}

.signal-hero__rail {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  gap: 2rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.signal-hero__rail--left { left: 1.1rem; transform: translateY(-50%) rotate(180deg); }
.signal-hero__rail--right { right: 1.1rem; transform: translateY(-50%); }

.signal-readout {
  position: absolute;
  right: 5vw;
  bottom: 9rem;
  z-index: 3;
  width: 10rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
}

.signal-readout > div {
  height: 1.8rem;
  display: flex;
  align-items: end;
  gap: 0.25rem;
  margin: 0.45rem 0;
}

.signal-readout i {
  width: 1px;
  background: var(--bronze-light);
  animation: signal 1.7s var(--ease-out) infinite alternate;
}

.signal-readout i:nth-child(1) { height: 20%; animation-delay: -0.2s; }
.signal-readout i:nth-child(2) { height: 74%; animation-delay: -0.7s; }
.signal-readout i:nth-child(3) { height: 38%; animation-delay: -1.2s; }
.signal-readout i:nth-child(4) { height: 100%; animation-delay: -0.4s; }
.signal-readout i:nth-child(5) { height: 58%; animation-delay: -1.4s; }
.signal-readout i:nth-child(6) { height: 28%; animation-delay: -0.9s; }
.signal-readout i:nth-child(7) { height: 82%; animation-delay: -0.1s; }

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

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding: 1.15rem 0;
  animation: ticker-slide 32s linear infinite;
}

.ticker__track span {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.ticker__track i {
  color: var(--bronze);
  font-family: var(--serif);
  font-style: normal;
}

@keyframes ticker-slide {
  to { transform: translateX(-50%); }
}

.chapter {
  position: relative;
  width: var(--content);
  margin: 0 auto;
  padding: clamp(9rem, 16vw, 17rem) 0;
}

.chapter > * {
  position: relative;
  z-index: 2;
}

.chapter-index,
.micro-label {
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.11em;
}

.chapter-index {
  margin-bottom: clamp(4rem, 8vw, 8rem);
  color: var(--muted);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(20rem, 3.15fr) minmax(0, 8.85fr);
  gap: clamp(3rem, 4vw, 5rem);
  align-items: stretch;
}

.manifesto__aside {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.7rem;
}

.manifesto__aside p {
  max-width: 22ch;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.manifesto-portrait {
  --portrait-radius: clamp(2.4rem, 4.8vw, 5rem);
  position: relative;
  width: min(100%, 24rem);
  margin: clamp(2.5rem, 4.4vw, 4.5rem) 0 0;
  isolation: isolate;
}

.manifesto-portrait::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 9% -12% 7% 14%;
  border: 1px solid rgba(212, 174, 135, 0.18);
  border-radius: 50%;
  opacity: 0.78;
  transform: rotate(-11deg);
  transition: opacity 800ms var(--ease-out), transform 1000ms var(--ease-out);
}

.manifesto-portrait__shell {
  position: relative;
  padding: clamp(0.32rem, 0.65vw, 0.52rem);
  border: 1px solid rgba(240, 238, 231, 0.14);
  border-radius: 50% 50% var(--portrait-radius) var(--portrait-radius);
  background: linear-gradient(145deg, rgba(240, 238, 231, 0.1), rgba(185, 140, 99, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 2.4rem 5.5rem rgba(54, 36, 23, 0.18);
  transform: translateZ(0);
  transition: border-color 750ms var(--ease-out), box-shadow 900ms var(--ease-out), transform 900ms var(--ease-out);
}

.manifesto-portrait__stage {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: calc(50% - 0.28rem) calc(50% - 0.28rem) calc(var(--portrait-radius) - 0.38rem) calc(var(--portrait-radius) - 0.38rem);
  background:
    radial-gradient(circle at 68% 28%, rgba(212, 174, 135, 0.22), transparent 31%),
    linear-gradient(158deg, #242019 0%, #151411 52%, #0b0b0a 100%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.11), inset 0 -2rem 4rem rgba(0, 0, 0, 0.22);
}

.manifesto-portrait__stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -8% -28% 5% 4%;
  background: repeating-radial-gradient(circle at 68% 30%, transparent 0 3.15rem, rgba(240, 238, 231, 0.055) 3.2rem 3.25rem);
  opacity: 0.72;
  transform: rotate(-8deg);
}

.manifesto-portrait__halo {
  position: absolute;
  z-index: 1;
  top: 17%;
  right: 3%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(212, 174, 135, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 4rem rgba(185, 140, 99, 0.09), inset 0 0 3rem rgba(185, 140, 99, 0.055);
  transition: transform 1100ms var(--ease-out), opacity 800ms var(--ease-out);
}

.manifesto-portrait__image {
  position: absolute;
  z-index: 2;
  right: -9%;
  bottom: -4%;
  width: 118%;
  max-width: none;
  height: auto;
  filter: saturate(0.72) sepia(0.08) contrast(1.045);
  transform: translate3d(0, 0, 0) scale(1.015);
  transform-origin: 52% 100%;
  transition: filter 850ms var(--ease-out), transform 1000ms var(--ease-out);
}

.manifesto-portrait__sheen {
  position: absolute;
  z-index: 3;
  inset: -28% auto -20% 18%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 246, 232, 0.14), transparent);
  opacity: 0;
  transform: translateX(-220%) rotate(12deg);
  transition: opacity 750ms var(--ease-out), transform 1100ms var(--ease-out);
  pointer-events: none;
}

.manifesto-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.35rem 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.09em;
}

.manifesto-portrait:hover::before {
  opacity: 1;
  transform: rotate(-7deg) scale(1.035);
}

.manifesto-portrait:hover .manifesto-portrait__shell {
  border-color: rgba(212, 174, 135, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 3rem 6.5rem rgba(70, 45, 27, 0.24);
  transform: translate3d(0, -0.45rem, 0) rotate(0.45deg);
}

.manifesto-portrait:hover .manifesto-portrait__halo {
  opacity: 0.82;
  transform: scale(1.08) rotate(8deg);
}

.manifesto-portrait:hover .manifesto-portrait__image {
  filter: saturate(0.98) sepia(0) contrast(1.035);
  transform: translate3d(0, -0.7%, 0) scale(1.04);
}

.manifesto-portrait:hover .manifesto-portrait__sheen {
  opacity: 0.62;
  transform: translateX(520%) rotate(12deg);
}

.kinetic-copy {
  position: relative;
  z-index: 2;
  max-width: 22ch;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: pretty;
}

.kinetic-copy .word {
  display: inline-block;
  color: var(--paper);
  opacity: 0.13;
  will-change: opacity;
}

.manifesto__signature {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.manifesto__signature > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.identity-aliases {
  display: block;
  max-width: 42ch;
  color: color-mix(in srgb, var(--muted) 78%, transparent);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
}

.capabilities {
  width: 100%;
  padding-left: max(4vw, calc((100vw - 1560px) / 2));
  padding-right: max(4vw, calc((100vw - 1560px) / 2));
  background: var(--paper);
  color: var(--ink);
}

.capabilities__head,
.work__head,
.journal__head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 5vw;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.capabilities__head h2,
.work__head h2,
.experience__intro h2,
.journal__head h2,
.contact h2 {
  margin: 0;
  font-size: clamp(4rem, 8.8vw, 9.8rem);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.capabilities__head h2 em,
.work__head h2 em,
.experience__intro h2 em,
.journal__head h2 em,
.contact h2 em {
  color: var(--bronze);
  font-family: var(--serif);
  font-weight: 400;
}

.capabilities__head > p,
.work__head > p,
.experience__intro > p {
  max-width: 42ch;
  margin: 0 0 0.5rem;
  color: #646158;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.55;
}

.capability-accordion {
  min-height: 46rem;
  display: flex;
  overflow: hidden;
  border-radius: 2.6rem;
  background: #d7d2c7;
  padding: 0.45rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 3rem 7rem rgba(55, 43, 32, 0.12);
}

.capability-panel {
  position: relative;
  flex: 0.72;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1.5rem;
  border: 0;
  border-right: 1px solid rgba(11, 11, 10, 0.1);
  border-radius: 2.2rem;
  color: var(--paper);
  background: var(--ink-soft);
  cursor: pointer;
  transition: flex 900ms var(--ease-out), background 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.capability-panel:last-child {
  border-right: 0;
}

.capability-panel.is-active,
.capability-panel:hover,
.capability-panel:focus-visible {
  flex: 2.4;
  background: #171510;
}

.capability-panel__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: var(--paper-soft);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.capability-panel__content {
  position: relative;
  z-index: 2;
  width: min(32rem, 92%);
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 500ms var(--ease-out) 0ms, transform 700ms var(--ease-out) 0ms;
}

.capability-panel.is-active .capability-panel__content,
.capability-panel:hover .capability-panel__content,
.capability-panel:focus-visible .capability-panel__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 220ms;
}

.capability-panel__content h3 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.capability-panel__content p {
  max-width: 44ch;
  margin: 0 0 1.5rem;
  color: var(--paper-soft);
  font-size: 0.9rem;
}

.capability-panel__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-panel__content li {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(240, 238, 231, 0.18);
  border-radius: 999px;
  color: var(--paper-soft);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.06em;
}

.capability-panel__visual {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  transition: opacity 800ms var(--ease-out), transform 1100ms var(--ease-out);
}

.capability-panel.is-active .capability-panel__visual,
.capability-panel:hover .capability-panel__visual {
  opacity: 0.5;
  transform: scale(1.05);
}

.visual-web {
  background: radial-gradient(circle at 70% 28%, var(--bronze), transparent 25%), repeating-radial-gradient(circle at 70% 28%, transparent 0 24px, rgba(240, 238, 231, 0.3) 25px 26px);
}

.visual-web span,
.visual-systems span,
.visual-interface span,
.visual-lead span {
  position: absolute;
  right: 15%;
  top: 18%;
  width: 38%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.visual-systems {
  background: repeating-linear-gradient(90deg, transparent 0 38px, rgba(185, 140, 99, 0.45) 39px 40px), repeating-linear-gradient(0deg, transparent 0 38px, rgba(185, 140, 99, 0.45) 39px 40px);
  transform: perspective(500px) rotateX(58deg) scale(1.5);
}

.visual-interface {
  background: radial-gradient(ellipse at center, rgba(240, 238, 231, 0.32), transparent 50%);
}

.visual-interface span {
  width: 48%;
  border-radius: 28% 72% 55% 45% / 47% 37% 63% 53%;
  animation: interface-morph 8s var(--ease-out) infinite alternate;
}

@keyframes interface-morph {
  to { border-radius: 62% 38% 31% 69% / 61% 67% 33% 39%; transform: rotate(35deg); }
}

.visual-lead {
  background: linear-gradient(140deg, transparent 32%, rgba(185, 140, 99, 0.65) 32.3% 32.8%, transparent 33%), linear-gradient(40deg, transparent 57%, rgba(240, 238, 231, 0.25) 57.3% 57.8%, transparent 58%);
}

.visual-lead span {
  border-radius: 0;
  transform: rotate(45deg);
}

.work {
  width: 100%;
  padding-left: max(4vw, calc((100vw - 1560px) / 2));
  padding-right: max(4vw, calc((100vw - 1560px) / 2));
}

.work__head > p {
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}

.work-card {
  position: relative;
  min-height: clamp(30rem, 48vw, 48rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: 2.4rem;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  isolation: isolate;
  transform: translateZ(0);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(11, 11, 10, 0.12);
  border-radius: 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.work-card--erp { grid-column: span 7; }
.work-card--analytics { grid-column: span 5; }
.work-card--billing { grid-column: span 5; background: var(--bronze); }
.work-card--mobile { grid-column: span 7; color: var(--paper); background: #151510; }
.work-card--system { grid-column: span 12; min-height: clamp(25rem, 38vw, 40rem); }

.work-card__meta,
.work-card__foot {
  position: relative;
  z-index: 4;
}

.work-card__meta {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.work-card__foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.work-card__foot h3 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.work-card__foot > span {
  font-family: var(--mono);
  font-size: 0.54rem;
  white-space: nowrap;
}

.work-card__art {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 1000ms var(--ease-out), opacity 700ms var(--ease-out);
}

.work-card:hover .work-card__art {
  transform: scale(1.035);
}

.art-erp {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(185, 140, 99, 0.22), transparent 25%), repeating-radial-gradient(circle at center, transparent 0 42px, rgba(11, 11, 10, 0.1) 43px 44px);
}

.art-erp i {
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.09em;
}

.erp-orbit {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(11, 11, 10, 0.22);
  border-radius: 50%;
  transform: rotateX(68deg);
}

.erp-orbit::before {
  content: "";
  position: absolute;
  left: 12%;
  top: 9%;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 2rem var(--bronze);
}

.art-data {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 1vw, 1rem);
  padding: 15%;
  background: #151510;
}

.art-data span {
  flex: 1;
  border-radius: 999px;
  background: var(--bronze-light);
  transform-origin: 50% 100%;
  animation: data-wave 4s var(--ease-out) infinite alternate;
}

.art-data span:nth-child(1) { height: 20%; animation-delay: -0.8s; }
.art-data span:nth-child(2) { height: 80%; animation-delay: -1.6s; }
.art-data span:nth-child(3) { height: 45%; animation-delay: -2.4s; }
.art-data span:nth-child(4) { height: 100%; animation-delay: -0.4s; }
.art-data span:nth-child(5) { height: 58%; animation-delay: -1.2s; }

@keyframes data-wave { to { transform: scaleY(0.35); opacity: 0.35; } }

.art-billing {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(116deg, transparent 0 58px, rgba(11, 11, 10, 0.12) 59px 60px);
}

.art-billing b {
  position: relative;
  z-index: 2;
  font-size: clamp(7rem, 16vw, 16rem);
  line-height: 1;
  letter-spacing: -0.14em;
}

.art-billing span {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(11, 11, 10, 0.26);
  border-radius: 50%;
}

.art-mobile {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 43%, rgba(185, 140, 99, 0.23), transparent 28%), repeating-linear-gradient(90deg, transparent 0 9.9%, rgba(240, 238, 231, 0.05) 10%);
}

.art-mobile > span {
  width: min(38%, 15rem);
  aspect-ratio: 0.52;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0.65rem;
  padding: 1.1rem;
  border: 1px solid rgba(240, 238, 231, 0.26);
  border-radius: 2.5rem;
  background: rgba(240, 238, 231, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 2.5rem 6rem rgba(0, 0, 0, 0.3);
  transform: rotate(8deg);
}

.art-mobile i {
  height: 10%;
  border-radius: 999px;
  background: var(--bronze);
}

.art-mobile i:nth-child(2) { width: 72%; }
.art-mobile i:nth-child(3) { width: 46%; }

.art-system {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: center;
  gap: 1rem;
  padding: 10%;
  background: repeating-linear-gradient(90deg, transparent 0 calc(8.333% - 1px), rgba(11, 11, 10, 0.07) calc(8.333% - 1px) 8.333%);
}

.art-system span {
  min-height: 8rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 1.6rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  background: rgba(255, 255, 255, 0.4);
  transition: transform 700ms var(--ease-out), color 500ms var(--ease-out), background 500ms var(--ease-out);
}

.work-card:hover .art-system span:nth-child(odd) { transform: translateY(-0.7rem); }
.work-card:hover .art-system span:nth-child(even) { transform: translateY(0.7rem); background: var(--ink); color: var(--paper); }

.text-link {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 0.82rem;
  text-decoration: none;
}

.text-link span {
  transition: transform 500ms var(--ease-out);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.experience {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  border-top: 1px solid var(--line);
}

.experience__intro {
  align-self: start;
  position: sticky;
  top: 9rem;
}

.experience__intro h2 {
  margin-top: 3rem;
  font-size: clamp(4rem, 7vw, 7.8rem);
}

.experience__intro > p {
  margin-top: 2rem;
  color: var(--muted);
}

.experience__list article {
  min-height: 13rem;
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  align-content: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  transition: transform 600ms var(--ease-out), opacity 600ms var(--ease-out);
}

.experience__list article:hover {
  transform: translateX(0.7rem);
}

.experience__list time,
.experience__list article > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.07em;
}

.experience__list article > span {
  grid-column: 2;
}

.experience__list h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.experience__list p {
  margin: 0.5rem 0 0;
  color: var(--bronze-light);
}

.journal {
  width: 100%;
  padding-left: max(4vw, calc((100vw - 1560px) / 2));
  padding-right: max(4vw, calc((100vw - 1560px) / 2));
  color: var(--ink);
  background: var(--paper);
}

.journal__head {
  grid-template-columns: auto 1fr auto;
}

.journal__head h2 {
  font-size: clamp(4rem, 8vw, 9rem);
}

.journal__head .text-link {
  align-self: end;
  margin-top: 0;
}

.journal__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 0.7rem;
}

.journal-card {
  position: relative;
  min-height: 32rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2vw, 2rem);
  border-radius: 2rem;
  background: #dfdbd1;
  transition: transform 700ms var(--ease-out), background 700ms var(--ease-out);
}

.journal-card::before {
  content: "";
  position: absolute;
  inset: 0.4rem;
  pointer-events: none;
  border: 1px solid rgba(11, 11, 10, 0.1);
  border-radius: 1.65rem;
}

.journal-card--feature {
  color: var(--paper);
  background: var(--ink-soft);
}

.journal-card:hover {
  transform: translateY(-0.7rem);
  background: var(--bronze-light);
}

.journal-card--feature:hover {
  background: #211c17;
}

.journal-card > span,
.journal-card time {
  position: relative;
  z-index: 1;
  color: inherit;
  font-family: var(--mono);
  font-size: 0.53rem;
  letter-spacing: 0.08em;
}

.journal-card time {
  margin-top: 0.45rem;
  opacity: 0.5;
}

.journal-card h3 {
  position: relative;
  z-index: 1;
  margin: auto 0 1rem;
  font-size: clamp(2rem, 3.5vw, 4.2rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: pretty;
}

.journal-card:not(.journal-card--feature) h3 {
  font-size: clamp(1.8rem, 2.5vw, 3rem);
}

.journal-card p {
  position: relative;
  z-index: 1;
  max-width: 44ch;
  margin: 0;
  color: var(--paper-soft);
  font-size: 0.8rem;
}

.journal-card > a {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 600ms var(--ease-out);
}

.journal-card > a:hover {
  transform: rotate(45deg);
}

.contact {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(8rem, 16vw, 16rem) 4vw 3rem;
  text-align: center;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at center 50%, rgba(185, 140, 99, 0.15), transparent 30%);
}

.contact__orb {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: min(45vw, 42rem);
  aspect-ratio: 1;
  border: 1px solid rgba(185, 140, 99, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact > .micro-label,
.contact > h2,
.contact > .contact__email {
  position: relative;
  z-index: 2;
}

.contact__orb::before,
.contact__orb::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(240, 238, 231, 0.1);
  border-radius: 50%;
}

.contact__orb::after {
  inset: 25%;
}

.contact h2 {
  margin: 3rem 0 4rem;
  font-size: clamp(5rem, 12vw, 13rem);
}

.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0.55rem 0.55rem 1.6rem;
  border: 1px solid var(--paper);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-size: clamp(0.78rem, 1.3vw, 1.15rem);
  text-decoration: none;
  transition: background 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.contact__email i {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-style: normal;
  transition: transform 600ms var(--ease-out), background 500ms var(--ease-out);
}

.contact__email:hover {
  background: var(--bronze-light);
}

.contact__email:hover i {
  background: var(--bronze);
  transform: translate(2px, -2px);
}

.contact__foot {
  position: absolute;
  left: 4vw;
  right: 4vw;
  bottom: 2rem;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.contact__foot > div {
  justify-self: end;
  display: flex;
  gap: 1.5rem;
}

.contact__foot a {
  text-decoration: none;
}

.premium-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 4vw;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
}

.premium-footer a {
  text-decoration: none;
}

.seo-identity {
  position: relative;
  z-index: 2;
  padding: 1.25rem 4vw 2rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--muted);
}

.seo-identity h2 {
  margin: 0 0 0.65rem;
  color: var(--paper-soft);
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-identity p {
  max-width: 72ch;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.seo-identity a {
  color: var(--bronze-light);
  text-decoration: none;
}

.seo-identity a:hover {
  text-decoration: underline;
}

.seo-identity strong {
  color: var(--paper-soft);
  font-weight: 600;
}

.reveal-up {
  will-change: transform, opacity;
}

/* Shared polish for the archive, journal, and product-detail pages */
body.premium-shell {
  --bg: var(--ink);
  --surface: var(--ink-raised);
  --surface-alt: #1c1b18;
  --text: var(--paper);
  --text-dim: var(--muted);
  --text-muted: var(--muted);
  --text-primary: var(--paper);
  --brand: var(--bronze);
  --brand-alt: var(--bronze-light);
  --accent: var(--bronze);
  --accent-secondary: var(--bronze-light);
  --accent-rgb: 185, 140, 99;
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
}

body.premium-shell .noise {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.045;
  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='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
}

body.premium-shell .site-header {
  top: 1rem;
  left: max(3vw, calc((100vw - 1480px) / 2));
  right: max(3vw, calc((100vw - 1480px) / 2));
  width: auto;
  padding: 0.55rem 0;
  border: 1px solid rgba(240, 238, 231, 0.15);
  border-radius: 999px;
  background: rgba(11, 11, 10, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1.5rem 4rem rgba(28, 22, 17, 0.22);
  backdrop-filter: blur(18px) saturate(130%);
  transform: none !important;
}

body.premium-shell .site-header .container {
  width: 100%;
  padding: 0 0.75rem 0 1rem;
}

body.premium-shell .site-header .logo {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0.16rem;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(240, 238, 231, 0.28);
  background: rgba(240, 238, 231, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 0.55rem 1.4rem rgba(0, 0, 0, 0.2);
  transition: transform 800ms var(--ease-out), border-color 800ms var(--ease-out), box-shadow 800ms var(--ease-out);
}

body.premium-shell .site-header .logo a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
}

body.premium-shell .site-header .logo img,
body.premium-shell .page-loader .logo-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

body.premium-shell .site-header .logo:hover {
  border-color: rgba(212, 174, 135, 0.62);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.24), 0 0.75rem 1.8rem rgba(69, 43, 26, 0.28);
  transform: rotate(-4deg) scale(1.045);
}

body.premium-shell .main-nav ul {
  gap: clamp(1rem, 2vw, 2.2rem);
}

body.premium-shell .main-nav a {
  color: var(--paper-soft);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
}

body.premium-shell .main-nav a.active,
body.premium-shell .main-nav a:hover {
  color: var(--bronze-light);
}

body.premium-shell .header-cta .btn-outline {
  display: none;
}

body.premium-shell .header-cta .btn-primary {
  min-height: 2.9rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
}

body.premium-shell .theme-toggle {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

body.premium-shell .page-loader {
  background: var(--paper);
  color: var(--ink);
}

body.premium-shell .page-loader .logo-circle {
  padding: 0.24rem;
  border: 1px solid rgba(11, 11, 10, 0.16);
  background: rgba(11, 11, 10, 0.06);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.65), 0 1rem 3rem rgba(50, 36, 24, 0.12);
  animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
}

body.premium-shell .page-loader .logo-circle::before {
  display: none;
}

body.premium-shell .projects-hero,
body.premium-shell .blog-hero,
body.premium-shell .product-hero {
  min-height: 74dvh;
  display: flex;
  align-items: end;
  padding: clamp(10rem, 18vw, 15rem) 0 clamp(5rem, 9vw, 8rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 38%, rgba(185, 140, 99, 0.2), transparent 24%),
    repeating-linear-gradient(90deg, transparent 0 calc(8.333% - 1px), rgba(240, 238, 231, 0.035) calc(8.333% - 1px) 8.333%),
    var(--ink);
}

body.premium-shell .projects-hero h1,
body.premium-shell .blog-hero h1,
body.premium-shell .product-hero h1,
body.premium-shell .product-title {
  max-width: 12ch;
  margin: 1.5rem 0 2rem;
  font-family: var(--display);
  font-size: clamp(4.2rem, 9vw, 10rem);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.075em;
  text-wrap: balance;
  color: var(--paper);
  background: none;
  -webkit-text-fill-color: currentColor;
}

body.premium-shell .projects-hero .lead,
body.premium-shell .blog-hero .lead,
body.premium-shell .product-hero .lead,
body.premium-shell .product-description {
  max-width: 55ch;
  color: var(--paper-soft);
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  line-height: 1.55;
}

body.premium-shell .eyebrow,
body.premium-shell .project-category,
body.premium-shell .blog-category,
body.premium-shell .product-category,
body.premium-shell .product-status {
  color: var(--bronze-light);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.premium-shell .projects-hero .eyebrow,
body.premium-shell .blog-hero .eyebrow,
body.premium-shell .product-hero .eyebrow {
  width: max-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.premium-shell .projects-stats {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

body.premium-shell .stat-item {
  border-color: var(--line);
}

body.premium-shell .stat-number {
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 400;
}

body.premium-shell .projects-main,
body.premium-shell .blog-filter,
body.premium-shell .blog-articles,
body.premium-shell .newsletter,
body.premium-shell .product-content,
body.premium-shell .pricing-section,
body.premium-shell .screenshots-section,
body.premium-shell .testimonials-section {
  background: var(--paper);
  color: var(--ink);
}

body.premium-shell .projects-main,
body.premium-shell .blog-articles,
body.premium-shell .product-content {
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(7rem, 12vw, 12rem);
}

body.premium-shell .project-filters,
body.premium-shell .blog-filter .filter-container {
  gap: 0.5rem;
  padding: 0.45rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: #dfdbd1;
}

body.premium-shell .project-filters {
  position: sticky;
  top: 6.4rem;
  z-index: 5;
}

body.premium-shell.blog-page .blog-hero-badge {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--bronze-light);
  background: transparent;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.premium-shell.blog-page .blog-hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

body.premium-shell.blog-page .blog-hero-stats .stat-item {
  width: auto;
  height: auto;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.premium-shell.blog-page .blog-hero-stats .stat-number {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

body.premium-shell.blog-page .blog-hero-stats .stat-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.premium-shell.blog-page .blog-filter {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

body.premium-shell.blog-page .filter-wrapper {
  padding: 1.25rem;
  border: 1px solid var(--line-dark);
  border-radius: 2rem;
  background: #dfdbd1;
}

body.premium-shell.blog-page .filter-title {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.04em;
}

body.premium-shell.blog-page .search-input {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
}

body.premium-shell.blog-page .filter-tag {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #5d5a52;
  background: transparent;
  font-family: var(--mono);
  font-size: 0.52rem;
}

body.premium-shell.blog-page .filter-tag.active,
body.premium-shell.blog-page .filter-tag:hover {
  color: var(--paper);
  background: var(--ink);
}

body.premium-shell.blog-page .article-card,
body.premium-shell.blog-page .article-card.featured {
  color: var(--ink) !important;
  background: #dedad0 !important;
}

body.premium-shell.blog-page .article-content {
  color: var(--ink) !important;
  background: #dedad0 !important;
}

body.premium-shell.blog-page .article-card h3,
body.premium-shell.blog-page .article-title {
  color: var(--ink) !important;
}

body.premium-shell.blog-page .article-card p,
body.premium-shell.blog-page .article-excerpt,
body.premium-shell.blog-page .article-meta {
  color: #625f56 !important;
}

body.premium-shell.blog-page .article-card .tag {
  border: 1px solid var(--line-dark);
  color: #4e4a43;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 0.5rem;
}

body.premium-shell.blog-page .article-link {
  color: #805c3f !important;
}

body.premium-shell .filter-btn,
body.premium-shell .category-filter {
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 999px;
  color: #6c685f;
  background: transparent;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.05em;
}

body.premium-shell .filter-btn.active,
body.premium-shell .filter-btn:hover,
body.premium-shell .category-filter.active,
body.premium-shell .category-filter:hover {
  color: var(--paper);
  background: var(--ink);
}

body.premium-shell .projects-main .projects-grid,
body.premium-shell .blog-grid,
body.premium-shell .articles-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0.8rem;
}

body.premium-shell .projects-main .project-card,
body.premium-shell .blog-card,
body.premium-shell .article-card {
  grid-column: span 6;
  overflow: hidden;
  border: 0;
  border-radius: 2.2rem;
  background: #dedad0;
  box-shadow: none;
  transition: transform 800ms var(--ease-out), background 600ms var(--ease-out);
}

body.premium-shell .projects-main .project-card:nth-child(3n + 1),
body.premium-shell .blog-card.featured,
body.premium-shell .article-card.featured {
  grid-column: span 7;
}

body.premium-shell .projects-main .project-card:nth-child(3n + 2),
body.premium-shell .blog-card:nth-child(3n + 2),
body.premium-shell .article-card:nth-child(3n + 2) {
  grid-column: span 5;
}

body.premium-shell .project-card:hover,
body.premium-shell .blog-card:hover,
body.premium-shell .article-card:hover {
  transform: translateY(-0.7rem);
  background: var(--bronze-light);
}

body.premium-shell .project-image,
body.premium-shell .blog-image,
body.premium-shell .article-image {
  min-height: 22rem;
  border-radius: 0;
  background:
    radial-gradient(circle at 65% 38%, rgba(185, 140, 99, 0.62), transparent 22%),
    repeating-radial-gradient(circle at 65% 38%, transparent 0 35px, rgba(240, 238, 231, 0.12) 36px 37px),
    #151510;
  filter: saturate(0.55) contrast(1.05);
}

body.premium-shell .project-content,
body.premium-shell .blog-content,
body.premium-shell .article-content {
  padding: clamp(1.4rem, 2.5vw, 2.5rem);
  color: var(--ink);
  background: transparent;
}

body.premium-shell .project-title,
body.premium-shell .project-card h3,
body.premium-shell .blog-card h3,
body.premium-shell .article-card h3 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: pretty;
}

body.premium-shell .project-description,
body.premium-shell .project-card p,
body.premium-shell .blog-card p,
body.premium-shell .article-card p {
  color: #625f56;
}

body.premium-shell .tech-tag {
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #4e4a43;
  background: transparent;
  font-family: var(--mono);
  font-size: 0.5rem;
}

body.premium-shell .project-link,
body.premium-shell .blog-link,
body.premium-shell .read-more {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}

body.premium-shell .coming-soon-banner {
  border-radius: 0;
  color: var(--ink);
  background: var(--bronze-light);
  font-family: var(--mono);
  letter-spacing: 0.08em;
}

body.premium-shell .cta-panel,
body.premium-shell .project-cta-section,
body.premium-shell .newsletter-container {
  overflow: hidden;
  border: 0;
  border-radius: 2.5rem;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 20%, rgba(185, 140, 99, 0.35), transparent 28%),
    var(--ink-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.premium-shell .cta-panel h3,
body.premium-shell .project-cta-section h2,
body.premium-shell .newsletter h2 {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

body.premium-shell .btn {
  border-radius: 999px;
  transition: transform 500ms var(--ease-out), color 500ms var(--ease-out), background 500ms var(--ease-out);
}

body.premium-shell .btn-primary {
  color: var(--ink);
  background: var(--paper);
}

body.premium-shell .btn:hover {
  transform: translateY(-2px);
}

body.premium-shell .btn:active {
  transform: scale(0.98);
}

body.premium-shell .product-content h2,
body.premium-shell .screenshots-section h2,
body.premium-shell .pricing-section h2,
body.premium-shell .testimonials-section h2 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

body.premium-shell.product-page .back-nav {
  top: 6.8rem;
  background: transparent;
}

body.premium-shell.product-page .back-link {
  width: max-content;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper-soft);
  background: rgba(11, 11, 10, 0.72);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
}

body.premium-shell.product-page .product-meta,
body.premium-shell.product-page .product-status,
body.premium-shell.product-page .status-badge,
body.premium-shell.product-page .product-category {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--bronze-light);
  background: transparent;
  box-shadow: none;
}

body.premium-shell.product-page .product-section {
  padding-top: clamp(7rem, 11vw, 12rem);
  padding-bottom: clamp(7rem, 11vw, 12rem);
  color: var(--ink) !important;
  background: var(--paper) !important;
}

body.premium-shell.product-page .product-section::before,
body.premium-shell.product-page .product-section::after {
  content: none !important;
  background: none !important;
}

body.premium-shell.product-page .product-section .section-title,
body.premium-shell.product-page .product-section h2,
body.premium-shell.product-page .product-section h3,
body.premium-shell.product-page .feature-card h3 {
  color: var(--ink) !important;
}

body.premium-shell.product-page .product-section .section-title,
body.premium-shell.product-page .product-section h2 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

body.premium-shell.product-page .product-section .section-subtitle,
body.premium-shell.product-page .feature-card p {
  color: #625f56 !important;
}

body.premium-shell.product-page .feature-card {
  color: var(--ink);
  background: #dedad0;
}

body.premium-shell.product-page .benefit-item {
  border: 1px solid var(--line-dark);
  border-radius: 1.25rem;
  color: #4e4a43 !important;
  background: #e4e0d7 !important;
}

body.premium-shell.product-page .benefit-item span {
  color: #4e4a43 !important;
}

body.premium-shell .feature-card,
body.premium-shell .pricing-card,
body.premium-shell .screenshot-item,
body.premium-shell .testimonial-card {
  border: 0;
  border-radius: 2rem;
  color: var(--ink);
  background: #dedad0;
  box-shadow: none;
}

body.premium-shell .site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.05em;
}

body.premium-shell .site-footer a {
  color: var(--paper-soft);
}

@media (max-width: 1100px) {
  .availability { display: none; }
  .signal-readout { display: none; }
  .signal-hero::after { background: linear-gradient(90deg, rgba(11, 11, 10, 0.9), rgba(11, 11, 10, 0.15)); }
  .hero-title { font-size: clamp(4rem, 11vw, 8rem); }
  .manifesto__grid { grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 2fr); gap: clamp(2rem, 4vw, 3.5rem); }
  .manifesto-portrait { width: min(100%, 20rem); }
  .capability-accordion { min-height: 40rem; }
  .work-card--erp,
  .work-card--mobile { grid-column: span 7; }
  .work-card--analytics,
  .work-card--billing { grid-column: span 5; }
}

@media (max-width: 768px) {
  :root { --content: calc(100vw - 2rem); }

  .cursor { display: none; }

  .premium-nav {
    grid-template-columns: 1fr auto;
    width: calc(100vw - 1.25rem);
  }

  .premium-nav__name,
  .premium-nav__end .round-link { display: none; }

  .menu-button {
    position: relative;
    display: block;
  }

  .premium-nav__links {
    position: fixed;
    inset: -0.85rem -0.65rem auto;
    z-index: -1;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    padding: 8rem 2rem 3rem;
    border-radius: 2rem;
    background: rgba(11, 11, 10, 0.96);
    backdrop-filter: blur(22px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1.5rem);
    transition: opacity 600ms var(--ease-out), transform 700ms var(--ease-out);
  }

  .premium-nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .premium-nav__links a {
    font-size: clamp(2.8rem, 13vw, 5rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.06em;
  }

  .signal-hero {
    align-items: end;
    padding: 8.5rem 0 2rem;
  }

  .signal-companion__hud { display: none; }

  .signal-hero::after {
    background: linear-gradient(0deg, rgba(11, 11, 10, 0.97) 17%, rgba(11, 11, 10, 0.48) 62%, rgba(11, 11, 10, 0.2));
  }

  .signal-hero__rail { display: none; }

  .hero-status {
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 2.5rem;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(3.9rem, 19vw, 7.4rem);
    line-height: 0.79;
  }

  .hero-title__line--second {
    margin-left: 0;
    gap: 0.55rem;
  }

  .hero-title__line--second em { font-size: 0.87em; }
  .inline-portrait { width: 4rem; height: 2.35rem; }

  .hero-bottom {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .hero-actions { justify-content: flex-start; }

  .action-link {
    width: 100%;
    justify-content: space-between;
  }

  .chapter {
    width: 100%;
    padding: 8rem 1rem 9rem;
  }

  .manifesto__grid,
  .capabilities__head,
  .work__head,
  .journal__head,
  .experience {
    grid-template-columns: 1fr;
  }

  .manifesto__aside p { max-width: 38ch; }
  .manifesto-portrait { width: min(100%, 25rem); margin: 3.25rem auto 0; }
  .kinetic-copy { grid-column: 1; margin-top: 4rem; font-size: clamp(2.8rem, 12vw, 5rem); }
  .manifesto__signature { grid-column: 1; }

  .capabilities,
  .work,
  .journal { padding-left: 1rem; padding-right: 1rem; }

  .capabilities__head h2,
  .work__head h2,
  .experience__intro h2,
  .journal__head h2 { font-size: clamp(3.8rem, 18vw, 7rem); }

  .capability-accordion {
    min-height: 0;
    display: grid;
    gap: 0.45rem;
    overflow: visible;
    padding: 0.45rem;
    border-radius: 2rem;
  }

  .capability-panel,
  .capability-panel.is-active,
  .capability-panel:hover,
  .capability-panel:focus-visible {
    min-height: 31rem;
    padding: 1.2rem;
    border-right: 0;
    border-radius: 1.65rem;
    transform: none;
  }

  .capability-panel__content { width: 100%; opacity: 1; transform: none; }

  .work-grid { grid-template-columns: 1fr; }
  .work-card,
  .work-card--erp,
  .work-card--analytics,
  .work-card--billing,
  .work-card--mobile,
  .work-card--system {
    grid-column: 1;
    min-height: 33rem;
    border-radius: 1.8rem;
  }

  .art-system { grid-template-columns: repeat(2, 1fr); padding: 18% 10%; }
  .art-system span { min-height: 6rem; }

  .experience { gap: 5rem; }
  .experience__intro { position: static; }
  .experience__list article { grid-template-columns: 1fr; padding: 2.5rem 0; }
  .experience__list article > span { grid-column: 1; }

  .journal__head { align-items: start; }
  .journal__grid { grid-template-columns: 1fr; }
  .journal-card { min-height: 26rem; }

  .contact { min-height: 90dvh; padding-left: 1rem; padding-right: 1rem; }
  .contact h2 { font-size: clamp(4.4rem, 20vw, 8rem); }
  .contact__orb { width: 88vw; }
  .contact__email { max-width: 100%; }
  .contact__email span { max-width: 68vw; overflow: hidden; text-overflow: ellipsis; }
  .contact__foot { grid-template-columns: 1fr; justify-items: center; gap: 0.6rem; }
  .contact__foot > div { justify-self: center; }

  .premium-footer { flex-direction: column; align-items: center; text-align: center; }

  body.premium-shell .site-header {
    left: 0.625rem;
    right: 0.625rem;
    width: auto;
  }

  body.premium-shell .site-header .container { padding-inline: 0.55rem; }
  body.premium-shell .header-cta .btn-primary { display: none; }
  body.premium-shell .main-nav { background: rgba(11, 11, 10, 0.98); }

  body.premium-shell .projects-hero,
  body.premium-shell .blog-hero,
  body.premium-shell .product-hero {
    min-height: 70dvh;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body.premium-shell .projects-hero h1,
  body.premium-shell .blog-hero h1,
  body.premium-shell .product-hero h1,
  body.premium-shell .product-title {
    font-size: clamp(3.8rem, 18vw, 7rem);
  }

  body.premium-shell .project-filters,
  body.premium-shell .blog-filter .filter-container {
    justify-content: flex-start;
    overflow-x: auto;
    border-radius: 1.2rem;
  }

  body.premium-shell .projects-main .projects-grid,
  body.premium-shell .blog-grid,
  body.premium-shell .articles-grid {
    grid-template-columns: 1fr;
  }

  body.premium-shell .projects-main .project-card,
  body.premium-shell .projects-main .project-card:nth-child(n),
  body.premium-shell .blog-card,
  body.premium-shell .blog-card:nth-child(n),
  body.premium-shell .article-card,
  body.premium-shell .article-card:nth-child(n) {
    grid-column: 1;
    border-radius: 1.6rem;
  }
}

@media (hover: none) {
  .cursor { display: none; }
}

@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;
  }
  .intro-loader { display: none; }
  .signal-companion { display: none; }
  .kinetic-copy .word { opacity: 1; }
}
