/* ════════════════════════════════════════════════════════════
   GEZİP — tanıtım sitesi · "şehri keşfetmek bir oyun"
   Field-guide / cartographic aesthetic
   ════════════════════════════════════════════════════════════ */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --g:   #1F8A5B;   /* primary green */
  --gd:  #125236;   /* deep green */
  --gl:  #5DE0A5;   /* light green */
  --o:   #FF6B4A;   /* accent orange */
  --od:  #E0512F;
  --ink: #16241F;   /* near-black green ink */
  --ink2:#465850;
  --muted:#7C8C85;
  --paper:#EEF3F0;  /* page canvas */
  --paper2:#E6EDE9;
  --card:#FFFFFF;
  --line: rgba(22,36,31,.10);
  --line2: rgba(22,36,31,.06);
  --sand: #F6F3EB;  /* warm paper for alt bands */

  --h: 'Bricolage Grotesque', system-ui, sans-serif;
  --b: 'Plus Jakarta Sans', system-ui, sans-serif;

  --wrap: 1180px;
}

body {
  font-family: var(--b);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* faint topographic / grid texture, fixed behind everything */
.topo {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(22,36,31,.05) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: .5;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 90%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 90%);
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
section { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── reusable bits ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--g);
}
.eyebrow .tick { width: 22px; height: 3px; border-radius: 99px; background: var(--g); }
.eyebrow.on-dark { color: var(--gl); }
.eyebrow.on-dark .tick { background: var(--gl); }

.btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer; white-space: nowrap;
  font-family: var(--b); font-weight: 800; font-size: 15px;
  padding: 14px 22px; border-radius: 14px; border: none;
  transition: transform .16s ease, box-shadow .16s ease, background .2s ease;
}
.btn svg { display: block; }
.btn-primary { background: var(--g); color: #fff; box-shadow: 0 16px 30px -14px rgba(31,138,91,.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 38px -14px rgba(31,138,91,.8); }
.btn-accent { background: var(--o); color: #fff; box-shadow: 0 16px 30px -14px rgba(255,107,74,.7); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 22px 38px -14px rgba(255,107,74,.8); }
.btn-ghost { background: var(--card); color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--g); color: var(--gd); }

/* store badges */
.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.store {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff; border-radius: 14px;
  padding: 11px 18px 11px 16px; transition: transform .16s ease, box-shadow .16s ease;
  box-shadow: 0 14px 28px -16px rgba(22,36,31,.6);
}
.store:hover { transform: translateY(-2px); box-shadow: 0 20px 34px -16px rgba(22,36,31,.7); }
.store svg { flex-shrink: 0; }
.store .s-top { font-size: 10.5px; font-weight: 600; opacity: .8; letter-spacing: .02em; }
.store .s-bot { font-family: var(--h); font-size: 18px; font-weight: 700; line-height: 1.05; letter-spacing: -.01em; }

/* ════════ NAV ════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--paper) 90%, transparent); }
.nav .wrap { display: flex; align-items: center; gap: 20px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 8px; }
.brand .wm { font-family: var(--h); font-weight: 800; font-size: 25px; letter-spacing: -.03em; color: var(--ink); }
.brand .pin { color: var(--g); display: flex; }
.nav-links { display: flex; gap: 6px; margin-left: 14px; }
.nav-links a {
  font-size: 14.5px; font-weight: 700; color: var(--ink2); white-space: nowrap;
  padding: 8px 13px; border-radius: 10px; transition: background .18s ease, color .18s ease;
}
.nav-links a:hover { background: var(--paper2); color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-burger { display: none; }

/* ════════ HERO ════════ */
.hero { padding: 78px 0 90px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  background: color-mix(in srgb, var(--g) 12%, #fff); color: var(--gd);
  border: 1px solid color-mix(in srgb, var(--g) 26%, transparent);
  font-size: 12.5px; font-weight: 800; padding: 8px 14px; border-radius: 999px; letter-spacing: .01em;
}
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--o); box-shadow: 0 0 0 4px color-mix(in srgb, var(--o) 22%, transparent); }
.hero h1 {
  font-family: var(--h); font-weight: 800; font-size: clamp(42px, 6.2vw, 74px);
  line-height: .96; letter-spacing: -.04em; margin: 22px 0 0; text-wrap: balance;
}
.hero h1 em { font-style: normal; position: relative; color: var(--g); white-space: nowrap; }
.hero h1 em::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: 4px; height: 30%; z-index: -1;
  background: color-mix(in srgb, var(--gl) 55%, transparent); border-radius: 4px; transform: rotate(-1.2deg);
}
.hero-sub { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55; color: var(--ink2); max-width: 480px; margin: 22px 0 0; text-wrap: pretty; }
.hero-actions { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; align-items: flex-start; }
.hero-note { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
.hero-note .rate { color: var(--o); display: inline-flex; gap: 1px; }

/* hero phone stage with map motifs */
.hero-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 600px; }
.hero-stage .ring {
  position: absolute; border-radius: 50%; border: 1.6px dashed color-mix(in srgb, var(--g) 30%, transparent);
}
.hero-stage .ring.r1 { width: 440px; height: 440px; }
.hero-stage .ring.r2 { width: 600px; height: 600px; opacity: .55; }
.hero-route { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; overflow: visible; }

/* floating map chips */
.fchip {
  position: absolute; z-index: 6; display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 9px 13px; box-shadow: 0 18px 36px -18px rgba(20,40,30,.5);
  font-size: 13px; font-weight: 700; white-space: nowrap;
}
.fchip .av {
  width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--h); font-weight: 800; font-size: 10px; color: #fff; flex-shrink: 0;
}
.fchip .ic-pin { color: var(--g); display: flex; }
.fchip.f1 { top: 40px; left: -18px; }
.fchip.f2 { bottom: 120px; right: -26px; }
.fchip.f3 { bottom: 26px; left: 8px; }
.pin-badge {
  position: absolute; z-index: 5; width: 46px; height: 46px; border-radius: 50% 50% 50% 4px;
  transform: rotate(45deg); display: flex; align-items: center; justify-content: center;
  border: 3px solid #fff; box-shadow: 0 12px 22px -8px rgba(20,40,30,.55);
}
.pin-badge svg { transform: rotate(-45deg); color: #fff; }
.pin-badge.p1 { top: 96px; right: 16px; background: var(--o); }
.pin-badge.p2 { bottom: 200px; left: -6px; background: var(--g); }

/* ════════ PHONE ════════ */
.phone {
  width: 300px; height: 614px; border-radius: 46px; background: #1C1C1E; position: relative; flex-shrink: 0; z-index: 4;
  box-shadow: 0 0 0 2px rgba(22,36,31,.12), inset 0 0 0 2px rgba(255,255,255,.05),
              0 60px 100px -30px rgba(20,40,30,.55), 0 24px 50px -20px rgba(20,40,30,.35);
}
.phone .island { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 116px; height: 34px; background: #0A0A0B; border-radius: 18px; z-index: 30; }
.phone .pscr { position: absolute; top: 7px; left: 7px; right: 7px; bottom: 7px; border-radius: 39px; overflow: hidden; background: #F4F7F6; }
.phone.tilt { transform: rotate(-3deg); }

/* phone UI atoms (from app) */
.gz { background: #F4F7F6; height: 100%; font-family: var(--b); color: #15211E; font-size: 11.5px; position: relative; display: flex; flex-direction: column; }
.gz-scr { flex: 1; overflow: hidden; position: relative; }
.gz-hdr { display: flex; align-items: center; justify-content: space-between; padding: 50px 12px 9px; background: rgba(244,247,246,.9); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(21,33,30,.07); flex-shrink: 0; }
.gz .wm { font-family: var(--h); font-weight: 800; font-size: 20px; letter-spacing: -.025em; display: flex; align-items: center; gap: 3px; color: #15211E; }
.gz .pdot { width: 7px; height: 7px; border-radius: 50%; background: var(--g); margin-top: 5px; }
.gz .hbtns { display: flex; gap: 7px; }
.gz .ibt { width: 31px; height: 31px; border-radius: 50%; background: #fff; border: 1px solid rgba(21,33,30,.09); display: flex; align-items: center; justify-content: center; font-size: 13px; position: relative; }
.gz .bdg { position: absolute; top: 5px; right: 5px; width: 7px; height: 7px; border-radius: 50%; background: var(--o); border: 1.5px solid #F4F7F6; }
.gz-nav { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: center; padding: 7px 4px 22px; background: rgba(255,255,255,.93); backdrop-filter: blur(16px); border-top: 1px solid rgba(21,33,30,.07); z-index: 20; }
.gz .nv { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; color: #7C8A85; font-size: 8px; font-weight: 600; }
.gz .nv.on { color: var(--g); font-weight: 800; }
.gz .cta-wrap { flex: 1; display: flex; justify-content: center; }
.gz .cta-btn { width: 44px; height: 44px; border-radius: 14px; margin-top: -20px; background: linear-gradient(145deg,var(--o),#d94a2a); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 3px solid #F4F7F6; box-shadow: 0 8px 18px -8px rgba(255,107,74,.7); font-family: var(--h); }
.gz .cta-btn .cl { font-size: 6.5px; font-weight: 800; margin-top: 1px; }
.gz .gc { background: #fff; border-radius: 17px; border: 1px solid rgba(21,33,30,.06); box-shadow: 0 1px 2px rgba(20,40,35,.04), 0 8px 22px -16px rgba(20,40,35,.5); overflow: hidden; margin: 0 9px 9px; }
.gz .av { border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--h); font-weight: 700; color: #fff; flex-shrink: 0; }
.glass-chip { display: inline-flex; align-items: center; gap: 5px; background: rgba(10,18,16,.44); backdrop-filter: blur(8px); color: #fff; padding: 5px 9px; border-radius: 999px; font-size: 9px; font-weight: 700; border: 1px solid rgba(255,255,255,.18); }
.rat-chip { display: inline-flex; align-items: center; gap: 3px; background: rgba(10,18,16,.46); backdrop-filter: blur(8px); color: #fff; padding: 4px 8px; border-radius: 999px; font-size: 9px; font-weight: 700; border: 1px solid rgba(255,255,255,.18); }

/* ════════ STAT STRIP ════════ */
.strip { padding: 8px 0 4px; }
.strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; }
.stat { display: flex; align-items: baseline; gap: 9px; }
.stat .num { font-family: var(--h); font-weight: 800; font-size: 34px; letter-spacing: -.03em; color: var(--gd); }
.stat .lab { font-size: 13.5px; font-weight: 600; color: var(--ink2); }
.strip .div { width: 1px; height: 30px; background: var(--line); }

/* ════════ SECTION HEADER ════════ */
.sec-head { max-width: 680px; margin: 0 auto; text-align: center; }
.sec-head h2 { font-family: var(--h); font-weight: 800; font-size: clamp(32px, 4.4vw, 50px); line-height: 1.02; letter-spacing: -.035em; margin: 16px 0 0; text-wrap: balance; }
.sec-head p { font-size: 17px; line-height: 1.55; color: var(--ink2); margin: 16px 0 0; text-wrap: pretty; }

/* ════════ FEATURE ROWS ════════ */
.features { padding: 96px 0 40px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 56px 0; }
.frow + .frow { border-top: 1px dashed var(--line); }
.frow.flip .f-media { order: -1; }
.f-copy h3 { font-family: var(--h); font-weight: 800; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.04; letter-spacing: -.03em; margin: 14px 0 0; text-wrap: balance; }
.f-copy p { font-size: 16.5px; line-height: 1.6; color: var(--ink2); margin: 16px 0 0; max-width: 460px; text-wrap: pretty; }
.f-list { list-style: none; margin: 22px 0 0; display: flex; flex-direction: column; gap: 13px; }
.f-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 600; color: var(--ink); }
.f-list .mk { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; margin-top: 1px; }
.f-media { display: flex; align-items: center; justify-content: center; position: relative; }
.f-media .glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; filter: blur(60px); z-index: 0; opacity: .5; }

/* ════════ STEPS ════════ */
.steps { padding: 80px 0 90px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; position: relative; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 30px 26px 28px;
  position: relative; z-index: 1;
  box-shadow: 0 18px 40px -28px rgba(20,40,30,.5);
}
.step .n {
  width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-family: var(--h); font-weight: 800; font-size: 20px; color: #fff; margin-bottom: 18px;
  background: linear-gradient(145deg, var(--g), var(--gd));
}
.step:nth-child(2) .n { background: linear-gradient(145deg, #2D7DD2, #1d5fa0); }
.step:nth-child(3) .n { background: linear-gradient(145deg, var(--o), var(--od)); }
.step h4 { font-family: var(--h); font-weight: 800; font-size: 21px; letter-spacing: -.02em; margin-bottom: 9px; }
.step p { font-size: 14.5px; line-height: 1.55; color: var(--ink2); text-wrap: pretty; }
.steps-route { position: absolute; top: 78px; left: 8%; right: 8%; height: 2px; z-index: 0; }

/* ════════ CTA BAND ════════ */
.cta {
  position: relative; z-index: 1; margin: 30px auto 70px; max-width: calc(var(--wrap) - 0px);
  border-radius: 32px; overflow: hidden;
  background: radial-gradient(120% 120% at 80% -10%, #1f6b48 0%, #0c2a1c 70%);
  color: #fff;
}
.cta-inner { padding: 64px 56px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center; position: relative; z-index: 2; }
.cta h2 { font-family: var(--h); font-weight: 800; font-size: clamp(34px, 4.6vw, 52px); line-height: 1; letter-spacing: -.035em; text-wrap: balance; }
.cta p { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.72); margin: 18px 0 28px; max-width: 460px; }
.cta-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5; }
.cta .stores .store { background: #fff; color: var(--ink); }
.cta .qr { display: flex; align-items: center; justify-content: flex-end; }
.qr-card { background: #fff; border-radius: 22px; padding: 18px; text-align: center; color: var(--ink); box-shadow: 0 30px 60px -24px rgba(0,0,0,.5); }
.qr-card .grid { width: 132px; height: 132px; border-radius: 12px; }
.qr-card .cap { font-size: 12.5px; font-weight: 700; color: var(--ink2); margin-top: 11px; }

/* ════════ FOOTER ════════ */
.footer { background: var(--ink); color: #fff; padding: 60px 0 34px; position: relative; z-index: 1; }
.footer .top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer .brand .wm { color: #fff; }
.footer .blurb { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.55); max-width: 280px; margin-top: 16px; }
.footer .cols { display: flex; gap: 64px; flex-wrap: wrap; }
.fcol h5 { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.fcol a { display: block; font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.78); padding: 6px 0; transition: color .16s ease; }
.fcol a:hover { color: var(--gl); }
.footer .bar { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer .bar .legal { display: flex; gap: 14px; align-items: center; font-size: 13px; }
.footer .bar .legal a { color: rgba(255,255,255,.7); }
.footer .bar .legal a:hover { color: var(--gl); }
.footer .bar .legal .sep { color: rgba(255,255,255,.25); }
.footer .copy { font-size: 13px; color: rgba(255,255,255,.4); }

/* ════════ reveal ════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ════════ responsive ════════ */
@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 12px; }
  .hero-stage { min-height: 540px; margin-top: 20px; }
  .hero-actions { align-items: flex-start; }
  .frow, .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .frow.flip .f-media { order: 0; }
  .f-copy p, .f-list { max-width: none; }
  .cta .qr { justify-content: flex-start; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-route { display: none; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; width: 42px; height: 42px; border-radius: 11px; border: 1.5px solid var(--line); background: var(--card); color: var(--ink); cursor: pointer; }
  .nav-cta .btn-ghost { display: none; }
  .cta-inner { padding: 44px 26px; }
  .cta { border-radius: 24px; }
  .strip .div { display: none; }
  .hero-stage .ring.r2 { display: none; }
}
