:root {
  --brand: #1a5a9a;
  --brand-soft: color-mix(in srgb, var(--brand) 12%, white);
  --brand-faint: color-mix(in srgb, var(--brand) 6%, white);
  --brand-dark: color-mix(in srgb, var(--brand) 82%, #020617);
  --bg: #f7fbff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --shadow: 0 14px 28px rgba(2, 6, 23, .08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  margin: 0;
  min-height: 100vh;
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 320px at 50% -140px, color-mix(in srgb, var(--brand) 18%, transparent), transparent 65%),
    var(--bg);
}

body.landing-page a {
  color: inherit;
  text-decoration: none;
}

body.landing-page img {
  display: block;
  max-width: 100%;
}

.license-warning {
  padding: 10px 18px;
  text-align: center;
  color: #7f1d1d;
  background: #fee2e2;
  border-bottom: 1px solid #fecaca;
  font-size: 13px;
  font-weight: 700;
}

.license-warning a {
  color: #991b1b;
  text-decoration: underline;
}

.landing-header,
.landing-footer,
.landing-hero,
.stats-strip,
.ad-section,
.service-band,
.pricing-section,
.business-section,
.download-section,
.reviews-section,
.faq-section,
.developer-section,
.cta-section {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.landing-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  margin-top: 12px;
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--brand);
}

.landing-brand span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--brand), color-mix(in srgb, var(--brand) 70%, #6d5dfc)),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .28), transparent 36%);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .16);
}

.landing-brand b {
  overflow: hidden;
  max-width: 220px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-header nav,
.landing-footer div {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.landing-header nav a,
.landing-footer div a {
  border-radius: 14px;
  padding: 10px 12px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.landing-header nav a:hover,
.landing-footer div a:hover {
  color: var(--brand);
  background: var(--brand-soft);
}

.landing-header nav .nav-cta {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 10px 20px rgba(15, 23, 42, .12);
}

.landing-header nav .nav-cta:hover {
  color: #ffffff;
  background: var(--brand-dark);
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 34px;
  align-items: center;
  padding: 72px 0 34px;
}

.hero-copy h1,
.section-heading h2,
.business-section h2,
.download-section h2,
.developer-section h2,
.cta-section h2 {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-copy h1 {
  max-width: 680px;
  margin-top: 14px;
  font-size: clamp(40px, 7vw, 72px);
}

.hero-copy p,
.section-heading p,
.ad-section p,
.business-section p,
.download-section p,
.developer-section p,
.cta-section p,
.service-grid p,
.pricing-grid p,
.review-grid p,
.faq-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy > p {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 17px;
}

.eyebrow,
.section-heading > span,
.ad-section article span,
.plan-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, white);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eyebrow.dark {
  color: #ffffff;
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .24);
}

.hero-actions,
.developer-actions,
.store-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 26px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius);
  padding: 14px 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--brand) 24%, transparent);
}

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

.btn.secondary {
  color: var(--brand);
  background: var(--card);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.btn.light {
  color: var(--brand);
  background: #ffffff;
}

.btn.outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .42);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #475569;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 800;
}

.trust-row i {
  color: var(--brand);
}

.hero-panel {
  min-width: 0;
}

.ad-stack {
  position: relative;
  min-height: 560px;
}

.ad-stack > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, .18);
}

.phone-card {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: min(330px, calc(100% - 36px));
  padding: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.phone-top {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--brand), color-mix(in srgb, var(--brand) 72%, #6d5dfc)),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .28), transparent 36%);
}

.phone-top span,
.phone-top small,
.live-card small {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 700;
}

.phone-top b {
  font-size: 28px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 12px;
}

.quick-grid span,
.business-list div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: #475569;
  font-size: 13px;
  font-weight: 900;
}

.quick-grid i,
.business-list i {
  color: var(--brand);
}

.live-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  color: #ffffff;
  background: #0f172a;
}

.live-card i {
  color: #22c55e;
  font-size: 22px;
}

.live-card b {
  display: block;
  font-size: 14px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
}

.stats-strip div {
  padding: 16px 10px;
  text-align: center;
}

.stats-strip b {
  display: block;
  color: var(--brand);
  font-size: 26px;
  font-weight: 900;
}

.stats-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.ad-section,
.service-band,
.pricing-section,
.business-section,
.download-section,
.reviews-section,
.faq-section,
.developer-section,
.cta-section {
  margin-top: 58px;
}

.ad-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ad-section article,
.service-grid article,
.pricing-grid article,
.review-grid article,
.faq-grid details {
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.ad-section article {
  overflow: hidden;
}

.ad-section img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.ad-section article div {
  padding: 20px;
}

.ad-section h2 {
  margin: 12px 0 0;
  font-size: 26px;
  line-height: 1.15;
}

.ad-section p {
  margin: 12px 0 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.business-section h2,
.download-section h2,
.developer-section h2,
.cta-section h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading p {
  margin: 14px 0 0;
}

.service-grid,
.pricing-grid,
.review-grid,
.faq-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

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

.service-grid article,
.pricing-grid article,
.review-grid article {
  padding: 20px;
}

.service-grid i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: var(--brand);
  font-size: 20px;
}

.service-grid b {
  display: block;
  margin-top: 16px;
  font-size: 17px;
  font-weight: 900;
}

.service-grid p,
.pricing-grid p,
.review-grid p {
  margin: 10px 0 0;
  font-size: 14px;
}

.pricing-grid,
.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid article {
  display: flex;
  flex-direction: column;
}

.pricing-grid .featured-plan {
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--brand), color-mix(in srgb, var(--brand) 70%, #6d5dfc)),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .28), transparent 36%);
}

.pricing-grid h3 {
  margin: 14px 0 0;
  font-size: 24px;
}

.pricing-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.pricing-grid li {
  display: flex;
  gap: 9px;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
}

.pricing-grid li i {
  color: var(--brand);
}

.pricing-grid a {
  margin-top: auto;
  border-radius: 16px;
  padding: 13px 15px;
  color: #ffffff;
  background: var(--brand);
  text-align: center;
  font-weight: 900;
}

.featured-plan .plan-name {
  color: #ffffff;
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .24);
}

.featured-plan p,
.featured-plan li {
  color: rgba(255, 255, 255, .78);
}

.featured-plan li i {
  color: #ffffff;
}

.featured-plan a {
  color: var(--brand);
  background: #ffffff;
}

.business-section,
.developer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  color: #ffffff;
  border-radius: 26px;
  background:
    linear-gradient(135deg, #0f172a, color-mix(in srgb, var(--brand) 62%, #0f172a)),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .18), transparent 36%);
  box-shadow: 0 24px 50px rgba(15, 23, 42, .18);
}

.business-section h2,
.developer-section h2 {
  color: #ffffff;
}

.business-section p,
.developer-section p {
  color: rgba(255, 255, 255, .76);
}

.business-list {
  display: grid;
  gap: 10px;
}

.business-list div {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .16);
  color: #ffffff;
}

.business-list i {
  color: #ffffff;
}

.download-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.download-section h2 {
  max-width: 620px;
}

.download-section p {
  max-width: 620px;
  margin: 12px 0 0;
}

.store-buttons a {
  min-width: 172px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #ffffff;
  background: #0f172a;
  font-weight: 900;
}

.store-buttons i {
  font-size: 25px;
}

.store-buttons small {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 700;
}

.review-grid article div {
  color: #f59e0b;
  font-size: 17px;
  letter-spacing: 0;
}

.review-grid b {
  display: block;
  margin-top: 12px;
  color: var(--text);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-grid details {
  padding: 18px 20px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

.faq-grid p {
  margin: 12px 0 0;
  font-size: 14px;
}

.developer-actions {
  justify-content: flex-end;
}

.cta-section {
  padding: 42px 24px;
  text-align: center;
}

.cta-section p {
  max-width: 560px;
  margin: 12px auto 22px;
}

.landing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 34px;
  margin-top: 24px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.developer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
}

.developer-brand small {
  color: #94a3b8;
  font-weight: 700;
}

.developer-brand b {
  font-weight: 900;
}

@media (max-width: 900px) {
  .landing-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-header nav {
    justify-content: flex-start;
  }

  .landing-hero,
  .business-section,
  .developer-section {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    padding-top: 46px;
  }

  .service-grid,
  .pricing-grid,
  .review-grid,
  .ad-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .download-section,
  .landing-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .developer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .landing-header,
  .landing-footer,
  .landing-hero,
  .stats-strip,
  .ad-section,
  .service-band,
  .pricing-section,
  .business-section,
  .download-section,
  .reviews-section,
  .faq-section,
  .developer-section,
  .cta-section {
    width: min(100% - 20px, 1120px);
  }

  .landing-header {
    top: 8px;
    margin-top: 8px;
  }

  .landing-header nav a,
  .landing-footer div a {
    padding: 9px 10px;
    font-size: 12px;
  }

  .landing-brand b {
    max-width: 190px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-actions,
  .store-buttons,
  .developer-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .store-buttons a {
    width: 100%;
  }

  .ad-stack {
    min-height: auto;
  }

  .ad-stack > img {
    height: 340px;
  }

  .phone-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 18px);
    margin: -70px auto 0;
  }

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

  .business-section,
  .developer-section,
  .download-section {
    padding: 22px;
    border-radius: 22px;
  }

  .section-heading h2,
  .business-section h2,
  .download-section h2,
  .developer-section h2,
  .cta-section h2 {
    font-size: 30px;
  }
}
