:root {
  --ink: #07090c;
  --ink-soft: #0d1117;
  --ink-raised: #131923;
  --paper: #f5f1e6;
  --paper-soft: #c7ced8;
  --muted: #8e98a7;
  --yellow: #ffcb04;
  --yellow-soft: #ffe471;
  --line: rgba(199, 206, 216, 0.16);
  --line-dark: rgba(7, 9, 12, 0.18);
  --container: 1240px;
  --section-space: clamp(5.75rem, 9vw, 9.5rem);
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-weight: 780;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

p:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

.container {
  width: min(var(--container), calc(100% - 3rem));
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.reading-progress {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 203, 4, 0.6);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 12, 0.76);
  backdrop-filter: blur(20px);
  transition: border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 9, 12, 0.94);
}

.nav-shell {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: stretch;
  flex-direction: column;
  color: var(--paper);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
  text-decoration: none;
}

.brand-top {
  display: flex;
  align-items: baseline;
}

.brand-top > span {
  margin-left: 0.08em;
  color: var(--yellow);
}

.brand-eu {
  align-self: flex-end;
  margin-top: 0.08em;
  color: var(--yellow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.6vw, 1.6rem);
}

.site-nav > a {
  position: relative;
  color: var(--paper-soft);
  font-size: 0.88rem;
  font-weight: 680;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.is-active {
  color: var(--paper);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .language-link {
  color: var(--yellow);
}

.site-nav .nav-cta {
  padding: 0.72rem 1rem;
  border: 1px solid var(--yellow);
  color: var(--paper);
  transition: background 180ms ease, color 180ms ease;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--yellow);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
}

.nav-toggle > span:not(.visually-hidden) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--yellow);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 5rem) 0 6rem;
  background:
    radial-gradient(circle at 77% 38%, rgba(255, 203, 4, 0.12), transparent 26rem),
    radial-gradient(circle at 18% 4%, rgba(57, 74, 98, 0.24), transparent 28rem),
    linear-gradient(155deg, #06080b 0%, #0b1017 58%, #07090c 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 203, 4, 0.5), transparent);
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.27;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.identity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.9rem;
  margin-bottom: 1.6rem;
  color: var(--paper-soft);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.identity span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--yellow);
}

.identity span::before {
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 1.7rem;
  font-size: clamp(3.6rem, 7.3vw, 7.3rem);
  line-height: 0.87;
}

.hero h1 em {
  position: relative;
  color: var(--yellow);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: 0.1em;
  left: 0.06em;
  height: 0.045em;
  background: var(--yellow);
  content: "";
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 62ch;
  margin-bottom: 1.8rem;
  color: var(--paper);
  font-size: clamp(1.15rem, 1.8vw, 1.43rem);
  line-height: 1.5;
}

.hero-detail {
  max-width: 68ch;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 203, 4, 0.48);
  color: var(--paper-soft);
  font-size: 0.95rem;
}

.hero-detail p {
  margin-bottom: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--yellow-soft);
  color: var(--ink);
}

.cta-note {
  color: var(--muted);
  font-size: 0.87rem;
}

.portrait-panel {
  position: relative;
  justify-self: end;
  width: min(100%, 390px);
  padding: 1rem;
  border: 1px solid rgba(255, 203, 4, 0.38);
  background: rgba(7, 9, 12, 0.62);
  box-shadow: 1.5rem 1.5rem 0 rgba(255, 203, 4, 0.08);
}

.portrait-panel::before,
.portrait-panel::after {
  position: absolute;
  z-index: 2;
  width: 3.8rem;
  height: 3.8rem;
  border-color: var(--yellow);
  content: "";
  pointer-events: none;
}

.portrait-panel::before {
  top: -0.55rem;
  left: -0.55rem;
  border-top: 2px solid;
  border-left: 2px solid;
}

.portrait-panel::after {
  right: -0.55rem;
  bottom: -0.55rem;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.portrait-frame {
  overflow: hidden;
  background: #050505;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.82) contrast(1.04);
}

.portrait-orbit {
  position: absolute;
  z-index: 3;
  top: 1.75rem;
  right: -2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.portrait-orbit span {
  padding: 0.34rem 0.58rem;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-caption {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0.35rem 0.25rem;
}

.portrait-caption span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-caption strong {
  max-width: 12ch;
  text-align: right;
  font-size: 1rem;
  line-height: 1.2;
}

.floating-next {
  position: fixed;
  z-index: 90;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.9rem 0.72rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 9, 12, 0.88);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.24);
  color: var(--paper-soft);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.floating-next i {
  color: var(--yellow);
  font-size: 1.25rem;
}

.floating-next:hover,
.floating-next:focus-visible {
  border-color: rgba(255, 203, 4, 0.65);
  color: var(--paper);
  transform: translateY(-2px);
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-editorial,
.section-cases,
.section-projects,
.section-continuity {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.26fr) minmax(0, 0.74fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.55rem;
  color: #596271;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-index::after {
  width: min(6vw, 4rem);
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.55;
}

.section-index span {
  color: inherit;
}

.section-dark .section-index,
.section-heading-light .section-index {
  color: var(--yellow);
}

.section-heading h2,
.contact-copy h2 {
  max-width: 18ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.65rem, 5.5vw, 5.7rem);
  line-height: 0.94;
}

.section-heading blockquote,
.contact-copy blockquote {
  max-width: 44ch;
  margin-bottom: 1.6rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--yellow);
  color: #343b46;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 650;
  line-height: 1.5;
}

.section-dark .section-heading blockquote,
.section-heading-light blockquote {
  color: var(--paper-soft);
}

.section-heading > div > p {
  max-width: 68ch;
  color: #505966;
}

.section-dark .section-heading > div > p,
.section-heading-light > div > p {
  color: var(--paper-soft);
}

.editorial-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.editorial-block {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(7, 9, 12, 0.2);
  background: rgba(255, 255, 255, 0.44);
}

.editorial-block-offset {
  margin-top: 5.5rem;
}

.block-number {
  position: absolute;
  top: -1.5rem;
  right: 1.5rem;
  color: rgba(7, 9, 12, 0.08);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.editorial-block h3 {
  position: relative;
  max-width: 15ch;
  margin-bottom: 1.8rem;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.editorial-block p {
  position: relative;
  color: #424a55;
}

.double-quote {
  display: grid;
  gap: 0.5rem;
}

.double-quote p {
  margin: 0;
  color: var(--paper-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.double-quote p:first-child {
  color: var(--paper);
  font-weight: 760;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reason-card {
  position: relative;
  min-height: 100%;
  padding: clamp(2rem, 4vw, 3.6rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  transition: background 220ms ease, transform 220ms ease;
}

.reason-card:hover {
  z-index: 1;
  background: rgba(255, 203, 4, 0.055);
}

.reason-number {
  display: inline-block;
  margin-bottom: 2.6rem;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.reason-card h3 {
  max-width: 21ch;
  margin-bottom: 1.4rem;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.06;
}

.reason-card p {
  color: var(--paper-soft);
}

.reason-card-wide {
  grid-column: 1 / -1;
  /*
  display: grid;
  grid-template-columns: 0.12fr 0.88fr;
  gap: 0 2rem;*/
}

.reason-card-wide h3 {
  grid-column: 2;
}

.reason-card-wide > div {
  grid-column: 2;
  columns: 2;
  column-gap: 3rem;
}

.case-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.case-study {
  display: grid;
  grid-template-columns: minmax(100px, 0.18fr) minmax(0, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--line-dark);
}

.case-marker {
  display: flex;
  flex-direction: column;
  color: #6b7480;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-marker strong {
  color: var(--yellow);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.case-content {
  max-width: 780px;
}

.case-content h3 {
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 3.8vw, 3.7rem);
  line-height: 1.03;
}

.case-content p {
  color: #434b55;
  font-size: 1.03rem;
}

.case-content .case-opening {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
}

.section-diagnostic {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 203, 4, 0.12), transparent 26rem),
    #0d1219;
}

.section-diagnostic::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 0.7px, transparent 0.7px);
  background-size: 14px 14px;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}

.section-heading-light {
  position: relative;
}

.process-panel,
.outcome-panel {
  position: relative;
}

.process-panel > h3,
.outcome-panel h3 {
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 340px;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  display: block;
  margin-bottom: 5.5rem;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.process-list h4 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.process-list p {
  color: var(--paper-soft);
  font-size: 0.92rem;
  line-height: 1.58;
}

.outcome-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 7vw, 7rem);
  margin-top: 5rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--yellow);
  color: var(--ink);
}

.mini-label {
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 1.3rem 1fr;
  gap: 0.65rem;
}

.check-list li::before {
  content: "↳";
  font-weight: 900;
}

.outcome-final {
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  font-weight: 800;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.7rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  transition: background 220ms ease;
}
.project-card p strong {
	background: #ffcb04;
	display: inline-block;
	padding: 0 .5em 1px;
}
.project-card:hover {
  background: rgba(255, 255, 255, 0.55);
}
.project-grid > .project-card.fullwidth {
  grid-column: 1 / -1;
  width: 100%;
  justify-self: center;
}
.project-grid > .project-card.fullwidth h3 {
  width: 89%;
}


.project-type {
  order: -1;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 2.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 3px solid var(--yellow);
  color: #596271;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 20ch;
  margin-bottom: 1.4rem;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1.05;
}

.project-card p {
  color: #47505b;
}

.project-card strong {
  color: var(--ink);
}

.technology-note {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 7rem);
  margin-top: 5rem;
  padding: clamp(2.2rem, 5vw, 4.5rem);
  background: var(--ink);
  color: var(--paper);
}

.technology-note h3 {
  max-width: 13ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.technology-note blockquote {
  color: var(--yellow);
  font-size: 1.12rem;
  font-weight: 700;
}

.technology-note > div:last-child {
  padding-top: 1.75rem;
  color: var(--paper-soft);
}

.section-continuity {
  background:
    linear-gradient(135deg, transparent 72%, rgba(255, 203, 4, 0.1)),
    var(--paper);
}

.continuity-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 1px;
  background: var(--line-dark);
}

.continuity-block {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--ink-soft);
  color: var(--paper);
}

.continuity-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 3.5rem;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.25rem;
}

.continuity-block h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.03;
}

.continuity-block p {
  color: var(--paper-soft);
}

.continuity-final {
  margin-top: 2rem;
  padding: 1.3rem;
  border-left: 3px solid var(--yellow);
  background: rgba(255, 203, 4, 0.08);
  color: var(--paper) !important;
  font-weight: 780;
}

.section-contact {
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
}

.section-contact::before {
  position: absolute;
  top: -12rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(7, 9, 12, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(7, 9, 12, 0.035), 0 0 0 8rem rgba(7, 9, 12, 0.025);
  content: "";
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.section-index-dark {
  color: var(--ink);
}

.contact-copy h2 {
  max-width: 12ch;
}

.contact-copy blockquote {
  border-left-color: var(--ink);
  color: var(--ink);
}

.contact-copy > p:not(.section-index):not(.contact-last) {
  max-width: 68ch;
}

.contact-last {
  margin-top: 1.6rem;
  font-weight: 850;
}

.contact-actions {
  border-top: 1px solid rgba(7, 9, 12, 0.24);
}

.contact-actions-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1.35rem 0.25rem 0.3rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 850;
  line-height: 1;
}

.contact-method-note {
  margin: 0;
  padding: 0.15rem 0.25rem 1.25rem;
  border-bottom: 1px solid rgba(7, 9, 12, 0.24);
  color: rgba(7, 9, 12, 0.66);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-actions a {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0.25rem;
  border-bottom: 1px solid rgba(7, 9, 12, 0.24);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: padding 180ms ease, background 180ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  background: rgba(7, 9, 12, 0.07);
}

.contact-actions a > i:first-child {
  font-size: 1.3rem;
}

.contact-actions span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.contact-actions small {
  margin-bottom: 0.2rem;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  padding: 3rem 0 2rem;
  background: #050608;
  color: var(--paper-soft);
}

.footer-main,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-main {
  padding-bottom: 2.5rem;
}

.footer-logo-link {
  display: inline-flex;
  flex: 0 0 auto;
}

.footer-logo {
  display: block;
  width: clamp(210px, 24vw, 300px);
  height: auto;
}

.footer-main p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-main > a:last-child {
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-legal {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1rem;
}

.footer-legal strong {
  color: var(--yellow);
}

.post-credit {
  position: relative;
  padding: 2.75rem 0;
  border-top: 1px solid rgba(255, 203, 4, 0.16);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 203, 4, 0.08), transparent 18rem),
    #030405;
  color: var(--paper-soft);
}

.post-credit-label {
  margin-bottom: 0.7rem;
  color: var(--yellow);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.post-credit h2 {
  max-width: none;
  margin-bottom: 1.4rem;
  color: var(--paper);
  font-size: 1.057rem;
  line-height: 1.25;
}

.post-credit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  font-size: 0.69rem;
  line-height: 1.5;
}

.post-credit-grid p {
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.post-credit-grid strong,
.post-credit-grid span {
  color: var(--paper);
}

.post-credit-grid strong {
  color: var(--yellow);
}

.site-version {
  padding: 0.85rem 0 1.25rem;
  border-top: 1px solid rgba(255, 203, 4, 0.1);
  background: #030405;
  color: var(--muted);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-align: right;
}

.site-version strong {
  color: var(--yellow);
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1100px) {
  .site-nav {
    gap: 0.8rem;
  }

  .site-nav > a {
    font-size: 0.8rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.6fr);
    gap: 3rem;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(var(--container), calc(100% - 2rem));
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 9, 12, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .no-js .nav-toggle {
    display: none;
  }

  .no-js .site-nav {
    position: static;
    display: flex;
    width: 100%;
    padding: 0.75rem 0 1rem;
  }

  .site-nav > a {
    padding: 0.9rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 4rem);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .portrait-panel {
    justify-self: start;
    width: min(70%, 420px);
    margin-left: auto;
  }

  .floating-next {
    right: 1rem;
    bottom: 1rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .section-index {
    margin: 0;
  }

  .reason-card-wide {
    grid-template-columns: 0.1fr 0.9fr;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome-panel,
  .technology-note,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .continuity-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-bottom: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(1rem, 14vw, 2.6rem);
  }

  .identity {
    align-items: flex-start;
    flex-direction: column;
  }

  .portrait-panel {
    width: calc(100% - 1.5rem);
    margin: 1rem 0 0;
  }

  .portrait-orbit {
    right: -1rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .editorial-pair,
  .reason-grid,
  .project-grid,
  .post-credit-grid {
    grid-template-columns: 1fr;
  }

  .editorial-block-offset {
    margin-top: 0;
  }

  .reason-card-wide {
    display: block;
    grid-column: auto;
  }

  .reason-card-wide h3,
  .reason-card-wide > div {
    grid-column: auto;
  }

  .reason-card-wide > div {
    columns: auto;
  }

  .case-study {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .case-marker {
    flex-direction: row;
    align-items: baseline;
    gap: 0.8rem;
  }

  .case-marker strong {
    font-size: 3.5rem;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    display: grid;
    min-height: 0;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }

  .process-list li > span {
    margin: 0;
  }

  .outcome-panel,
  .technology-note,
  .continuity-block {
    padding: 1.75rem;
  }

  .contact-actions a {
    grid-template-columns: 1.8rem 1fr auto;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

#implication {
	background: #fff;
}

.apps-banner {
	font-family: "Cascadia Code", "Cascadia Mono", Consolas, "Courier New", monospace;
	display: block;
	padding: 17px 10px 16px;
	background: #262626;
	color: #ccc;
	text-decoration: none;
	border: 1px solid #111;
	transition: background .15s ease, color .15s ease;
	margin: 98px 0 0;
	text-align: right;
}
.apps-banner em {
	position: relative;
	color: #fff;
	font-style: normal;
}
.apps-banner em::after {
	position: absolute;
	right: 0;
	bottom: 0.1em;
	left: 0.06em;
	height: 0.045em;
	background: var(--yellow);
	content: "";
	transform: rotate(-1deg);
}
.apps-banner-text {
	font-size: clamp(14px, 2vw, 22px);
	line-height: 1.15;
	letter-spacing: -0.074em;
}
.apps-banner-text strong {
	color: #fff;
    font-weight: 700;
}
.apps-banner-arrow {
	color: var(--yellow);
	font-size: 46px;
	line-height: 0em;
	transition: transform .15s ease;
	top: 5px;
	position: relative;
}
.apps-banner:hover {
    background: #fff;
    color: #444;
}
.apps-banner:hover strong,
.apps-banner:hover em {
    color: #000;
}
.apps-banner:hover .apps-banner-arrow {
    transform: translateX(6px);
}
@media (max-width: 600px) {
    .apps-banner {
        padding: 14px 10px 13px;
    }
    .apps-banner-text {
        font-size: 14px;
    }
    .apps-banner-arrow {
        font-size: 28px;
		top: 0;
    }
}
