/* ==========================================================================
   Cinemonia — Design Tokens (Sekeron.com referanslı: siyah/beyaz/gri palet)
   ========================================================================== */
:root{
  --bg: #000000;
  --header-bg: rgba(10,10,10,0.82);
  --panel: #121212;
  --panel-2: #161616;
  --card: rgba(255,255,255,0.045);
  --card-hover: rgba(255,255,255,0.075);
  --border: rgba(255,255,255,0.09);
  --border-soft: rgba(255,255,255,0.06);
  --icon-bg: rgba(255,255,255,0.07);

  --text: #ffffff;
  --text-dim: #bdbdbd;
  --text-faint: #9e9e9e;
  --text-faint-2: #6b6b6b;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-panel: 26px;

  --shadow: 0 6px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.6);

  --ease: cubic-bezier(.22,1,.36,1);
  --container: 1320px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4{
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.015em;
}
p{ margin: 0 0 1em; color: var(--text-dim); }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
img,svg{ display:block; max-width:100%; }
button{ font-family:inherit; }

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

/* starfield texture — sabit siyah zemin üstünde ince noktalar */
body{
  background-image:
    radial-gradient(1.5px 1.5px at 8% 12%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 22% 68%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 38% 28%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 52% 82%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 68% 15%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1.5px 1.5px at 81% 55%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 92% 78%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 15% 92%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 60% 45%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 30% 5%, rgba(255,255,255,0.3), transparent);
  background-repeat: repeat;
  background-size: 900px 900px;
}

/* ==========================================================================
   Panels (Sekeron'daki büyük yuvarlak köşeli koyu blok deseni)
   ========================================================================== */
.shell{
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.panel{
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-panel);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.panel-tight{ padding: 48px 56px; }

.panel-head{ max-width: 640px; margin-bottom: 40px; }
.panel-head.centered{ margin-left:auto; margin-right:auto; text-align:center; }
.panel-head h2{ font-size: clamp(26px, 3.2vw, 40px); }
.panel-head p{ font-size: 16px; margin:0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary{ background: #ffffff; color: #000000; }
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,255,255,0.15); }
.btn-secondary{ background: #2a2a2a; color: #fff; border-color: rgba(255,255,255,0.08); }
.btn-secondary:hover{ background: #333333; transform: translateY(-2px); }
.btn-ghost{ background: transparent; border-color: rgba(255,255,255,0.22); color: var(--text); }
.btn-ghost:hover{ background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }
.btn-sm{ padding: 9px 18px; font-size: 13px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height: 68px;
  gap: 20px;
}
.logo{ display:flex; align-items:center; gap:9px; flex-shrink:0; }
.logo-mark{ display:flex; flex-shrink:0; }
.logo-text{
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-transform: none;
}
.main-nav{ display:flex; align-items:center; gap: 26px; flex-wrap: nowrap; }
.main-nav a{
  font-size: 13.5px; font-weight: 500; color: var(--text-faint);
  transition: color .2s ease; position: relative;
  white-space: nowrap;
}
.main-nav a:hover{ color: var(--text); }
.main-nav a.current{ color: var(--text); }
.main-nav a.current::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:#fff; border-radius:2px;
}
.header-actions{ display:flex; align-items:center; gap: 12px; flex-shrink:0; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; padding: 6px; cursor:pointer;
}
.nav-toggle span{ width:22px; height:2px; background: var(--text); border-radius:2px; transition: transform .25s ease, opacity .25s ease; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-inner{
  display:grid; grid-template-columns: 1fr .85fr; gap: 48px; align-items:center;
}
.hero h1{
  font-size: clamp(30px, 3.6vw, 48px);
  margin-bottom: 20px;
}
.hero-lead{
  font-size: 16.5px;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 26px; }
.hero-note{ font-size: 13.5px; color: var(--text-faint-2); }
.hero-note b{ color: var(--text-faint); font-weight:600; }

.hero-visual{ position:relative; height: 420px; }
.hero-stage{ position:relative; width:100%; height:100%; }

/* ---- sahne (scene) geçiş sistemi ---- */
.scene{
  position:absolute; inset:0;
  opacity:0; visibility:hidden;
  transition: opacity .6s var(--ease);
}
.scene.active{ opacity:1; visibility:visible; }

.scene-dots{ position:absolute; left:50%; bottom:-30px; transform:translateX(-50%); display:flex; gap:7px; }
.dot{ width:6px; height:6px; border-radius:50%; background: rgba(255,255,255,0.18); transition: background .3s ease, transform .3s ease; }
.dot.active{ background:#fff; transform:scale(1.3); }

/* ---- Sahne 1: Ağ / Eşleştirme ---- */
.net-lines{ position:absolute; inset:0; width:100%; height:100%; overflow:visible; }
.net-line{
  stroke: rgba(255,255,255,0.18); stroke-width: 1.5;
  stroke-dasharray: 340; stroke-dashoffset: 340;
}
.scene-network.active .net-line{ animation: drawLine 1.1s var(--ease) forwards; }

.node{
  position:absolute;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  opacity:0; transform: scale(.6);
}
.scene-network.active .node{ animation: nodeIn .6s var(--ease) forwards; }
.node-photo{
  border-radius: 50%;
  overflow:hidden;
  border: 2px solid rgba(255,255,255,0.16);
  background: #1a1a1a;
  box-shadow: var(--shadow-lg);
}
.node-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.node-tag{
  display:flex; align-items:center; gap:6px;
  font-size: 11.5px; font-weight:600; color: var(--text-dim);
  background: rgba(20,20,20,0.9);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.node-tag svg{ flex-shrink:0; opacity:.7; }

.node-a{ top: 0; right: 6%; }
.node-a .node-photo{ width: 108px; height: 108px; }
.node-b{ top: 190px; left: 0; }
.node-b .node-photo{ width: 82px; height: 82px; }
.node-c{ bottom: 10px; right: 22%; }
.node-c .node-photo{ width: 82px; height: 82px; }

@keyframes nodeIn{ to{ opacity:1; transform:scale(1); } }
@keyframes drawLine{ to{ stroke-dashoffset:0; } }

/* ---- Sahne 2: İş Birliği Sözleşmesi ---- */
.scene-contract{ display:flex; align-items:center; justify-content:center; }
.contract-card{
  width: 260px;
  background: #16161a;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px 20px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-5deg);
  text-align:center;
}
.contract-card h4{ font-size: 14px; margin-bottom: 16px; letter-spacing:.01em; }
.contract-lines{ display:flex; flex-direction:column; gap:7px; margin-bottom: 16px; }
.contract-lines span{ height:6px; border-radius:4px; background: rgba(255,255,255,0.08); margin:0 auto; display:block; }
.contract-points{ text-align:left; display:flex; flex-direction:column; gap:6px; margin-bottom: 18px; }
.contract-points li{ font-size:10.5px; color: var(--text-faint); padding-left:14px; position:relative; list-style:none; }
.contract-points li::before{ content:"✓"; position:absolute; left:0; color: var(--text-dim); font-size:10px; }
.signature{ width:100%; height:44px; margin-bottom:6px; }
.sig-path{
  fill:none; stroke:#fff; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
  stroke-dasharray: 620; stroke-dashoffset: 620;
}
.scene-contract.active .sig-path{ animation: signLoop 4.5s ease-in-out infinite; }
.contract-foot{ font-size:9.5px; color: var(--text-faint-2); letter-spacing:.04em; text-transform:uppercase; }

@keyframes signLoop{
  0%{ stroke-dashoffset:620; opacity:1; }
  38%{ stroke-dashoffset:0; opacity:1; }
  60%{ stroke-dashoffset:0; opacity:1; }
  82%{ stroke-dashoffset:-620; opacity:.4; }
  83%{ stroke-dashoffset:620; opacity:0; }
  84%{ opacity:1; }
  100%{ stroke-dashoffset:620; opacity:1; }
}

/* ---- Sahne 3: Portföy Önizleme ---- */
.portfolio-photo{
  position:absolute; left:14%; top:0; width:210px; height:100%;
  border-radius: 18px; overflow:hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.portfolio-photo img{ width:100%; height:100%; object-fit:cover; transition: opacity .4s ease; }

.now-playing{
  position:absolute; top:8%; left:0; width:230px;
  display:flex; align-items:center; gap:10px;
  background: rgba(18,18,20,0.92);
  border: 1px solid var(--border);
  border-radius: 14px; padding:10px;
  box-shadow: var(--shadow-lg);
}
.np-thumb{ width:38px; height:38px; border-radius:9px; overflow:hidden; flex-shrink:0; }
.np-thumb img{ width:100%; height:100%; object-fit:cover; }
.np-info{ flex:1; min-width:0; }
.np-title{ font-size:12px; font-weight:600; margin-bottom:5px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.np-bar{ height:4px; border-radius:3px; background: rgba(255,255,255,0.1); overflow:hidden; margin-bottom:4px; }
.np-fill{ display:block; height:100%; width:0%; background:#fff; border-radius:3px; }
.scene-portfolio.active .np-fill{ animation: fillBar 6s linear infinite; }
.np-time{ display:flex; justify-content:space-between; font-size:9.5px; color: var(--text-faint-2); }
.np-play{ width:26px; height:26px; border-radius:50%; background:#fff; color:#000; display:flex; align-items:center; justify-content:center; font-size:8px; flex-shrink:0; }

@keyframes fillBar{ 0%{ width:0%; } 100%{ width:100%; } }

.profile-card{
  position:absolute; right:0; bottom:6%; width:220px;
  background: rgba(18,18,20,0.94);
  border: 1px solid var(--border);
  border-radius: 16px; padding:16px;
  box-shadow: var(--shadow-lg);
}
.pc-row{ display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.pc-avatar{ width:38px; height:38px; border-radius:50%; overflow:hidden; flex-shrink:0; }
.pc-avatar img{ width:100%; height:100%; object-fit:cover; }
.pc-name{ font-size:13px; font-weight:700; }
.pc-loc{ font-size:10.5px; color: var(--text-faint); }
.pc-stats{ display:flex; gap:18px; margin-bottom:10px; }
.pc-stats b{ display:block; font-size:13px; }
.pc-stats span{ font-size:9.5px; color: var(--text-faint); }
.pc-bio{ font-size:11px; color: var(--text-dim); margin:0 0 10px; line-height:1.4; }
.pc-tags{ display:flex; gap:6px; flex-wrap:wrap; }
.pc-tags span{ font-size:9.5px; padding:4px 9px; border-radius:999px; background: rgba(255,255,255,0.07); color: var(--text-dim); }

/* ---- Sahne 4: Araçlar ---- */
.tool-icon{
  position:absolute;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  transform: translateX(-50%);
}
.tool-badge{
  width:50px; height:50px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.06); color: var(--text-faint-2);
  border: 1px solid var(--border-soft);
}
.tool-label{ font-size:11px; font-weight:600; color: var(--text-dim); opacity:0; white-space:nowrap; }

.scene-tools.active .tool-badge{ animation: badgeLit .5s var(--ease) forwards; animation-delay: inherit; }
.scene-tools.active .tool-label{ animation: labelIn .5s var(--ease) forwards; animation-delay: inherit; }

@keyframes badgeLit{ to{ background:#fff; color:#000; border-color:#fff; } }
@keyframes labelIn{ to{ opacity:1; } }

.filmstrip{
  height: 22px;
  margin-top: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 10px, transparent 10px 26px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  opacity: .5;
}

/* ==========================================================================
   Stat strip (hero altı / hakkımızda)
   ========================================================================== */
.stat-row{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border-soft);
}
.stat-item h3{ font-size: 22px; margin-bottom: 4px; }
.stat-item span{ font-size: 13.5px; color: var(--text-faint); font-weight:500; }

/* ==========================================================================
   Icon badge (kare, nötr — Sekeron ikon kutusu)
   ========================================================================== */
.icon-badge{
  width: 48px; height:48px; border-radius: 13px;
  display:flex; align-items:center; justify-content:center;
  background: var(--icon-bg);
  border: 1px solid var(--border-soft);
  color: var(--text);
  margin-bottom: 18px;
  flex-shrink:0;
}

/* ==========================================================================
   Card grids (problem / çözüm / farklar)
   ========================================================================== */
.card-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.card-grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
.card{
  display: block;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.card:hover{ transform: translateY(-4px); background: var(--card-hover); border-color: var(--border); }
.card h3{ font-size: 16.5px; margin-bottom: 6px; }
.card p{ font-size: 14px; margin:0; }

.card-row{
  display:flex; gap: 16px;
}
.card-row .icon-badge{ margin-bottom:0; }
.card-row h3{ font-size: 15.5px; margin-bottom: 4px; }
.card-row p{ font-size: 13.5px; margin:0; }

/* ==========================================================================
   Nasıl Çalışır — split panel (mockup + liste)
   ========================================================================== */
.split{
  display:grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items:center;
}
.split.reverse{ grid-template-columns: 1.05fr .95fr; }
.split.reverse .split-visual{ order: -1; }

.split-copy h2{ font-size: clamp(24px, 3vw, 36px); margin-bottom: 14px; }
.split-copy > p{ font-size: 15.5px; max-width: 460px; margin-bottom: 28px; }

.step-list{ display:flex; flex-direction:column; gap: 18px; }
.step-row{ display:flex; gap: 16px; align-items:flex-start; }
.step-badge{
  width:34px; height:34px; border-radius:50%;
  background: var(--icon-bg); border:1px solid var(--border-soft);
  display:flex; align-items:center; justify-content:center;
  font-size: 13px; font-weight:700; color: var(--text);
  flex-shrink:0;
}
.step-row h4{ font-size: 15.5px; margin:0 0 3px; font-weight:600; }
.step-row p{ font-size: 13.5px; margin:0; }

.split-visual{ position:relative; display:flex; justify-content:center; }
.mock-stack{ position:relative; width: 100%; max-width: 340px; }
.mock-card{
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
}
.mock-card-behind{
  position:absolute; top: -16px; left: 24px; right: 24px;
  transform: scale(.94);
  opacity: .5;
  z-index:0;
}
.mock-card-front{ position:relative; z-index:1; }
.mock-row{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.mock-avatar{ width:36px; height:36px; border-radius:50%; overflow:hidden; background:#222; flex-shrink:0; }
.mock-avatar img{ width:100%; height:100%; object-fit:cover; filter: grayscale(1); }
.mock-name{ font-size:13.5px; font-weight:600; }
.mock-role{ font-size:11.5px; color: var(--text-faint); }
.mock-match{ margin-left:auto; font-size:11px; font-weight:700; color:#000; background:#fff; padding:4px 9px; border-radius:999px; }
.mock-bar{ height:8px; border-radius:6px; background: rgba(255,255,255,0.08); margin-bottom:8px; overflow:hidden; }
.mock-bar span{ display:block; height:100%; background: #fff; border-radius:6px; }
.mock-tags{ display:flex; gap:6px; flex-wrap:wrap; margin-top:14px; }
.mock-tags span{ font-size:11px; padding:5px 10px; border-radius:999px; background: rgba(255,255,255,0.06); color: var(--text-dim); border:1px solid var(--border-soft); }

/* ==========================================================================
   Kimler için
   ========================================================================== */
.audience-wrap{
  display:grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items:start;
}
.audience-list{ display:flex; flex-direction:column; gap: 12px; }
.audience-row{
  display:flex; align-items:center; gap: 14px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.audience-row:hover{ transform: translateX(4px); background: var(--card-hover); }
.audience-row span{ font-size: 14.5px; font-weight:500; color: var(--text); }

.chip-panel{ background: var(--card); border:1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 26px; }
.chip-panel h4{ font-size: 13px; text-transform:uppercase; letter-spacing:.05em; color: var(--text-faint); margin-bottom: 18px; font-weight:600; }
.chip-row{ display:flex; flex-wrap:wrap; gap: 9px; }
.chip{
  font-size: 13px; font-weight:500;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  color: var(--text-dim);
}

/* ==========================================================================
   Kolaj / "Herkes için sinema"
   ========================================================================== */
.collage-head{ max-width: 480px; margin-bottom: 8px; }
.collage-head h2{ font-size: clamp(24px, 3vw, 36px); margin-bottom: 10px; }
.collage-head p{ font-size: 14.5px; color: var(--text-faint); margin:0; }

.collage-row{
  display:flex; align-items:flex-end; gap: 18px; flex-wrap: wrap;
  margin-top: 36px;
}
.collage-figure{ text-align:center; }
.collage-photo{
  width: 92px; height: 92px; border-radius: 50%; overflow:hidden;
  border: 2px solid rgba(255,255,255,0.12);
  margin: 0 auto 10px;
}
.collage-photo img{ width:100%; height:100%; object-fit:cover; filter: grayscale(1) contrast(1.08); }
.collage-figure span{ font-size: 12.5px; color: var(--text-faint); font-weight:500; }
.collage-icon{
  width: 92px; height:92px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--icon-bg); border:1px solid var(--border-soft);
  margin-bottom: 10px; color: var(--text-dim);
}

/* ==========================================================================
   Roadmap
   ========================================================================== */
.roadmap{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.roadmap-card{ background: var(--card); border:1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 26px; }
.roadmap-card .badge{
  display:inline-block; font-size: 11.5px; font-weight:700; letter-spacing:.03em;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
  background: rgba(255,255,255,0.08); color: var(--text);
}
.roadmap-card ul{ display:flex; flex-direction:column; gap: 11px; }
.roadmap-card li{ font-size: 14px; color: var(--text-dim); padding-left: 18px; position:relative; }
.roadmap-card li::before{ content:"—"; position:absolute; left:0; color: var(--text-faint-2); }
.roadmap-note{ font-size: 14px; color: var(--text-faint); max-width: 640px; margin:0; }

/* ==========================================================================
   Vision
   ========================================================================== */
.vision-panel{ text-align:center; padding: 88px 40px; }
.vision-quote{
  font-family: "Inter", sans-serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  max-width: 780px;
  margin: 0 auto;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list{ max-width: 780px; margin: 0 auto; display:flex; flex-direction:column; gap: 10px; }
.faq-item{
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow:hidden;
}
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  gap: 16px; padding: 18px 22px;
  background:none; border:none; cursor:pointer; text-align:left;
  font-size: 14.5px; font-weight:600; color: var(--text);
}
.faq-chevron{
  width:26px; height:26px; border-radius:50%;
  background: rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-chevron{ transform: rotate(180deg); }
.faq-a{
  max-height:0; overflow:hidden;
  transition: max-height .35s var(--ease);
}
.faq-a p{ padding: 0 22px 20px; font-size: 13.5px; margin:0; color: var(--text-faint); }
.faq-item.open .faq-a{ max-height: 200px; }

/* ==========================================================================
   CTA panel (erken erişim)
   ========================================================================== */
.cta-panel{ text-align:center; }
.cta-panel h2{ font-size: clamp(24px, 3vw, 34px); }
.cta-panel > p{ font-size: 15px; color: var(--text-dim); max-width: 480px; margin: 0 auto 28px; }

.signup-form{
  display:flex; gap: 8px; margin: 0 auto;
  max-width: 460px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 7px;
  border-radius: 999px;
}
.signup-form input{
  flex:1; border:none; background:transparent; color: var(--text);
  padding: 11px 16px; font-size: 14.5px; outline:none; font-family: inherit;
}
.signup-form input::placeholder{ color: var(--text-faint-2); }
.form-msg{
  margin-top: 14px; font-size: 13.5px; min-height: 18px;
  color: var(--text-faint); font-weight:500;
}

/* ==========================================================================
   Footer panel
   ========================================================================== */
.footer-panel{ background: var(--panel-2); }
.footer-cta{ display:flex; align-items:flex-end; justify-content:space-between; gap: 30px; flex-wrap:wrap; margin-bottom: 40px; }
.footer-cta h2{ font-size: clamp(22px, 2.8vw, 32px); margin:0; max-width: 520px; }
.footer-cta-actions{ display:flex; gap: 12px; flex-wrap:wrap; }

.footer-bottom{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap: 14px;
  padding-top: 26px; border-top: 1px solid var(--border-soft);
  font-size: 13px; color: var(--text-faint-2);
}
.footer-social{ display:flex; gap: 18px; flex-wrap:wrap; }
.footer-social a{ color: var(--text-faint); transition: color .2s ease; }
.footer-social a:hover{ color: var(--text); }
.footer-legal{ display:flex; gap: 18px; }
.footer-legal a{ color: var(--text-faint-2); transition: color .2s ease; }
.footer-legal a:hover{ color: var(--text-faint); }

/* ==========================================================================
   Telefon karuseli ("Bir sonraki iş birliğiniz için doğru yaratıcıları bulun")
   ========================================================================== */
.phone-carousel{
  display:flex; align-items:center; justify-content:center; gap: 14px;
}
.carousel-arrow{
  width: 42px; height:42px; border-radius:50%; flex-shrink:0;
  background: #1c1c1c; border:1px solid var(--border);
  color: var(--text); display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition: background .2s ease, transform .2s ease;
}
.carousel-arrow:hover{ background:#282828; transform: scale(1.06); }

.phone-stack{
  position:relative; width: 580px; height: 566px; flex-shrink:0;
  overflow: hidden;
}
.phone{
  position:absolute; top:0; width: 258px; height: 546px;
  border-radius: 40px; background:#0b0b0b;
  border: 5px solid #e2e2e4;
  box-shadow: var(--shadow-lg);
  overflow:hidden;
}
.phone-side{ top: 18px; opacity:.65; filter: saturate(.85); border-color:#c9c9cc; }
.phone-left{ left: -84px; z-index:1; }
.phone-right{ right: -84px; z-index:2; }
.phone-center{ left:50%; transform: translateX(-50%); z-index:3; border-color:#e2e2e4; }

.phone-notch{
  position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:76px; height:22px; background:#000; border-radius:14px; z-index:5;
}
.phone-home-indicator{
  position:absolute; bottom:6px; left:50%; transform:translateX(-50%);
  width:110px; height:4px; background:rgba(255,255,255,0.55); border-radius:3px; z-index:5;
}

.phone-status{ display:flex; align-items:center; justify-content:space-between; padding: 12px 20px 4px; font-size:12.5px; font-weight:600; color:#fff; }
.phone-status svg{ display:block; }
.phone-status-icons{ display:flex; align-items:center; gap:5px; }

.phone-topbar{ display:flex; align-items:center; gap:10px; padding: 8px 14px; font-size:12.5px; font-weight:700; color:#fff; }
.phone-topbar svg{ flex-shrink:0; color:#bbb; }
.phone-topbar .grow{ flex:1; }

.phone-profile{ padding: 2px 14px 10px; }
.phone-profile-row{ display:flex; align-items:flex-start; gap:12px; margin-bottom:8px; }
.phone-avatar{ width:56px; height:56px; border-radius:50%; overflow:hidden; border:2px solid #333; flex-shrink:0; }
.phone-avatar img{ width:100%; height:100%; object-fit:cover; }
.phone-name{ font-size:14px; font-weight:700; color:#fff; margin-bottom:4px; }
.phone-stats{ display:flex; gap:16px; margin-bottom:4px; }
.phone-stats b{ font-size:12px; color:#fff; }
.phone-stats span{ font-size:9.5px; color:#8a8a8a; display:block; }
.phone-loc{ font-size:10.5px; color:#8a8a8a; display:flex; align-items:center; gap:4px; }

.phone-btn-row{ display:flex; align-items:center; gap:6px; margin: 9px 0; }
.phone-btn{ flex:1; text-align:center; padding:6.5px 4px; border-radius:7px; font-size:10px; font-weight:700; white-space:nowrap; }
.phone-btn-follow{ background: linear-gradient(90deg,#2b6cf6,#22b7e6); color:#fff; }
.phone-btn-collab{ background:#2a2a2a; color:#fff; }
.phone-btn-icon{ width:29px; height:29px; border-radius:7px; background:#2a2a2a; display:flex; align-items:center; justify-content:center; color:#fff; flex-shrink:0; }
.phone-btn-icon svg{ width:12px; height:12px; }

.phone-about{ background:#161616; border-radius:10px; padding:10px 12px; margin-bottom:8px; }
.phone-about-label{ font-size:10.5px; font-weight:700; color:#e5e5e5; margin-bottom:4px; }
.phone-about-text{ font-size:10px; color:#9a9a9a; line-height:1.4; margin-bottom:6px; }
.phone-tags{ display:flex; gap:5px; flex-wrap:wrap; }
.phone-tags span{ font-size:9px; background:#262626; color:#ccc; padding:3px 7px; border-radius:999px; }

.phone-tabs{ display:flex; gap:18px; padding: 0 14px; border-bottom:1px solid #232323; font-size:11px; font-weight:700; color:#7a7a7a; }
.phone-tabs .on{ color:#fff; padding-bottom:7px; border-bottom:2px solid #fff; }
.phone-tabs span:not(.on){ padding-bottom:7px; }
.phone-post{ margin: 8px 12px 0; border-radius:8px; overflow:hidden; height: 150px; }
.phone-post img{ width:100%; height:100%; object-fit:cover; }

.phone-nav{ position:absolute; bottom:0; left:0; right:0; display:flex; justify-content:space-around; padding:10px 0; background:#0b0b0b; border-top:1px solid #232323; }
.phone-nav svg{ color:#9a9a9a; }
.phone-nav .on svg{ color:#fff; }

/* Sol/sağ yan telefonlar — sade içerik */
.phone-search{ margin: 4px 12px 8px; background:#161616; border-radius:8px; padding:8px 10px; font-size:10px; color:#7a7a7a; display:flex; align-items:center; gap:6px; }
.phone-list-row{ display:flex; align-items:center; gap:8px; padding: 7px 14px; }
.phone-list-avatar{ width:26px; height:26px; border-radius:50%; overflow:hidden; flex-shrink:0; background:#222; }
.phone-list-avatar img{ width:100%; height:100%; object-fit:cover; }
.phone-list-name{ font-size:10.5px; font-weight:600; color:#eee; }
.phone-list-role{ font-size:9px; color:#888; }
.phone-list-rating{ margin-left:auto; font-size:9.5px; color:#e0b039; font-weight:700; }

.phone-req-card{ margin: 34px 14px 10px; background:#161616; border-radius:10px; padding:12px; text-align:center; }
.phone-req-num{ font-size:22px; font-weight:800; color:#fff; }
.phone-req-label{ font-size:9px; color:#8a8a8a; }
.phone-tool-row{ display:flex; align-items:center; gap:8px; padding:9px 14px; font-size:10.5px; color:#ccc; }
.phone-tool-row svg{ color:#8a8a8a; flex-shrink:0; }
.phone-tool-row .chev{ margin-left:auto; color:#555; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal{ opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1140px){
  .main-nav{
    position: fixed; top: 68px; left:0; right:0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .main-nav.open{ opacity:1; transform: translateY(0); pointer-events:auto; }
  .main-nav a{ padding: 10px 0; width:100%; }
  .nav-toggle{ display:flex; }
  .header-actions .btn-sm{ display:none; }
}

@media (max-width: 980px){
  .panel{ padding: 44px 32px; }
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ height: 380px; order:-1; margin-bottom: 8px; }
  .split, .split.reverse{ grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-visual{ order: 0; }
  .card-grid{ grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3{ grid-template-columns: repeat(2, 1fr); }
  .audience-wrap{ grid-template-columns: 1fr; }
  .stat-row{ grid-template-columns: 1fr; gap: 20px; }
  .footer-cta{ flex-direction:column; align-items:flex-start; }
  .phone-carousel{ zoom: .78; }
}

@media (max-width: 640px){
  .shell{ padding: 12px 14px 16px; gap: 10px; }
  .panel{ padding: 36px 22px; border-radius: 20px; }
  .card-grid{ grid-template-columns: 1fr; }
  .card-grid.cols-3{ grid-template-columns: 1fr; }
  .roadmap{ grid-template-columns: 1fr; }
  .signup-form{ flex-direction:column; border-radius: var(--radius-lg); }
  .signup-form .btn{ width:100%; }
  .node-a{ right: 0; }
  .node-b{ left: -4px; }
  .node-c{ right: 8%; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .vision-panel{ padding: 56px 24px; }

  .hero-visual{ height: 400px; }
  .contract-card{ width: 220px; padding: 22px 18px 16px; }
  .portfolio-photo{ left: 4%; width: 170px; }
  .now-playing{ width: 188px; padding: 8px; }
  .np-thumb{ width: 32px; height:32px; }
  .profile-card{ width: 182px; padding: 13px; right: -4px; }
  .tool-badge{ width: 42px; height:42px; }
  .tool-label{ font-size: 9.5px; }

  .phone-carousel{ zoom: .57; }
  .carousel-arrow{ display:none; }
}
