/* =============================================
   NONSYNC.CO — COMING SOON
   Brand: Black bg / Orange #D1612A / White
   ============================================= */

/* --- Global Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  font-family: "Space Mono", monospace;
  background-color: #111111;
  overflow: hidden;
}

/* =============================================
   ARKA PLAN: Logodaki geometrik doku (CSS hex grid)
   ============================================= */
.bg-texture {
  position: fixed;
  inset: 0;
  z-index: 0;

  /* Logodaki "NS" tekrar eden soluk doku */
  background-image:
    radial-gradient(at 15% 15%, rgba(209, 97, 42, 0.07) 0px, transparent 55%),
    radial-gradient(at 85% 85%, rgba(209, 97, 42, 0.07) 0px, transparent 55%),
    radial-gradient(at 50% 0%, rgba(209, 97, 42, 0.04) 0px, transparent 40%);

  /* İnce nokta/grid doku */
  background-size:
    100% 100%,
    100% 100%,
    100% 100%;

  /* Soluk geometrik çizgi deseni */
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 75%
  );
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 75%
  );
}

/* Nokta doku overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

/* =============================================
   LAYOUT
   ============================================= */
.coming-soon-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;

  /* Giriş animasyonu */
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
}

/* =============================================
   LOGO
   ============================================= */
.logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.4rem;
}

/* Ambient turuncu glow halkası — logoyu çevreler, çok yumuşak */
.glow-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(209, 97, 42, 0.1) 0%,
    rgba(209, 97, 42, 0.04) 50%,
    transparent 72%
  );
  animation: ambientPulse 8s infinite ease-in-out;
  pointer-events: none;
}

.main-logo {
  position: relative;
  width: 180px;
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 0 40px rgba(209, 97, 42, 0.12),
    0 0 80px rgba(209, 97, 42, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.5);
  animation: logoReveal 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

/* =============================================
   DIVIDER (turuncu gradient çizgi)
   ============================================= */
.divider {
  width: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(209, 97, 42, 0.8) 30%,
    rgba(209, 97, 42, 1) 50%,
    rgba(209, 97, 42, 0.8) 70%,
    transparent 100%
  );
  margin-bottom: 1.6rem;
  animation: expandLine 1.2s ease-out forwards;
  animation-delay: 1.2s;
}

/* =============================================
   TİPOGRAFİ
   ============================================= */

/* "COMING SOON" — ana metin */
.label-text {
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: 1rem;

  opacity: 0;
  animation: fadeInSlide 1.2s ease-out forwards;
  animation-delay: 1.4s;
}

/* "nonsync.co" — domain */
.domain-text {
  font-weight: 400;
  font-size: 1.5rem;
  color: #d1612a;
  letter-spacing: 0.12em;

  opacity: 0;
  animation: fadeInSlide 1.2s ease-out forwards;
  animation-delay: 1.7s;
}

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */

/* Sayfa giriş efekti */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo ayrı reveal: scale + fade */
@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Divider genişleme */
@keyframes expandLine {
  to {
    width: 220px;
  }
}

/* Metin kayarak belirme */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ambient glow nabzı — çok yumuşak, minimal hareket */
@keyframes ambientPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

/* =============================================
   MOBİL UYUM
   ============================================= */
@media (max-width: 768px) {
  .main-logo {
    width: 140px;
    border-radius: 16px;
  }
  .glow-ring {
    width: 240px;
    height: 240px;
  }
  .domain-text {
    font-size: 1.1rem;
  }
  .divider {
    animation-delay: 1.2s;
  }
}

.legal-page {
  overflow-y: auto;
  padding: 3rem 1rem;
  position: relative; /* Doku katmanının üstünde kalması için */
  z-index: 1;
}

/* Mobilde scroll barı biraz daha ince ve şık yapalım */
.legal-page::-webkit-scrollbar {
  width: 8px;
}
.legal-page::-webkit-scrollbar-track {
  background: rgba(17, 17, 17, 0.8);
}
.legal-page::-webkit-scrollbar-thumb {
  background: rgba(209, 97, 42, 0.5);
  border-radius: 4px;
}

/* İçerik Kutusu */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(
    10,
    10,
    10,
    0.7
  ); /* Transparan, dokuyu hafif gösteren siyah */
  backdrop-filter: blur(
    10px
  ); /* Arka planı hafif bulanıklaştırır (cam efekti) */
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05); /* Çok hafif bir sınır çizgisi */
  color: #e0e0e0;
  line-height: 1.8;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

  /* İçerik giriş animasyonu */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

/* Tipografi detayları */
.legal-content h1 {
  color: #d1612a; /* Turuncu marka rengin */
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}

.legal-content .last-updated {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
  display: block;
}

.legal-content h2 {
  color: #ffffff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(209, 97, 42, 0.2); /* Başlıkların altına ince turuncu çizgi */
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  color: #ffffff;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 1.2rem;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif; /* Okunabilirlik için Sans-Serif font */
  font-size: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.4rem;
}

.legal-content strong {
  color: #ffffff;
  font-weight: 600;
}

/* Listelerdeki onay ikonları için stil */
.legal-content li:contains("✅") {
  list-style-type: none;
  margin-left: -1.5rem;
}

/* Geri Dön Butonu */
.back-btn {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 2rem;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.back-btn:hover {
  color: #d1612a;
  border-bottom: 1px solid #d1612a;
}

.back-btn svg {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 1.5rem;
    border-radius: 12px;
  }
  .legal-content h1 {
    font-size: 1.8rem;
  }
}

/* =============================================
   İLETİŞİM FORMU (Contact Us)
   ============================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-family: "Space Mono", monospace;
}

.form-group input,
.form-group textarea {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Odaklanma (Tıklama) Efekti */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d1612a;
  box-shadow: 0 0 15px rgba(209, 97, 42, 0.15);
  background: rgba(0, 0, 0, 0.7);
}

/* Gönder Butonu */
.submit-btn {
  background: #d1612a;
  color: #111111;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: #e36a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(209, 97, 42, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}
