/* ════════════════════════════════════════════════════════════════════
   Time to Music — tanıtım sitesi
   Marka: koyu lacivert zemin + cyan aksan (uygulama temasıyla birebir)
   ════════════════════════════════════════════════════════════════════ */

:root {
  --navy:        #080E1C;
  --navy-surf:   #111827;
  --navy-high:   #1A2540;
  --navy-border: #253350;
  --cyan:        #00C8D4;
  --cyan-dim:    #0097A7;
  --purple:      #6C63FF;
  --coral:       #FF6B6B;
  --white:       #F0F4FF;
  --grey:        #8B9AB0;
  --grey-dim:    #4A5A72;
  --radius:      20px;
  --maxw:        1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { scroll-margin-top: 80px; }

/* ── Arka plan: nokta dokusu + süzülen ışımalar ──────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(240, 244, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 85% 60% at 50% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 85% 60% at 50% 0%, #000 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}
.glow-1 { width: 620px; height: 620px; top: -200px; right: -140px; background: rgba(0, 200, 212, 0.16); }
.glow-2 { width: 520px; height: 520px; top: 38%; left: -220px; background: rgba(108, 99, 255, 0.13); animation-duration: 24s; animation-delay: -8s; }
.glow-3 { width: 440px; height: 440px; bottom: -160px; right: 8%; background: rgba(0, 151, 167, 0.12); animation-duration: 20s; animation-delay: -4s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, -40px) scale(1.18); }
}

main, nav, footer { position: relative; z-index: 1; }

/* ── Nav ─────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(8, 14, 28, 0.72);
  border-bottom: 1px solid rgba(37, 51, 80, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(8, 14, 28, 0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  letter-spacing: -0.2px;
}
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav-links a {
  color: var(--grey);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--cyan);
  color: #001A1C !important;
  font-weight: 700 !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px !important;
  transition: transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 200, 212, 0.35);
  color: #001A1C !important;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 90px 0 40px;
}

/* sayfa açılışında sıralı giriş */
.a1, .a2, .a3, .a4, .a5 {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.a1 { animation-delay: 0.05s; }
.a2 { animation-delay: 0.15s; }
.a3 { animation-delay: 0.25s; }
.a4 { animation-delay: 0.38s; }
.a5 { animation-delay: 0.5s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 212, 0.10);
  border: 1px solid rgba(0, 200, 212, 0.30);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,200,212,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0,200,212,0); }
}
.hero h1 {
  font-size: clamp(40px, 5.8vw, 68px);
  font-weight: 800;
  letter-spacing: -2.2px;
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--cyan), var(--purple), var(--cyan));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 5s linear infinite;
}
@keyframes sheen {
  to { background-position: 200% center; }
}
.hero p.lead {
  color: var(--grey);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: #001A1C;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.25s;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  animation: shine 3.6s ease-in-out infinite;
}
@keyframes shine {
  0%, 60% { left: -80%; }
  100% { left: 130%; }
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 200, 212, 0.40);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--navy-border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--cyan); background: rgba(0, 200, 212, 0.06); }
.hero-note { color: var(--grey-dim); font-size: 13px; margin-top: 18px; }

/* ── Telefon mockup + süzülen kartlar ───────────────────────────── */
.phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 1400px;
  position: relative;
}
.phone {
  width: 300px;
  height: 612px;
  background: #05080F;
  border: 3px solid #1E2A45;
  border-radius: 46px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(0, 200, 212, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 110px rgba(0, 200, 212, 0.09);
  transform: rotateY(-9deg) rotateX(2deg);
  transition: transform 0.4s ease;
  will-change: transform;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0A1322 0%, var(--navy) 100%);
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 18px 16px;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #05080F;
  border-radius: 999px;
}
.ps-header {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.ps-title { font-size: 16px; font-weight: 700; }
.ps-sub { font-size: 10.5px; color: var(--grey); }
.match-card {
  background: linear-gradient(160deg, var(--navy-high) 0%, var(--navy-surf) 100%);
  border: 1px solid var(--navy-border);
  border-radius: 22px;
  padding: 18px 16px;
  margin-bottom: 12px;
}
.mc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.mc-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C63FF, #9C4DCC);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.mc-name { font-weight: 700; font-size: 14.5px; }
.mc-loc { font-size: 11px; color: var(--grey); }
.mc-score {
  margin-left: auto;
  background: rgba(0, 200, 212, 0.14);
  border: 1px solid rgba(0, 200, 212, 0.35);
  color: var(--cyan);
  font-weight: 800;
  font-size: 13px;
  padding: 5px 11px;
  border-radius: 999px;
}
.mc-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.mc-chip {
  background: var(--navy-high);
  border: 1px solid var(--navy-border);
  color: var(--grey);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.mc-chip.hot { color: var(--cyan); border-color: rgba(0, 200, 212, 0.35); background: rgba(0, 200, 212, 0.08); }
.now-playing {
  margin-top: auto;
  background: rgba(0, 200, 212, 0.07);
  border: 1px solid rgba(0, 200, 212, 0.25);
  border-radius: 18px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.np-art {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  flex-shrink: 0;
}
.np-track { font-size: 12px; font-weight: 700; }
.np-artist { font-size: 10px; color: var(--grey); }
.eq { display: flex; gap: 2.5px; align-items: flex-end; height: 18px; margin-left: auto; }
.eq span {
  width: 3px;
  background: var(--cyan);
  border-radius: 2px;
  animation: eq 1s ease-in-out infinite;
}
.eq span:nth-child(1) { height: 60%; animation-delay: 0s; }
.eq span:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.eq span:nth-child(3) { height: 45%; animation-delay: 0.4s; }
.eq span:nth-child(4) { height: 80%; animation-delay: 0.1s; }
@keyframes eq {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* telefonun etrafında süzülen bilgi kartları */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 200, 212, 0.3);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
  z-index: 2;
  animation: floaty 5s ease-in-out infinite;
}
.float-chip .eq { height: 14px; margin-left: 2px; }
.fc-a { top: 9%; right: -4%; animation-delay: 0s; }
.fc-b { bottom: 26%; left: -10%; animation-delay: -1.8s; border-color: rgba(108, 99, 255, 0.45); }
.fc-c { bottom: 6%; right: -2%; animation-delay: -3.2s; border-color: rgba(255, 107, 107, 0.4); }
.fc-b .spark { color: var(--purple); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

/* ── Ses dalgası şeridi ──────────────────────────────────────────── */
.soundwave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 64px;
  overflow: hidden;
  margin: 8px 0 0;
}
.soundwave i {
  display: block;
  width: 4px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--purple));
  opacity: 0.35;
  animation: wave 1.6s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

/* ── Tür marquee'si ──────────────────────────────────────────────── */
.marquee-zone { padding: 36px 0 8px; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  padding: 7px 0;
}
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scrollL 36s linear infinite;
}
.marquee.rev .marquee-track { animation-name: scrollR; animation-duration: 42s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollL { to { transform: translateX(-50%); } }
@keyframes scrollR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.genre-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--navy-border);
  color: var(--grey);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.genre-chip:hover { color: var(--cyan); border-color: rgba(0, 200, 212, 0.45); }
.genre-chip .note { color: var(--cyan); font-size: 12px; }

/* ── İstatistik bandı ────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 56px 0 8px;
}
.stat {
  text-align: center;
  background: linear-gradient(160deg, rgba(26, 37, 64, 0.4), rgba(17, 24, 39, 0.7));
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 30px 16px 26px;
}
.stat-num {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(120deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat-label { color: var(--grey); font-size: 13.5px; font-weight: 500; margin-top: 8px; }

/* ── Bölümler ────────────────────────────────────────────────────── */
section { padding: 84px 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .kicker {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.12;
  margin-bottom: 16px;
}
.section-head p { color: var(--grey); font-size: 16.5px; }

/* ── Bento özellik kartları ──────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.bento-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(26, 37, 64, 0.5), rgba(17, 24, 39, 0.85));
  border: 1px solid var(--navy-border);
  border-radius: 24px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 212, 0.45);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}
.bento-card.spot::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 200, 212, 0.10), transparent 65%);
  pointer-events: none;
}
.bento-card.spot:hover::before { opacity: 1; }
.b-lg { grid-column: span 4; }
.b-sm { grid-column: span 2; }
.bento-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; }
.bento-card > p { color: var(--grey); font-size: 14.5px; max-width: 440px; }
.bc-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(0, 200, 212, 0.10);
  border: 1px solid rgba(0, 200, 212, 0.25);
  flex-shrink: 0;
}
.bc-icon svg { width: 23px; height: 23px; stroke: var(--cyan); }
.bc-visual { margin-top: 24px; }

/* büyük kart: eşleşme görseli + uyum halkası */
.match-demo {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.match-demo .match-card { margin: 0; flex: 1; min-width: 230px; }
.ring-wrap { position: relative; width: 110px; height: 110px; flex-shrink: 0; margin: 0 auto; }
.ring { width: 110px; height: 110px; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 7; stroke-linecap: round; }
.ring .ring-bg { stroke: var(--navy-high); }
.ring .ring-fg {
  stroke: url(#ringGrad);
  stroke-dasharray: 0 100;
  transition: stroke-dasharray 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.visible .ring .ring-fg, .ring.go .ring-fg { stroke-dasharray: 87 100; }
.ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring-label b { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.ring-label span { font-size: 10px; color: var(--grey); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* canlı kartı: büyük ekolayzer */
.live-demo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 88px;
  margin-top: auto;
  padding-top: 20px;
}
.live-demo i {
  display: block;
  width: 9px;
  border-radius: 5px;
  background: linear-gradient(180deg, var(--cyan), rgba(0, 200, 212, 0.25));
  animation: eq 1.1s ease-in-out infinite;
  transform-origin: bottom;
}
.live-demo i:nth-child(1) { height: 42%; animation-delay: 0s; }
.live-demo i:nth-child(2) { height: 88%; animation-delay: 0.15s; }
.live-demo i:nth-child(3) { height: 60%; animation-delay: 0.3s; }
.live-demo i:nth-child(4) { height: 100%; animation-delay: 0.07s; }
.live-demo i:nth-child(5) { height: 50%; animation-delay: 0.42s; }
.live-demo i:nth-child(6) { height: 76%; animation-delay: 0.22s; }
.live-demo i:nth-child(7) { height: 36%; animation-delay: 0.55s; }

/* keşfet kartı: kaybolan şarkı satırları */
.discover-demo { display: flex; flex-direction: column; gap: 9px; margin-top: auto; padding-top: 20px; }
.dd-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 37, 64, 0.55);
  border: 1px solid var(--navy-border);
  border-radius: 13px;
  padding: 9px 12px;
  animation: ghost 6s ease-in-out infinite;
}
.dd-row:nth-child(2) { animation-delay: -2s; }
.dd-row:nth-child(3) { animation-delay: -4s; }
@keyframes ghost {
  0%, 55%, 100% { opacity: 1; transform: translateX(0); }
  62%, 78% { opacity: 0.18; transform: translateX(7px); }
  88% { opacity: 1; transform: translateX(0); }
}
.dd-art { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; }
.dd-1 .dd-art { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.dd-2 .dd-art { background: linear-gradient(135deg, #6C63FF, #9C4DCC); }
.dd-3 .dd-art { background: linear-gradient(135deg, #00C8D4, #2E7D9A); }
.dd-name { font-size: 11.5px; font-weight: 700; line-height: 1.3; }
.dd-sub { font-size: 9.5px; color: var(--grey); }
.dd-time { margin-left: auto; font-size: 9.5px; color: var(--grey-dim); font-weight: 600; white-space: nowrap; }

/* anonim kartı: bulanık avatar */
.anon-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 20px;
}
.anon-face {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #9C4DCC);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  animation: unblur 7s ease-in-out infinite;
  position: relative;
}
@keyframes unblur {
  0%, 42%, 100% { filter: blur(0px); }
  55%, 85% { filter: blur(9px); }
}
.anon-lock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 200, 212, 0.1);
  border: 1px solid rgba(0, 200, 212, 0.3);
  color: var(--cyan);
  font-size: 11.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
}
.anon-lock svg { width: 13px; height: 13px; stroke: var(--cyan); }

/* hikaye kartı: parlamalı mini kart */
.story-demo { display: flex; justify-content: center; margin-top: auto; padding-top: 20px; }
.story-card {
  position: relative;
  overflow: hidden;
  width: 150px;
  border-radius: 18px;
  background: linear-gradient(155deg, #1A2540 0%, #0E1830 55%, #14304a 100%);
  border: 1px solid rgba(0, 200, 212, 0.3);
  padding: 16px 14px;
  transform: rotate(-4deg);
  transition: transform 0.3s;
}
.bento-card:hover .story-card { transform: rotate(0deg) scale(1.04); }
.story-card::after {
  content: "";
  position: absolute;
  top: 0; left: -90%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(240, 244, 255, 0.14), transparent);
  transform: skewX(-18deg);
  animation: shine 4.2s ease-in-out infinite;
}
.story-card img { width: 30px; height: 30px; border-radius: 8px; margin-bottom: 10px; }
.story-k { font-size: 8.5px; color: var(--grey); font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; }
.story-v { font-size: 12.5px; font-weight: 800; margin-bottom: 8px; }

/* ── Birlikte Dinle vitrini ──────────────────────────────────────── */
.listen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.listen-copy .kicker {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.listen-copy h2 {
  font-size: clamp(30px, 3.8vw, 42px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.12;
  margin-bottom: 18px;
}
.listen-copy > p { color: var(--grey); font-size: 16.5px; margin-bottom: 26px; }
.listen-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.listen-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--grey); font-size: 15px; }
.listen-points li b { color: var(--white); font-weight: 600; }
.lp-dot {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: rgba(0, 200, 212, 0.12);
  border: 1px solid rgba(0, 200, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-dot svg { width: 12px; height: 12px; stroke: var(--cyan); stroke-width: 3; }

.room-card {
  background: linear-gradient(165deg, rgba(26, 37, 64, 0.7), rgba(13, 19, 33, 0.95));
  border: 1px solid rgba(0, 200, 212, 0.25);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), 0 0 90px rgba(0, 200, 212, 0.06);
}
.room-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.room-avatars { display: flex; }
.room-avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--navy-surf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  position: relative;
}
.room-avatars span:first-child { background: linear-gradient(135deg, #6C63FF, #9C4DCC); }
.room-avatars span:last-child { background: linear-gradient(135deg, #FF6B6B, #FF8E53); margin-left: -10px; }
.room-avatars span::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(0, 200, 212, 0.5);
  animation: ping 2.4s ease-out infinite;
}
.room-avatars span:last-child::after { animation-delay: -1.2s; }
@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  80%, 100% { transform: scale(1.5); opacity: 0; }
}
.room-title { font-weight: 700; font-size: 15px; }
.room-sub { font-size: 11px; color: var(--grey); }
.live-pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.4);
  color: var(--coral);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 999px;
}
.live-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); animation: pulse 1.6s infinite; }

.room-now { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.vinyl {
  width: 86px; height: 86px;
  border-radius: 50%;
  flex-shrink: 0;
  background:
    radial-gradient(circle at center, #1A2540 0 17%, transparent 17.5%),
    repeating-radial-gradient(circle at center, #0B1020 0 2px, #131B2E 2px 4px);
  border: 1px solid var(--navy-border);
  position: relative;
  animation: spin 5s linear infinite;
}
.vinyl::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 26px; height: 26px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}
@keyframes spin { to { transform: rotate(360deg); } }
.room-track { flex: 1; min-width: 0; }
.rt-name { font-weight: 800; font-size: 16px; letter-spacing: -0.2px; }
.rt-artist { font-size: 12.5px; color: var(--grey); margin-bottom: 10px; }
.room-progress {
  height: 5px;
  background: var(--navy-high);
  border-radius: 99px;
  overflow: hidden;
}
.room-progress span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  animation: progress 14s linear infinite;
}
@keyframes progress {
  from { width: 6%; }
  to { width: 96%; }
}
.rt-times { display: flex; justify-content: space-between; font-size: 10px; color: var(--grey-dim); margin-top: 6px; font-weight: 600; }

.room-queue-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey-dim);
  margin-bottom: 10px;
}
.rq-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 13px;
  background: rgba(26, 37, 64, 0.45);
  border: 1px solid rgba(37, 51, 80, 0.7);
  margin-bottom: 8px;
}
.rq-art { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; }
.rq-1 .rq-art { background: linear-gradient(135deg, #00C8D4, #2E7D9A); }
.rq-2 .rq-art { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.rq-3 .rq-art { background: linear-gradient(135deg, #6C63FF, #9C4DCC); }
.rq-name { font-size: 12px; font-weight: 700; line-height: 1.3; }
.rq-by { font-size: 9.5px; color: var(--grey); }
.rq-tag {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(0, 200, 212, 0.1);
  border: 1px solid rgba(0, 200, 212, 0.25);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── Nasıl çalışır: zaman çizgisi ────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.steps.visible::before { transform: scaleX(1); }
.step {
  position: relative;
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(0, 200, 212, 0.4); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #001A1C;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0, 200, 212, 0.25);
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--grey); font-size: 14.5px; }

/* ── Gizlilik vurgusu ────────────────────────────────────────────── */
.privacy-banner {
  background: linear-gradient(135deg, rgba(0, 200, 212, 0.08), rgba(108, 99, 255, 0.08));
  border: 1px solid rgba(0, 200, 212, 0.25);
  border-radius: 28px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.privacy-banner::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0, 200, 212, 0.07);
  filter: blur(70px);
  top: -100px; right: -60px;
}
.pb-icon {
  width: 84px; height: 84px;
  border-radius: 24px;
  background: rgba(0, 200, 212, 0.12);
  border: 1px solid rgba(0, 200, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pb-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  border: 1px solid rgba(0, 200, 212, 0.5);
  animation: ping 3s ease-out infinite;
}
.pb-icon svg { width: 42px; height: 42px; stroke: var(--cyan); }
.privacy-banner h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.privacy-banner p { color: var(--grey); font-size: 15.5px; max-width: 640px; }

/* ── SSS ─────────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
details[open] { border-color: rgba(0, 200, 212, 0.35); }
summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--cyan);
  transition: transform 0.25s;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }
details .faq-body { padding: 0 22px 20px; color: var(--grey); font-size: 14.5px; }

/* ── Son CTA ─────────────────────────────────────────────────────── */
.final-cta {
  text-align: center;
  padding: 100px 24px 90px;
  background:
    radial-gradient(ellipse 60% 90% at 50% 100%, rgba(0, 200, 212, 0.14), transparent),
    radial-gradient(ellipse 40% 60% at 50% 0%, rgba(108, 99, 255, 0.08), transparent);
  border-radius: 36px;
  border: 1px solid var(--navy-border);
  position: relative;
  overflow: hidden;
}
.final-cta .soundwave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90px;
  opacity: 0.35;
  margin: 0;
  pointer-events: none;
}
.final-cta > * { position: relative; }
.final-cta img.cta-icon {
  width: 84px; height: 84px;
  border-radius: 22px;
  margin: 0 auto 26px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 60px rgba(0, 200, 212, 0.18);
  animation: floaty 5s ease-in-out infinite;
}
.final-cta h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  letter-spacing: -1.3px;
  margin-bottom: 14px;
}
.final-cta p { color: var(--grey); font-size: 16.5px; margin-bottom: 34px; }

/* ── Footer ──────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(37, 51, 80, 0.5);
  margin-top: 80px;
  padding: 44px 0;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-inner .copy { color: var(--grey-dim); font-size: 13.5px; }
.footer-links { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap; }
.footer-links a { color: var(--grey); font-size: 13.5px; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }

/* ── Hukuki sayfalar (gizlilik / koşullar / destek) ──────────────── */
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.doc h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.8px; margin-bottom: 8px; }
.doc .updated { color: var(--grey-dim); font-size: 13.5px; margin-bottom: 40px; }
.doc h2 { font-size: 21px; font-weight: 700; letter-spacing: -0.3px; margin: 36px 0 12px; }
.doc h3 { font-size: 16.5px; font-weight: 700; margin: 24px 0 8px; }
.doc p, .doc li { color: var(--grey); font-size: 15px; }
.doc p { margin-bottom: 14px; }
.doc ul { margin: 0 0 16px 22px; }
.doc li { margin-bottom: 8px; }
.doc strong { color: var(--white); font-weight: 600; }
.doc .callout {
  background: rgba(0, 200, 212, 0.07);
  border: 1px solid rgba(0, 200, 212, 0.25);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 20px 0;
}
.doc .callout p { margin: 0; }

/* ── Scroll animasyonu ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--rd, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 60px 0 32px; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .phone-wrap { margin-top: 32px; }
  .phone { transform: none; width: 270px; height: 550px; }
  .fc-a { right: 2%; }
  .fc-b { left: 0; }
  .fc-c { right: 4%; }
  .stats { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .b-lg, .b-sm { grid-column: span 2; }
  .b-sm { grid-column: span 1; }
  .listen-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .steps::before { display: none; }
  .privacy-banner { grid-template-columns: 1fr; text-align: center; padding: 44px 28px; }
  .pb-icon { margin: 0 auto; }
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .b-lg, .b-sm { grid-column: span 1; }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  section { padding: 56px 0; }
  .float-chip { font-size: 11.5px; padding: 8px 14px; }
  .fc-b { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { margin: 0 auto; justify-content: center; }
  .room-card { padding: 20px; }
  .match-demo { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .a1, .a2, .a3, .a4, .a5 { opacity: 1; transform: none; }
  .ring .ring-fg { stroke-dasharray: 87 100; }
  .steps::before { transform: scaleX(1); }
}
