/* Wora tanıtım sitesi — uygulama koyu temasıyla uyumlu. */
:root {
  --accent: #00D68F;
  --accent2: #00B89C;
  --gold: #F5C451;
  --bg: #0A0C10;
  --surface: #141720;
  --surface2: #1B1F2A;
  --text: #EEF1F5;
  --text2: #AEB6C2;
  --muted: #8B94A3;
  --border: rgba(255, 255, 255, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 880px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10, 12, 16, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--text); }
.logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(140deg, #00E89C, #00B39A);
  display: grid; place-items: center;
}
.logo svg { width: 16px; height: 16px; }
.nav-links { display: flex; gap: 22px; font-size: 14px; }
.nav-links a { color: var(--text2); }

/* Hero */
.hero { text-align: center; padding: 72px 0 56px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; background: radial-gradient(circle, rgba(0,214,143,0.15), transparent 70%);
  pointer-events: none;
}
.hero h1 { font-size: 42px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; position: relative; }
.hero h1 .g { background: linear-gradient(135deg, #00E89C, #00B89C); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 18px; color: var(--text2); max-width: 560px; margin: 0 auto 28px; position: relative; }
.badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.store-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 18px; color: var(--text); font-size: 14px; font-weight: 600;
}
.store-badge small { display: block; color: var(--muted); font-size: 11px; font-weight: 400; }
.soon { color: var(--gold); font-size: 12px; }

/* Disclaimer band — "içerik satmıyoruz" */
.disclaimer {
  background: rgba(245, 196, 81, 0.1); border: 1px solid rgba(245, 196, 81, 0.3);
  border-radius: 14px; padding: 18px 22px; margin: 8px 0 48px;
  display: flex; gap: 14px; align-items: flex-start;
}
.disclaimer .ic { font-size: 22px; }
.disclaimer b { color: var(--gold); }

/* Features */
.section-title { font-size: 26px; font-weight: 800; margin-bottom: 24px; text-align: center; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-bottom: 56px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 22px;
}
.card .ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(0,214,143,0.12); display: grid; place-items: center; margin-bottom: 12px; font-size: 20px; }
.card h3 { font-size: 16px; margin-bottom: 6px; }
.card p { font-size: 14px; color: var(--text2); }

/* Content pages */
.page { padding: 48px 0 64px; }
.page h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.page .updated { color: var(--muted); font-size: 13px; margin-bottom: 32px; }
.page h2 { font-size: 20px; font-weight: 700; margin: 32px 0 10px; color: var(--text); }
.page p, .page li { color: var(--text2); font-size: 15px; margin-bottom: 10px; }
.page ul { padding-left: 22px; }
.page .lang-switch { display: inline-flex; gap: 4px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 4px; margin-bottom: 28px; }
.page .lang-switch button { background: none; border: none; color: var(--text2); padding: 7px 16px; border-radius: 7px; cursor: pointer; font-size: 13px; font-weight: 600; font-family: inherit; }
.page .lang-switch button.active { background: var(--accent); color: #04241A; }
.box { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; margin: 16px 0; }
.mail { font-family: monospace; color: var(--accent); font-size: 16px; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 32px 0; color: var(--muted); font-size: 13px; }
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot a { color: var(--text2); margin-left: 18px; }
@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .nav-links { display: none; }
  .foot { flex-direction: column; }
  .foot a { margin-left: 0; }
}
