:root {
  --bg: #050506;
  --bg-soft: #090a0d;
  --surface: #15171b;
  --surface-2: #1d2025;
  --ink: #f7f9ff;
  --muted: #aeb5c3;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #ffd400;
  --gold-soft: rgba(255, 212, 0, 0.16);
  --cyan: #23d9ff;
  --green: #66ffb2;
  --danger: #ff5a7a;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 212, 0, 0.09), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(35, 217, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #030303 0%, #080507 46%, #050506 100%);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.cursor-ready {
  cursor: none;
}

body.cursor-ready a,
body.cursor-ready button,
body.cursor-ready input,
body.cursor-ready select,
body.cursor-ready textarea,
body.cursor-ready label {
  cursor: none;
}

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

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

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 24px;
  height: 24px;
  background: url("../../img/2500px.YELLOW.png") center / contain no-repeat;
  filter: drop-shadow(0 0 9px rgba(255, 212, 0, 0.42));
  transition: transform 80ms ease, filter 160ms ease;
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 212, 0, 0.48) 0 14%, rgba(255, 212, 0, 0.16) 15% 44%, transparent 68%);
  filter: blur(2px);
  box-shadow:
    0 0 18px rgba(255, 212, 0, 0.36),
    0 0 36px rgba(255, 212, 0, 0.18);
  transition: width 160ms ease, height 160ms ease, background 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.cursor-ring::before,
.cursor-ring::after {
  content: none;
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-active .cursor-ring {
  width: 36px;
  height: 36px;
  background:
    radial-gradient(circle, rgba(255, 212, 0, 0.58) 0 12%, rgba(35, 217, 255, 0.16) 13% 48%, transparent 70%);
  box-shadow:
    0 0 22px rgba(255, 212, 0, 0.34),
    0 0 46px rgba(35, 217, 255, 0.12);
}

body.cursor-active .cursor-dot {
  filter: drop-shadow(0 0 13px rgba(255, 212, 0, 0.56));
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 58px);
  color: #ffffff;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 6, 0.78);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 212, 0, 0.45);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 212, 0, 0.18), rgba(35, 217, 255, 0.08));
  box-shadow: inset 0 0 22px rgba(255, 212, 0, 0.14), 0 0 32px rgba(255, 212, 0, 0.08);
  overflow: hidden;
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.language-switch button {
  min-width: 36px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.active {
  color: #050506;
  background: var(--gold);
}

.site-nav a {
  position: relative;
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 118px 0 70px;
  overflow: hidden;
}

.tech-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 88%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 48%, rgba(255, 212, 0, 0.18), transparent 20%),
    radial-gradient(circle at 72% 32%, rgba(35, 217, 255, 0.17), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.64));
}

.hero-orbit {
  position: absolute;
  right: -120px;
  top: 100px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(255, 212, 0, 0.14);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.hero-orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px var(--gold);
}

.hero-orbit span:nth-child(1) {
  top: 68px;
  left: 122px;
}

.hero-orbit span:nth-child(2) {
  right: 38px;
  top: 300px;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
}

.hero-orbit span:nth-child(3) {
  left: 250px;
  bottom: 4px;
  background: var(--green);
  box-shadow: 0 0 24px var(--green);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(44px, 7vw, 94px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 810px;
  margin: 26px 0 0;
  color: #d9deea;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #050506;
  background: var(--gold);
  box-shadow: 0 18px 44px rgba(255, 212, 0, 0.2);
}

.btn-primary:hover {
  background: #ffe45a;
}

.btn-primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-terminal {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(18, 20, 24, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.terminal-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--danger);
}

.terminal-top span:nth-child(2) {
  background: var(--gold);
}

.terminal-top span:nth-child(3) {
  background: var(--green);
}

.terminal-top strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

.terminal-lines {
  display: grid;
  gap: 8px;
  padding: 22px;
  font-family: Consolas, Monaco, monospace;
}

.terminal-lines p {
  margin: 0;
  color: #e8ecf5;
}

.terminal-lines span {
  color: var(--gold);
}

.signal-card {
  margin: 0 22px 22px;
  padding: 20px;
  border: 1px solid rgba(255, 212, 0, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 212, 0, 0.16), rgba(35, 217, 255, 0.06));
}

.signal-card strong,
.signal-card small {
  display: block;
}

.signal-card small {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  position: relative;
  padding: 96px 0;
  scroll-margin-top: 92px;
}

.section-heading {
  max-width: 820px;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.section-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.service-card,
.project-card {
  position: relative;
  min-height: 286px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--surface);
  box-shadow: inset 0 -5px 0 rgba(255, 212, 0, 0.62);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 212, 0, 0.4);
  box-shadow: inset 0 -5px 0 var(--gold), 0 22px 60px rgba(255, 212, 0, 0.08);
}

.service-card p,
.project-card p,
.rich-copy p,
.contact-copy p {
  color: var(--muted);
}

.service-icon {
  display: block;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  background: var(--gold);
  filter: drop-shadow(0 0 20px rgba(255, 212, 0, 0.24));
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-mobile {
  --icon: url("../../img/HIZMETLER/developer.svg");
}

.icon-chain {
  --icon: url("../../img/HIZMETLER/blockchain.svg");
}

.icon-game {
  --icon: url("../../img/HIZMETLER/game-controller.svg");
}

.icon-server {
  --icon: url("../../img/HIZMETLER/alt-chain.svg");
}

.icon-software {
  --icon: url("../../img/HIZMETLER/developer-centerpublic-api.svg");
}

.icon-ai {
  --icon: url("../../img/HIZMETLER/ai.svg");
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 98px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 118px;
}

.rich-copy {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.rich-copy p {
  margin: 0;
  font-size: 18px;
}

.vision {
  background:
    linear-gradient(90deg, rgba(255, 212, 0, 0.08), transparent 40%),
    rgba(255, 255, 255, 0.015);
}

.projects {
  background: #070304;
}

.project-tabs {
  position: sticky;
  top: 92px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 42px 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 8, 10, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.project-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #ffffff !important;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.project-tabs button:not(.active):hover,
.project-tabs button[aria-selected="false"]:hover {
  border-color: rgba(255, 212, 0, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff !important;
}

.project-tabs button:focus,
.project-tabs button:focus-visible {
  color: #ffffff !important;
}

.project-tabs button.active,
.project-tabs button[aria-selected="true"] {
  border-color: var(--gold) !important;
  color: #050506 !important;
  background: var(--gold) !important;
  box-shadow: 0 14px 36px rgba(255, 212, 0, 0.14);
}

.project-tabs button.active:hover,
.project-tabs button.active:focus,
.project-tabs button.active:focus-visible,
.project-tabs button[aria-selected="true"]:hover,
.project-tabs button[aria-selected="true"]:focus,
.project-tabs button[aria-selected="true"]:focus-visible {
  border-color: var(--gold) !important;
  color: #050506 !important;
  background: var(--gold) !important;
}

.project-panel {
  animation: panelIn 220ms ease both;
}

.project-panel[hidden] {
  display: none;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-group {
  scroll-margin-top: 110px;
}

.project-group + .project-group {
  margin-top: 64px;
}

.project-group-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.project-group-heading span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 212, 0, 0.34);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(255, 212, 0, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.project-group-heading h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
}

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

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

.project-card {
  min-height: 240px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 28px 22px;
  color: inherit;
}

.platform-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.project-logo {
  width: 104px;
  height: 104px;
  margin-bottom: 18px;
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(255, 212, 0, 0.2), transparent 60%),
    #111318;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.project-logo img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.project-logo.wide-logo {
  width: 132px;
}

.project-logo.wide-logo img {
  width: 92%;
}

.project-card p {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.other-project-card {
  min-height: 270px;
  background:
    linear-gradient(180deg, rgba(255, 212, 0, 0.06), transparent 52%),
    var(--surface);
}

.other-project-card .project-logo {
  width: 116px;
  height: 116px;
}

.other-project-card .project-logo img {
  width: 84%;
  height: 84%;
}

.store-link {
  margin-top: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 212, 0, 0.32);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 212, 0, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.soon-card {
  box-shadow: inset 0 -5px 0 rgba(35, 217, 255, 0.48);
}

.website-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.website-card {
  position: relative;
  min-height: 146px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(21, 23, 27, 0.86);
  color: #ffffff;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.website-card::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 16px 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 3px 16px no-repeat,
    rgba(255, 212, 0, 0.08);
  opacity: 0.7;
}

.website-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 212, 0, 0.5), transparent);
}

.website-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 212, 0, 0.38);
  box-shadow: 0 18px 48px rgba(255, 212, 0, 0.07);
}

.website-card span {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(255, 212, 0, 0.22);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 212, 0, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.website-card strong {
  position: relative;
  z-index: 1;
  padding-right: 42px;
  font-size: 21px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.placeholder-panel {
  padding: 28px;
  border: 1px dashed rgba(255, 212, 0, 0.3);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
}

.about {
  padding-bottom: 52px;
}

.partners {
  width: min(1220px, calc(100% - 40px));
  margin: 58px auto 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 22px 0;
  animation: marquee 72s linear infinite;
}

.partners:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo {
  display: grid;
  place-items: center;
  width: 178px;
  height: 82px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 212, 0, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 239, 247, 0.92)),
    #f5f7fb;
  box-shadow: inset 0 -2px 0 rgba(255, 212, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.partner-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 212, 0, 0.32);
  background:
    linear-gradient(180deg, #ffffff, #eef2f8),
    #ffffff;
}

.partner-logo img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 1;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.partner-logo-light img {
  filter: none;
  opacity: 1;
}

.partner-logo-light {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    #15171b;
}

.partner-logo-light:hover {
  border-color: rgba(255, 212, 0, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 212, 0, 0.08), transparent),
    #191c21;
}

.partner-logo-wide {
  width: 220px;
}

.partner-logo-wide img {
  max-height: 56px;
  max-width: 112%;
}

.partner-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

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

.contact-section {
  background:
    radial-gradient(circle at 84% 30%, rgba(255, 212, 0, 0.1), transparent 22%),
    #030303;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(330px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-details div {
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
}

.contact-details strong,
.contact-details span {
  display: block;
}

.contact-details strong {
  margin-bottom: 6px;
}

.contact-details span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(21, 23, 27, 0.88);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full,
.full {
  grid-column: 1 / -1;
}

label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 13px 14px;
  color: #ffffff;
  background: rgba(5, 5, 6, 0.75);
}

select option {
  color: #101318;
  background: #ffffff;
}

select option:checked {
  color: #050506;
  background: #ffd400;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 212, 0, 0.16);
  border-color: var(--gold);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: #ff8ea4;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 58px);
  color: #ffffff;
  background: #010101;
  border-top: 1px solid var(--line);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    min-width: auto;
  }

  .site-nav a {
    padding: 10px 8px;
    font-size: 12px;
  }

  .service-grid,
  .project-grid,
  .other-project-grid,
  .website-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .language-switch {
    margin-left: auto;
  }

  .hero-inner,
  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .sticky-copy {
    position: static;
  }

  .project-tabs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready input,
  body.cursor-ready select,
  body.cursor-ready textarea,
  body.cursor-ready label {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .container {
    width: min(100% - 32px, 1220px);
  }

  .brand small {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 112px 0 54px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-terminal,
  .rich-copy,
  .contact-form {
    padding: 0;
  }

  .rich-copy {
    padding: 22px;
  }

  .service-grid,
  .project-grid,
  .other-project-grid,
  .website-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .project-card {
    min-height: auto;
    padding: 24px;
  }

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