:root {
  --bg: #f5f4fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.64);
  --text: #222230;
  --muted: #62657a;
  --line: rgba(133, 144, 174, 0.16);
  --primary: #9b7cf6;
  --primary-strong: #8a68f1;
  --pink: #f3a1cf;
  --gold: #ffcc47;
  --shadow: 0 30px 80px rgba(113, 88, 192, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(155, 124, 246, 0.14), transparent 30%),
    radial-gradient(circle at right 20%, rgba(243, 161, 207, 0.18), transparent 28%),
    linear-gradient(180deg, #fcfcff 0%, var(--bg) 45%, #f4f4fb 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

main,
.topbar,
.footer {
  position: relative;
  z-index: 2;
}

.aurora {
  position: fixed;
  inset: auto;
  pointer-events: none;
  filter: blur(40px);
  z-index: 1;
}

.aurora-one {
  top: 80px;
  left: -90px;
  width: 260px;
  height: 260px;
  background: rgba(155, 124, 246, 0.26);
  border-radius: 50%;
}

.aurora-two {
  top: 500px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(243, 161, 207, 0.22);
  border-radius: 50%;
}

.topbar,
.section,
.footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(155, 124, 246, 0.26);
}

.brand-kicker,
.brand-sub {
  display: block;
}

.brand-kicker,
.eyebrow,
.feature-tag {
  font-family: "Sora", sans-serif;
}

.brand-kicker {
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary-strong);
}

.section {
  padding: 24px 0 56px;
}

.hero {
  display: grid;
  gap: 34px;
  padding-top: 16px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.06;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-text {
  margin-top: 18px;
  max-width: 62ch;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover,
.button:focus-visible,
.sticky-download:hover,
.sticky-download:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #ad8ef8 60%, var(--pink) 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(155, 124, 246, 0.34);
}

.button-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid rgba(155, 124, 246, 0.16);
  backdrop-filter: blur(18px);
}

.button-compact {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.store-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mini-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.proof-pill,
.feature-card,
.check-card,
.stat-card,
.cta-panel,
.contact-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.proof-pill {
  padding: 18px;
  border-radius: var(--radius-md);
}

.proof-pill strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.proof-pill span {
  color: var(--muted);
  font-size: 0.9rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.benefit-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-weight: 600;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  box-shadow: 0 0 0 5px rgba(155, 124, 246, 0.12);
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 560px;
}

.phone-shot {
  overflow: hidden;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 16px 40px rgba(58, 40, 99, 0.1),
    0 50px 120px rgba(155, 124, 246, 0.24);
  margin: 0;
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-shot-main {
  width: min(84vw, 340px);
  margin-left: auto;
}

.phone-shot-side {
  position: absolute;
  width: min(46vw, 210px);
  right: -8px;
  bottom: -16px;
  transform: rotate(7deg);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  max-width: 68ch;
}

/* About */
.about-grid {
  display: grid;
  gap: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 20px;
  border-radius: var(--radius-md);
  display: grid;
  gap: 6px;
}

.stat-card strong {
  font-family: "Sora", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary-strong);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.about-copy {
  display: grid;
  gap: 16px;
}

/* Features / showcase */
.showcase-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.showcase-phone,
.play-shot {
  border-radius: 34px;
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  /* telefon ekran goruntuleri 780x1690 (1:2.17) - genislik sinirlanmazsa
     sutunu doldurup asiri uzun gorunuyorlar */
  width: min(72vw, 300px);
  margin-inline: auto;
}

.showcase-content {
  display: grid;
  gap: 14px;
}

.check-card {
  padding: 20px;
  border-radius: 22px;
}

.check-card h3 {
  margin-bottom: 8px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

.feature-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.feature-tag {
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-strong);
}

.feature-card h3 {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  margin-bottom: 12px;
}

.play-shot {
  margin-block: 8px;
}

/* CTA banner */
.cta-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 32px;
}

.cta-panel-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Contact */
.contact-panel {
  display: grid;
  gap: 16px;
  padding: 34px;
  border-radius: 32px;
  max-width: 640px;
}

.contact-panel .button {
  justify-self: start;
  margin-top: 6px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0 120px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.footer-links a {
  color: var(--text);
  font-weight: 700;
}

.footer-links a:last-child {
  color: var(--primary-strong);
}

.sticky-download {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(138, 104, 241, 0.98), rgba(243, 161, 207, 0.96));
  box-shadow: 0 22px 60px rgba(102, 72, 184, 0.34);
}

.sticky-download span {
  font-size: 0.82rem;
  opacity: 0.82;
}

.sticky-download strong {
  font-size: 1rem;
}

.redirect-banner {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(160deg, #9b7cf6, #f3a1cf);
  color: #fff;
}

.redirect-banner[hidden] {
  display: none;
}

.redirect-banner p {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.redirect-banner a {
  font-weight: 800;
  text-decoration: underline;
}

@media (min-width: 760px) {
  .nav-links {
    display: inline-flex;
  }

  .section {
    padding: 44px 0 76px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mini-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid,
  .cta-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .showcase-grid-reverse .showcase-content {
    order: 2;
  }

  .showcase-grid-reverse .showcase-phone {
    order: 1;
  }

  .showcase-phone,
  .play-shot {
    width: 320px;
  }

  .phone-shot-main {
    width: min(34vw, 360px);
  }

  .phone-shot-side {
    width: min(20vw, 220px);
    bottom: 10px;
  }

  .sticky-download {
    display: none;
  }

  .footer {
    padding-bottom: 48px;
  }
}

@media (max-width: 520px) {
  .topbar .button-compact {
    display: none;
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone-shot-side {
    bottom: -10px;
  }
}

@media (min-width: 1100px) {
  .topbar,
  .section,
  .footer {
    width: min(calc(100% - 72px), var(--max-width));
  }

  .hero {
    min-height: 820px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .floating-card {
    top: 90px;
  }

  .phone-shot-main {
    width: 360px;
  }

  .phone-shot-side {
    right: 20px;
    bottom: 10px;
  }
}
