:root {
  --lp-bg: #070708;
  --lp-red: #e10600;
  --lp-red-hot: #ff2a22;
  --lp-text: #f4f2f3;
  --lp-muted: #9a959a;
  --lp-font: "Figtree", sans-serif;
  --lp-display: "Syne", sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body.lp {
  margin: 0;
  min-height: 100vh;
  font-family: var(--lp-font);
  color: var(--lp-text);
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(225, 6, 0, 0.28), transparent 55%),
    radial-gradient(700px 360px at 0% 40%, rgba(225, 6, 0, 0.1), transparent 50%),
    linear-gradient(180deg, #0c0c10 0%, var(--lp-bg) 45%, #040405 100%);
  line-height: 1.45;
}

.lp-shell {
  width: min(100% - 32px, 440px);
  margin: 0 auto;
  padding: 22px 0 36px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lp-shell-wide {
  width: min(100% - 32px, 980px);
}

.lp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.lp-brand img {
  display: block;
  max-height: 36px;
  max-width: 160px;
  object-fit: contain;
}

.lp-wordmark {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.lp-pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(225, 6, 0, 0.2);
  border: 1px solid rgba(255, 42, 34, 0.45);
}

.lp-top-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff8e88;
  text-decoration: none;
}

.lp-main { flex: 1; }

.lp-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-red-hot);
}

.lp-title {
  margin: 0 0 12px;
  font-family: var(--lp-display);
  font-size: clamp(1.9rem, 7vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.lp-title-lg {
  font-size: clamp(2.2rem, 7vw, 3.4rem);
}

.lp-title span {
  color: var(--lp-red-hot);
}

.lp-lead {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  max-width: 36ch;
}

.lp-url-box {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-url-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-url-host {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  word-break: break-all;
  padding-right: 72px;
}

.lp-copy {
  position: absolute;
  top: 14px;
  right: 12px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.lp-copy.is-ok { background: rgba(61, 214, 140, 0.25); color: #3dd68c; }

.lp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(165deg, #ff2f26, #b00500);
  box-shadow: 0 12px 32px rgba(225, 6, 0, 0.4);
}

.lp-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.lp-install {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-install h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
}

.lp-install > p {
  margin: 0 0 14px;
  color: var(--lp-muted);
  font-size: 0.9rem;
}

.lp-steps {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.lp-steps li { margin-bottom: 8px; }
.lp-steps em { font-style: normal; color: #ff8e88; }

.lp-install-btn {
  margin-top: 14px;
  width: 100%;
  padding: 13px 16px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.lp-tg {
  display: block;
  margin-top: 18px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #6ec1ff;
  text-decoration: none;
}

.lp-tg-center { margin: 8px auto 0; }

.lp-foot {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-size: 0.78rem;
  color: #6a656c;
}

.lp-foot a {
  color: #9a959a;
  text-decoration: none;
}

/* Tanıtım */
.lp-tanitim { padding: 0; }

.lp-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 320px at 90% 10%, rgba(225, 6, 0, 0.35), transparent 55%),
    linear-gradient(180deg, #101014 0%, #070708 55%);
  pointer-events: none;
}

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

.lp-promo-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  margin-bottom: 36px;
}

.lp-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.lp-store-badge {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.lp-cta-row {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.lp-host-line {
  margin: 0;
  font-size: 0.85rem;
  color: var(--lp-muted);
}

.lp-host-line b { color: #fff; }

.lp-phones {
  position: relative;
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
}

.lp-phone {
  width: 118px;
  height: 210px;
  padding: 8px;
  border-radius: 22px;
  background: linear-gradient(160deg, #2a2a32, #121218);
  border: 2px solid rgba(255, 42, 34, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.lp-phone-a { transform: rotate(-8deg) translateY(10px); }
.lp-phone-b { transform: rotate(7deg); width: 128px; height: 228px; }

.lp-phone-screen {
  height: 100%;
  border-radius: 16px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    radial-gradient(80px 60px at 50% 0%, rgba(225, 6, 0, 0.35), transparent 70%),
    #0a0a0e;
}

.lp-phone-screen strong {
  font-family: var(--lp-display);
  font-size: 0.85rem;
}

.lp-phone-screen em {
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 700;
  color: #9a959a;
}

.lp-phone-screen i {
  display: block;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.35), rgba(255, 255, 255, 0.06));
}

.lp-features {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.lp-features article {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-features strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.lp-features p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--lp-muted);
}

@media (min-width: 820px) {
  .lp-promo-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }

  .lp-cta-row {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: center;
  }

  .lp-cta { width: auto; }

  .lp-phones {
    height: 300px;
    justify-content: flex-end;
  }

  .lp-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .lp-features article {
    border-top: 0;
    padding: 0;
  }
}
