@font-face {
  font-family: "Unbounded";
  src: url("fonts/unbounded-cyrillic-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("fonts/unbounded-cyrillic-800-normal.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

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

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

:root {
  --ink: #11110f;
  --paper: #f1eee7;
  --signal: #ff5c1a;
  --graphite: #262521;
  --muted: #a6a198;
  --pad: clamp(1.25rem, 3.2vw, 3.75rem);
  --line: rgba(241, 238, 231, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("noise.svg");
}

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

a {
  color: inherit;
}

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

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  min-height: 44px;
  font-family: "Unbounded", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 0.7rem;
  height: 0.7rem;
  background: var(--signal);
  transform: rotate(45deg);
}

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

.site-header nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a:not(.nav-cta) {
  position: relative;
}

.site-header nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transition: background-color 200ms ease, color 200ms ease;
}

.nav-cta:hover {
  color: var(--paper);
  background: var(--signal);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 84px;
  background:
    linear-gradient(90deg, transparent calc(25% - 1px), rgba(241, 238, 231, 0.07) 25%, transparent calc(25% + 1px)),
    linear-gradient(90deg, transparent calc(75% - 1px), rgba(241, 238, 231, 0.07) 75%, transparent calc(75% + 1px)),
    var(--ink);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  min-height: calc(100svh - 154px);
  padding: clamp(2rem, 5vw, 4.5rem) var(--pad) 3rem;
}

.hero-kicker,
.eyebrow {
  font-family: "Unbounded", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-kicker {
  grid-column: 1 / 5;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  align-self: start;
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 92, 26, 0.5);
  animation: pulse 2s infinite;
}

.hero h1 {
  z-index: 2;
  grid-column: 1 / 10;
  grid-row: 2;
  align-self: center;
  margin: 1rem 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(3.25rem, 7.65vw, 8.4rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.91;
  text-transform: uppercase;
}

.hero h1 em,
.contact h2 em {
  color: var(--signal);
  font-style: normal;
}

.hero-portrait {
  position: absolute;
  z-index: 1;
  top: clamp(6rem, 13vh, 9rem);
  right: var(--pad);
  bottom: 1.5rem;
  width: min(35vw, 520px);
  overflow: hidden;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 35%, transparent 85%, rgba(17, 17, 15, 0.25));
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.portrait-index {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  font-family: "Unbounded", sans-serif;
  font-size: 0.65rem;
}

.hero-intro {
  z-index: 3;
  grid-column: 8 / 11;
  grid-row: 3;
  align-self: end;
  padding: 1.4rem;
  color: var(--ink);
  background: var(--paper);
}

.hero-intro p {
  margin: 0 0 1.5rem;
  font-weight: 600;
  line-height: 1.45;
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding-top: 0.8rem;
  border-top: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-side {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  margin: 0;
  color: var(--muted);
  font-family: "Unbounded", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.ticker {
  height: 70px;
  overflow: hidden;
  color: var(--ink);
  background: var(--signal);
  border-block: 1px solid var(--ink);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.ticker-set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.7rem;
  padding-right: 1.7rem;
}

.ticker span {
  font-family: "Unbounded", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticker i {
  font-family: "Unbounded", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
}

.section-pad {
  padding: clamp(5rem, 10vw, 10rem) var(--pad);
}

.numbers,
.approach {
  color: var(--ink);
  background:
    linear-gradient(rgba(17, 17, 15, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 4rem 4rem;
}

.section-head {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.eyebrow {
  margin: 0;
  color: var(--signal);
}

.section-head h2,
.industry-title h2,
.contact h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.3rem, 5.2vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-head > p:last-child {
  margin: 0;
  max-width: 25rem;
  font-size: 1rem;
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.stat {
  display: grid;
  grid-template-columns: minmax(9rem, auto) 1fr;
  gap: 2rem;
  min-height: 240px;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.stat-number {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.stat div {
  align-self: end;
}

.stat h3,
.stat p {
  margin: 0;
}

.stat h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.stat p {
  margin-top: 0.3rem;
  color: #69665f;
  font-size: 0.8rem;
}

.stat-accent {
  color: var(--paper);
  background: var(--signal);
}

.stat-accent p {
  color: var(--paper);
}

.cases {
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 92, 26, 0.13), transparent 24rem),
    var(--ink);
}

.section-head-light {
  border-color: var(--line);
}

.case-list {
  border-top: 1px solid var(--line);
}

.case {
  position: relative;
  display: grid;
  grid-template-columns: 0.6fr 2.1fr 4fr 1.2fr;
  gap: 2rem;
  align-items: center;
  min-height: 190px;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 250ms ease;
}

.case::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--pad) * -1);
  z-index: 0;
  background: var(--signal);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 280ms cubic-bezier(0.25, 1, 0.5, 1);
}

.case:hover::before,
.case:focus-within::before {
  transform: scaleY(1);
}

.case > * {
  position: relative;
  z-index: 1;
}

.case-no,
.case-title p,
.case dt,
.case-result span {
  color: var(--muted);
  font-family: "Unbounded", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.case:hover .case-no,
.case:hover .case-title p,
.case:hover dt,
.case:hover .case-result span {
  color: var(--ink);
}

.case-title p,
.case-title h3 {
  margin: 0;
}

.case-title h3 {
  margin-top: 0.5rem;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: -0.04em;
}

.case dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0;
}

.case dl div {
  min-width: 0;
}

.case dt,
.case dd {
  margin: 0;
}

.case dd {
  margin-top: 0.25rem;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.case-result {
  text-align: right;
}

.case-result span,
.case-result strong {
  display: block;
}

.case-result strong {
  margin-top: 0.15rem;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.8rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.industries {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 8vw, 8rem);
  color: var(--ink);
  background: var(--signal);
}

.industry-title {
  position: sticky;
  top: 3rem;
  align-self: start;
}

.industry-title .eyebrow {
  margin-bottom: 2rem;
  color: var(--ink);
}

.industry-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.industry-list li {
  position: relative;
  padding: 1.55rem 1rem 1.55rem 4.5rem;
  border-bottom: 1px solid var(--ink);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1rem, 2.25vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.industry-list li span {
  position: absolute;
  left: 0.5rem;
  top: 1.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.process-step {
  min-height: 390px;
  padding: 1.5rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.process-step > span {
  display: block;
  margin-bottom: 8rem;
  color: var(--signal);
  font-family: "Unbounded", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 1.25rem;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
}

.extras {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  color: var(--paper);
  background: var(--graphite);
}

.extras p {
  margin: 0;
  color: var(--muted);
  font-family: "Unbounded", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.extras div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.extras span {
  padding: 0.55rem 0.85rem;
  border: 1px solid #4f4d47;
  font-size: 0.82rem;
  font-weight: 600;
}

.contact {
  padding: clamp(5rem, 10vw, 10rem) var(--pad) 2rem;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(241, 238, 231, 0.08) 50%, transparent 50.1%),
    var(--ink);
}

.contact {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
}

.contact .eyebrow {
  margin-bottom: 2rem;
}

.contact h2 {
  font-size: clamp(3rem, 7vw, 7.5rem);
}

.contact-actions {
  align-self: end;
  border-top: 1px solid var(--line);
}

.contact-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 220ms ease, color 220ms ease;
}

.contact-actions a:hover {
  padding-inline: 1rem;
  color: var(--signal);
}

.contact-actions span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-actions b {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
}

.contact-actions .contact-primary {
  min-height: 120px;
  padding-inline: 1.5rem;
  color: var(--ink);
  background: var(--signal);
}

.contact-actions .contact-primary span {
  color: var(--ink);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
}

.contact-actions .contact-primary b {
  font-size: 2rem;
}

.contact-actions .contact-primary:hover {
  padding-inline: 2.5rem;
  color: var(--ink);
}

footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  margin-top: clamp(5rem, 10vw, 10rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

footer a {
  display: flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(255, 92, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 92, 26, 0); }
}

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

@media (max-width: 980px) {
  .hero h1 {
    grid-column: 1 / 11;
    font-size: clamp(3.6rem, 9.5vw, 6.4rem);
  }

  .hero-portrait {
    width: 42vw;
  }

  .hero-intro {
    grid-column: 7 / 11;
  }

  .section-head {
    grid-template-columns: 1fr 3fr;
  }

  .section-head > p:last-child {
    grid-column: 2;
  }

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

  .case {
    grid-template-columns: 0.4fr 1.7fr 3.3fr 1fr;
    gap: 1rem;
  }

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

  .process-step {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 70px;
  }

  .site-header nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid {
    display: block;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-kicker {
    margin-bottom: 2.5rem;
  }

  .hero h1 {
    position: relative;
    z-index: 2;
    margin: 0 0 -1.1rem;
    font-size: clamp(3.1rem, 14.8vw, 5.2rem);
  }

  .hero-portrait {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: calc(100% + var(--pad));
    height: 58vh;
    min-height: 430px;
    margin-left: calc(var(--pad) * -1);
  }

  .hero-portrait::after {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 20%, transparent 85%, rgba(17, 17, 15, 0.3));
  }

  .hero-intro {
    position: relative;
    z-index: 3;
    width: calc(100% - 1.5rem);
    margin: -3.5rem 0 0 auto;
  }

  .hero-side {
    display: none;
  }

  .ticker {
    height: 58px;
  }

  .ticker span {
    font-size: 0.85rem;
  }

  .section-head {
    display: block;
  }

  .section-head .eyebrow {
    margin-bottom: 1.5rem;
  }

  .section-head > p:last-child {
    margin-top: 2rem;
  }

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

  .stat {
    min-height: 220px;
  }

  .case {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.5rem 1rem;
    padding: 2rem 0;
  }

  .case-title,
  .case dl,
  .case-result {
    grid-column: 2;
  }

  .case-no {
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .case dl {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .case dd {
    font-size: 0.9rem;
  }

  .case-result {
    margin-top: 1.4rem;
    text-align: left;
  }

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

  .industry-title {
    position: static;
  }

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

  .process-step {
    min-height: 280px;
  }

  .process-step > span {
    margin-bottom: 5rem;
  }

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

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

  .contact-actions {
    margin-top: 2rem;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 0.68rem;
  }

  .nav-cta {
    padding: 0.55rem 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13.1vw, 3.7rem);
  }

  .hero-portrait {
    min-height: 390px;
  }

  .stat {
    min-height: 190px;
  }

  .stat-number {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .case dl {
    grid-template-columns: 1fr 1fr;
  }

  .case dl div:last-child {
    grid-column: 1 / -1;
  }

  .industry-list li {
    padding-left: 3.5rem;
    font-size: 0.93rem;
  }

  .contact-actions a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .contact-actions .contact-primary {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 360px) {
  :root {
    --pad: 1rem;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.62rem;
  }

  .brand-mark {
    width: 0.6rem;
    height: 0.6rem;
  }

  .nav-cta {
    padding-inline: 0.65rem;
    font-size: 0.68rem;
  }

  .hero-grid {
    padding-top: 1.5rem;
  }

  .hero-kicker {
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.58rem;
  }

  .hero h1 {
    font-size: 12.65vw;
    letter-spacing: -0.07em;
  }

  .hero-portrait {
    min-height: 360px;
  }

  .hero-intro {
    width: calc(100% - 1rem);
    padding: 1.15rem;
  }

  .section-head h2,
  .industry-title h2 {
    font-size: 1.85rem;
  }

  .contact h2 {
    font-size: 2.4rem;
  }

  .stat {
    min-height: 175px;
    gap: 1.25rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .case {
    grid-template-columns: 1.9rem minmax(0, 1fr);
    gap: 0.5rem 0.75rem;
  }

  .case dl {
    gap: 0.6rem;
  }

  .case dd {
    font-size: 0.82rem;
  }

  .industry-list li {
    padding-left: 3rem;
    padding-right: 0.35rem;
    font-size: 0.84rem;
  }

  .extras {
    padding: 1.25rem;
  }

  .extras span {
    max-width: 100%;
    font-size: 0.76rem;
  }

  .contact {
    gap: 2.5rem;
  }

  .contact-actions .contact-primary {
    gap: 0.65rem;
    padding-inline: 1rem;
  }

  .contact-actions .contact-primary span {
    font-size: 0.78rem;
  }
}

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

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

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