:root {
  --bg: #050506;
  --panel: rgba(10, 10, 12, 0.72);
  --border: rgba(255, 255, 255, 0.095);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f7;
  --text-soft: rgba(245, 245, 247, 0.72);
  --muted: rgba(245, 245, 247, 0.52);
  --blue: #2f7dff;
  --red: #ff2d45;
  --ios-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--ios-font);
  background:
    radial-gradient(circle at 10% 14%, rgba(47,125,255,.14), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255,45,69,.16), transparent 30%),
    linear-gradient(180deg, #07080b 0%, #050506 42%, #050506 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
}

/* CURSOR GLOW */

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255,45,69,.14) 0%,
    rgba(47,125,255,.12) 35%,
    transparent 72%
  );
  filter: blur(55px);
  opacity: .9;
  transition: opacity .25s ease;
  mix-blend-mode: screen;
}

body.cursor-hover .cursor-glow {
  opacity: 1;
  background: radial-gradient(
    circle,
    rgba(255,45,69,.24) 0%,
    rgba(47,125,255,.18) 35%,
    transparent 72%
  );
}
.main-content {
  min-height: 82vh;
}

.hero-section {
  position: relative;
  min-height: 82vh;
  padding: 150px 28px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
}

.hero-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 6vw, 78px);
  line-height: .96;
  letter-spacing: -.07em;
}

.hero-content p {
  max-width: 610px;
  margin: 24px auto 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-btn {
  height: 44px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #326dff, #ff2d45);
}

.hero-btn.ghost {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
}
@media (max-width: 860px) {
  .cursor-glow { display: none; }
  .hero-section { min-height: auto; padding: 132px 16px 58px; }
  .hero-content h1 { font-size: clamp(38px, 12vw, 58px); }
  .hero-content p { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 360px; margin-left: auto; margin-right: auto; }
  .hero-btn { justify-content: center; min-height: 46px; }
}

@media (max-width: 520px) {
  .hero-section { padding: 116px 10px 46px; }
  .hero-badge { font-size: 10px; letter-spacing: .08em; }
}

body.nav-locked { overflow: hidden; }

/* DOMAIN SAFE LOGO PATCH - scroll ve orijinal navbar stillerine dokunmaz */
.site-header .navbar-logo {
  flex-shrink: 0;
}
.site-header .navbar-logo img {
  width: 205px !important;
  max-width: 205px !important;
  height: auto !important;
  max-height: 52px !important;
  object-fit: contain !important;
  display: block !important;
}
@media (max-width: 1180px) {
  .site-header .navbar-logo img {
    width: 185px !important;
    max-width: 185px !important;
  }
}
@media (max-width: 980px) {
  .site-header .navbar-logo img {
    width: 178px !important;
    max-width: 178px !important;
  }
}
@media (max-width: 520px) {
  .site-header .navbar-logo img {
    width: 154px !important;
    max-width: 154px !important;
  }
}
