/* ============================================================
   Zuma Agency — Shared Stylesheet
   Dark + neon (cyan) accent system
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --bg-elev: #111114;
  --bg-card: #16161a;
  --line: #232327;
  --line-2: #2e2e34;
  --ink: #f4f4f5;
  --ink-2: #a1a1aa;
  --ink-3: #71717a;
  --ink-4: #52525b;

  --accent: #ff0d3d;
  --accent-2: #ff0d3d;
  --accent-soft: rgba(255, 13, 61, 0.12);
  --accent-glow: rgba(255, 13, 61, 0.45);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1400px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  overflow-x: clip;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(37, 244, 238, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 110%, rgba(254, 44, 85, 0.06), transparent 70%);
  background-attachment: fixed;
}

/* Subtle scanlines */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.012) 0,
    rgba(255, 255, 255, 0.012) 1px,
    transparent 1px,
    transparent 3px
  );
  z-index: 1000;
  mix-blend-mode: overlay;
}

/* Grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 999;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(48px, 8vw, 128px); line-height: 0.92; letter-spacing: -0.04em; }
h2 { font-size: clamp(36px, 5vw, 72px); line-height: 0.95; letter-spacing: -0.03em; }
h3 { font-size: clamp(24px, 2.5vw, 36px); line-height: 1.1; }
h4 { font-size: 20px; }

p { margin: 0; text-wrap: pretty; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: #000; }

/* ----------------------------------------------------------------
   LAYOUT
---------------------------------------------------------------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ----------------------------------------------------------------
   NAV
---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  height: 56px;
  width: auto;
}

.logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), #b5002a);
  position: relative;
  box-shadow: 0 0 20px rgba(37, 244, 238, 0.4);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 2px;
  background: var(--bg);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13.5px;
  color: var(--ink-2);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--bg-elev);
}

.nav-links a.active {
  color: var(--ink);
  background: var(--bg-elev);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(37, 244, 238, 0.35);
}

.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 11, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 8px 0 20px;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 13px 32px;
    font-size: 15px;
    border-radius: 0;
  }

  .nav-mobile-toggle { display: inline-flex; }
  .nav-cta { display: none; }
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  border: none;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 244, 238, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 18px 32px;
  font-size: 15px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
  transition: gap 0.2s;
}

.btn-arrow:hover { gap: 12px; }

/* ----------------------------------------------------------------
   CARDS
---------------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: var(--line-2);
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  margin-top: 80px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    margin-bottom: 40px;
  }
  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
  .footer-tagline { font-size: 22px; }
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--ink-2);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 24px;
  }
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

/* ----------------------------------------------------------------
   MARQUEE
---------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 24px 0;
  background: var(--bg-elev);
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 64px;
}

.marquee-item::after {
  content: "✦";
  color: var(--accent);
  font-size: 18px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   PAGE HEADERS
---------------------------------------------------------------- */
.page-header {
  padding: 180px 0 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: clamp(56px, 9vw, 140px);
  margin-bottom: 24px;
}

.page-header p {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 640px;
  line-height: 1.6;
}

.page-header-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: end;
}

@media (max-width: 900px) {
  .page-header-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   STAT TILES
---------------------------------------------------------------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.stat-cell {
  padding: 32px;
  border-right: 1px solid var(--line);
}

.stat-cell:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: "tnum";
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-3);
}

@media (max-width: 800px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ----------------------------------------------------------------
   FORMS
---------------------------------------------------------------- */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-3);
}

.field input,
.field textarea,
.field select {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  background: var(--bg-card);
}

.field textarea { min-height: 120px; resize: vertical; }

/* ----------------------------------------------------------------
   UTIL
---------------------------------------------------------------- */
.glow-text {
  text-shadow: 0 0 24px rgba(37, 244, 238, 0.5);
}

.outline-text {
  -webkit-text-stroke: 1px var(--ink);
  color: transparent;
}

.text-accent { color: var(--accent); }
.text-muted { color: var(--ink-2); }
.text-dim { color: var(--ink-3); }

.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Live dot */
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-2);
  font-weight: 600;
}
.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
  animation: pulse 1.2s ease-in-out infinite;
}

/* ----------------------------------------------------------------
   MOBİL DÜZELTMELER
---------------------------------------------------------------- */
@media (max-width: 768px) {

  /* Kap ve bölüm boşlukları */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 72px 0;
  }

  /* Section-head alt boşluk */
  .section-head {
    margin-bottom: 40px;
  }

  /* Stat satırı */
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1),
  .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .stat-number { font-size: 40px; }
  .stat-cell { padding: 24px 16px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer { padding: 56px 0 32px; }

  /* Page header */
  .page-header { padding: 120px 0 56px; }

  /* Marquee yazı boyutu */
  .marquee-item { font-size: 22px; }

  /* Butonlar */
  .btn-lg { padding: 14px 22px; font-size: 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-grid .footer-col:first-child { grid-column: 1; }
  .footer-tagline { font-size: 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding-top: 20px; }
}
