/* ───── Cinematic — Sarı Etiket ───── */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --y: #FFD60A;
  --y-soft: #FFF3B0;
  --ink: #0A0A0A;
  --paper: #FAFAFA;
  --paper-2: #F2F0E9;
  --gray-700: #525252;
  --gray-500: #737373;
  --gray-400: #A3A3A3;
  --gray-300: #D4D4D4;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --serif: 'Manrope', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (max-width: 1100px) { body { cursor: auto; } .cursor { display: none; } }

a { color: inherit; text-decoration: none; cursor: none; }
button { font: inherit; cursor: none; border: 0; background: none; color: inherit; }
.hl { background: linear-gradient(180deg, transparent 60%, var(--y) 60%); padding: 0 4px; }
em { font-style: italic; font-weight: inherit; }

/* ───── Custom cursor ───── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.cursor-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
  transition: width .25s, height .25s, background .25s;
}
.cursor.hover .cursor-dot { width: 56px; height: 56px; background: var(--y); mix-blend-mode: normal; }
.cursor-label {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0;
  transition: opacity .2s;
  white-space: nowrap;
}
.cursor.hover .cursor-label { opacity: 1; }

/* ───── Side rail ───── */
.rail {
  position: fixed;
  left: 32px; top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex; flex-direction: column;
  gap: 16px;
  width: 160px;
  pointer-events: auto;
  mix-blend-mode: difference;
  color: var(--paper);
}
@media (max-width: 1100px) { .rail { display: none; } }
.rail-logo {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 8px;
}
.rail-mark {
  width: 28px; height: 28px;
  background: var(--y);
  color: var(--ink);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 12px;
  border-radius: 6px;
}
.rail-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.rail-list li {
  display: flex; gap: 12px; align-items: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 0;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity .25s;
}
.rail-list li:hover, .rail-list li.active { opacity: 1; }
.r-num {
  font-weight: 600; font-variant-numeric: tabular-nums;
}
.r-name {
  font-weight: 400;
  position: relative;
}
.rail-list li.active .r-name::before {
  content: ""; position: absolute; left: -10px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--y);
  box-shadow: 0 0 12px var(--y);
}
.rail-progress {
  height: 1px; background: rgba(255,255,255,0.2);
  margin-top: 8px;
}
.rail-progress-bar {
  height: 100%; background: var(--y);
  width: 0%;
  transition: width .25s;
}

/* ───── Header ───── */
.hd {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 30;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 32px;
  mix-blend-mode: difference;
  color: var(--paper);
}
.hd-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 100px;
  transition: background .25s, color .25s;
}
.hd-back:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hd-name {
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
}
.hd-r { display: flex; gap: 8px; }
.hd-pill {
  font-size: 13px; font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid currentColor;
  transition: background .25s, color .25s;
}
.hd-pill:hover { background: var(--paper); color: var(--ink); }
.hd-pill--y { background: var(--y); color: var(--ink); border-color: var(--y); }
.hd-pill--y:hover { background: var(--ink); color: var(--y); border-color: var(--ink); }

/* ───── Scene base ───── */
.scene {
  position: relative;
  min-height: 100vh;
  width: 100%;
}

/* ───── SCENE 1: HERO ───── */
.scene-1 {
  height: 100vh;
  overflow: hidden;
  display: flex; align-items: end;
  padding: 0 0 80px;
}
.scene-bg {
  position: absolute; inset: 0;
  overflow: hidden;
  background: var(--ink);
}
.scene-bg img {
  width: 100%; height: 110%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
}
.bg-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(250,250,250,0.85) 0%, rgba(250,250,250,0.5) 45%, transparent 70%),
    linear-gradient(to bottom, transparent 0%, transparent 60%, var(--paper) 100%);
}
.scene-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 60px 0 240px;
  max-width: 1600px; margin: 0 auto;
}
.s1-meta {
  display: flex; gap: 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.s1-meta-sep { opacity: 0.4; }

.s1-h {
  font-weight: 200;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 1200px;
}
.s1-line { display: block; opacity: 0; transform: translateY(40px); animation: lineIn .9s cubic-bezier(.2,.7,.2,1) forwards; }
.s1-line-1 { animation-delay: .15s; }
.s1-line-2 { animation-delay: .35s; }
.s1-line-3 { animation-delay: .55s; }
@keyframes lineIn { to { opacity: 1; transform: translateY(0); } }
.s1-bold {
  font-weight: 700;
  background: var(--y);
  padding: 0 12px;
  letter-spacing: -0.05em;
  border-radius: 8px;
  display: inline-block;
}
.s1-italic { font-style: italic; font-weight: 300; }

.s1-foot {
  margin-top: 64px;
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0; transform: translateY(20px);
  animation: lineIn 1s cubic-bezier(.2,.7,.2,1) forwards .85s;
}
.s1-cta-group { display: flex; gap: 12px; }
.cine-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s, color .25s;
  position: relative;
}
.cine-btn--y { background: var(--y); color: var(--ink); }
.cine-btn--y:hover { background: var(--ink); color: var(--y); transform: translateY(-3px); }
.cine-btn--ghost { background: transparent; color: var(--ink); border: 1px solid currentColor; }
.cine-btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-3px); }
.cine-btn-arrow { font-size: 16px; }

.s1-stats { display: flex; gap: 40px; }
.s1-stats > div {
  display: flex; flex-direction: column;
}
.s1-stats span {
  font-weight: 600; font-size: 28px; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.s1-stats em {
  font-style: normal;
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 4px;
}

.scene-scroll {
  position: absolute;
  right: 60px; bottom: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  font-size: 11px; letter-spacing: 0.16em; font-weight: 500;
  z-index: 3;
}
.scene-scroll-line {
  width: 1px; height: 50px; background: var(--ink);
  position: relative; overflow: hidden;
}
.scene-scroll-line::before {
  content: ""; position: absolute; top: -50%; left: 0;
  width: 100%; height: 100%; background: var(--y);
  animation: scrollLine 1.6s cubic-bezier(.6,0,.4,1) infinite;
}
@keyframes scrollLine { to { top: 100%; } }

/* ───── SCENE 2: MANIFESTO ───── */
.scene-2 {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 80px 140px 280px;
  background: var(--paper);
  position: relative;
}
.s2-num {
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--gray-500); text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 40px;
}
.s2-h {
  font-weight: 300;
  font-size: clamp(36px, 5vw, 88px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 1300px;
}
.s2-h em { font-style: italic; font-weight: 400; }
.word {
  display: inline-block;
  margin-right: 0.18em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.word.in { opacity: 1; transform: translateY(0); }

.s2-foot {
  display: flex; gap: 16px; align-items: center;
  margin-top: 60px;
  font-size: 12px; letter-spacing: 0.12em;
  color: var(--gray-500); text-transform: uppercase;
}
.s2-foot-line { flex: 1; height: 1px; background: var(--gray-300); max-width: 200px; }

/* ───── SCENE 3: KAMPANYALAR ───── */
.scene-3 {
  background: var(--paper-2);
  height: 400vh;
  position: relative;
}
.s3-pin {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; flex-direction: column;
  padding: 100px 80px 60px 280px;
  overflow: hidden;
}
.s3-meta {
  display: flex; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
}
.s3-counter { color: var(--ink); font-variant-numeric: tabular-nums; }

.s3-stage {
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-top: 30px;
  align-items: center;
}
.s3-images { position: relative; aspect-ratio: 5/6; }
.s3-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform .9s cubic-bezier(.4,0,.2,1);
  transform: scale(1.04);
  border-radius: 4px;
}
.s3-img.active { opacity: 1; transform: scale(1); }
.s3-img-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--y); color: var(--ink);
  padding: 8px 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 4px;
}

.s3-content { position: relative; }
.s3-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .8s, transform .8s;
  transform: translateY(20px);
}
.s3-slide.active { opacity: 1; transform: translateY(0); }
.s3-brand {
  font-size: 12px; letter-spacing: 0.18em;
  font-weight: 600; text-transform: uppercase;
  color: var(--gray-500);
}
.s3-title {
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-top: 20px;
}
.s3-discount {
  display: inline-block;
  background: var(--ink);
  color: var(--y);
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 24px;
  border-radius: 4px;
}
.s3-end {
  margin-top: 32px;
  font-size: 13px;
  color: var(--gray-500);
  display: flex; gap: 12px; align-items: center;
}
.s3-end::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--y); box-shadow: 0 0 8px var(--y);
}
.s3-cta {
  margin-top: 32px;
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 14px; font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap .3s;
}
.s3-cta:hover { gap: 14px; }

.s3-controls {
  margin-top: 24px;
  display: flex; gap: 30px; align-items: center;
}
.s3-progress {
  flex: 1;
  height: 1px;
  background: var(--gray-300);
  position: relative;
}
.s3-progress-bar {
  position: absolute; left: 0; top: 0;
  height: 100%; background: var(--ink);
  width: 0%;
  transition: width .8s cubic-bezier(.4,0,.2,1);
}
.s3-nav { display: flex; gap: 8px; }
.s3-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  font-size: 16px;
  transition: background .25s, color .25s;
}
.s3-arrow:hover { background: var(--ink); color: var(--y); }

/* ───── SCENE 4: HORIZONTAL PRODUCT TRACK ───── */
.scene-4 {
  padding: 140px 0 140px;
  background: var(--paper);
  overflow: hidden;
}
.s4-head {
  padding: 0 80px 60px 280px;
  max-width: 1400px;
}
.s4-num {
  display: block;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--gray-500); text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.s4-head h2 {
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.s4-head p {
  margin-top: 16px;
  font-size: 15px;
  color: var(--gray-500);
}
.s4-track {
  display: flex; gap: 24px;
  padding: 0 80px 0 280px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.s4-track::-webkit-scrollbar { display: none; }
.s4-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  position: relative;
  cursor: none;
}
.s4-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  background: var(--gray-100);
}
.s4-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.s4-card:hover .s4-card-img img { transform: scale(1.05); }
.s4-card-disc {
  position: absolute; top: 16px; left: 16px;
  background: var(--y); color: var(--ink);
  padding: 6px 10px;
  font-weight: 700; font-size: 12px;
  border-radius: 4px;
}
.s4-card-info { padding: 16px 0; }
.s4-card-brand {
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--gray-500); text-transform: uppercase;
  font-weight: 600;
}
.s4-card-title {
  font-weight: 500; font-size: 17px;
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.s4-card-foot {
  margin-top: 12px;
  display: flex; gap: 10px; align-items: baseline;
}
.s4-card-price { font-weight: 700; font-size: 16px; }
.s4-card-old { color: var(--gray-400); text-decoration: line-through; font-size: 13px; }

/* ───── SCENE 5: BRAND ───── */
.scene-5 {
  padding: 140px 0 140px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.s5-head {
  padding: 0 80px 80px 280px;
}
.s5-num {
  display: block;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--gray-400); text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.s5-head h2 {
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.brand-track {
  overflow: hidden;
  margin-bottom: 16px;
}
.brand-track-inner {
  display: flex; gap: 80px;
  white-space: nowrap;
  font-weight: 600;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.04em;
  animation: btMarq 50s linear infinite;
  align-items: center;
}
.brand-track-inner.reverse { animation-direction: reverse; }
@keyframes btMarq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-track-inner span { display: inline-flex; align-items: center; }
.brand-track-inner span.dot { color: var(--y); font-size: 0.6em; }

/* ───── SCENE 6: VIP ───── */
.scene-6 {
  padding: 140px 80px 140px 280px;
  background: var(--paper-2);
}
.s6-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
}
.s6-num {
  display: block;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--gray-500); text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.s6-l h2 {
  font-weight: 300;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.s6-l p {
  margin-top: 24px;
  font-size: 15px;
  color: var(--gray-500);
  max-width: 360px;
}
.s6-r { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--gray-300); }
.vip-row {
  padding: 28px 8px;
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--gray-300);
  cursor: none;
  transition: background .25s, padding .25s;
  position: relative;
}
.vip-row:hover { background: rgba(255,214,10,0.15); padding-left: 20px; }
.vip-row.featured { background: var(--y); border-bottom-color: var(--y); }
.vip-row.featured:hover { background: var(--y-soft); }
.vip-tier {
  font-weight: 600; font-size: 24px;
  letter-spacing: -0.02em;
}
.vip-perks { font-size: 13px; color: var(--gray-700); line-height: 1.5; }
.vip-row.featured .vip-perks { color: var(--ink); }
.vip-price-r {
  font-weight: 600; font-size: 16px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ───── SCENE 7: NEWSLETTER + FOOTER ───── */
.scene-7 {
  background: var(--paper);
  padding: 140px 80px 0 280px;
  display: flex; flex-direction: column;
  min-height: 100vh;
}
.s7-content {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1100px;
}
.s7-num {
  display: block;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--gray-500); text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.s7-h {
  font-weight: 300;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.s7-h em { font-style: italic; font-weight: 400; }
.s7-form {
  margin-top: 60px;
  display: flex; gap: 0;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 8px;
  max-width: 600px;
}
.s7-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 4px;
  font-family: inherit;
  font-size: 22px;
  font-weight: 300;
}
.s7-form input:focus { outline: none; }
.s7-form button {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 14px; font-weight: 600;
  padding: 12px 24px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  transition: background .25s, color .25s, gap .3s;
}
.s7-form button:hover { background: var(--y); color: var(--ink); gap: 14px; }
.s7-fine { margin-top: 18px; font-size: 13px; color: var(--gray-500); }

.s7-foot {
  margin-top: 100px;
  padding: 32px 0 32px;
  border-top: 1px solid var(--gray-200);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--gray-500);
}
.s7-foot-l { display: flex; gap: 12px; align-items: center; }
.s7-foot-l .hd-mark {
  width: 28px; height: 28px;
  background: var(--y); color: var(--ink);
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
  border-radius: 6px;
}
.s7-foot-r { display: flex; gap: 20px; }
.s7-foot-r a:hover { color: var(--ink); }

/* ───── Reveal helper ───── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.fade-in.in { opacity: 1; transform: translateY(0); }

/* ───── Mobile ───── */
@media (max-width: 1100px) {
  .scene-content { padding: 0 32px; }
  .scene-2 { padding: 100px 32px; }
  .s3-pin { padding: 80px 32px 40px; }
  .s3-stage { grid-template-columns: 1fr; gap: 30px; }
  .s4-head, .s5-head, .scene-6, .scene-7 { padding-left: 32px; padding-right: 32px; }
  .s4-track { padding: 0 32px; }
  .s6-grid { grid-template-columns: 1fr; gap: 40px; }
  .vip-row { grid-template-columns: 1fr; gap: 8px; }
  .scene-7 { padding: 80px 32px 0; }
}
