:root {
  --grad: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
  --grad-cool: linear-gradient(105deg, #6b7cff 0%, #8a5fff 25%, #c45aad 55%, #e85d5d 80%);
  --ink: #0a0a0a;
  --paper: #f5f0e8;
  --gold: #c9a84c;
  --muted: rgba(255,255,255,0.45);
  --border-dim: rgba(255,255,255,0.08);
}
 
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
html { scroll-behavior: smooth; }
 
body {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}
 
/* ─── CURTAIN HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
 
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(72,52,212,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(255,51,102,0.14) 0%, transparent 55%),
    #080808;
}
 
.curtain-left, .curtain-right {
  position: absolute;
  top: 0;
  width: 12vw;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.curtain-left { left: 0; }
.curtain-right { right: 0; transform: scaleX(-1); }
.curtain-left svg, .curtain-right svg { width: 100%; height: 100%; }
 
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: fadeUp 1.2s cubic-bezier(.22,1,.36,1) both;
}
 
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.hero-label {
  font-family: 'Poppins', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-label::before, .hero-label::after {
  content: '';
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.25);
}
 
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  background: var(--grad);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradAnim 8s linear infinite;
  margin-bottom: 1rem;
}
 
@keyframes gradAnim {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3rem;
  letter-spacing: 1px;
}
 
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint .line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
 
/* ─── MANIFESTO ─── */
.manifesto {
  position: relative;
  padding: 120px 8vw;
  overflow: hidden;
}
.manifesto::before {
  content: '"';
  position: absolute;
  font-family: 'Cinzel', serif;
  font-size: 40vw;
  color: rgba(255,255,255,0.015);
  top: -5vw; left: -5vw;
  pointer-events: none;
  line-height: 1;
}
 
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
 
.manifesto-text h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #fff;
}
.manifesto-text h2 em {
  font-style: italic;
  background: var(--grad-cool);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.manifesto-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
}
.manifesto-body p + p { margin-top: 1.2rem; }
 
/* ─── SAHNE İLLÜSTRASYONU ─── */
.manifesto-visual {
  position: relative;
}
 
.stage-illustration {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
.stage-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 40px rgba(255,51,102,0.08));
}
 
.stage-quote {
  margin-top: 1.5rem;
  text-align: center;
  padding: 0 1rem;
}
.stage-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
  display: block;
}
 
/* ─── TIMELINE ─── */
.timeline-section {
  padding: 100px 8vw;
  position: relative;
}
 
.section-heading {
  text-align: center;
  margin-bottom: 5rem;
}
.section-heading .eyebrow {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-heading .eyebrow::before, .section-heading .eyebrow::after {
  content: ''; width: 30px; height: 1px;
  background: rgba(255,255,255,0.2);
}
.section-heading h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
}
 
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12) 10%, rgba(255,255,255,0.12) 90%, transparent);
  transform: translateX(-50%);
}
 
.t-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.t-item.visible { opacity: 1; transform: translateY(0); }
 
.t-item:nth-child(odd) .t-content { grid-column: 1; text-align: right; padding-right: 2.5rem; }
.t-item:nth-child(odd) .t-empty   { grid-column: 3; }
.t-item:nth-child(even) .t-content { grid-column: 3; text-align: left; padding-left: 2.5rem; }
.t-item:nth-child(even) .t-empty   { grid-column: 1; }
 
.t-dot {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: .35rem;
}
.t-dot span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--grad);
  background-size: 300%;
  animation: gradAnim 8s linear infinite;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(255,51,102,0.4);
}
 
.t-year {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #ff6b6b;
  margin-bottom: .5rem;
}
.t-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .5rem;
}
.t-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
 
/* ─── REVIEWS ─── */
.reviews-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
 
.reviews-section .section-heading {
  padding: 0 8vw;
  margin-bottom: 0;
}
 
.play-tabs {
  display: flex;
  gap: 0;
  padding: 3rem 8vw 0;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.play-tabs::-webkit-scrollbar { display: none; }
 
.play-tab {
  flex-shrink: 0;
  padding: .9rem 1.6rem;
  font-family: 'Poppins', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .3s ease;
  white-space: nowrap;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}
.play-tab:hover { color: rgba(255,255,255,0.7); }
.play-tab.active {
  color: #fff;
  border-bottom-color: #ff6b6b;
}
 
.review-panel {
  display: none;
  position: relative;
}
.review-panel.active { display: block; }
 
.review-bg {
  position: relative;
  width: 90%;
  height: 480px;
  overflow: hidden;
}
.review-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.7) saturate(0.6);
  transition: transform 8s ease;
}
.review-panel.active .review-bg img { transform: scale(1.04); }
 
.review-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.98) 0%,
    rgba(10,10,10,0.7) 45%,
    rgba(10,10,10,0.2) 100%
  );
}
 
.review-play-info {
  position: absolute;
  top: 50%;
  left: 8vw;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 360px;
}
 
.rpi-tag {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ff6b6b;
  margin-bottom: .8rem;
}
 
.rpi-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: .5rem;
}
 
.rpi-author {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}
 
.rpi-score-big {
  display: flex;
  align-items: flex-end;
  gap: .6rem;
  margin-bottom: .8rem;
}
.rpi-score-num {
  font-family: 'Cinzel', serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradAnim 8s linear infinite;
}
.rpi-score-denom {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,0.3);
  padding-bottom: .8rem;
}
 
.star-row {
  display: flex;
  gap: 4px;
  margin-bottom: .6rem;
}
.star {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.15);
  transition: color .2s;
}
.star.filled { color: #e8c84a; }
.star.half { color: #e8c84a; opacity: .55; }
 
.rpi-count {
  font-size: .7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}
 
.review-cards-wrap {
  padding: 0 8vw;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
 
.review-cards-track-outer {
  overflow: hidden;
  position: relative;
}
.review-cards-track-outer::before,
.review-cards-track-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 5;
  pointer-events: none;
}
.review-cards-track-outer::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}
.review-cards-track-outer::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}
 
.review-cards-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  padding: 3.5rem 0 2rem;
}
 
.review-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 1.8rem;
  position: relative;
  transition: border-color .3s, background .3s;
}
.review-card:hover {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.065);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: .5rem; left: 1.2rem;
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}
 
.rc-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.rc-star {
  font-size: .9rem;
  color: rgba(255,255,255,0.15);
}
.rc-star.on { color: #e8c84a; }
.rc-star.filled { color: #e8c84a; }
.rc-star.half { color: #e8c84a; opacity: .55; }
 
.rc-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.4rem;
  font-style: italic;
}
 
.rc-footer {
  display: flex;
  align-items: center;
  gap: .8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}
.rc-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  color: rgba(255,255,255,0.35);
  -webkit-text-fill-color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.12);
}
.rc-avatar svg {
  stroke: rgba(255,255,255,0.4);
}
.rc-name {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
}
.rc-date {
  font-size: .65rem;
  color: rgba(255,255,255,0.3);
  margin-top: .1rem;
}
.rc-source { display: none; }
 
.review-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.rnav-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
  font-size: .85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.rnav-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.rnav-dots {
  display: flex;
  gap: 6px;
}
.rnav-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all .3s;
}
.rnav-dot.on {
  background: #ff6b6b;
  transform: scale(1.3);
}
 
/* ════════════════════════════════════════════════════════
   EKİBİMİZ
   ════════════════════════════════════════════════════════ */
.hk-team-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background: rgba(255,255,255,.015);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
 
.ek-wrap { background: transparent; padding: 0; font-family: 'Poppins', sans-serif; overflow: hidden; }
 
.ek-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 40px;
}
 
/* Tutarlı eyebrow — diğer section-heading ile aynı sistem */
.ek-eyebrow-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ek-eyebrow-dash {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.ek-eyebrow-text {
  font-family: 'Poppins', sans-serif;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.team-intro {
      max-width: 650px;
      margin: 0 auto 5rem;
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.55);
      font-style: italic;
    }
 
/* Başlık — Cinzel, diğer section başlıklarıyla aynı - ama değişecek!! */
.ek-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  display: block;
  letter-spacing: normal;
}
 
/* ek-rule kaldırıldı */
.ek-rule { display: none; }
 
@keyframes grd   { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes spinCW  { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes spinCCW { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }
@keyframes popIn   { 0%{opacity:0;transform:scale(0.88)} 100%{opacity:1;transform:scale(1)} }
@keyframes slideUp { 0%{opacity:0;transform:translateY(18px)} 100%{opacity:1;transform:translateY(0)} }
 
.ek-track-wrap { position: relative; }
.ek-fade-l, .ek-fade-r { position: absolute; top: 0; bottom: 0; width: 80px; z-index: 10; pointer-events: none; }
.ek-fade-l { left: 0; background: linear-gradient(to right, #090909, transparent); }
.ek-fade-r { right: 0; background: linear-gradient(to left, #090909, transparent); }
.ek-glow-l, .ek-glow-r { display: none; }
.ek-track { display: flex; gap: 14px; overflow-x: auto; padding: 10px 12vw 32px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.ek-track::-webkit-scrollbar { display: none; }
.ek-card { flex: 0 0 210px; scroll-snap-align: start; background: #0e0e0e; border: 1px solid rgba(255,255,255,0.07); overflow: hidden; position: relative; cursor: pointer; transition: border-color 0.4s ease, transform 0.45s cubic-bezier(0.23,1,0.32,1); }
.ek-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.15); }
.ek-photo-wrap { overflow: hidden; position: relative; height: 240px; }
.ek-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; filter: grayscale(25%) brightness(0.78); transition: transform 0.75s cubic-bezier(0.23,1,0.32,1), filter 0.5s ease; }
.ek-card:hover .ek-photo { transform: scale(1.07); filter: grayscale(0%) brightness(0.88); }
.ek-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,10,0.92) 0%, rgba(5,5,10,0.1) 55%, transparent 100%); pointer-events: none; }
.ek-body { padding: 0 16px 18px; position: relative; }
.ek-divider { height: 1px; background: rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.ek-divider::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,51,102,0.6), rgba(72,52,212,0.6), transparent); transition: left 0.6s cubic-bezier(0.23,1,0.32,1); }
.ek-card:hover .ek-divider::after { left: 100%; }
.ek-meta { display: flex; align-items: center; gap: 12px; padding: 14px 0 0; }
.ek-text { flex: 1; min-width: 0; }
.ek-name { font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.92); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ek-role { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.82rem; color: rgba(255,255,255,0.32); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.3s ease; }
.ek-card:hover .ek-role { color: rgba(255,160,190,0.6); }
.ek-ig-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.13); background: transparent; color: rgba(255,255,255,0.4); cursor: pointer; text-decoration: none; position: relative; overflow: hidden; transition: border-color 0.35s ease, color 0.35s ease; flex-shrink: 0; }
.ek-ig-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); opacity: 0; transition: opacity 0.35s ease; z-index: 0; }
.ek-ig-btn:hover::before { opacity: 1; }
.ek-ig-btn:hover { border-color: transparent; color: white; }
.ek-ig-icon { width: 16px; height: 16px; position: relative; z-index: 1; flex-shrink: 0; }
.ek-num { position: absolute; top: 10px; right: 12px; font-family: 'Cormorant Garamond', serif; font-size: 0.6rem; letter-spacing: 2px; color: rgba(255,255,255,0.1); transition: color 0.3s; z-index: 2; }
.ek-card:hover .ek-num { color: rgba(255,255,255,0.28); }
.ek-arrows { display: flex; justify-content: center; gap: 10px; margin-top: 4px; }
.ek-arr { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); color: rgba(255,255,255,0.4); font-size: 0.8rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; }
.ek-arr:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.25); color: white; }
 
/* ════════════════════════════════════════════════════════
   OVERLAY
   ════════════════════════════════════════════════════════ */
.ov-layer { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0); pointer-events: none; transition: background 0.45s ease; }
.ov-layer.open { background: rgba(0,0,0,0.82); pointer-events: all; }
.gear-stage { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.ov-layer.gearing .gear-stage { opacity: 1; }
.ov-layer.done    .gear-stage { opacity: 0; transition: opacity 0.3s ease 0.1s; }
.gear-svg { overflow: visible; }
.g-cw  { transform-origin: 50% 50%; animation: spinCW  0.7s linear infinite; }
.g-ccw { transform-origin: 50% 50%; animation: spinCCW 0.7s linear infinite; }
.ov-card { position: relative; background: #0f0f0f; border: 1px solid rgba(255,255,255,0.08); width: 540px; max-width: 92vw; display: flex; opacity: 0; pointer-events: none; transform: scale(0.88); transition: opacity 0s, transform 0s; overflow: hidden; }
.ov-layer.done .ov-card { opacity: 1; pointer-events: all; transform: scale(1); animation: popIn 0.5s cubic-bezier(0.23,1,0.32,1) forwards; }
.ov-photo-col { width: 210px; flex-shrink: 0; position: relative; overflow: hidden; }
.ov-photo-col img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; filter: grayscale(10%) brightness(0.85); }
.ov-photo-col::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, #0f0f0f 100%); }
.ov-info { padding: 36px 28px 32px; flex: 1; display: flex; flex-direction: column; justify-content: center; animation: slideUp 0.55s cubic-bezier(0.23,1,0.32,1) 0.15s both; }
.ov-num { font-family: 'Cormorant Garamond', serif; font-size: 0.6rem; letter-spacing: 3px; color: rgba(255,255,255,0.15); margin-bottom: 20px; }
.ov-name { font-size: 1.25rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.95); margin-bottom: 6px; }
.ov-role { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: rgba(255,160,190,0.55); margin-bottom: 24px; }
.ov-rule { width: 32px; height: 1px; background: linear-gradient(90deg, #ff3366, #4834d4); background-size: 300%; animation: grd 8s linear infinite; margin-bottom: 24px; }
.ov-bio { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.ov-ig { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.13); color: rgba(255,255,255,0.4); text-decoration: none; position: relative; overflow: hidden; transition: border-color 0.35s, color 0.35s; }
.ov-ig::before { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); opacity: 0; transition: opacity 0.35s; z-index: 0; }
.ov-ig:hover::before { opacity: 1; }
.ov-ig:hover { border-color: transparent; color: white; }
.ov-ig svg { position: relative; z-index: 1; }
.ov-close { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.1); background: transparent; color: rgba(255,255,255,0.3); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.25s; z-index: 10; }
.ov-close:hover { background: rgba(255,255,255,0.06); color: white; border-color: rgba(255,255,255,0.25); }
 
/* ════════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════════ */
.hk-cta {
  position: relative;
  padding: 10rem 5%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.hk-cta-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.hk-cta-deco span {
  font-size: clamp(8rem, 25vw, 22rem);
  font-weight: 700;
  letter-spacing: -8px;
  color: rgba(255,255,255,.02);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}
 
.hk-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}
 
.hk-cta-tag {
  display: inline-block;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 1.5rem;
}
 
.hk-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hk-cta-title em {
  font-style: italic;
  background: var(--grad);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradAnim 8s linear infinite;
}
 
.hk-cta-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  margin-bottom: 3rem;
}
 
.hk-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
 
.hk-btn-primary {
  display: inline-block;
  position: relative;
  padding: .8rem 2.2rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
  transition: color .3s;
}
.hk-btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad);
  background-size: 300%;
  animation: gradAnim 8s linear infinite;
  z-index: -2;
}
.hk-btn-primary::after {
  content: '';
  position: absolute; inset: 1px;
  background: var(--ink);
  border-radius: 1px;
  z-index: -1;
  transition: opacity .3s ease;
}
.hk-btn-primary:hover::after { opacity: 0; }
 
.hk-btn-ghost {
  display: inline-block;
  padding: .8rem 2.2rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  transition: border-color .3s, color .3s, background .3s;
}
.hk-btn-ghost:hover {
  border-color: rgba(255,255,255,.3);
  color: #fff;
  background: rgba(255,255,255,.04);
}
 
/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-visual { display: none; }
  .timeline::before { left: 20px; }
  .t-item { grid-template-columns: 40px 1fr; }
  .t-item:nth-child(odd) .t-content,
  .t-item:nth-child(even) .t-content {
    grid-column: 2; text-align: left; padding: 0 0 0 1.5rem;
  }
  .t-item:nth-child(odd) .t-empty,
  .t-item:nth-child(even) .t-empty { display: none; }
  .t-dot { grid-column: 1; justify-content: flex-start; padding-left: 14px; }
}
 
@media (max-width: 768px) {
  .hk-cta-btns { flex-direction: column; align-items: center; }
  .hk-cta { padding: 6rem 5%; }
}