/* Kelime Yolculuğu — web (Anadolu Alacakaranlığı teması, uygulamayla birebir) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..900;1,9..144,400..900&family=Manrope:wght@400..800&display=swap');

:root {
  --night: #0C1826;
  --deep: #122A44;
  --twilight: #1E5A8A;
  --sky: #2E86C1;
  --sand: #E8C079;
  --gold: #F3B33D;
  --gold-hi: #FFD97A;
  --terra: #E07A5F;
  --cream: #FBF4E6;
  --cream-dim: #C9BCA4;
  --green: #57B87C;
  --green-d: #3E9463;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(46,134,193,0.35), transparent 60%),
    linear-gradient(180deg, var(--night) 0%, #10233a 40%, var(--twilight) 78%, #b9824e 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.1; font-weight: 800; }

a { color: var(--gold-hi); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(12, 24, 38, 0.55);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-weight: 800; font-size: 20px; color: var(--cream); }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.brand i { font-style: italic; color: var(--gold-hi); font-weight: 600; }
.nav-links { display: flex; gap: 26px; font-weight: 600; font-size: 15px; }
.nav-links a { color: var(--cream-dim); }
.nav-links a:hover { color: var(--cream); text-decoration: none; }
@media (max-width: 640px) { .nav-links { display: none; } }

/* ---- hero ---- */
.hero { text-align: center; padding: 90px 0 60px; }
.hero .icon { width: 128px; height: 128px; border-radius: 30px; box-shadow: 0 20px 60px rgba(0,0,0,0.45); margin-bottom: 26px; }
.hero h1 { font-size: clamp(40px, 7vw, 74px); }
.hero h1 i { font-style: italic; color: var(--gold-hi); font-weight: 600; display: block; }
.hero p.tag { font-size: clamp(17px, 2.6vw, 22px); color: var(--cream-dim); margin: 22px auto 0; max-width: 620px; }

.badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, var(--green), var(--green-d));
  color: #fff; font-weight: 800; font-size: 16px;
  padding: 15px 28px; border-radius: 30px;
  box-shadow: 0 8px 0 var(--green-d), 0 14px 24px rgba(0,0,0,0.3);
  transition: transform .08s ease; border: none; cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(2px); box-shadow: 0 6px 0 var(--green-d), 0 12px 20px rgba(0,0,0,0.3); }
.btn.ghost { background: var(--card); border: 1px solid var(--border); box-shadow: none; color: var(--cream); }
.btn.soon { opacity: .75; cursor: default; }

/* ---- chips ---- */
.chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.chip { font-size: 13px; font-weight: 700; color: var(--cream-dim); background: var(--card); border: 1px solid var(--border); padding: 7px 15px; border-radius: 20px; }

/* ---- features ---- */
.section { padding: 60px 0; }
.section h2 { font-size: clamp(28px, 4vw, 40px); text-align: center; margin-bottom: 8px; }
.section .sub { text-align: center; color: var(--cream-dim); margin-bottom: 44px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 26px; }
.feature .emo { font-size: 34px; }
.feature h3 { font-size: 20px; margin: 14px 0 8px; color: var(--cream); }
.feature p { color: var(--cream-dim); font-size: 15px; }

/* ---- shots ---- */
.shots { display: flex; gap: 18px; overflow-x: auto; padding: 8px 4px 24px; scroll-snap-type: x mandatory; }
.shots img { height: 520px; border-radius: 22px; border: 1px solid var(--border); box-shadow: 0 16px 40px rgba(0,0,0,0.4); scroll-snap-align: center; flex: 0 0 auto; }
@media (max-width: 640px) { .shots img { height: 420px; } }

/* ---- policy pages ---- */
.doc { max-width: 760px; margin: 0 auto; padding: 60px 24px 80px; }
.doc h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 8px; }
.doc .updated { color: var(--cream-dim); font-size: 14px; margin-bottom: 36px; }
.doc h2 { font-size: 22px; margin: 32px 0 10px; color: var(--gold-hi); }
.doc p, .doc li { color: #e8ddc9; margin-bottom: 12px; }
.doc ul { padding-left: 22px; }
.doc strong { color: var(--cream); }
.doc .back { display: inline-block; margin-bottom: 30px; color: var(--cream-dim); font-weight: 600; }

/* ---- footer ---- */
footer { border-top: 1px solid var(--border); padding: 40px 0 60px; margin-top: 40px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; color: var(--cream-dim); font-size: 14px; }
footer .flinks { display: flex; gap: 22px; }
footer a { color: var(--cream-dim); }
footer a:hover { color: var(--cream); text-decoration: none; }
