:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #242424;
  --text-secondary: #616161;
  --border: #e5e5e5;
  --brand: #242424;
  --success: #107c10;
  --radius: 8px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Üst bar */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 56px;
}

.brand {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-inner {
  max-width: 680px;
  animation: rise 0.5s ease both;
}

.kicker {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: 17px;
  color: var(--text-secondary);
}

/* Durum satırı */
.meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(16, 124, 16, 0.15);
}

.divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.muted {
  color: var(--text-secondary);
}

/* Alt bilgi */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  font-size: 13px;
  color: var(--text-secondary);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner { animation: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 56px 0; }
}
