:root {
  color-scheme: dark;
  --gs-bg: #030510;
  --gs-panel: #070914;
  --gs-card: rgba(255,255,255,.045);
  --gs-line: rgba(255,255,255,.13);
  --gs-soft: rgba(255,255,255,.68);
  --gs-muted: rgba(255,255,255,.48);
  --gs-ink: #f8fbff;
  --gs-cyan: #08d9ff;
  --gs-blue: #1677ff;
  --gs-pink: #ff2ebd;
  --gs-orange: #ff8a1c;
}

* { box-sizing: border-box; }
html { background: var(--gs-bg); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--gs-bg);
  color: var(--gs-ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
::selection { background: var(--gs-cyan); color: #02040b; }
a:focus-visible, button:focus-visible,
.field:focus-visible, .field-full:focus-visible {
  outline: 2px solid var(--gs-cyan);
  outline-offset: 3px;
}
.btn, .faq-button, .site-lang button { cursor: pointer; }

@keyframes gs-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gs-light-run {
  from { transform: translate3d(8%,0,0) skewY(-2deg); }
  to { transform: translate3d(-8%,0,0) skewY(-2deg); }
}
@keyframes gs-screen-flow {
  from { transform: translate3d(-14%,0,0); }
  to { transform: translate3d(14%,0,0); }
}
@keyframes gs-scan {
  from { transform: translate3d(-120%,0,0); }
  to { transform: translate3d(120%,0,0); }
}

.gs-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(8,217,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    var(--gs-bg);
  background-size: 86px 86px, 86px 86px, 100% 100%;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(3,5,16,.82);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.site-nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px clamp(16px,3vw,42px);
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.site-logo img {
  width: clamp(154px, 13vw, 214px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(8,217,255,.22));
}
.site-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(10px,1.8vw,28px);
}
.site-links a {
  text-decoration: none;
  color: rgba(255,255,255,.66);
  font: 800 12px/1 "Inter Tight", sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-links a:hover,
.site-links a.active { color: #fff; }
.site-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-lang {
  display: flex;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 3px;
  gap: 3px;
}
.site-lang button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font: 800 12px/1 "Inter Tight", sans-serif;
  letter-spacing: .06em;
}
.site-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  text-decoration: none;
  font: 800 12px/1 "Inter Tight", sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.site-cta {
  padding: 0 18px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.26);
}
.site-cta:hover,
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  padding: 0 24px;
  color: #fff;
  border: 0;
  background: linear-gradient(100deg, var(--gs-cyan), var(--gs-pink) 58%, var(--gs-orange));
  box-shadow: 0 10px 30px rgba(255,46,189,.18);
}
.btn-secondary {
  padding: 0 24px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
}

.page-hero {
  position: relative;
  min-height: min(760px, 82vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--gs-line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,5,16,.96) 0%, rgba(3,5,16,.76) 36%, rgba(3,5,16,.42) 70%, rgba(3,5,16,.88) 100%),
    linear-gradient(180deg, rgba(3,5,16,.18), rgba(3,5,16,.94)),
    url("./assets/goscreen-hero-pc-1600.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: -18vw;
  right: -18vw;
  bottom: 8vh;
  height: 24vh;
  background:
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(8,217,255,.5) 45px 128px, transparent 130px 230px),
    repeating-linear-gradient(90deg, transparent 0 82px, rgba(255,46,189,.45) 83px 176px, transparent 178px 310px),
    repeating-linear-gradient(90deg, transparent 0 120px, rgba(255,138,28,.36) 121px 210px, transparent 212px 360px);
  filter: blur(10px) saturate(1.15);
  opacity: .5;
  pointer-events: none;
  animation: gs-light-run 10s linear infinite;
}
.hero-inner,
.section-inner,
.site-footer-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding-inline: clamp(16px,3vw,42px);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: clamp(70px,10vh,120px);
  animation: gs-fade-up .75s cubic-bezier(.2,.7,.2,1) both;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #bfeeff;
  font: 800 12px/1 "Inter Tight", sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--gs-cyan), var(--gs-pink));
}
.page-title {
  margin: 0;
  max-width: 1000px;
  font: 800 clamp(54px,9vw,132px)/.86 "Inter Tight", sans-serif;
  letter-spacing: -.075em;
  text-wrap: balance;
}
.page-title span,
.gradient-text {
  background: linear-gradient(92deg, #fff 0%, #c9f4ff 17%, #10d9ff 42%, #ff31bd 70%, #ff8a1c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy {
  margin: 26px 0 0;
  max-width: 720px;
  color: rgba(239,247,255,.78);
  font: 500 clamp(16px,1.45vw,20px)/1.62 "Space Grotesk", sans-serif;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.section-inner { padding-block: clamp(72px,9vw,124px); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.section-eyebrow {
  margin: 0 0 12px;
  color: #99f1ff;
  font: 800 12px/1 "Inter Tight", sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  max-width: 820px;
  font: 800 clamp(34px,5vw,72px)/.92 "Inter Tight", sans-serif;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.section-copy {
  margin: 0;
  max-width: 520px;
  color: var(--gs-soft);
  font: 500 15px/1.7 "Space Grotesk", sans-serif;
  text-wrap: pretty;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr);
  gap: clamp(28px,6vw,86px);
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(16px,2vw,28px);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(18px,2.4vw,34px);
}
.info-card,
.media-card,
.faq-item,
.contact-card {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.info-card,
.contact-card { padding: clamp(22px,2.4vw,34px); }
.card-num {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.48);
  font: 800 11px/1 "Inter Tight", sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.card-title {
  margin: 0 0 12px;
  color: #fff;
  font: 800 clamp(24px,2.2vw,36px)/.98 "Inter Tight", sans-serif;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.card-text {
  margin: 0;
  color: var(--gs-soft);
  font: 500 15px/1.62 "Space Grotesk", sans-serif;
  text-wrap: pretty;
}
.screen-loop,
.media-frame {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(8,217,255,.2), rgba(255,46,189,.2) 48%, rgba(255,138,28,.22)),
    linear-gradient(180deg, #12172a, #070912);
  contain: paint;
}
.screen-loop::before,
.media-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: -18%;
  width: 136%;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(255,255,255,.34) 18%, transparent 25%),
    repeating-linear-gradient(90deg, rgba(8,217,255,.34) 0 10px, transparent 10px 23px, rgba(255,46,189,.3) 23px 36px, transparent 36px 58px, rgba(255,138,28,.22) 58px 70px, transparent 70px 96px);
  animation: gs-screen-flow 8s ease-in-out infinite alternate;
  will-change: transform;
}
.screen-loop::after,
.media-frame::after {
  content: attr(data-label);
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: rgba(255,255,255,.8);
  font: 800 clamp(40px,5vw,78px)/.8 "Inter Tight", sans-serif;
  letter-spacing: -.08em;
  opacity: .38;
}
.media-card .body { padding: 22px; position: relative; }
.media-card .body::before {
  content: "";
  position: absolute;
  left: -28%;
  top: 0;
  width: 54%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8,217,255,.7), rgba(255,46,189,.6), transparent);
  animation: gs-scan 5.6s linear infinite;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.12);
}
.stat {
  padding: 26px;
  background: rgba(3,5,16,.72);
}
.stat strong {
  display: block;
  font: 800 clamp(32px,4vw,58px)/.86 "Inter Tight", sans-serif;
  letter-spacing: -.07em;
  background: linear-gradient(92deg, #16dfff, #ff2ebd 58%, #ff8a1c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.62);
  font: 800 11px/1.2 "Inter Tight", sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.timeline {
  display: grid;
  gap: 14px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 72px minmax(0,1fr);
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}
.timeline-item b {
  color: #99f1ff;
  font: 800 18px/1 "Inter Tight", sans-serif;
}
.cta-band {
  background: linear-gradient(125deg, #f8fbff 0%, #dff6ff 48%, #ffe4f7 100%);
  color: #030510;
}
.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-title {
  margin: 0;
  max-width: 820px;
  font: 800 clamp(40px,6vw,92px)/.86 "Inter Tight", sans-serif;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.cta-band .btn-primary {
  min-height: 92px;
  min-width: min(320px, 100%);
  color: #fff;
  background: #030510;
  font-size: clamp(30px,3.4vw,56px);
  letter-spacing: -.06em;
  text-transform: lowercase;
}
.faq-list {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-button {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  text-align: left;
}
.faq-button span:first-child {
  font: 800 clamp(22px,2.4vw,34px)/1 "Inter Tight", sans-serif;
  letter-spacing: -.035em;
}
.faq-mark {
  color: #99f1ff;
  font: 800 28px/1 "Inter Tight", sans-serif;
}
.faq-answer {
  padding: 0 26px 28px;
  color: var(--gs-soft);
  font: 500 15px/1.72 "Space Grotesk", sans-serif;
}
.form-grid {
  display: grid;
  gap: 14px;
}
.field,
.field-full {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  color: #fff;
  font: 600 15px/1.3 "Space Grotesk", sans-serif;
  padding: 17px 18px;
}
.field::placeholder,
.field-full::placeholder { color: rgba(255,255,255,.38); }
.field-full { min-height: 150px; resize: vertical; }
.site-footer {
  background: #02040b;
  border-top: 1px solid rgba(255,255,255,.09);
}
.site-footer-inner {
  padding-block: 48px 26px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(160px,1fr));
  gap: 34px;
  margin-bottom: 38px;
}
.footer-logo {
  width: 184px;
  display: block;
  margin-bottom: 18px;
}
.footer-title {
  margin: 0 0 14px;
  color: rgba(255,255,255,.42);
  font: 800 11px/1 "Inter Tight", sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-text,
.footer-links a,
.footer-bottom {
  color: rgba(255,255,255,.62);
  font: 500 14px/1.7 "Space Grotesk", sans-serif;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a {
  text-decoration: none;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-kvkk {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: color .2s, border-color .2s;
}
.footer-kvkk:hover {
  color: #9ff1ff;
  border-color: #08d9ff;
}

@media (max-width: 1024px) {
  .site-nav { align-items: flex-start; flex-wrap: wrap; }
  .site-links { order: 3; width: 100%; margin-left: 0; justify-content: space-between; gap: 10px; overflow-x: auto; padding-top: 4px; }
  .site-actions { margin-left: auto; }
  .split,
  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-copy { margin-top: 18px; }
  .stat-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cta-band .section-inner { display: grid; }
  .footer-top { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .site-nav { padding: 14px 16px; gap: 14px; }
  .site-logo img { width: 138px; }
  .site-links a { font-size: 11px; white-space: nowrap; }
  .site-cta { display: none; }
  .page-hero { min-height: 680px; }
  /* telefonda dikey kurgulanmis fotograf + hafif karartma */
  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(3,5,16,.5) 0%, rgba(3,5,16,.24) 40%, rgba(3,5,16,.16) 68%, rgba(3,5,16,.42) 100%),
      linear-gradient(180deg, rgba(3,5,16,.3), rgba(3,5,16,.95)),
      url("./assets/goscreen-hero-mobil-940.jpg") center / cover no-repeat;
  }
  .hero-inner { padding-top: 96px; }
  .page-title { font-size: clamp(48px,15vw,78px); }
  .hero-copy { font-size: 15px; }
  .section-inner { padding-block: 62px; }
  .stat-row,
  .footer-top { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .cta-band .btn-primary { min-height: 76px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
