/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
  --bg-dark: #050505;
  --bg-card: #111111;
  --bg-card-hover: #181818;
  --text-main: #f0f0f0;
  --text-muted: #999999;
  --accent: #d4ff00; /* Neon Lime/Yellow */
  --accent-glow: rgba(212, 255, 0, 0.3);
  --border-color: rgba(255, 255, 255, 0.08);
  
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  /* Özel imleç kullanıyorsak varsayılanı gizleyebiliriz, ancak JS eklenene kadar açık kalsın */
  cursor: default; 
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: var(--accent);
}

/* =========================================
   NOISE & CURSOR (JS gerektirir)
   ========================================= */
.noise-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cursor, .cursor-follower {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  display: none; /* JS ile aktif edilecek */
}
.cursor {
  width: 8px; height: 8px;
  background: var(--accent);
}
.cursor-follower {
  width: 40px; height: 40px;
  border: 1px solid var(--accent);
  transition: width 0.2s, height 0.2s;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-glow);
  background: #e1ff4d;
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}
.btn-ghost:hover {
  border-color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.btn-full {
  width: 100%;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  background: var(--accent);
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-links a:hover {
  color: var(--text-main);
}
.btn-nav {
  padding: 10px 20px;
  background: #fff;
  color: #000;
  font-size: 0.9rem;
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  background: var(--bg-dark);
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  text-align: center;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  z-index: -2;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
}
.orb-1 { width: 400px; height: 400px; background: var(--accent); top: -100px; right: -100px; }
.orb-2 { width: 300px; height: 300px; background: #3300ff; bottom: 100px; left: -50px; }

.hero-inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-headline .line { display: block; }
.hero-headline .accent-line { color: var(--accent); }
.hero-headline em { font-style: italic; color: var(--text-muted); }
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 700px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #fff;
}
.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  background: var(--border-color);
}

/* =========================================
   BELT (LOGOS)
   ========================================= */
.belt {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  background: #0a0a0a;
  overflow: hidden;
  white-space: nowrap;
}
.belt-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.belt-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
}
.belt-logos {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #888;
}
.platform-dot { color: var(--accent); }

/* =========================================
   SECTION HEADERS
   ========================================= */
section {
  padding: 120px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
.problem-body {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.highlight-text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}
.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 16px;
}
.pain-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.pain-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================================
   HOW IT WORKS (STEPS & MOCKS)
   ========================================= */
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.step-reverse .step-content {
  order: 2;
}
.step-reverse .step-visual {
  order: 1;
}
.step-number {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: rgba(255,255,255,0.05);
  line-height: 0.8;
  margin-bottom: 24px;
}
.step-icon-wrap {
  width: 64px; height: 64px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.02);
}
.step-content h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.step-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.step-details {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}
.step-details li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #ccc;
  font-size: 0.95rem;
}
.step-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 64px 0;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
}
.connector-line {
  height: 80px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

/* UI Mockups */
.step-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.step-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(180deg, rgba(212,255,0,0.05) 0%, transparent 100%);
}

.mock-upload { text-align: center; }
.mock-upload-icon {
  width: 80px; height: 80px;
  background: #1a1a1a;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.mock-input {
  display: flex;
  background: #000;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px;
  margin: 24px 0;
}
.mock-input span {
  flex: 1;
  padding: 8px;
  color: #666;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-align: left;
}
.mock-btn {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0 16px;
}

.mock-editor-top {
  display: flex; gap: 8px; margin-bottom: 24px; align-items: center;
}
.mock-dot { width: 12px; height: 12px; border-radius: 50%; }
.mock-dot.red { background: #ff5f56; }
.mock-dot.yellow { background: #ffbd2e; }
.mock-dot.green { background: #27c93f; }
.mock-title { margin-left: 16px; font-family: var(--font-mono); font-size: 0.8rem; color: #666; }
.timeline-track {
  display: flex; gap: 4px; background: #000; height: 60px; border-radius: 8px; padding: 4px; margin-bottom: 8px;
}
.clip {
  flex: 1; background: #222; border-radius: 4px; border: 1px solid #333;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.7rem; color: #888;
}
.clip.clip-a { border-color: var(--accent); color: var(--accent); flex: 0.5; }
.timeline-captions { display: flex; gap: 8px; margin-bottom: 24px; }
.caption-block { height: 12px; background: #222; border-radius: 4px; flex: 1; }
.caption-block.short { flex: 0.5; }
.mock-status {
  display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent);
}

.mock-clip-row {
  display: flex; align-items: center; gap: 16px; padding: 16px; border-bottom: 1px solid #222;
}
.mock-thumb {
  width: 48px; height: 64px; background: #222; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
}
.mock-clip-info { display: flex; flex-direction: column; flex: 1; }
.clip-title { font-size: 0.95rem; font-weight: 500; }
.clip-meta { font-size: 0.8rem; color: #666; font-family: var(--font-mono); margin-top: 4px; }
.mock-dl { background: none; border: 1px solid #333; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer;}
.mock-dl-all { padding: 24px 16px 0; text-align: center; }

/* =========================================
   DELIVERABLES & RESULTS
   ========================================= */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.deliverable-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px 32px;
  border-radius: 16px;
  transition: var(--transition);
}
.deliverable-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.2);
}
.deliverable-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #111;
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 16px;
  position: relative;
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: #222;
  position: absolute;
  top: 10px; left: 30px;
  line-height: 1;
}
.quote-text {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.quote-author {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: #222;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-heading);
}
.quote-author strong { display: block; font-size: 1.05rem; }
.quote-author span { color: #666; font-size: 0.85rem; }
.quote-metrics { display: flex; gap: 8px; }
.metric-pill {
  padding: 4px 12px; background: rgba(212,255,0,0.1); color: var(--accent);
  border-radius: 100px; font-size: 0.8rem; font-weight: 500;
}

/* =========================================
   COMPARISON TABLE
   ========================================= */
.table-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}
.compare-table th, .compare-table td {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}
.compare-table th {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #888;
}
.compare-table .th-ev { color: #fff; }
.ev-badge {
  background: var(--accent); color: #000; padding: 4px 12px; border-radius: 4px;
}
.td-yes { color: var(--accent); font-weight: bold; }
.td-no { color: #555; }
.td-maybe { color: #ffbd2e; }

/* =========================================
   PRICING
   ========================================= */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: flex-start;
}
.pricing-card {
  background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent);
}
.plan-name {
  font-family: var(--font-heading); font-size: 2rem; margin-bottom: 16px;
}
.plan-price { display: flex; align-items: flex-start; margin-bottom: 24px; }
.price-dollar { font-size: 2rem; font-weight: bold; margin-top: 8px; }
.price-num { font-family: var(--font-heading); font-size: 6rem; line-height: 0.8; }
.price-per { color: #666; margin-top: auto; margin-bottom: 8px; margin-left: 8px; }
.plan-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid #222;}
.plan-features { margin-bottom: 40px; }
.plan-features li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 1.05rem; }
.pricing-guarantee { text-align: center; margin-top: 16px; font-size: 0.85rem; color: #666; }

.pricing-aside { display: flex; flex-direction: column; gap: 24px; }
.scarcity-box, .guarantee-box, .math-box {
  background: #111; border: 1px solid var(--border-color); border-radius: 16px; padding: 32px;
}
.scarcity-header { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 0.9rem; margin-bottom: 24px; }
.pulse { width: 10px; height: 10px; background: #ff5f56; border-radius: 50%; box-shadow: 0 0 10px #ff5f56; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }
.slots { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.slot { padding: 12px; background: #1a1a1a; border-radius: 8px; font-size: 0.9rem; color: #666; }
.slot.open { background: rgba(212,255,0,0.05); border: 1px solid rgba(212,255,0,0.2); color: #fff; }
.open-label { color: var(--accent); }
.scarcity-note { font-size: 0.85rem; color: #666; font-style: italic; }

.guarantee-icon { font-size: 2rem; margin-bottom: 16px; }
.guarantee-box h4, .math-box h4 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 12px; letter-spacing: 1px; }
.guarantee-box p { color: var(--text-muted); font-size: 0.95rem; }
.math-line { font-family: var(--font-mono); margin-bottom: 8px; }
.math-sub { font-size: 0.85rem; color: var(--accent); margin-top: 16px; }

/* =========================================
   FAQ
   ========================================= */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #111; border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; padding: 24px; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  color: #fff; font-size: 1.1rem; font-weight: 500; cursor: pointer;
  font-family: inherit;
}
.faq-icon { font-size: 1.5rem; color: var(--accent); transition: transform 0.3s; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { color: var(--text-muted); padding-bottom: 24px; }
/* JS ile 'active' sınıfı eklendiğinde açılacak */
.faq-item.active .faq-answer { max-height: 500px; padding-top: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* =========================================
   FINAL CTA & FOOTER
   ========================================= */
.final-cta { position: relative; text-align: center; overflow: hidden; padding: 160px 0; }
.final-orb {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; background: var(--accent); border-radius: 50%;
  filter: blur(150px); opacity: 0.15; z-index: -1;
}
.final-headline { font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 5rem); line-height: 1; margin-bottom: 24px; text-transform: uppercase; }
.final-sub { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; }
.final-actions { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }
.final-meta { display: flex; gap: 16px; color: #666; font-size: 0.9rem; font-family: var(--font-mono); }

.footer { border-top: 1px solid var(--border-color); padding: 64px 0 32px; background: #000; }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 64px; flex-wrap: wrap; gap: 24px; }
.footer-tagline { color: var(--text-muted); max-width: 300px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #111; padding-top: 32px; color: #666; font-size: 0.9rem; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: #fff; }

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
  .problem-grid, .step, .pricing-layout { grid-template-columns: 1fr; }
  .step-reverse .step-content { order: 1; }
  .step-reverse .step-visual { order: 2; }
  .pricing-layout { gap: 64px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  /* JS hamburger tıklandığında .nav-mobile'a .active eklenmeli */
  .nav-mobile.active { display: block; position: absolute; top: 100%; left: 0; width: 100%; }
  .nav-mobile ul li { border-bottom: 1px solid #222; }
  .nav-mobile ul li a { display: block; padding: 16px 0; }
  
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 100%; height: 1px; }
  
  .final-meta { flex-direction: column; gap: 8px; text-align: center; }
  .meta-dot { display: none; }
}


/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* JS bu class'ı eklediğinde elementler görünür olacak */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}