@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/geist-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/geist-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #0a0a0c;
  --surface: #131317;
  --surface-2: #1b1b21;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f2f2f4;
  --muted: #9a9ba4;
  --accent: #8b6cff;
  --accent-strong: #6c4ff0;
  --radius: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
main { overflow-x: clip; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 8px; }
[id] { scroll-margin-top: 84px; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
@media (max-width: 640px) { .wrap { padding-inline: 16px; } }

.ic { width: 20px; height: 20px; flex: none; }
.logo { width: 18px; height: 18px; fill: currentColor; flex: none; }
.mark { flex: none; }

/* ---- nav */
.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 10, 12, 0.78);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.top .wrap { height: 64px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 650; font-size: 18px; letter-spacing: -0.01em; }
.links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.links a { text-decoration: none; color: var(--muted); font-size: 15px; transition: color 0.2s; }
.links a:hover { color: var(--text); }
.langs { display: inline-flex; gap: 2px; padding: 3px; border-radius: 999px; border: 1px solid var(--line); }
.langs a { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; padding: 5px 9px; border-radius: 999px; color: var(--muted); }
.langs a[aria-current] { background: var(--surface-2); color: var(--text); }
@media (max-width: 767px) {
  .links .hide-sm { display: none; }
  .top .wrap { gap: 16px; }
  .links { gap: 16px; }
}

/* ---- butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background-color 0.2s, border-color 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--accent-strong); color: #fff; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 30px -12px rgba(108, 79, 240, 0.7); }
.btn-primary:hover { background: #7a5ff5; }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.3); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 14.5px; }
.btn .ic { width: 18px; height: 18px; }

/* ---- hero */
.hero { position: relative; padding-top: 56px; padding-bottom: 40px; }
.hero::before {
  content: '';
  position: absolute;
  inset: -80px 0 auto 0;
  height: 760px;
  background:
    radial-gradient(520px 380px at 74% 44%, rgba(123, 92, 255, 0.22), transparent 70%),
    radial-gradient(420px 300px at 88% 20%, rgba(79, 70, 229, 0.14), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; min-height: min(680px, calc(100dvh - 100px)); }
.hero h1 {
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 650;
  margin: 0 0 22px;
}
.hero h1 span { display: block; }
.hero h1 em { font-style: normal; color: var(--accent); }
@media (min-width: 1181px) { .hero h1 span { white-space: nowrap; } }
.hero h1 { text-wrap: balance; }
.hero p { font-size: clamp(17px, 1.5vw, 19px); color: var(--muted); max-width: 44ch; margin: 0 0 32px; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; }

.stage { position: relative; height: 640px; }
.phone {
  position: absolute;
  width: 292px;
  padding: 9px;
  border-radius: 48px;
  background: linear-gradient(160deg, #26262e, #141418 45%, #1d1d23);
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 40px 80px -30px rgba(0, 0, 0, 0.9), 0 18px 50px -20px rgba(91, 62, 232, 0.35);
}
.phone::after {
  content: '';
  position: absolute;
  top: 19px;
  left: 50%;
  width: 88px;
  height: 26px;
  margin-left: -44px;
  border-radius: 20px;
  background: #000;
}
.phone img { width: 100%; height: auto; aspect-ratio: 390 / 844; border-radius: 39px; background: var(--bg); }
.phone-front { left: 50%; top: 0; margin-left: -146px; z-index: 3; }
.phone-left { left: 50%; top: 64px; margin-left: -330px; z-index: 1; transform: scale(0.86) rotate(-5deg); filter: brightness(0.62); }
.phone-right { left: 50%; top: 64px; margin-left: 38px; z-index: 2; transform: scale(0.86) rotate(5deg); filter: brightness(0.62); }

@media (max-width: 1180px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 24px; min-height: 0; }
  .stage { height: 560px; margin-top: 12px; }
  .phone { width: 250px; }
  .phone-front { margin-left: -125px; }
  .phone-left { margin-left: -290px; }
  .phone-right { margin-left: 40px; }
}
@media (max-width: 640px) {
  .hero { padding-top: 36px; }
  .stage { height: 500px; }
  .phone { width: 232px; border-radius: 42px; }
  .phone img { border-radius: 34px; }
  .phone-front { margin-left: -116px; }
  .phone-left { margin-left: -218px; }
  .phone-right { margin-left: 4px; }
}

/* ---- bolum ortak */
section { padding-block: 96px; }
@media (max-width: 767px) { section { padding-block: 64px; } }
h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.035em; font-weight: 650; margin: 0 0 14px; text-wrap: balance; }
.lede { color: var(--muted); font-size: 17px; margin: 0 0 40px; max-width: 52ch; }

/* ---- anonimlik */
.anon { border-top: 1px solid var(--line); }
.anon h2 { font-size: clamp(38px, 5vw, 64px); margin-bottom: 40px; }
.anon-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 20px; align-items: stretch; }
.anon-card {
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  min-height: 360px;
  background: radial-gradient(420px 300px at 20% 10%, rgba(139, 108, 255, 0.35), transparent 70%), linear-gradient(160deg, rgba(108, 79, 240, 0.22), rgba(19, 19, 23, 0.4) 70%), var(--surface);
  border: 1px solid rgba(139, 108, 255, 0.26);
}
.anon-card .handle { margin: 0; padding: 0; font-size: clamp(34px, 4vw, 56px); white-space: nowrap; overflow-wrap: normal; }
.anon-card p { margin: 0; color: var(--muted); font-size: 16px; max-width: 34ch; }
.nolist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.nolist li { padding: 22px 24px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.nolist s { font-size: 22px; font-weight: 650; letter-spacing: -0.02em; color: var(--text); text-decoration-thickness: 2px; text-decoration-color: var(--accent); }
.nolist-note { color: var(--muted); font-size: 14.5px; line-height: 1.45; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@media (max-width: 1023px) { .anon-grid { grid-template-columns: 1fr; } .anon-card { min-height: 0; } }
@media (max-width: 640px) { .nolist { grid-template-columns: 1fr; } .nolist li { padding: 18px 20px; } }

/* ---- indir */
.download { border-top: 1px solid var(--line); }
.stores { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.store {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.qr { width: 164px; height: 164px; padding: 10px; background: #fff; border-radius: 18px; }
.qr img { width: 100%; height: 100%; image-rendering: pixelated; }
.store-head { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.store-head .logo { width: 22px; height: 22px; }
.store h3 { margin: 0; font-size: 24px; letter-spacing: -0.02em; font-weight: 650; }
.channel { color: var(--muted); font-size: 14.5px; margin: 0 0 18px; }
.store .note { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 14px 0 0; }
.webline { margin: 28px 0 0; color: var(--muted); font-size: 15px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.webline a { color: var(--text); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.webline a:hover { color: var(--accent); }
.webline .ic { width: 16px; height: 16px; }
@media (max-width: 1023px) { .stores { grid-template-columns: 1fr; } }
@media (max-width: 767px) {
  .store { grid-template-columns: 1fr; padding: 22px; gap: 0; }
  .qr { display: none; }
  .store .btn { width: 100%; }
}

/* ---- ozellikler (bento) */
.bento { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.cell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.cell h3 { margin: 16px 0 8px; font-size: 22px; letter-spacing: -0.02em; font-weight: 650; }
.cell p { margin: 0; color: var(--muted); font-size: 15.5px; max-width: 38ch; }
.badge { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: rgba(139, 108, 255, 0.12); color: var(--accent); border: 1px solid rgba(139, 108, 255, 0.22); }
.badge .ic { width: 22px; height: 22px; }
.span-6 { grid-column: span 6; }
.span-3 { grid-column: span 3; }
.cell-narrow { grid-template-columns: minmax(0, 1fr) 210px; }
.cell-narrow .crop { height: 270px; }

.cell-shot { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 24px; padding-bottom: 0; }
.cell-shot .copy { padding-bottom: 30px; }
.crop { align-self: end; height: 300px; overflow: hidden; border-radius: 26px 26px 0 0; border: 1px solid var(--line-strong); border-bottom: 0; background: var(--bg); }
.crop img { width: 100%; height: auto; }
.crop-ledger img { transform: translateY(-44%); }
.crop-guard img { transform: translateY(-50%); }
.cell-narrow .crop-tasks img { transform: translateY(-38%); }
.crop-chat img { transform: translateY(-4%); }
.cell > .crop-below { margin: 24px -8px -30px; height: 190px; }
.crop-tasks img { transform: translateY(-43.5%); }
.crop-guard-below img { transform: translateY(-49%); }

.handle { margin-top: auto; padding-top: 28px; font-size: clamp(34px, 5vw, 72px); overflow-wrap: anywhere; font-weight: 650; letter-spacing: -0.045em; line-height: 1; color: #fff; }
.handle span { color: var(--accent); }

@media (max-width: 1023px) {
  .bento { grid-template-columns: 1fr; }
  .span-6, .span-3 { grid-column: auto; }
}
@media (max-width: 767px) {
  .bento { grid-template-columns: 1fr; }
  .span-6, .span-3 { grid-column: auto; }
  .cell-narrow { grid-template-columns: 1fr; }
  .cell-narrow .crop { height: 240px; }
  .cell { padding: 24px; min-height: 0; }
  .cell-shot { grid-template-columns: 1fr; gap: 20px; }
  .cell-shot .copy { padding-bottom: 0; }
  .crop { height: 240px; margin-inline: 8px; }
  .cell > .crop-below { margin: 20px 0 -24px; height: 200px; }
  .crop-ledger img { transform: translateY(-62%); }
  .cell-narrow .crop-tasks img { transform: translateY(-40%); }
}

.more { margin-top: 56px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.more h3 { font-size: 18px; font-weight: 600; margin: 0 0 18px; color: var(--text); }
@media (max-width: 1023px) { .more { grid-template-columns: 1fr; gap: 32px; } }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.pills li { display: inline-flex; align-items: center; gap: 9px; height: 42px; padding: 0 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 15px; }
.pills .ic { width: 18px; height: 18px; color: var(--accent); }

/* ---- karsilastirma */
.compare-card { border-radius: 28px; background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.row { display: grid; grid-template-columns: minmax(0, 1fr) repeat(3, 120px); align-items: center; }
.row > * { padding: 16px 20px; }
.row + .row { border-top: 1px solid var(--line); }
.row-head { background: var(--surface-2); font-size: 14px; color: var(--muted); }
.row-head .app { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--text); font-weight: 600; font-size: 14px; }
.row-head .app .logo { width: 22px; height: 22px; color: var(--muted); }
.row .name { font-size: 15.5px; }
.cellv { display: grid; place-items: center; }
.state { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; }
.state .ic { width: 16px; height: 16px; }
.state-y { color: var(--text); background: rgba(255, 255, 255, 0.07); }
.col-drop .state-y { color: #fff; background: var(--accent-strong); }
.state-n { color: #6b6c75; }
.state-p { width: auto; height: 26px; padding: 0 10px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--text); background: rgba(255, 255, 255, 0.07); }
.col-drop { background: rgba(139, 108, 255, 0.06); align-self: stretch; }
.foot { color: var(--muted); font-size: 14px; margin: 18px 4px 0; max-width: 90ch; }
.foot a { color: var(--text); }
@media (max-width: 767px) {
  .row { grid-template-columns: minmax(0, 1fr) repeat(3, 52px); }
  .row > * { padding: 14px 8px; }
  .row .name { padding-left: 16px; font-size: 14.5px; line-height: 1.35; }
  .row-head .feature { padding-left: 16px; }
  .row-head .app span { display: none; }
  .state-p { padding: 0 6px; font-size: 11px; }
}

/* ---- alt bilgi */
footer { border-top: 1px solid var(--line); padding-block: 36px 48px; color: var(--muted); font-size: 14.5px; }
footer .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; }
footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
footer a { text-decoration: none; color: var(--muted); }
footer a:hover { color: var(--text); }
footer .legal { margin-left: auto; }
@media (max-width: 767px) { footer .legal { margin-left: 0; width: 100%; } }

/* ---- hareket: ekranlar sirayla yerine oturuyor, bolumler kaydirdikca beliriyor */
@media (prefers-reduced-motion: no-preference) {
  .rise { animation: rise 0.9s var(--ease) both; }
  .d1 { animation-delay: 0.08s; }
  .d2 { animation-delay: 0.16s; }
  .d3 { animation-delay: 0.24s; }
  @keyframes rise { from { opacity: 0; translate: 0 28px; } to { opacity: 1; translate: 0 0; } }

  @supports (animation-timeline: view()) {
    .reveal { animation: reveal linear both; animation-timeline: view(); animation-range: entry 0% entry 40%; }
    @keyframes reveal { from { opacity: 0; translate: 0 32px; } to { opacity: 1; translate: 0 0; } }
  }
}
