:root {
  --ink: #07131e;
  --ink-2: #14222e;
  --steel: #66737e;
  --line: #d5dce1;
  --mist: #edf1f3;
  --paper: #f5f7f8;
  --white: #ffffff;
  --cobalt: #3036be;
  --orange: #d95e34;
  --orange-bright: #ef7248;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --shell: min(1380px, calc(100vw - 64px));
  --radius: 2px;
  --shadow: 0 28px 90px rgb(1 13 24 / 15%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--orange);
  transform: translateY(-150%);
}

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

.topbar {
  position: relative;
  z-index: 30;
  color: #dbe2e7;
  background: #030a11;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topbar__inner,
.topbar__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
}

.topbar__inner {
  min-height: 38px;
}

.topbar__links a {
  transition: color 180ms ease;
}

.topbar__links a:hover {
  color: var(--orange-bright);
}

.site-header {
  position: absolute;
  z-index: 25;
  top: 38px;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  color: var(--white);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  color: var(--ink);
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 12px 30px rgb(0 16 30 / 10%);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  min-height: 92px;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: 145px;
  height: 68px;
  align-items: center;
  padding: 0;
  background: transparent;
}

.brand img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 18px rgb(0 0 0 / 22%));
  object-fit: contain;
}

.site-header.is-sticky .brand img {
  filter: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 40px);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding-block: 33px;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language select {
  min-width: 58px;
  border: 0;
  color: inherit;
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.site-header:not(.is-sticky) .language select option {
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  padding: 12px 22px;
  color: var(--white);
  background: var(--orange);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.button:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}

.button--outline {
  border-color: rgb(255 255 255 / 46%);
  color: var(--white);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--white);
}

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

.button--dark:hover {
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange-bright);
  font-size: 22px;
  transition: transform 180ms ease;
}

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

.text-link--dark {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  overflow: hidden;
  background: var(--ink);
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  animation: heroSettle 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  min-width: 177.78vh;
  height: 56.25vw;
  min-height: 100vh;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.045);
  animation: heroVideoReveal 1.2s 400ms ease both;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgb(2 10 17 / 96%) 0%, rgb(4 17 28 / 78%) 45%, rgb(4 16 29 / 18%) 79%),
    linear-gradient(0deg, rgb(3 11 18 / 78%) 0%, transparent 48%);
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.18;
  pointer-events: none;
}

.hero__coordinate {
  position: absolute;
  z-index: 3;
  top: 178px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgb(255 255 255 / 58%);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.hero__coordinate i {
  width: 1px;
  height: 76px;
  background: linear-gradient(var(--orange), transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 236px;
  padding-bottom: 190px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--orange-bright);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about h2,
.certificates h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 990px;
  font-size: clamp(70px, 8vw, 124px);
  line-height: 0.91;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.25px rgb(255 255 255 / 82%);
}

.hero__lede {
  max-width: 650px;
  margin: 40px 0 0;
  color: #d5dde4;
  font-size: 18px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.hero__status {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgb(255 255 255 / 20%);
  background: rgb(5 17 28 / 76%);
  backdrop-filter: blur(12px);
}

.hero__status-inner {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.1fr 1fr;
}

.hero__status-inner > * {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgb(255 255 255 / 17%);
  padding: 18px 30px;
}

.hero__status strong {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero__status span {
  margin-top: 10px;
  color: #aeb9c3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__status a {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid rgb(255 255 255 / 17%);
  color: var(--white);
  background: rgb(48 54 190 / 86%);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.hero__status a:hover {
  background: var(--orange);
}

.process-rail {
  border-bottom: 1px solid var(--line);
  padding-block: 56px 62px;
  background: var(--white);
}

.rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.rail__track {
  position: absolute;
  top: 16px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  overflow: hidden;
  background: #d8dee3;
}

.rail__track span {
  display: block;
  width: var(--rail-progress, 18%);
  height: 100%;
  background: var(--orange);
  transition: width 600ms ease;
}

.rail__step {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.rail__step i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #cbd2d8;
  border-radius: 50%;
  color: var(--steel);
  background: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
}

.rail__step strong {
  margin-top: 18px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.rail__step span {
  margin-top: 9px;
  color: var(--steel);
  font-size: 13px;
}

.global-proof {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--cobalt);
}

.global-proof::after {
  position: absolute;
  top: -300px;
  right: -220px;
  width: 760px;
  height: 760px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgb(255 255 255 / 3%),
    0 0 0 180px rgb(255 255 255 / 2%);
  content: "";
  pointer-events: none;
}

.global-proof__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 500px;
  align-items: center;
  grid-template-columns: 240px minmax(420px, 1fr) 350px;
  gap: clamp(45px, 6vw, 100px);
}

.global-proof__mark {
  position: relative;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 50%;
}

.global-proof__mark::before,
.global-proof__mark::after {
  position: absolute;
  background: rgb(255 255 255 / 22%);
  content: "";
}

.global-proof__mark::before {
  width: 230px;
  height: 1px;
}

.global-proof__mark::after {
  width: 1px;
  height: 230px;
}

.global-proof__mark > span {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.global-proof__mark > i {
  position: absolute;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 0 7px rgb(239 114 72 / 16%);
}

.global-proof__mark > small {
  position: absolute;
  right: -28px;
  bottom: -26px;
  padding: 8px;
  background: var(--cobalt);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.global-proof .section-kicker {
  color: #ffb59d;
}

.global-proof__copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 5.5vw, 84px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.global-proof__copy > p:last-child {
  max-width: 690px;
  margin: 30px 0 0;
  color: #d9dbff;
  font-size: 15px;
}

.global-proof__markets > span {
  color: #c4c7ff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.global-proof__markets ul {
  margin: 20px 0 0;
  border-top: 1px solid rgb(255 255 255 / 20%);
  padding: 0;
  list-style: none;
}

.global-proof__markets li {
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  padding-block: 14px;
  grid-template-columns: 42px 1fr;
}

.global-proof__markets i {
  color: #ffb59d;
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
}

.global-proof__markets strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  padding-block: 132px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 64px;
}

.section-heading h2,
.about h2,
.certificates h2,
.contact h2 {
  font-size: clamp(54px, 5.7vw, 88px);
}

.section-heading > p {
  max-width: 560px;
  margin: 0;
  color: var(--steel);
  font-size: 17px;
}

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

.solution-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
  text-align: left;
  background: var(--paper);
  cursor: pointer;
}

.solution-card__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 280ms ease;
}

.solution-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(4 15 24 / 92%), rgb(5 16 26 / 40%));
  content: "";
}

.solution-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card__top,
.solution-card__body {
  position: relative;
  z-index: 1;
}

.solution-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-card__top i {
  color: var(--orange);
  font-size: 24px;
  font-style: normal;
  line-height: 1;
  transition: transform 180ms ease;
}

.solution-card__body {
  margin-top: auto;
}

.solution-card h3 {
  max-width: 330px;
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 39px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.solution-card p {
  display: -webkit-box;
  max-width: 350px;
  overflow: hidden;
  margin: 0;
  color: var(--steel);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.solution-card:hover,
.solution-card:focus-visible {
  color: var(--white);
}

.solution-card:hover .solution-card__image,
.solution-card:focus-visible .solution-card__image {
  opacity: 1;
}

.solution-card:hover p,
.solution-card:focus-visible p {
  color: #d4dce2;
}

.solution-card:hover .solution-card__top i,
.solution-card:focus-visible .solution-card__top i {
  transform: translate(4px, -4px);
}

.project-archive {
  color: var(--white);
  background: var(--ink);
}

.section-heading--light > p {
  color: #aebbc6;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.filter-button {
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 99px;
  padding: 8px 14px;
  color: #bac4cc;
  background: transparent;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--orange);
  color: var(--white);
  background: var(--orange);
}

.project-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.project-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 0;
  padding: 0;
  color: var(--white);
  background: #162536;
  text-align: left;
  cursor: zoom-in;
}

.project-card:nth-child(7n + 1),
.project-card:nth-child(7n + 6) {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(4 13 22 / 88%), transparent 60%);
  content: "";
}

.project-card__meta {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.project-card__meta span {
  color: var(--orange-bright);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card__meta strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.project-card:hover img {
  transform: scale(1.045);
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

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

.about__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(60px, 8vw, 130px);
}

.about__visual {
  position: relative;
  min-height: 680px;
}

.about__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__stamp {
  position: absolute;
  right: -44px;
  bottom: 50px;
  display: flex;
  width: 220px;
  height: 220px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background: var(--cobalt);
  clip-path: polygon(14% 0, 100% 0, 100% 86%, 86% 100%, 0 100%, 0 14%);
}

.about__stamp strong {
  font-family: var(--display);
  font-size: 86px;
  font-weight: 600;
  line-height: 0.8;
}

.about__stamp span {
  margin-top: 17px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.about__copy {
  align-self: center;
}

.about__copy h2 {
  max-width: 700px;
  margin-bottom: 36px;
}

#about-content {
  max-width: 690px;
  color: var(--steel);
}

#about-content p {
  margin-block: 0 18px;
}

.about__promises {
  display: grid;
  border-top: 1px solid var(--line);
  margin-block: 38px 32px;
  grid-template-columns: repeat(3, 1fr);
}

.about__promises div {
  border-right: 1px solid var(--line);
  padding: 24px 18px 8px 0;
}

.about__promises span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
}

.about__promises strong {
  display: block;
  max-width: 150px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.parts {
  background: var(--mist);
}

.parts-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.part-card {
  overflow: hidden;
  background: var(--white);
}

.part-card__image {
  height: 240px;
  overflow: hidden;
  background: #dae0e4;
}

.part-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.part-card:hover img {
  transform: scale(1.04);
}

.part-card h3 {
  min-height: 98px;
  margin: 0;
  padding: 26px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.certificates {
  color: var(--white);
  background: var(--cobalt);
}

.certificates .section-kicker {
  color: #ffb092;
}

.certificates__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: 100px;
}

.certificates__grid > div:first-child > p:last-child {
  max-width: 520px;
  margin-top: 30px;
  color: #d8d9ff;
}

.certificate-stack {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.certificate-card {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--white);
  cursor: zoom-in;
  box-shadow: var(--shadow);
}

.certificate-card:nth-child(2),
.certificate-card:nth-child(5) {
  transform: translateY(24px);
}

.certificate-card img {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: top;
  transition: transform 300ms ease;
}

.certificate-card:hover img {
  transform: scale(1.025);
}

.contact {
  padding-block: 120px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(5 14 23 / 96%) 0 50%, rgb(238 241 243 / 96%) 50% 100%),
    url("https://www.oguzmakinem.com/wp-content/uploads/2023/09/POWER-FREE-TESIS.jpg") center / cover;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.contact__intro {
  padding-right: clamp(50px, 8vw, 130px);
}

.contact__intro > p:not(.section-kicker) {
  max-width: 600px;
  margin-top: 28px;
  color: #b9c4cd;
}

.contact__details {
  display: grid;
  border-top: 1px solid rgb(255 255 255 / 18%);
  margin-top: 54px;
}

.contact__details a {
  display: grid;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  padding-block: 18px;
  grid-template-columns: 90px 1fr;
  gap: 20px;
}

.contact__details span {
  color: var(--orange-bright);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__details strong {
  font-size: 14px;
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 21px;
  padding-left: clamp(50px, 8vw, 130px);
  color: var(--ink);
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b9c2c9;
  border-radius: 0;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .consent {
  display: grid;
  align-items: start;
  gap: 10px;
  grid-template-columns: 18px 1fr;
}

.contact-form .consent span {
  color: var(--steel);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.contact-form .button {
  justify-self: start;
  margin-top: 4px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--cobalt);
  font-size: 13px;
}

.footer {
  color: #aab5be;
  background: #050d15;
}

.footer__top,
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer__top {
  min-height: 180px;
}

.footer__top img {
  width: 145px;
  height: 74px;
  filter: drop-shadow(0 8px 18px rgb(0 0 0 / 32%));
  object-fit: contain;
  padding: 0;
  background: transparent;
}

.footer__top p {
  flex: 1;
  margin: 0;
}

.footer__bottom {
  min-height: 66px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__bottom p {
  margin: 0;
}

.quick-contact {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  border-radius: 99px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 30px rgb(84 20 0 / 28%);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quick-contact > span {
  font-size: 18px;
}

.detail-dialog {
  width: min(1080px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-dialog::backdrop {
  background: rgb(3 10 17 / 84%);
  backdrop-filter: blur(7px);
}

.dialog-close {
  position: sticky;
  z-index: 3;
  top: 18px;
  float: right;
  display: grid;
  width: 44px;
  height: 44px;
  margin: 18px 18px -62px 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.dialog-hero {
  position: relative;
  min-height: 430px;
  color: var(--white);
  background: var(--ink);
}

.dialog-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.dialog-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(4 15 24 / 90%), transparent);
  content: "";
}

.dialog-hero__copy {
  position: absolute;
  z-index: 1;
  right: 56px;
  bottom: 46px;
  left: 56px;
}

.dialog-hero__copy span {
  color: var(--orange-bright);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-hero h2 {
  max-width: 800px;
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.dialog-body {
  display: grid;
  padding: 56px;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 64px;
}

.dialog-body__text {
  color: var(--steel);
  white-space: pre-line;
}

.dialog-body__aside {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.dialog-body__aside span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-body__aside p {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.dialog-image {
  display: grid;
  min-height: 80vh;
  place-items: center;
  padding: 28px;
  background: #08131f;
}

.dialog-image img {
  max-height: calc(100vh - 100px);
  object-fit: contain;
}

@keyframes heroSettle {
  from {
    opacity: 0;
    transform: scale(1.09);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes heroVideoReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 44px, 1040px);
  }

  .site-header__inner {
    grid-template-columns: 150px 1fr auto;
    gap: 18px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 15px;
  }

  .header-actions .button {
    display: none;
  }

  .global-proof__grid {
    grid-template-columns: 190px minmax(360px, 1fr) 280px;
    gap: 46px;
  }

  .global-proof__mark {
    width: 160px;
    height: 160px;
  }

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

  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-card:nth-child(n) {
    grid-column: auto;
  }

  .project-card:nth-child(5n + 1) {
    grid-column: span 2;
  }

  .certificates__grid {
    gap: 60px;
  }

  .contact-form {
    padding-left: 70px;
  }

  .contact__intro {
    padding-right: 70px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .topbar p,
  .topbar__links a:last-child {
    display: none;
  }

  .topbar__inner {
    justify-content: flex-end;
  }

  .site-header {
    top: 38px;
  }

  .site-header.is-sticky {
    top: 0;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    min-height: 74px;
  }

  .brand {
    width: 126px;
    height: 54px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 7px;
    border: 0;
    color: inherit;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    background: currentcolor;
    transition: transform 180ms ease;
  }

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

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

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 110px 28px 30px;
    color: var(--white);
    background: var(--ink);
    font-size: 34px;
    transform: translateX(100%);
    transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav a {
    width: 100%;
    border-bottom: 1px solid rgb(255 255 255 / 13%);
    padding-block: 14px;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-actions {
    position: relative;
    z-index: 3;
  }

  .hero {
    min-height: 820px;
  }

  .hero__coordinate {
    display: none;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgb(3 13 23 / 91%), rgb(4 18 31 / 30%)),
      linear-gradient(0deg, rgb(4 13 22 / 80%) 0%, transparent 64%);
  }

  .hero__content {
    padding-top: 190px;
  }

  .hero h1 {
    font-size: clamp(62px, 16vw, 100px);
  }

  html[lang="ru"] .hero h1 {
    font-size: clamp(46px, 12.8vw, 74px);
  }

  .hero__lede {
    max-width: 570px;
    font-size: 16px;
  }

  .hero__status-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__status a {
    display: none;
  }

  .hero__status-inner > * {
    min-height: 102px;
    padding-inline: 18px;
  }

  .hero__status strong {
    font-size: 27px;
  }

  .process-rail {
    overflow: hidden;
  }

  .rail {
    width: 720px;
  }

  .global-proof__grid {
    min-height: auto;
    padding-block: 86px;
    grid-template-columns: 170px 1fr;
    gap: 50px;
  }

  .global-proof__copy h2 {
    font-size: clamp(50px, 8.5vw, 72px);
  }

  .global-proof__markets {
    grid-column: 1 / -1;
  }

  .global-proof__markets ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .global-proof__markets li {
    border-right: 1px solid rgb(255 255 255 / 20%);
    padding: 16px;
    grid-template-columns: 34px 1fr;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 44px;
  }

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

  .project-card:nth-child(n) {
    grid-column: auto;
  }

  .about__grid,
  .certificates__grid {
    grid-template-columns: 1fr;
  }

  .about__visual {
    min-height: 560px;
  }

  .about__stamp {
    right: -5px;
    bottom: -30px;
  }

  .about__copy {
    padding-top: 24px;
  }

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

  .certificate-stack {
    max-width: 640px;
  }

  .contact {
    background:
      linear-gradient(rgb(5 14 23 / 96%) 0 48%, rgb(238 241 243 / 97%) 48% 100%),
      url("https://www.oguzmakinem.com/wp-content/uploads/2023/09/POWER-FREE-TESIS.jpg")
        center / cover;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .contact__intro,
  .contact-form {
    padding: 0;
  }

  .footer__top {
    flex-wrap: wrap;
    padding-block: 44px;
  }

  .footer__top p {
    order: 3;
    flex-basis: 100%;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .hero {
    min-height: 790px;
  }

  .hero__media img {
    object-position: 58% center;
  }

  .hero__content {
    padding-top: 168px;
    padding-bottom: 170px;
  }

  .hero h1 {
    font-size: 15.4vw;
  }

  .hero__lede {
    margin-top: 26px;
    line-height: 1.6;
  }

  .global-proof__grid {
    padding-block: 72px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .global-proof__mark {
    width: 132px;
    height: 132px;
  }

  .global-proof__mark::before {
    width: 168px;
  }

  .global-proof__mark::after {
    height: 168px;
  }

  .global-proof__mark > span {
    font-size: 56px;
  }

  .global-proof__copy h2 {
    font-size: 51px;
  }

  .global-proof__markets {
    grid-column: auto;
  }

  .global-proof__markets ul {
    display: block;
  }

  .global-proof__markets li {
    border-right: 0;
    padding-inline: 0;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
  }

  .hero__status-inner > * {
    min-height: 92px;
    padding: 12px 10px;
  }

  .hero__status strong {
    font-size: 22px;
  }

  .hero__status span {
    font-size: 8px;
  }

  .section-heading h2,
  .about h2,
  .certificates h2,
  .contact h2 {
    font-size: 53px;
  }

  .solution-grid,
  .project-grid,
  .parts-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 330px;
    padding: 24px;
  }

  .project-card {
    min-height: 290px;
  }

  .about__visual {
    min-height: 460px;
  }

  .about__stamp {
    width: 155px;
    height: 155px;
  }

  .about__stamp strong {
    font-size: 60px;
  }

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

  .about__promises div {
    display: grid;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 40px 1fr;
  }

  .about__promises strong {
    max-width: none;
  }

  .certificate-stack {
    gap: 8px;
  }

  .certificate-card:nth-child(2),
  .certificate-card:nth-child(5) {
    transform: translateY(12px);
  }

  .contact {
    padding-block: 88px;
    background:
      linear-gradient(rgb(5 14 23 / 96%) 0 47%, rgb(238 241 243 / 97%) 47% 100%),
      url("https://www.oguzmakinem.com/wp-content/uploads/2023/09/POWER-FREE-TESIS.jpg")
        center / cover;
  }

  .contact__grid {
    gap: 90px;
  }

  .contact__details a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .quick-contact {
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
  }

  .quick-contact strong {
    display: none;
  }

  .dialog-hero {
    min-height: 350px;
  }

  .dialog-hero__copy {
    right: 26px;
    bottom: 30px;
    left: 26px;
  }

  .dialog-body {
    padding: 32px 26px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .dialog-body__aside {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 26px;
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

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