:root {
  --primary: #FF6B35;
  --primary-dark: #E24E17;
  --primary-light: #FFE4D6;
  --navy: #1A2238;
  --navy-light: #2A3455;
  --background: #FFFFFF;
  --surface: #F6F7FB;
  --surface-alt: #EFF1F6;
  --border: #E7E8EE;
  --text: #1A2238;
  --text-muted: #6B7280;
  --text-faint: #9CA3AF;
  --success: #1FAA59;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --max-width: 1120px;
  --shadow-card: 0 6px 24px rgba(26, 34, 56, 0.08);
  --shadow-raised: 0 10px 32px rgba(26, 34, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.wordmark {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text);
}

.wordmark span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 12px;
  margin: -12px;
  cursor: pointer;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, #FFF8F4 0%, #FFFFFF 60%);
  padding: 72px 0 56px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  margin: 0 0 16px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-tagline {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 480px;
}

.store-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

/* Google/Apple'in kendi resmi rozetleri (Turkce, Wikimedia Commons'taki
   dogrulanmis orijinal SVG dosyalari) - kendi elle cizdigimiz versiyon
   gercek logolarin yaninda ucuz duruyordu, artik resmi dosyalar kullaniliyor. */
.store-badge-official {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
}

.store-badge-official img {
  height: 100%;
  width: auto;
}

.store-badge-official .soon-pill {
  position: absolute;
  top: -9px;
  right: -8px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  flex-wrap: wrap;
}

.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 15px;
  background: var(--surface);
  color: var(--text);
}

.waitlist-form input[type="email"]:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: default;
}

.form-note {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 10px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 0;
}

.form-success.visible {
  display: flex;
}

/* Hero phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-frame {
  width: 260px;
  height: 540px;
  border-radius: 40px;
  background: var(--navy);
  padding: 12px;
  box-shadow: var(--shadow-raised);
  position: relative;
  transform: rotate(2deg);
}

.phone-frame .screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}

.phone-frame .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.floating-card.top {
  top: 10%;
  left: -6%;
}

.floating-card.bottom {
  bottom: 8%;
  right: -8%;
}

.floating-card .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--surface);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 0 0 14px;
}

.section-head p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0;
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}

.feature-card .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.feature-card .vs {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-light);
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.step .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}

.step p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/* Screenshots strip */
.screens-strip {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
}

.screens-strip::-webkit-scrollbar {
  height: 8px;
}

.screens-strip::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-pill);
}

.screen-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 220px;
}

.screen-item .device {
  width: 220px;
  height: 460px;
  border-radius: 32px;
  background: var(--navy);
  padding: 10px;
  box-shadow: var(--shadow-card);
}

.screen-item .device .screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface);
}

.screen-item .device .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.screen-item .caption {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 14px;
}

/* Download CTA band */
.download-band {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.download-band h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.4px;
}

.download-band p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin: 0;
  max-width: 380px;
}

.download-band-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 12px 0 0;
  max-width: 260px;
}

.footer-links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-faint);
  margin: 0 0 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-faint);
}

/* Legal pages */
.legal-page {
  padding: 56px 0 96px;
}

.legal-page .container {
  max-width: 760px;
}

.legal-page h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}

.legal-page .updated {
  color: var(--text-faint);
  font-size: 14px;
  margin: 0 0 40px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 12px;
}

.legal-page p,
.legal-page li {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 20px;
}

a.inline-link {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.back-link:hover {
  color: var(--text);
}

.fact-box {
  background: var(--primary-light);
  border: 1px solid #FFD2B3;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin: 24px 0;
}

.fact-box strong {
  color: var(--primary-dark);
}

/* ===== Elevated visual layer ===== */

/* Ince "grain" dokusu - premium/sanat eseri hissi icin, performans maliyeti
   neredeyse sifir (tek bir SVG turbulence, sabit konumda, cok dusuk opaklik). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.gradient-text {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 55%, #FF9A63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero { position: relative; }
.hero-mesh {
  position: absolute;
  inset: -15% -10% auto -10%;
  height: 140%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-mesh span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  animation: drift 20s ease-in-out infinite alternate;
}
.hero-mesh span:nth-child(1) { width: 420px; height: 420px; background: var(--primary); top: -8%; left: 2%; }
.hero-mesh span:nth-child(2) { width: 340px; height: 340px; background: #FFD9A0; top: 18%; right: -6%; animation-delay: -7s; }
.hero-mesh span:nth-child(3) { width: 300px; height: 300px; background: var(--navy-light); opacity: 0.15; bottom: -8%; left: 32%; animation-delay: -13s; }

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(34px, -24px) scale(1.1); }
}

.hero .container { position: relative; z-index: 1; }

/* Kaydirinca beliren bolumler */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-1 { transition-delay: 0.05s; }
.reveal-2 { transition-delay: 0.15s; }
.reveal-3 { transition-delay: 0.25s; }
.reveal-4 { transition-delay: 0.35s; }

.floating-card { animation: bob 4.5s ease-in-out infinite; }
.floating-card.bottom { animation-delay: -2.2s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.feature-card, .category-chip {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-raised);
  border-color: var(--primary-light);
}
.category-chip:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-raised);
  border-color: var(--primary-light);
}

/* Karsilastirma tablosu */
.cmp-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.cmp-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
.cmp-table th, .cmp-table td { padding: 18px 22px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--border); }
.cmp-table thead th { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-faint); font-weight: 700; background: var(--surface); }
.cmp-table thead th.brand-col { color: var(--primary-dark); background: var(--primary-light); }
.cmp-table tbody th { font-weight: 600; color: var(--text); white-space: nowrap; }
.cmp-table td.brand-col { background: #FFF6F0; font-weight: 700; color: var(--primary-dark); }
.cmp-table tr:last-child td, .cmp-table tr:last-child th { border-bottom: none; }
.cmp-yes { color: var(--success); font-weight: 700; }
.cmp-no { color: var(--text-faint); }
.cmp-note { font-size: 12.5px; color: var(--text-faint); margin: 14px 4px 0; }
.cmp-scroll-hint {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-faint);
  margin: 0 4px 10px;
}

/* Kategori vitrini */
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.category-chip {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 12px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.category-chip .emoji { font-size: 28px; display: block; margin-bottom: 10px; }
.category-chip .label { font-size: 13px; font-weight: 700; color: var(--text); }
.category-chip-soon { position: relative; }
.chip-soon-pill {
  position: absolute;
  top: -8px;
  right: -6px;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.2px;
}

/* SSS akordiyon */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-raised); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

@media (max-width: 880px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-mesh span { filter: blur(44px); }
  .cmp-table th, .cmp-table td { padding: 14px 16px; }
  .cmp-scroll-hint { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floating-card, .hero-mesh span { animation: none; }
}

/* Responsive */
@media (max-width: 880px) {
  .nav .container {
    height: 54px;
  }

  .wordmark {
    font-size: 22px;
  }

  .nav-links {
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .nav-menu-btn {
    display: block;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 8px;
  }

  .phone-frame {
    width: 200px;
    height: 416px;
    padding: 9px;
    border-radius: 30px;
    transform: none;
  }

  .phone-frame .screen {
    border-radius: 22px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .download-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }

  .download-band-right {
    align-items: center;
  }

  .section {
    padding: 64px 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
}

/* Cok kucuk telefonlar (iPhone SE, eski/kucuk Android'ler) */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero { padding: 56px 0 40px; }
  .hero h1 { font-size: 30px; }
  .hero-tagline { font-size: 19px; }
  .hero-sub { font-size: 15.5px; }
  .store-badge { min-width: 0; flex: 1 1 calc(50% - 6px); }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section-head h2 { font-size: 26px; }
  .phone-frame { width: 172px; height: 358px; padding: 7px; border-radius: 26px; }
  .phone-frame .screen { border-radius: 19px; }
  .download-band h2 { font-size: 22px; }
}
