:root {
  --night: #070b12;
  --night-2: #0c1422;
  --text: #eef7ff;
  --muted: #91a6ba;
  --line: rgba(135, 202, 255, 0.22);
  --cyan: #00e5ff;
  --blue: #0a2cff;
  --violet: #7a5cff;
  --gold: #dbaa48;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 229, 255, .14), transparent 28rem),
    radial-gradient(circle at 18% 82%, rgba(122, 92, 255, .12), transparent 26rem),
    linear-gradient(120deg, #05070c 0%, #0c1422 50%, #05070c 100%);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(135, 202, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135, 202, 255, .10) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .18;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.site-shell {
  width: min(1560px, 100%);
  margin-left: 0;
  padding: 18px 22px 40px 10px;
  position: relative;
}

.navbar {
  width: calc(100vw - 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px 14px 10px;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
}

.navbar::after,
.footer::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(135,202,255,.06), rgba(135,202,255,.34), rgba(135,202,255,.06));
  pointer-events: none;
}

.navbar::after {
  bottom: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .18em;
  position: relative;
}

.brand-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  padding: 7px;
  border: 1px solid rgba(219,170,72,.44);
  background:
    radial-gradient(circle at 50% 38%, rgba(0,229,255,.12), transparent 54%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.02)),
    rgba(8, 13, 20, .82);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 0 24px rgba(0,229,255,.18),
    0 0 20px rgba(219,170,72,.12);
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
}

.brand-text {
  white-space: nowrap;
  text-shadow: 0 0 16px rgba(0,229,255,.16);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-actions a {
  color: var(--muted);
  text-decoration: none;
}

.nav-actions a:hover {
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(620px, .95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: clamp(18px, 4vw, 72px);
  padding: 32px 0 70px;
}

.hero-copy {
  padding-left: 0;
  transform: translateX(-2px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.kicker::before {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--cyan);
}

h1 {
  margin: 0;
  max-width: 1040px;
  font-size: clamp(62px, 10.2vw, 162px);
  line-height: .78;
  letter-spacing: -.09em;
  text-transform: uppercase;
  text-indent: -.065em;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h1 span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(238, 247, 255, .78);
  margin-left: .28em;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  cursor: pointer;
  border: 0;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.btn.primary {
  color: #021018;
  background: var(--cyan);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 24px rgba(0, 229, 255, .20);
}

.btn.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
}

.radar-area {
  position: relative;
  min-height: 680px;
  transform: translateX(clamp(12px, 4vw, 70px));
}

.radar {
  position: absolute;
  right: 28px;
  top: 18px;
  width: min(600px, 44vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, .24);
  background:
    radial-gradient(circle, transparent 0 22%, rgba(0,229,255,.07) 22.3% 22.8%, transparent 23% 42%, rgba(0,229,255,.08) 42.3% 42.8%, transparent 43% 63%, rgba(0,229,255,.08) 63.3% 63.8%, transparent 64%),
    linear-gradient(rgba(0,229,255,.16), rgba(0,229,255,.16)) 50% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, rgba(0,229,255,.16), rgba(0,229,255,.16)) 0 50% / 100% 1px no-repeat,
    radial-gradient(circle at center, rgba(0,229,255,.16), transparent 4px),
    rgba(8,13,20,.12);
  box-shadow:
    inset 0 0 90px rgba(0,229,255,.07),
    0 0 80px rgba(0,229,255,.06);
  overflow: hidden;
  animation: breathe 5s ease-in-out infinite;
}

.radar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(0,229,255,.72) 0deg,
    rgba(10,44,255,.22) 18deg,
    rgba(122,92,255,.08) 42deg,
    transparent 74deg 360deg
  );
  animation: radarSweep 3.8s linear infinite;
  mix-blend-mode: screen;
}

.radar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(0,229,255,.95), rgba(10,44,255,.25), transparent);
  box-shadow: 0 0 18px rgba(0,229,255,.7);
  animation: radarNeedle 3.8s linear infinite;
}

.radar-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  z-index: 3;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.dot-a {
  left: 28%;
  top: 33%;
}

.dot-b {
  right: 26%;
  top: 58%;
  background: var(--violet);
  box-shadow: 0 0 20px var(--violet);
}

.dot-c {
  left: 52%;
  bottom: 22%;
  background: var(--blue);
  box-shadow: 0 0 20px var(--blue);
}

.control-panel {
  position: absolute;
  left: 6px;
  bottom: 42px;
  width: min(560px, 42vw);
  border: 1px solid var(--line);
  background: rgba(8, 13, 20, .74);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.panel-grid div {
  min-height: 150px;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.panel-grid div:last-child {
  border-right: 0;
}

.panel-grid small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}

.panel-grid strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(25px, 3.2vw, 42px);
  line-height: .94;
}

.panel-grid span {
  display: block;
  margin-top: 9px;
  color: var(--cyan);
  font-size: 13px;
}

.program-section {
  width: min(1260px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 76px 0 90px;
  position: relative;
}

.program-section::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  top: 0;
  bottom: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 10%, rgba(0,229,255,.10), transparent 26rem),
    radial-gradient(circle at 84% 90%, rgba(122,92,255,.10), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,0));
}

.program-layout {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 430px);
  gap: 22px;
  align-items: stretch;
}

.program-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
}

.program-card {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 22px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(135,202,255,.22);
  background:
    linear-gradient(180deg, rgba(5,7,12,.16) 0%, rgba(5,7,12,.48) 48%, rgba(5,7,12,.88) 100%),
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    radial-gradient(circle at 82% 16%, rgba(0,229,255,.09), transparent 10rem);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 18px 52px rgba(0,0,0,.22);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(5,7,12,.08) 0%, rgba(5,7,12,.18) 42%, rgba(5,7,12,.72) 100%),
    radial-gradient(circle at 80% 15%, rgba(0,229,255,.13), transparent 12rem);
  pointer-events: none;
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.12), transparent);
  transform: translateX(-120%);
  transition: transform .55s ease;
  pointer-events: none;
}

.program-card:hover::after {
  transform: translateX(120%);
}

.program-card:hover {
  border-color: rgba(0,229,255,.58);
  box-shadow: 0 0 38px rgba(0,229,255,.12), 0 18px 52px rgba(0,0,0,.28);
}

.kabin-card {
  background-image:
    linear-gradient(180deg, rgba(5,7,12,.18) 0%, rgba(5,7,12,.45) 48%, rgba(5,7,12,.90) 100%),
    linear-gradient(135deg, rgba(0,229,255,.08), rgba(255,255,255,.01)),
    url("../images/kabin-bg.jpg");
}

.dispecer-card {
  background-image:
    linear-gradient(180deg, rgba(5,7,12,.18) 0%, rgba(5,7,12,.45) 48%, rgba(5,7,12,.90) 100%),
    linear-gradient(135deg, rgba(0,229,255,.08), rgba(255,255,255,.01)),
    url("../images/dispecer-bg.jpg");
}

.bakim-card {
  background-image:
    linear-gradient(180deg, rgba(5,7,12,.18) 0%, rgba(5,7,12,.45) 48%, rgba(5,7,12,.90) 100%),
    linear-gradient(135deg, rgba(0,229,255,.08), rgba(255,255,255,.01)),
    url("../images/bakim-bg.jpg");
}

.pilotaj-card {
  background-image:
    linear-gradient(180deg, rgba(5,7,12,.18) 0%, rgba(5,7,12,.45) 48%, rgba(5,7,12,.90) 100%),
    linear-gradient(135deg, rgba(0,229,255,.08), rgba(255,255,255,.01)),
    url("../images/pilotaj-bg.jpg");
}

.program-card strong {
  position: relative;
  z-index: 2;
  font-size: clamp(24px, 3vw, 42px);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
}

.program-card em {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font-style: normal;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(0,0,0,.55);
}

.program-card span {
  position: relative;
  z-index: 2;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(0,0,0,.55);
}

.info-form {
  border: 1px solid rgba(135,202,255,.24);
  background: rgba(8, 13, 20, .72);
  backdrop-filter: blur(14px);
  padding: 18px;
  box-shadow: 0 22px 70px rgba(0,0,0,.34);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.form-head small {
  color: var(--cyan);
  font-weight: 800;
}

.info-form label {
  display: block;
  margin-bottom: 13px;
}

.info-form label > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.info-form input,
.info-form select,
.info-form textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(135,202,255,.22);
  outline: none;
  min-height: 46px;
  padding: 12px 13px;
  font: inherit;
  border-radius: 0;
}

.info-form textarea {
  resize: vertical;
}

.info-form input:focus,
.info-form select:focus,
.info-form textarea:focus {
  border-color: rgba(0,229,255,.72);
  box-shadow: 0 0 0 3px rgba(0,229,255,.09);
}

.info-form select {
  appearance: auto;
  background-color: #09111d;
  color: var(--text);
}

.info-form select option {
  background: #09111d;
  color: #eef7ff;
}

.info-form select option:disabled {
  color: #91a6ba;
}

.check-row {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.check-row input {
  width: 16px;
  min-height: auto;
  height: 16px;
  margin-top: 2px;
}

.check-row span {
  margin: 0 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 12px !important;
  line-height: 1.45;
}

.form-submit {
  width: 100%;
}

/* LOGO MARQUEE - ŞERİTSİZ, SADECE KUTULAR AKAR */
.logo-marquee {
  position: relative;
  width: 100%;
  margin-top: 26px;
  padding: 34px 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.logo-marquee::before,
.logo-marquee::after {
  display: none;
}

.logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: logoFlow 76s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}

.logo-slot {
  width: 250px;
  height: 118px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 39, .10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,245,251,.92)),
    radial-gradient(circle at 50% 0%, rgba(0,229,255,.07), transparent 70%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 12px 34px rgba(7, 23, 39, .08);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.logo-slot::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(7, 23, 39, .055);
  pointer-events: none;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
}

.logo-slot::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 13px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.30), rgba(219,170,72,.22), transparent);
  pointer-events: none;
}

.logo-slot img {
  max-width: 78%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .94;
  transition: opacity .25s ease, transform .25s ease;
}

.logo-slot img[src$=".png"] {
  color: transparent;
}

.logo-slot img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.logo-slot img:not([src]),
.logo-slot img[src=""] {
  display: none;
}

.logo-slot img.broken-logo {
  display: none;
}

.footer {
  width: min(1260px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 0;
  margin: 0 auto;
  color: rgba(238,247,255,.62);
  font-size: 13px;
  letter-spacing: .04em;
  position: relative;
}

.footer::before {
  top: 0;
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    opacity: .92;
  }

  50% {
    transform: scale(1.025);
    opacity: 1;
  }
}

@keyframes radarSweep {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes radarNeedle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes logoFlow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .program-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-shell {
    padding: 14px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  h1 {
    font-size: clamp(54px, 18vw, 110px);
  }

  h1 span {
    white-space: normal;
  }

  h1 span:nth-child(2) {
    margin-left: 0;
  }

  .radar-area {
    min-height: 620px;
    transform: none;
  }

  .radar {
    width: min(560px, 92vw);
    right: 0;
  }

  .control-panel {
    width: min(560px, 92vw);
  }
}

@media (max-width: 720px) {
  .program-list {
    grid-template-columns: 1fr;
  }

  .logo-group {
    gap: 18px;
    padding-right: 18px;
  }

  .logo-slot {
    width: 190px;
    height: 92px;
  }

  .logo-slot img {
    max-height: 54px;
  }
}

@media (max-width: 620px) {
  .brand-text {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .panel-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .panel-grid div:last-child {
    border-bottom: 0;
  }

  .footer {
    flex-direction: column;
  }
}
/* SAĞDAN ÇIKIP ZEUS CONTROL / RADAR TARAFINDA DOLANAN UÇAK */
.flying-plane {
  position: fixed;
  top: 54%;
  right: -130px;
  z-index: 2;
  width: 96px;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,.35))
    drop-shadow(0 0 14px rgba(0,229,255,.38));
  animation: planeMission 46s ease-in-out infinite;
}

.flying-plane img {
  display: block;
  width: 100%;
  height: auto;
}

/* Uçağın arkasındaki hafif iz */
.flying-plane::after {
  content: "";
  position: absolute;
  left: 82%;
  top: 52%;
  width: 86px;
  height: 3px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.42),
    rgba(0,229,255,.18),
    rgba(0,229,255,0)
  );
  filter: blur(2px);
  border-radius: 999px;
  opacity: .55;
  pointer-events: none;
}

@keyframes planeMission {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(.86);
    opacity: 0;
  }

  7% {
    transform: translate(-90px, 0) rotate(0deg) scale(.9);
    opacity: .86;
  }

  24% {
    transform: translate(-420px, 0) rotate(0deg) scale(.96);
    opacity: .92;
  }

  36% {
    transform: translate(-620px, 0) rotate(0deg) scale(1);
    opacity: .95;
  }

  48% {
    transform: translate(-735px, -88px) rotate(18deg) scale(.96);
    opacity: .94;
  }

  58% {
    transform: translate(-835px, -202px) rotate(28deg) scale(.92);
    opacity: .92;
  }

  66% {
    transform: translate(-930px, -165px) rotate(-18deg) scale(.9);
    opacity: .92;
  }

  74% {
    transform: translate(-875px, -75px) rotate(-92deg) scale(.9);
    opacity: .92;
  }

  82% {
    transform: translate(-790px, -140px) rotate(-185deg) scale(.9);
    opacity: .92;
  }

  90% {
    transform: translate(-855px, -215px) rotate(-340deg) scale(.92);
    opacity: .9;
  }

  96% {
    transform: translate(-300px, -40px) rotate(-180deg) scale(.88);
    opacity: .55;
  }

  100% {
    transform: translate(0, 0) rotate(-180deg) scale(.86);
    opacity: 0;
  }
}