:root {
  color-scheme: dark;
  --pitch: #0f1210;
  --pitch-alt: #141815;
  --surface: #1c211d;
  --hairline: rgba(255, 255, 255, 0.07);
  --line: rgba(76, 184, 118, 0.16);
  --text: #fafafa;
  --muted: #9ca89e;
  --green: #3a9a62;
  --green-glow: #4cb876;
  --green-dark: #2d7a4e;
}

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

body {
  font-family:
    "Archivo",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: var(--pitch);
  color: var(--text);
  line-height: 1.65;
}

::selection {
  background: var(--green-dark);
  color: #fff;
}

a {
  color: var(--green-glow);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------- top bar (landing ile ortak) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(15, 18, 16, 0.82);
  border-bottom: 1px solid var(--hairline);
}

.topbar-in {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text);
  font-variation-settings: "wdth" 116;
}

.wordmark:hover {
  text-decoration: none;
}

.wordmark em {
  font-style: normal;
  color: var(--green-glow);
}

.topnav {
  display: flex;
  gap: 24px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topnav a {
  color: var(--muted);
}

.topnav a:hover {
  color: var(--text);
  text-decoration: none;
}

.topnav a[aria-current="page"] {
  color: var(--green-glow);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: rgba(28, 33, 29, 0.75);
  flex-shrink: 0;
}

.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switch button.is-active {
  background: rgba(76, 184, 118, 0.18);
  color: var(--text);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mağaza rozetleri — landing header'ıyla birebir aynı davranış. */
.storebtns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.storelink.mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(28, 33, 29, 0.75);
  border: 1px solid var(--hairline);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.storelink.mini:hover {
  background: rgba(76, 184, 118, 0.14);
  border-color: rgba(76, 184, 118, 0.5);
  text-decoration: none;
}

.storelink.mini svg {
  width: 17px;
  height: 17px;
  flex: none;
  fill: currentColor;
}

@media (max-width: 720px) {
  .topnav {
    display: none;
  }
}

@media (max-width: 600px) {
  .storelink.mini {
    padding: 9px 11px;
  }

  .storelink.mini span {
    display: none;
  }
}

/* ---------- sayfa başlığı ---------- */
.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-glow);
  margin-bottom: 16px;
}

.kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--green-glow);
}

h1 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-variation-settings: "wdth" 110;
  line-height: 1.05;
  margin-bottom: 10px;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

/* ---------- içerik bölümleri ---------- */
section {
  border: 1px solid var(--hairline);
  background: var(--pitch-alt);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}

section:hover {
  border-color: rgba(76, 184, 118, 0.28);
}

section h2 {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: var(--text);
}

section p {
  color: var(--muted);
  font-size: 15px;
}

section p a {
  font-weight: 700;
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--hairline);
  /* Simetrik: içerik şeridin tam ortasında durur. */
  padding: 32px 24px;
  color: var(--muted);
  font-size: 13px;
}

.foot-in {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.foot-links a {
  color: var(--muted);
}

.foot-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  color: var(--muted);
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.social a:hover {
  color: var(--text);
  border-color: rgba(76, 184, 118, 0.5);
  background: rgba(76, 184, 118, 0.12);
  text-decoration: none;
}

.social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Landing ile aynı desktop footer'ı: içeriğin altındaki boşluk kısılıyor ve
   footer dolgusu aşağı ağırlıklı oluyor, böylece sayfa sonuna kadar
   kaydırıldığında yazı pencerenin alt kenarına yapışmıyor. */
@media (min-width: 721px) {
  .wrap {
    padding-bottom: 40px;
  }

  footer {
    padding: 26px 24px 56px;
  }
}

/* Tek sütuna in: üç grup da ortalanır, hiçbir genişlikte taşma olmaz. */
@media (max-width: 720px) {
  .foot-in {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .foot-links {
    justify-content: center;
  }
}
