:root {
  --ink: #0c0f11;
  --ink-2: #14181b;
  --ink-3: #20262a;
  --paper: #f2f0e9;
  --paper-2: #e8e5dc;
  --white: #ffffff;
  --muted: #687078;
  --line: rgba(12, 15, 17, 0.16);
  --line-light: rgba(255, 255, 255, 0.15);
  --gold: #c1a253;
  --gold-dark: #9b7b30;
  --green: #1da851;
  --wrap: min(1240px, calc(100% - 48px));
  --header-height: 82px;
  --shadow: 0 28px 80px rgba(8, 10, 12, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
strong,
b {
  text-wrap: balance;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 15, 17, 0.74);
  backdrop-filter: blur(18px);
  transition: height 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(12, 15, 17, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  width: min(1380px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 48px;
  gap: 12px;
}

.brand img {
  width: 30px;
  height: 39px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.18em;
}

.brand small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(193, 162, 83, 0.56);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: calc(var(--header-height) + 88px) 0 94px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 34%, rgba(193, 162, 83, 0.12), transparent 26%),
    linear-gradient(135deg, #0a0d0f 0%, #111518 58%, #080a0c 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.26));
  content: "";
}

.hero-grid,
.opportunities-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.23) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.23) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent 84%);
}

.hero-grid::after {
  position: absolute;
  top: 0;
  left: calc((100% - min(1240px, calc(100% - 48px))) / 2 - 1px);
  width: 1px;
  height: 100%;
  background: rgba(193, 162, 83, 0.55);
  content: "";
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 13%;
  right: 2%;
  width: 48vw;
  aspect-ratio: 1;
}

.hero-orbit-two {
  top: 30%;
  right: 17%;
  width: 24vw;
  aspect-ratio: 1;
  border-color: rgba(193, 162, 83, 0.18);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: clamp(58px, 7vw, 112px);
}

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  margin-right: 13px;
  background: currentColor;
  content: "";
}

.eyebrow.dark {
  color: var(--gold-dark);
}

.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(54px, 6.6vw, 98px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.89;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.54);
}

.hero h1 span:nth-child(3) {
  color: var(--gold);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.hero-actions,
.contact-actions,
.funnel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.button:disabled {
  opacity: 0.44;
  cursor: not-allowed;
  transform: none;
}

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

.button-gold:hover,
.button-gold:focus-visible {
  background: #d0b36a;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: transparent;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button-outline-dark {
  border-color: rgba(12, 15, 17, 0.3);
  color: var(--ink);
  background: transparent;
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  border-color: var(--ink);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ink-3);
}

.hero-principles {
  display: flex;
  flex-wrap: wrap;
  margin-top: 56px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-principles span {
  display: inline-flex;
  align-items: center;
}

.hero-principles span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin: 0 16px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.hero-identity {
  position: relative;
  justify-self: end;
  width: min(100%, 440px);
  padding: 48px 42px 32px;
  background: linear-gradient(145deg, #f4f1e8 0%, #d9d6cf 100%);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.34);
}

.hero-identity::before,
.hero-identity::after {
  position: absolute;
  content: "";
}

.hero-identity::before {
  inset: 12px;
  border: 1px solid rgba(12, 15, 17, 0.13);
}

.hero-identity::after {
  top: -18px;
  right: -18px;
  width: 88px;
  height: 88px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.identity-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(12, 15, 17, 0.15);
}

.identity-note span {
  max-width: 150px;
  color: #65696c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.identity-note strong {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0.12em;
}

.hero-scroll {
  position: absolute;
  right: max(24px, calc((100% - min(1240px, calc(100% - 48px))) / 2));
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll span {
  color: var(--gold);
}

.hero-scroll b {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
}

.section {
  padding: clamp(92px, 10vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 56px;
}

.section-heading h2,
.realization h2,
.sourcing h2,
.about h2 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading.light h2,
.section-heading.light > p {
  color: var(--white);
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.58);
}

.collaboration {
  position: relative;
  background: var(--paper);
}

.collaboration::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18%;
  height: 1px;
  background: var(--gold);
  content: "";
}

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

.collaboration-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 280ms ease, background 280ms ease, transform 280ms var(--ease);
}

.collaboration-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}

.collaboration-card:hover,
.collaboration-card:focus-visible,
.collaboration-card.featured {
  color: var(--white);
  background: var(--ink);
  outline: none;
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.collaboration-card:hover::after,
.collaboration-card:focus-visible::after,
.collaboration-card.featured::after {
  transform: scaleX(1);
}

.card-number {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.collaboration-card h3 {
  margin: 78px 0 17px;
  font-size: 24px;
  font-weight: 580;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.collaboration-card p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.collaboration-card:hover p,
.collaboration-card:focus-visible p,
.collaboration-card.featured p {
  color: rgba(255, 255, 255, 0.58);
}

.collaboration-card b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collaboration-card i {
  color: var(--gold);
  font-size: 20px;
  font-style: normal;
}

.directions {
  padding: clamp(92px, 10vw, 145px) 0;
  color: var(--white);
  background: var(--ink);
}

.directions-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.2fr);
  align-items: end;
  margin-bottom: 58px;
  gap: 20px 80px;
}

.directions-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.directions-heading h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.directions-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.direction-split {
  display: flex;
  min-height: 720px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
}

.direction-panel {
  position: relative;
  flex: 1 1 50%;
  min-width: 0;
  overflow: hidden;
  transition: flex-basis 520ms var(--ease), filter 420ms ease;
}

.direction-panel + .direction-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.direction-split:hover .direction-panel {
  flex-basis: 43%;
  filter: saturate(0.7);
}

.direction-split .direction-panel:hover {
  flex-basis: 57%;
  filter: saturate(1);
}

.direction-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.direction-nds > img {
  object-position: 52% 50%;
}

.direction-oprema > img {
  object-position: 56% 50%;
}

.direction-panel:hover > img {
  transform: scale(1.035);
}

.direction-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 10, 0.05) 8%, rgba(7, 9, 10, 0.32) 47%, rgba(7, 9, 10, 0.93) 100%);
}

.direction-content {
  position: absolute;
  right: clamp(30px, 5vw, 75px);
  bottom: clamp(34px, 6vw, 76px);
  left: clamp(30px, 5vw, 75px);
  z-index: 1;
}

.direction-content > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.direction-content h3 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.direction-content p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.direction-content a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direction-content a b {
  margin-left: 18px;
  color: var(--gold);
  font-size: 20px;
}

.future-directions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.future-directions > * {
  display: grid;
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background 180ms ease;
}

.future-directions a:hover,
.future-directions a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.future-directions span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.future-directions strong {
  align-self: end;
  font-size: 17px;
  font-weight: 580;
}

.future-directions small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.opportunities {
  position: relative;
  padding: clamp(110px, 12vw, 180px) 0;
  color: var(--white);
  background: #171c1f;
  overflow: hidden;
  isolation: isolate;
}

.opportunities::before {
  position: absolute;
  z-index: -1;
  top: -20%;
  right: -10%;
  width: 62vw;
  aspect-ratio: 1;
  border: 1px solid rgba(193, 162, 83, 0.13);
  border-radius: 50%;
  content: "";
}

.opportunities-grid {
  opacity: 0.07;
  mask-image: linear-gradient(90deg, transparent 5%, #000 56%, transparent);
}

.opportunities-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.65fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.opportunity-copy h2 {
  max-width: 800px;
  margin-bottom: 30px;
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 530;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.opportunity-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.75;
}

.opportunity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0;
}

.opportunity-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.opportunity-statement {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(193, 162, 83, 0.38);
  background: rgba(10, 13, 15, 0.6);
}

.opportunity-statement::before {
  position: absolute;
  top: -7px;
  left: 34px;
  width: 13px;
  height: 13px;
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.opportunity-statement > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.opportunity-statement blockquote {
  margin: 58px 0;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.opportunity-statement small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.7;
}

.realization {
  background: var(--paper);
}

.realization-grid,
.sourcing-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(70px, 10vw, 145px);
}

.realization-copy p:not(.eyebrow),
.sourcing-copy p:not(.eyebrow),
.about-copy p:not(.eyebrow) {
  margin: 29px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  margin-top: 15px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 20px;
  color: var(--gold-dark);
  font-size: 20px;
}

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

.realization-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.realization-list span {
  grid-row: 1 / 3;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.realization-list strong {
  font-size: 20px;
  font-weight: 590;
}

.realization-list small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.partner-program {
  padding: clamp(92px, 10vw, 145px) 0;
  color: var(--white);
  background: #111517;
}

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

.partner-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 260px;
  padding: 36px;
  border: 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 220ms ease;
}

.partner-card:hover,
.partner-card:focus-visible {
  background: #1a2023;
  outline: none;
}

.partner-card > span {
  grid-row: 1 / 4;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.partner-card h3 {
  margin-bottom: 15px;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.partner-card p {
  color: rgba(255, 255, 255, 0.53);
  font-size: 14px;
}

.partner-card b {
  align-self: end;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sourcing {
  background: #ece9e1;
}

.sourcing-grid {
  align-items: center;
}

.sourcing-index {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid var(--line);
}

.sourcing-index span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  border-right: 1px solid var(--line);
  color: rgba(12, 15, 17, 0.28);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 650;
}

.sourcing-index span:last-child {
  border-right: 0;
}

.sourcing-index span:nth-child(4),
.sourcing-index span:nth-child(5) {
  color: var(--gold-dark);
  background: rgba(193, 162, 83, 0.08);
}

.sourcing-note {
  padding: 14px 16px;
  border-left: 2px solid var(--gold-dark);
  font-size: 13px !important;
}

.network {
  padding: clamp(92px, 10vw, 145px) 0;
  color: var(--white);
  background: var(--ink);
}

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

.network-flow li,
.process-track li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 225px;
  padding: 24px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.network-flow li:not(:last-child)::after,
.process-track li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -10px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: var(--ink);
  content: "→";
  font-size: 11px;
  transform: translateY(-50%);
}

.network-flow span,
.process-track span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.network-flow strong,
.process-track strong {
  margin-top: auto;
  font-size: 20px;
  font-weight: 570;
  line-height: 1.2;
}

.network-flow small,
.process-track small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.5;
}

.network-flow .network-core {
  background: var(--gold);
}

.network-core img {
  width: 44px;
  height: 58px;
  object-fit: contain;
  filter: brightness(0.08);
}

.network-flow .network-core strong,
.network-flow .network-core small {
  color: var(--ink);
}

.process {
  background: var(--paper);
}

.process-track {
  color: var(--ink);
  border-color: var(--line);
}

.process-track li {
  border-color: var(--line);
}

.process-track li:not(:last-child)::after {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  background: var(--paper);
}

.process-track small {
  color: var(--muted);
}

.process-track .process-accent {
  color: var(--white);
  background: var(--ink);
}

.process-track .process-accent small {
  color: rgba(255, 255, 255, 0.5);
}

.funnel {
  position: relative;
  padding: clamp(105px, 12vw, 170px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(193, 162, 83, 0.08), transparent 36%),
    #111517;
}

.funnel::before {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
}

.funnel-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: clamp(70px, 9vw, 130px);
}

.funnel-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 540;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.funnel-intro > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.75;
}

.funnel-options {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid var(--line-light);
}

.funnel-options button {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 4px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.funnel-options button::before {
  width: 7px;
  height: 7px;
  margin-right: 16px;
  border: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.funnel-options button:hover,
.funnel-options button:focus-visible,
.funnel-options button[aria-checked="true"] {
  padding-left: 16px;
  color: var(--ink);
  background: var(--gold);
  outline: none;
}

.funnel-options button[aria-checked="true"]::before {
  background: var(--ink);
}

.funnel-panel {
  align-self: start;
  margin: 0;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.3);
}

.funnel-panel-heading {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.funnel-panel-heading > span {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.funnel-panel-heading h3 {
  margin: 14px 0 9px;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.funnel-panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.funnel-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.funnel-fields[hidden] {
  display: none;
}

.funnel-fields label {
  display: grid;
  gap: 8px;
}

.funnel-fields label > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.funnel-fields input,
.funnel-fields textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(12, 15, 17, 0.28);
  border-radius: 0;
  color: var(--ink);
  outline: none;
  background: transparent;
  transition: border-color 180ms ease, background 180ms ease;
}

.funnel-fields input {
  min-height: 48px;
  padding: 8px 0;
}

.funnel-fields textarea {
  min-height: 110px;
  padding: 12px 0;
  resize: vertical;
}

.funnel-fields input:focus,
.funnel-fields textarea:focus {
  border-color: var(--gold-dark);
  background: rgba(193, 162, 83, 0.035);
}

.field-full {
  grid-column: 1 / -1;
}

.funnel-help {
  margin: 30px 0 22px;
  padding: 14px 16px;
  border-left: 2px solid var(--gold-dark);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.form-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
}

.about {
  background: var(--paper);
}

.about-grid {
  align-items: center;
}

.about-logo {
  padding: 36px;
  border: 1px solid var(--line);
  background: #e7e4dc;
}

.about-logo img {
  width: 100%;
}

.about-copy p:last-child {
  padding-left: 18px;
  border-left: 2px solid var(--gold-dark);
  font-size: 14px !important;
}

.contact {
  padding: clamp(90px, 10vw, 140px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 100%, rgba(193, 162, 83, 0.14), transparent 32%),
    #0c0f11;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.contact h2 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 530;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.contact-copy > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
}

.contact-card {
  border-top: 1px solid var(--line-light);
}

.contact-card > * {
  display: grid;
  min-height: 116px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding 180ms ease, color 180ms ease;
}

.contact-card > a:hover,
.contact-card > a:focus-visible {
  padding-left: 13px;
  color: var(--gold);
}

.contact-card span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card strong {
  align-self: end;
  font-size: 21px;
  font-weight: 560;
}

.contact-card small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: #07090a;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.footer-brand img {
  width: 270px;
}

.footer-brand p {
  max-width: 390px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column > span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a {
  min-height: 34px;
  font-size: 12px;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: #178a45;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
  transition: background 180ms ease, transform 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: var(--green);
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.floating-whatsapp span {
  margin-left: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.reveal-delay {
  transition-delay: 110ms;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

  .header-inner {
    width: min(100% - 40px, 1180px);
    grid-template-columns: 180px 1fr auto;
    gap: 18px;
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 350px;
  }

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

  .collaboration-card {
    min-height: 330px;
  }

  .directions-heading,
  .section-heading {
    gap: 45px;
  }

  .direction-split {
    min-height: 650px;
  }

  .direction-content h3 {
    font-size: 53px;
  }

  .realization-grid,
  .sourcing-grid,
  .about-grid {
    gap: 70px;
  }

  .network-flow strong,
  .process-track strong {
    font-size: 17px;
  }

  .funnel-inner {
    gap: 55px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
    backdrop-filter: none;
  }

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

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 5;
    display: grid;
    align-content: center;
    justify-items: end;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 26px;
    height: 1px;
    margin: 3px 0;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease, width 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    width: 0;
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 4;
    inset: 0 auto auto 0;
    display: grid;
    align-content: center;
    justify-items: start;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    gap: 7px;
    padding: 100px max(30px, calc((100% - var(--wrap)) / 2));
    background: rgba(9, 11, 13, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 56px;
    font-size: 24px;
    font-weight: 540;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 110px;
  }

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

  .hero-copy {
    max-width: 730px;
  }

  .hero-identity {
    justify-self: start;
    width: min(82%, 470px);
  }

  .section-heading,
  .directions-heading,
  .opportunities-inner,
  .realization-grid,
  .sourcing-grid,
  .about-grid,
  .contact-grid,
  .funnel-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p,
  .directions-heading > p {
    max-width: 720px;
  }

  .direction-split {
    display: grid;
    min-height: 0;
  }

  .direction-panel {
    min-height: 620px;
  }

  .direction-panel + .direction-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .direction-split:hover .direction-panel,
  .direction-split .direction-panel:hover {
    filter: none;
  }

  .future-directions {
    grid-template-columns: 1fr 1fr;
  }

  .future-directions > :last-child {
    grid-column: 1 / -1;
  }

  .opportunities-inner,
  .realization-grid,
  .sourcing-grid,
  .about-grid,
  .contact-grid,
  .funnel-inner {
    gap: 62px;
  }

  .opportunity-statement {
    max-width: 620px;
  }

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

  .sourcing-index span {
    min-height: 270px;
  }

  .network-flow,
  .process-track {
    grid-template-columns: 1fr;
  }

  .network-flow li,
  .process-track li {
    min-height: 130px;
  }

  .network-flow li:not(:last-child)::after,
  .process-track li:not(:last-child)::after {
    top: auto;
    right: 24px;
    bottom: -10px;
    transform: rotate(90deg);
  }

  .network-flow strong,
  .process-track strong {
    margin-top: 28px;
  }

  .funnel-intro {
    max-width: 700px;
  }

  .funnel-options {
    grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid var(--line-light);
  }

  .funnel-options button {
    padding: 12px 16px;
    border-right: 1px solid var(--line-light);
  }

  .funnel-options button:hover,
  .funnel-options button:focus-visible,
  .funnel-options button[aria-checked="true"] {
    padding-left: 21px;
  }

  .funnel-panel {
    max-width: 780px;
  }

  .contact-card {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  :root {
    --wrap: calc(100% - 32px);
  }

  .header-inner {
    width: calc(100% - 32px);
  }

  .brand img {
    width: 25px;
    height: 33px;
  }

  .brand strong {
    font-size: 16px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 64px);
  }

  .hero-grid {
    background-size: 42px 42px;
  }

  .hero h1 {
    font-size: clamp(47px, 14.1vw, 72px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions,
  .funnel-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button,
  .funnel-actions .button {
    width: 100%;
  }

  .hero-principles {
    gap: 9px 16px;
    margin-top: 40px;
  }

  .hero-principles span:not(:last-child)::after {
    display: none;
  }

  .hero-identity {
    width: 92%;
    padding: 35px 30px 25px;
  }

  .hero-scroll {
    right: 16px;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading,
  .directions-heading {
    gap: 26px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .directions-heading h2,
  .realization h2,
  .sourcing h2,
  .about h2,
  .contact h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .collaboration-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .collaboration-card {
    min-height: 305px;
  }

  .collaboration-card:hover,
  .collaboration-card:focus-visible,
  .collaboration-card.featured {
    transform: none;
  }

  .directions {
    padding: 86px 0;
  }

  .direction-panel {
    min-height: 520px;
  }

  .direction-content {
    right: 24px;
    bottom: 31px;
    left: 24px;
  }

  .direction-content h3 {
    font-size: clamp(41px, 12vw, 58px);
  }

  .direction-nds > img {
    object-position: 54% 50%;
  }

  .direction-oprema > img {
    object-position: 61% 50%;
  }

  .future-directions {
    grid-template-columns: 1fr;
  }

  .future-directions > :last-child {
    grid-column: auto;
  }

  .opportunities,
  .partner-program,
  .network,
  .funnel,
  .contact {
    padding: 88px 0;
  }

  .opportunity-copy h2,
  .funnel-intro h2 {
    font-size: clamp(43px, 12.4vw, 62px);
  }

  .opportunity-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .opportunity-statement {
    padding: 30px 25px;
  }

  .opportunity-statement blockquote {
    margin: 45px 0;
  }

  .realization-grid,
  .sourcing-grid,
  .about-grid,
  .contact-grid,
  .funnel-inner {
    gap: 45px;
  }

  .realization-list > div {
    grid-template-columns: 37px 1fr;
  }

  .realization-list strong {
    font-size: 17px;
  }

  .partner-card {
    grid-template-columns: 38px 1fr;
    min-height: 245px;
    padding: 27px 22px;
  }

  .sourcing-index span {
    min-height: 180px;
    font-size: 19px;
  }

  .network-flow li,
  .process-track li {
    min-height: 125px;
    padding: 20px;
  }

  .funnel-options {
    grid-template-columns: 1fr;
  }

  .funnel-panel {
    padding: 25px 20px;
  }

  .funnel-fields {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .about-logo {
    padding: 23px;
  }

  .contact-card strong {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .footer-brand img {
    width: 245px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero-identity {
    width: 100%;
  }

  .identity-note {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .sourcing-index span {
    min-height: 150px;
    font-size: 16px;
  }
}

@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;
  }

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