/* ===== HERO + MOZAİK ===== */
.hero-splash{
  position: relative; padding: clamp(28px, 6vw, 64px) 0 40px;
  background: radial-gradient(1200px 600px at 20% -20%, rgba(14,165,233,.12), transparent 60%),
              radial-gradient(1100px 600px at 120% 10%, rgba(245,158,11,.12), transparent 60%);
  overflow: clip;
}

.hero-lines .line{
  position:absolute; inset-inline-start: -10vw; width: 120vw; height: 1px; background: linear-gradient(90deg, transparent, rgba(14,165,233,.4), transparent);
  transform: translateY(0);
}
.hero-lines .l1{ top: 16%; animation: slideX 9s linear infinite; }
.hero-lines .l2{ top: 46%; animation: slideX 11s linear infinite reverse; }
.hero-lines .l3{ top: 78%; animation: slideX 13s linear infinite; }
@keyframes slideX{
  0%{ transform: translateX(-4%); }
  50%{ transform: translateX(4%); }
  100%{ transform: translateX(-4%); }
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
}

/* Metin bloğu */
.hero-copy h1{
  font-family: "PlayfairDisplay", serif;
  font-size: clamp(26px, 5vw, 44px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--ink);
}
.hero-copy .lede{
  font-size: clamp(14px, 2.2vw, 18px); margin: 0 0 10px; color: var(--ink-soft);
}
.hero-copy .sub{
  font-size: clamp(13px, 2vw, 16px); color: #1f2b3f; margin: 0 0 18px;
}
.scroll-hint{
  display:flex; align-items:center; gap:10px; color: var(--brand-ink); font-weight:600; opacity:.85;
}
.scroll-hint .pulse{
  width:10px; height:10px; border-radius:50%; background: var(--brand);
  box-shadow: 0 0 0 0 var(--ring);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 var(--ring); }
  100%{ box-shadow: 0 0 0 22px rgba(14,165,233,0); }
}

/* Görsel mozaik */
.shot{ position: relative; }
.shot figcaption{
  position:absolute; left:10px; bottom:10px;
  background: rgba(2,6,23,.65); color:#fff; font-size:12px; padding:6px 8px; border-radius:8px; backdrop-filter: blur(4px);
}

/* Yerleşim: katmanlı hissiyat */
.shot-a{ justify-self: end; transform: rotate(-2deg); }
.shot-b{ align-self: start; transform: translateY(8px) rotate(1.5deg); }
.shot-c{ align-self: end; transform: translateY(-6px) rotate(-1deg); }

/* Hover mikro etkileşimleri */
.shot img{ transition: transform .35s ease, box-shadow .35s ease, filter .35s ease; }
.shot:hover img{ transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow); filter: saturate(1.05) contrast(1.02); }

/* Duyarlılık */
@media (max-width: 1024px){
  .hero-grid{ grid-template-columns: 1fr; }
  .shot-a, .shot-b, .shot-c{ transform: none; }
  .hero-copy{ order: -1; }
  .hero-splash{ padding-top: 36px; }
}
@media (max-width: 560px){
  .hero-copy .lede, .hero-copy .sub{ font-size: 14px; }
  .shot figcaption{ font-size: 11px; }
}
/* ===== SECTION 2: Region Timeline ===== */
.region-timeline{ padding: 56px 0; position: relative; }
.region-timeline h2{ margin: 0 0 8px; }
.region-timeline .sec-lede{ color: var(--ink-soft); margin: 0 0 22px; }

.tl{ counter-reset: step; display: grid; gap: 18px; }
.tl-item{
  display: grid; grid-template-columns: 110px 1fr; gap: 14px;
  background: var(--card); border: 1px solid rgba(2,6,23,.06); border-radius: 16px; padding: 12px;
  box-shadow: var(--shadow);
  position: relative; isolation: isolate; overflow: hidden;
}
.tl-item::before{
  counter-increment: step; content: counter(step);
  position: absolute; top: -10px; right: 12px;
  font-family: "PlayfairDisplay", serif; font-size: 56px; color: rgba(14,165,233,.08); z-index: -1;
}
.tl-photo img{ border-radius: 12px; }
.tl-photo figcaption{ font-size: 12px; color: #475569; margin-top: 6px; }
.tl-copy h3{ margin: 2px 0 6px; font-size: 18px; }
.tl-copy p{ margin: 0 0 10px; }
.chip{
  display:inline-block; font-size:12px; padding:4px 8px; border-radius: 999px;
  background: rgba(14,165,233,.1); color: var(--brand-ink); margin-inline-end: 6px;
}

/* ===== SECTION 3: Urban Quest ===== */
.urban-quest{ padding: 56px 0; }
.uq-grid{ display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: start; }
.uq-copy .sec-lede{ color: var(--ink-soft); margin: 0 0 14px; }
.uq-copy .traits{ margin: 0; padding-left: 18px; }

.uq-scene{ display: grid; gap: 14px; }
.path-canvas{
  position: relative; height: 220px; border-radius: 16px;
  background:
    repeating-linear-gradient(0deg, rgba(2,6,23,.04) 0 2px, transparent 2px 24px),
    repeating-linear-gradient(90deg, rgba(2,6,23,.04) 0 2px, transparent 2px 24px),
    radial-gradient(circle at 20% 30%, rgba(14,165,233,.08), transparent 40%),
    #fff;
  border: 1px solid rgba(2,6,23,.08);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pin{
  position: absolute; width: 12px; height: 12px; border-radius: 999px;
  background: var(--accent); box-shadow: 0 0 0 0 rgba(245,158,11,.25);
  transform: translate(-50%, -50%);
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping{
  0%{ box-shadow: 0 0 0 0 rgba(245,158,11,.25); }
  100%{ box-shadow: 0 0 0 18px rgba(245,158,11,0); }
}

/* Konum değişkenleri (inline style yok!) */
.pin.pos-a{ left: 22%; top: 34%; }
.pin.pos-b{ left: 58%; top: 50%; }
.pin.pos-c{ left: 78%; top: 72%; }

.path{
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 22% 34%, rgba(14,165,233,.55) 0 3px, transparent 4px),
    radial-gradient(circle at 58% 50%, rgba(14,165,233,.55) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 72%, rgba(14,165,233,.55) 0 3px, transparent 4px),
    linear-gradient( to right, transparent 0 0 ) ;
  mask:
    radial-gradient(circle at 22% 34%, #000 0 6px, transparent 7px),
    radial-gradient(circle at 58% 50%, #000 0 6px, transparent 7px),
    radial-gradient(circle at 78% 72%, #000 0 6px, transparent 7px);
  opacity: .85;
}
.reveal.in-view .path{
  background:
    radial-gradient(circle at 22% 34%, rgba(14,165,233,.55) 0 3px, transparent 4px),
    radial-gradient(circle at 58% 50%, rgba(14,165,233,.55) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 72%, rgba(14,165,233,.55) 0 3px, transparent 4px),
    linear-gradient(90deg, rgba(14,165,233,.45), rgba(14,165,233,.0));
  background-size: 0% 2px, 0% 2px, 0% 2px, 0% 2px;
  background-position: 22% 34%, 58% 50%, 78% 72%, 22% 34%;
  background-repeat: no-repeat;
  animation: pathfill 2.2s ease forwards;
}
@keyframes pathfill{
  0%{ background-size: 0% 2px, 0% 2px, 0% 2px, 0% 2px; }
  40%{ background-size: 36% 2px, 0% 2px, 0% 2px, 36% 2px; }
  70%{ background-size: 36% 2px, 36% 2px, 0% 2px, 72% 2px; }
  100%{ background-size: 36% 2px, 36% 2px, 28% 2px, 100% 2px; }
}

.uq-photos{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.uq-photos figure img{ transition: transform .35s ease, box-shadow .35s ease; }
.uq-photos figure:hover img{ transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow); }

/* ===== SECTION 4: Impact Metrics ===== */
.impact{ padding: 56px 0; }
.impact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.impact-copy .sec-lede{ color: var(--ink-soft); margin: 0 0 16px; }

.impact-meters{ display: grid; gap: 12px; }
.meter{
  --w: 0%;
  position: relative; background: #fff; border: 1px solid rgba(2,6,23,.08); padding: 10px; border-radius: 12px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 110px 1fr 48px; align-items: center; gap: 10px;
}
.meter .label{ font-weight: 600; color: var(--ink); }
.meter .fill{
  height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--brand), #60a5fa);
  width: 0%;
  transition: width 1.1s ease .05s;
}
.meter .val{ font-weight: 700; color: var(--brand-ink); text-align: right; }

.reveal.in-view .meter .fill{ width: var(--w); }

/* Hedef değerler (inline style yok) */
.meter.v86{ --w: 86%; }
.meter.v92{ --w: 92%; }
.meter.v78{ --w: 78%; }

.impact-photos{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.impact-photos figure img{ transition: transform .35s ease, box-shadow .35s ease; }
.impact-photos figure:hover img{ transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow); }

/* ===== Duyarlılık (tümü) ===== */
@media (max-width: 1024px){
  .tl-item{ grid-template-columns: 100px 1fr; }
  .uq-grid{ grid-template-columns: 1fr; }
  .impact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .tl-item{ grid-template-columns: 1fr; }
  .uq-photos{ grid-template-columns: 1fr; }
  .impact-photos{ grid-template-columns: 1fr; }
}
/* ===== SECTION 5: Ritüel Spiral ===== */
.rituel-spiral{ padding: 56px 0; }
.spiral-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items:center; }
.spiral-copy .sec-lede{ color: var(--ink-soft); margin: 0 0 14px; }
.spiral-steps{ margin: 0 0 14px; padding-left: 18px; }
.r-photos{ display:grid; grid-template-columns: repeat(3,1fr); gap: 12px; }

.spiral-vis{ display:grid; gap: 12px; justify-items:center; }
.ring{
  --size: 260px;
  width: var(--size); height: var(--size);
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(14,165,233,.18) 0 20%, rgba(245,158,11,.18) 20% 40%, rgba(14,165,233,.18) 40% 60%, rgba(245,158,11,.18) 60% 80%, rgba(14,165,233,.18) 80% 100%);
  position: relative; box-shadow: var(--shadow);
  border: 1px solid rgba(2,6,23,.08);
}
.dot{
  position:absolute; width:10px; height:10px; border-radius:999px; background:#0ea5e9; transform: translate(-50%,-50%);
  box-shadow: 0 0 0 0 rgba(14,165,233,.25);
  animation: dotpulse 2.2s ease-out infinite;
}
@keyframes dotpulse{ to{ box-shadow: 0 0 0 18px rgba(14,165,233,0); } }

.d1{ left: 50%; top: 6%; }   /* Hazırlık */
.d2{ left: 94%; top: 50%; }  /* Güven */
.d3{ left: 50%; top: 94%; }  /* Karar */
.d4{ left: 6%;  top: 50%; }  /* Eylem */
.d5{ left: 50%; top: 22%; }  /* Yansıma, iç halka etkisi */

.tracer{
  position:absolute; inset: 6%; border-radius: 50%;
  border: 2px dashed rgba(2,6,23,.14);
  animation: rotate 14s linear infinite;
}
@keyframes rotate{ to{ transform: rotate(360deg); } }

.legend{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; font-size:12px; color:#475569; }

/* ===== SECTION 6: Lab Modules ===== */
.lab-modules{ padding: 56px 0; }
.lab-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items:start; }
.lab-copy .sec-lede{ color: var(--ink-soft); margin: 0 0 12px; }

.modules{ display:grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mod{
  position:relative; background:#fff; border:1px solid rgba(2,6,23,.08); border-radius:14px; padding:12px;
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
}
.mod::after{
  content:""; position:absolute; right:-14px; top:50%; width:28px; height:2px; background: linear-gradient(90deg, rgba(14,165,233,.45), rgba(14,165,233,0));
}
.mod:hover{ transform: translateY(-3px); box-shadow: 0 12px 34px rgba(2,6,23,.12); }

.lab-photos{ position:relative; display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wires .wire{
  position:absolute; height:2px; left:0; right:0; background: rgba(2,6,23,.08);
}
.wires .w1{ top: 22%; }
.wires .w2{ top: 50%; }
.wires .w3{ top: 78%; }

/* ===== SECTION 7: Microdrama Scrolly ===== */
.microdrama{ padding: 56px 0; }
.scenario-split{ display:grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items:start; }
.scenario-rail{ position: sticky; top: 84px; align-self:start; }
.scene-steps{ margin: 12px 0 0; padding: 0; list-style: none; border-left: 2px solid rgba(2,6,23,.1); }
.scene-step{
  padding: 10px 0 10px 14px; position: relative; opacity:.85;
  transform: translateX(-6px); transition: transform .4s ease, opacity .4s ease;
}
.scene-step::before{
  content:""; position:absolute; left:-7px; top: 18px; width:10px; height:10px; border-radius:999px; background:#0ea5e9;
  box-shadow: 0 0 0 0 rgba(14,165,233,.25);
}
.scene-step .kicker{ font-weight:700; color: var(--brand-ink); margin-right: 6px; }
.scene-step.reveal.in-view{ transform: translateX(0); opacity:1; }
.scene-step.reveal.in-view::before{ animation: dotpulse 2s ease-out 1; }

.scenario-visuals{ display:grid; grid-template-columns: 1fr; gap: 12px; }
.scenario-visuals figure img{ transition: transform .35s ease, box-shadow .35s ease; }
.scenario-visuals figure:hover img{ transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow); }

/* ===== Duyarlılık ===== */
@media (max-width: 1024px){
  .spiral-grid{ grid-template-columns: 1fr; }
  .r-photos{ grid-template-columns: 1fr 1fr; }
  .lab-grid{ grid-template-columns: 1fr; }
  .modules{ grid-template-columns: 1fr; }
  .scenario-split{ grid-template-columns: 1fr; }
  .scenario-rail{ position: static; }
}
@media (max-width: 640px){
  .r-photos{ grid-template-columns: 1fr; }
}
/* ===== SECTION 8: Culture Weave ===== */
.culture-weave{ padding: 56px 0; position: relative; }
.weave-grid{ display: grid; gap: 20px; }
.weave-head .sec-lede{ color: var(--ink-soft); margin: 0 0 10px; }
.weave-head .legend{ display:flex; gap:10px; flex-wrap:wrap; padding-left: 0; list-style:none; }
.weave-head .legend li{
  background: rgba(14,165,233,.1); color: var(--brand-ink); padding:6px 10px; border-radius:999px; font-size:12px;
}

.weave-photos{
  position: relative;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  background:
    linear-gradient(90deg, rgba(2,6,23,.05) 0 2px, transparent 2px 24px),
    linear-gradient(0deg, rgba(2,6,23,.05) 0 2px, transparent 2px 24px);
  border: 1px solid rgba(2,6,23,.06); border-radius: 16px; padding: 12px;
  box-shadow: var(--shadow);
}
.tile img{ transition: transform .35s ease, box-shadow .35s ease, filter .35s ease; }
.tile:hover img{ transform: rotate(-1.5deg) scale(1.02); box-shadow: var(--shadow); filter: contrast(1.05) saturate(1.05); }
.tile.t2:hover img{ transform: rotate(1.5deg) scale(1.02); }

.ribbon{
  position:absolute; inset-inline: -6px; height: 12px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(14,165,233,.18), rgba(245,158,11,.18));
  filter: blur(0.4px); opacity:.6;
}
.ribbon.r1{ top: 22%; animation: sway 9s ease-in-out infinite; }
.ribbon.r2{ top: 52%; animation: sway 11s ease-in-out infinite reverse; }
.ribbon.r3{ top: 78%; animation: sway 13s ease-in-out infinite; }
@keyframes sway{
  0%,100%{ transform: translateX(-2%); } 50%{ transform: translateX(2%); }
}

/* ===== SECTION 9: Route Plan ===== */
.route-plan{ padding: 56px 0; }
.route-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.route-copy .sec-lede{ color: var(--ink-soft); margin: 0 0 12px; }

.layers{ display:flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.layer{ font-size:12px; border-radius:999px; padding:6px 10px; background:#fff; border:1px solid rgba(2,6,23,.08); }
.l-green{ box-shadow: inset 0 0 0 2px rgba(16,185,129,.25); }
.l-blue{ box-shadow: inset 0 0 0 2px rgba(14,165,233,.25); }
.l-gray{ box-shadow: inset 0 0 0 2px rgba(100,116,139,.25); }

.track{
  position: relative; height: 120px; border-radius: 14px; background:#fff;
  border:1px solid rgba(2,6,23,.08); box-shadow: var(--shadow); overflow: hidden;
}
.node{
  position:absolute; width:10px; height:10px; border-radius:999px; background:#0ea5e9; transform: translate(-50%,-50%);
}
.n1{ left: 12%; top: 66%; }
.n2{ left: 50%; top: 34%; }
.n3{ left: 84%; top: 60%; }
.train{
  position:absolute; width:14px; height:14px; border-radius:999px; background:#f59e0b; transform: translate(-50%,-50%);
  left: 12%; top: 66%;
  box-shadow: 0 0 0 0 rgba(245,158,11,.28);
  animation: routeMove 5s ease-in-out infinite paused, ping 2.4s ease-out infinite paused;
}
.reveal.in-view .train{ animation-play-state: running, running; }
@keyframes routeMove{
  0%{ left: 12%; top: 66%; }
  40%{ left: 50%; top: 34%; }
  100%{ left: 84%; top: 60%; }
}

/* ===== SECTION 10: Photo Album (scroll-snap) ===== */
.photo-album{ padding: 56px 0; }
.photo-album .sec-lede{ color: var(--ink-soft); margin: 0 0 12px; }
.album{
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 280px);
  gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px;
}
.album::-webkit-scrollbar{ height: 8px; }
.album::-webkit-scrollbar-thumb{ background: rgba(2,6,23,.2); border-radius: 999px; }

.card{
  scroll-snap-align: start; background:#fff; border:1px solid rgba(2,6,23,.08);
  border-radius: 16px; padding: 10px; box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{ transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 34px rgba(2,6,23,.12); }
.album-hint{ text-align:right; font-size: 12px; color: #64748b; margin-top: 6px; }

/* ===== Duyarlılık ===== */
@media (max-width: 1024px){
  .weave-photos{ grid-template-columns: 1fr; }
  .route-grid{ grid-template-columns: 1fr; }
}
/* ===== 11. Orbit Lab ===== */
.orbit-lab{ padding:56px 0; }
.orbit-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:24px; align-items:start; }
.orbit-copy .sec-lede{ color:var(--ink-soft); margin:0 0 10px; }
.orbit-points{ margin:0; padding-left:18px; }

.orbits{
  position:relative; height:260px; border-radius:16px; background:#fff;
  border:1px solid rgba(2,6,23,.08); box-shadow:var(--shadow); overflow:hidden;
}
.core{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  background: #0ea5e9; color:#fff; padding:8px 12px; border-radius:999px; font-weight:700;
}
.ring{
  position:absolute; left:50%; top:50%; transform: translate(-50%,-50%);
  border-radius:50%; border:2px dashed rgba(2,6,23,.12);
  animation: spin 18s linear infinite;
}
.ring.r1{ width:140px; height:140px; }
.ring.r2{ width:200px; height:200px; animation-duration: 26s; }

.ring .chip{
  position:absolute; top:-10px; left:50%; transform:translate(-50%, -50%);
  background:#fff; border:1px solid rgba(2,6,23,.1); border-radius:999px; padding:6px 10px; font-size:12px;
  box-shadow:var(--shadow);
}
.ring .chip.alt{ top:auto; bottom:-10px; }

.orbit-photos{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }

@keyframes spin { to{ transform: translate(-50%,-50%) rotate(360deg); } }

@media (max-width: 1024px){
  .orbit-grid{ grid-template-columns: 1fr; }
  .orbit-photos{ grid-template-columns: 1fr; }
}

/* ===== 12. Kanban Flow ===== */
.kanban-flow{ padding:56px 0; }
.kanban-grid{ display:grid; grid-template-columns: 1fr; gap:18px; }
.board{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;
  background:#fff; border:1px solid rgba(2,6,23,.08); border-radius:16px; padding:12px; box-shadow:var(--shadow);
}
.col{ background:#f8fafc; border-radius:12px; padding:10px; border:1px solid rgba(2,6,23,.06); }
.col header{ font-weight:700; color:var(--brand-ink); margin-bottom:8px; }
.card{
  background:#fff; border:1px solid rgba(2,6,23,.08); border-radius:10px; padding:8px 10px; margin-bottom:8px;
  box-shadow:var(--shadow);
}
.card.ghost{ opacity:.7; }
.card.flow{ animation: floatY 3.8s ease-in-out infinite; }
.card.glow{ box-shadow: 0 0 0 0 rgba(14,165,233,.25); animation: glow 2.6s ease-in-out infinite; }

@keyframes floatY{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} }
@keyframes glow{ 0%{ box-shadow: 0 0 0 0 rgba(14,165,233,.25);} 100%{ box-shadow: 0 0 0 18px rgba(14,165,233,0);} }

.kanban-photos{ display:grid; grid-template-columns: repeat(3,1fr); gap:12px; }
.kanban-photos figure img{ transition: transform .35s ease, box-shadow .35s ease; }
.kanban-photos figure:hover img{ transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow); }

@media (max-width: 1024px){
  .board{ grid-template-columns: 1fr; }
  .kanban-photos{ grid-template-columns: 1fr; }
}

/* ===== 13. Field Journal (Accordion) ===== */
.field-journal{ padding:56px 0; }
.journal-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:24px; align-items:start; }

.journal-accordion details{
  background:#fff; border:1px solid rgba(2,6,23,.08); border-radius:12px; padding:8px 10px; margin-bottom:10px;
  box-shadow:var(--shadow);
}
.journal-accordion summary{
  cursor:pointer; font-weight:700; color:var(--brand-ink);
}
.journal-accordion p{ margin:8px 0 2px; }

.journal-photos{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.journal-photos figure img{ transition: transform .35s ease, box-shadow .35s ease; }
.journal-photos figure:hover img{ transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow); }

@media (max-width: 1024px){
  .journal-grid{ grid-template-columns: 1fr; }
  .journal-photos{ grid-template-columns: 1fr; }
}
/* ===== 14. Heatmap Insights ===== */
.heatmap-insights{ padding:56px 0; }
.hm-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:24px; align-items:start; }
.hm-copy .sec-lede{ color:var(--ink-soft); margin:0 0 10px; }

.hm-switch{ display:flex; gap:8px; flex-wrap:wrap; margin: 6px 0 10px; }
.hm-btn{
  border:2px solid var(--brand); background:#fff; color:var(--brand-ink);
  border-radius:12px; padding:8px 12px; font-weight:700; cursor:pointer;
  transition: transform .2s ease, background .2s ease;
}
.hm-btn:hover{ transform: translateY(-2px); background: var(--brand); color:#fff; }
.hm-btn.is-active{ background: var(--brand); color:#fff; }

.hm-legend{ display:flex; gap:12px; list-style:none; padding:0; margin:6px 0 0; color:#475569; font-size:12px; }
.hm-legend .dot{ display:inline-block; width:10px; height:10px; border-radius:999px; margin-right:6px; }
.d-low{ background:#c7e3ff; } .d-mid{ background:#6fb5ff; } .d-high{ background:#1e90ff; }

.hm-canvas{
  background:#fff; border:1px solid rgba(2,6,23,.08); border-radius:16px; box-shadow:var(--shadow);
  display:grid; grid-template-columns: repeat(4, 1fr); gap:8px; padding:12px;
  position:relative; overflow:hidden;
}
.hm-canvas .cell{
  --v: 20%;
  height:60px; border-radius:10px;
  background: radial-gradient(circle at 40% 40%, rgba(14,165,233,.35), transparent 55%), rgba(14,165,233,.15);
  filter: saturate(0.9);
  animation: flicker 4.6s ease-in-out infinite;
}
@keyframes flicker{ 50%{ filter: saturate(1.1) brightness(1.05);} }

.heatmap-insights[data-mode="trust"] .hm-canvas .cell{
  background: radial-gradient(circle at 40% 40%, rgba(16,185,129,.35), transparent 55%), rgba(16,185,129,.15);
}
.heatmap-insights[data-mode="decision"] .hm-canvas .cell{
  background: radial-gradient(circle at 40% 40%, rgba(245,158,11,.35), transparent 55%), rgba(245,158,11,.15);
}

/* hücre yoğunluk farklılıkları */
.c1, .c7, .c10{ --v: 80%; }
.c3, .c6, .c12{ --v: 60%; }
.c2, .c5, .c9 { --v: 40%; }
/* (animasyon sadece görsel; gerçek veri bağlamında sınıflar değiştirilebilir) */

.hm-photos{ display:grid; grid-template-columns: repeat(3,1fr); gap:12px; }
.hm-photos figure img{ transition: transform .35s ease, box-shadow .35s ease; }
.hm-photos figure:hover img{ transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow); }

@media (max-width: 1024px){
  .hm-grid{ grid-template-columns: 1fr; }
  .hm-photos{ grid-template-columns: 1fr; }
}

/* ===== 15. Ritual Scoreline ===== */
.ritual-scoreline{ padding:56px 0; }
.score-grid{ display:grid; grid-template-columns: 1fr 1.2fr; gap:24px; align-items:start; }
.score-copy .sec-lede{ color:var(--ink-soft); margin:0 0 10px; }
.score-points{ margin:0; padding-left:18px; }

.scoreline-canvas{
  position:relative; height:220px; border-radius:16px; background:#fff;
  border:1px solid rgba(2,6,23,.08); box-shadow:var(--shadow); overflow:hidden;
}
.s-node{
  position:absolute; width:12px; height:12px; border-radius:999px; background:#0ea5e9;
  transform: translate(-50%,-50%); box-shadow: 0 0 0 0 rgba(14,165,233,.25);
}
.s1{ left:12%; top:68%; } .s2{ left:50%; top:42%; } .s3{ left:84%; top:62%; }
.s-chip{
  position:absolute; font-size:12px; background:#fff; border:1px solid rgba(2,6,23,.1);
  border-radius:999px; padding:6px 10px; box-shadow:var(--shadow);
}
.sc1{ left:12%; top:54%; transform: translate(-50%,-50%); }
.sc2{ left:50%; top:28%; transform: translate(-50%,-50%); }
.sc3{ left:84%; top:78%; transform: translate(-50%,-50%); }

.s-line{
  position:absolute; left:12%; top:68%; height:2px; width:0;
  background: linear-gradient(90deg, rgba(14,165,233,.55), rgba(14,165,233,0));
  transform-origin:left center;
}
.reveal.in-view .scoreline-canvas .s-line{ animation: growLineWide 1.8s ease forwards; }
@keyframes growLineWide{
  0%  { width: 0; transform: rotate(-8deg); }
  45% { width: 42%; transform: rotate(-18deg); }
  100%{ width: 72%; transform: rotate(14deg); }
}

/* foto sütunu */
.score-photos{ display:grid; grid-template-columns: repeat(3,1fr); gap:12px; margin-top:12px; }
.score-photos figure img{ transition: transform .35s ease, box-shadow .35s ease; }
.score-photos figure:hover img{ transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow); }

@media (max-width: 1024px){
  .score-grid{ grid-template-columns: 1fr; }
  .score-photos{ grid-template-columns: 1fr; }
}
