/* =========================================================
   GenZfluencer Agency — Editorial / Bold
   Koyu zemin · dev tipografi · tek keskin neon-lime vurgu
   Font: Anton (display) · Bricolage Grotesque (head) · Manrope (body)
   ========================================================= */

:root {
  /* Taban */
  --ink:        #08080A;   /* neredeyse siyah */
  --ink-2:      #0E0E11;
  --ink-3:      #16161B;
  --line:       rgba(255,255,255,0.10);
  --line-2:     rgba(255,255,255,0.18);

  /* Kağıt (açık bölümler) */
  --paper:      #F3F1EA;   /* sıcak kırık beyaz */
  --paper-2:    #E7E4D8;

  /* Metin */
  --white:      #F4F4F0;
  --mute:       rgba(244,244,240,0.60);
  --mute-2:     rgba(244,244,240,0.42);
  --dark-ink:   #0B0B0D;
  --dark-mute:  #55554e;

  /* Tek keskin vurgu: neon lime */
  --lime:       #CCFF00;
  --lime-2:     #B4E600;
  --lime-glow:  rgba(204,255,0,0.35);

  --max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Film grain / doku katmanı — tüm sayfa üstünde ince gürültü */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* Tipografi temeli */
h1, h2, h3, h4 { line-height: 1.02; font-weight: 800; }
.display {
  font-family: "Anton", "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
}
.head {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lime { color: var(--lime); }
.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}

/* Eyebrow etiketi */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--lime);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--lime);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

/* =========================================================
   Butonlar
   ========================================================= */
.btn {
  --pad: 16px 34px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--pad);
  font-family: "Manrope", sans-serif;
  font-weight: 800; font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.btn .arw { transition: transform 0.35s var(--ease); }
.btn:hover .arw { transform: translateX(5px); }

.btn-primary { background: var(--lime); color: var(--dark-ink); }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--lime-glow);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-3px); }

.btn-dark { background: var(--dark-ink); color: var(--white); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.35); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,8,10,0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; transition: height 0.4s var(--ease);
}
.site-header.scrolled .nav { height: 68px; }

.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: 1.2rem; letter-spacing: -0.03em;
  color: var(--white);
}
.brand .dot {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(204,255,0,0.15), 0 0 18px var(--lime-glow);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(204,255,0,0.15), 0 0 18px var(--lime-glow); }
  50%      { box-shadow: 0 0 0 7px rgba(204,255,0,0.04), 0 0 26px var(--lime-glow); }
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 700; color: var(--mute);
  position: relative; transition: color 0.25s var(--ease);
}
.nav-links a.link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--lime);
  transition: width 0.3s var(--ease);
}
.nav-links a.link:hover { color: var(--white); }
.nav-links a.link:hover::after { width: 100%; }

/* Header'daki CTA butonu — temiz ve oturaklı */
.nav-cta {
  padding: 11px 22px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  border-radius: 999px;
  gap: 8px;
}
.nav-cta .arw { font-size: 1.05em; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 78% 18%, rgba(204,255,0,0.10) 0%, transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(204,255,0,0.06) 0%, transparent 60%),
    var(--ink);
}
/* Hero grid dokusu */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 40%, #000 0%, transparent 78%);
          mask-image: radial-gradient(75% 75% at 50% 40%, #000 0%, transparent 78%);
  opacity: 0.5;
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }

.hero-eyebrow { margin-bottom: 30px; }

.hero h1 {
  font-size: clamp(3.2rem, 12vw, 10rem);
  max-width: 15ch;
}
.hero h1 .word { display: inline-block; }
.hero h1 .rot {
  display: inline-block;
  color: var(--lime);
  position: relative;
}

.hero-lower {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; margin-top: 44px;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--mute); max-width: 46ch; line-height: 1.55;
}
.hero-lead strong { color: var(--white); font-weight: 700; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Kayan yıldız rozeti */
.spinner {
  position: absolute; top: 20%; right: 4%; z-index: 3;
  width: 130px; height: 130px;
  display: grid; place-items: center;
}
.spinner .ring {
  position: absolute; inset: 0;
  animation: spin 14s linear infinite;
}
.spinner .ring svg { width: 100%; height: 100%; }
.spinner .ring text { fill: var(--white); font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em; font-family: "Manrope", sans-serif; }
.spinner .core {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--lime); color: var(--dark-ink);
  display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: 0 0 30px var(--lime-glow);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   Marquee (akan yazı şeridi)
   ========================================================= */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--lime);
  color: var(--dark-ink);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: "Anton", sans-serif; text-transform: uppercase;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem); letter-spacing: 0.01em;
  padding: 0 26px; display: inline-flex; align-items: center; gap: 26px;
}
.marquee span::after { content: "✦"; font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   Genel bölüm
   ========================================================= */
section.block { padding: 120px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 70px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  margin-top: 22px;
}
.section-head p { color: var(--mute); margin-top: 20px; font-size: 1.08rem; max-width: 52ch; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* Bölüm numarası (editorial) */
.sec-index {
  font-family: "Anton", sans-serif;
  font-size: 0.9rem; letter-spacing: 0.3em; color: var(--mute-2);
}

/* =========================================================
   Platformlar
   ========================================================= */
.platform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.platform-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 42px 42px;
  background: var(--ink-2);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.platform-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0.14;
  transition: opacity 0.5s var(--ease);
}
.platform-card.ig::before { background: radial-gradient(90% 90% at 80% 15%, #E1306C 0%, #FCB045 55%, transparent 75%); }
.platform-card.tt::before { background: radial-gradient(90% 90% at 80% 15%, #25F4EE 0%, #FE2C55 55%, transparent 75%); }
.platform-card:hover { transform: translateY(-8px); border-color: var(--line-2); }
.platform-card:hover::before { opacity: 0.24; }
.platform-card .pf-tag {
  font-family: "Anton", sans-serif; text-transform: uppercase;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem); position: relative; z-index: 2;
}
.platform-card h3 { font-family: "Bricolage Grotesque"; font-size: 1.35rem; margin: 18px 0 12px; position: relative; z-index: 2; }
.platform-card p { color: var(--mute); position: relative; z-index: 2; }
.platform-card .pf-icon { position: absolute; top: 40px; right: 42px; font-size: 1.8rem; z-index: 2; }

/* =========================================================
   Hizmetler grid
   ========================================================= */
.services { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.svc {
  padding: 46px 38px 42px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; transition: background 0.4s var(--ease);
  overflow: hidden;
}
.svc::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--lime); transition: width 0.45s var(--ease);
}
.svc:hover { background: var(--ink-3); }
.svc:hover::after { width: 100%; }
.svc .no {
  font-family: "Anton", sans-serif; font-size: 1rem;
  color: var(--lime); letter-spacing: 0.15em; margin-bottom: 26px; display: block;
}
.svc .ico { font-size: 2rem; margin-bottom: 18px; display: block; transition: transform 0.4s var(--ease); }
.svc:hover .ico { transform: translateY(-4px) scale(1.08); }
.svc h3 { font-family: "Bricolage Grotesque"; font-size: 1.28rem; margin-bottom: 12px; letter-spacing: -0.02em; }
.svc p { color: var(--mute); font-size: 0.98rem; }

/* =========================================================
   Nasıl çalışır — editorial adım listesi
   ========================================================= */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 30px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step:hover { padding-left: 18px; }
.step .snum {
  font-family: "Anton", sans-serif; font-size: clamp(3rem, 7vw, 5.5rem);
  color: transparent; -webkit-text-stroke: 1.5px var(--line-2);
  transition: -webkit-text-stroke 0.4s var(--ease), color 0.4s var(--ease);
  line-height: 1;
}
.step:hover .snum { -webkit-text-stroke: 1.5px var(--lime); color: var(--lime); }
.step .st-body h3 { font-family: "Bricolage Grotesque"; font-size: 1.5rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.step .st-body p { color: var(--mute); max-width: 60ch; }
.step .st-arw { font-size: 1.6rem; color: var(--mute-2); transition: color 0.4s var(--ease), transform 0.4s var(--ease); }
.step:hover .st-arw { color: var(--lime); transform: translateX(8px); }

/* =========================================================
   Stat band
   ========================================================= */
.stat-wrap { text-align: center; }
.stat-wrap .huge {
  font-family: "Anton", sans-serif; text-transform: uppercase;
  font-size: clamp(4.5rem, 20vw, 17rem); line-height: 0.85; color: var(--lime);
  letter-spacing: -0.02em; text-shadow: 0 0 60px var(--lime-glow);
}
.stat-wrap .sub { font-family: "Bricolage Grotesque"; font-size: clamp(1.2rem, 2.5vw, 1.9rem); margin-top: 6px; letter-spacing: -0.02em; }
.stat-wrap .desc { color: var(--mute); max-width: 56ch; margin: 22px auto 0; font-size: 1.05rem; }
.stat-mini { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 56px; }
.stat-mini .chip {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 14px 26px; text-align: left; min-width: 200px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.stat-mini .chip:hover { border-color: var(--lime); transform: translateY(-4px); }
.stat-mini .chip strong { font-family: "Bricolage Grotesque"; display: block; font-size: 1.1rem; }
.stat-mini .chip span { color: var(--mute); font-size: 0.85rem; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: var(--lime); color: var(--dark-ink);
  border-radius: 30px; padding: 80px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: "✦"; position: absolute; font-size: 22rem; line-height: 1;
  top: -60px; right: -40px; opacity: 0.08;
  font-family: "Anton";
}
.cta-band h2 { font-family: "Anton"; text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 5rem); position: relative; z-index: 2; line-height: 0.95; }
.cta-band p { position: relative; z-index: 2; max-width: 48ch; margin: 20px auto 34px; font-weight: 600; font-size: 1.1rem; color: rgba(11,11,13,0.7); }
.cta-band .btn-dark { position: relative; z-index: 2; }

/* =========================================================
   İletişim sayfası
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: "Bricolage Grotesque"; font-size: 1.8rem; margin-bottom: 30px; letter-spacing: -0.02em; }
.contact-info .item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.contact-info .item .ico {
  width: 48px; height: 48px; border-radius: 12px; flex: 0 0 auto;
  border: 1px solid var(--line-2); display: grid; place-items: center; font-size: 1.2rem;
}
.contact-info .item small { color: var(--mute); display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-info .item strong { font-size: 1.05rem; font-weight: 700; }
.contact-info .item strong a:hover { color: var(--lime); }
.contact-note { color: var(--mute); margin-top: 26px; font-size: 0.95rem; }

.form-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 24px; padding: 42px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute);
  margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 15px 17px;
  border: 1px solid var(--line-2); border-radius: 12px;
  font-family: "Manrope", sans-serif; font-size: 1rem;
  background: var(--ink); color: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--mute-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(204,255,0,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer; }
.form-note { color: var(--mute); font-size: 0.85rem; text-align: center; margin-top: 14px; }
.form-note a { color: var(--lime); font-weight: 700; }

.page-hero {
  padding: 170px 0 60px; position: relative; overflow: hidden;
  background: radial-gradient(60% 80% at 85% 10%, rgba(204,255,0,0.08) 0%, transparent 60%), var(--ink);
}
.page-hero h1 { font-family: "Anton"; text-transform: uppercase; font-size: clamp(2.6rem, 8vw, 6rem); margin: 22px 0 20px; }
.page-hero .lead { color: var(--mute); max-width: 54ch; font-size: 1.1rem; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); padding: 80px 0 40px; }
.footer-brand-row { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
.footer-big { font-family: "Anton"; text-transform: uppercase; font-size: clamp(2.4rem, 8vw, 6rem); line-height: 0.9; max-width: 14ch; }
.footer-big .lime { color: var(--lime); }
.footer-right { text-align: right; }
.footer-links { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.footer-links a { color: var(--mute); font-weight: 600; transition: color 0.25s var(--ease); }
.footer-links a:hover { color: var(--lime); }
.footer-bottom {
  margin-top: 34px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: var(--mute-2);
}
.footer-bottom a:hover { color: var(--lime); }

/* =========================================================
   Scroll reveal animasyonları
   ========================================================= */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* Hero açılış animasyonu */
.hero-anim { opacity: 0; transform: translateY(46px); animation: heroIn 1s var(--ease) forwards; }
.hero-anim.a1 { animation-delay: 0.1s; }
.hero-anim.a2 { animation-delay: 0.25s; }
.hero-anim.a3 { animation-delay: 0.4s; }
.hero-anim.a4 { animation-delay: 0.55s; }
.hero-anim.a5 { animation-delay: 0.7s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-anim { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .platform-row { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .spinner { display: none; }
  .step { grid-template-columns: 70px 1fr; }
  .step .st-arw { display: none; }
  .nav-links a.hide-sm { display: none; }
  .footer-brand-row { flex-direction: column; }
  .footer-right { text-align: left; }
  .footer-links { align-items: flex-start; }
}
@media (max-width: 560px) {
  section.block { padding: 80px 0; }
  .cta-band { padding: 56px 28px; }
  .form-card { padding: 28px; }
  .nav-links { gap: 16px; }
}

/* İletişim formu — başarı mesajı */
.form-success {
  text-align: center;
  padding: 20px 8px;
  animation: fsFade 0.5s var(--ease, ease) both;
}
.form-success .fs-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: var(--lime);
  color: var(--dark-ink);
  box-shadow: 0 0 45px var(--lime-glow);
}
.form-success h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.6rem;
  margin: 0 0 12px;
}
.form-success p {
  color: var(--mute, #9a9aa2);
  max-width: 40ch;
  margin: 0 auto 16px;
  line-height: 1.55;
}
.form-success .fs-redirect {
  font-size: 0.9rem;
  color: var(--lime);
  margin-bottom: 24px;
}
@keyframes fsFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
