:root {
  --brand: #1a5a9a;
  --brand-dark: color-mix(in srgb, var(--brand) 72%, #0f172a);
  --brand-soft: color-mix(in srgb, var(--brand) 10%, #ffffff);
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
}

* {
  box-sizing: border-box;
}

body.landing-page {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.license-warning {
  padding: 10px 16px;
  background: #fff3cd;
  color: #856404;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.license-warning a {
  color: #6b4e00;
  text-decoration: underline;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 54px);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
  background: rgba(248, 250, 252, .92);
  backdrop-filter: blur(18px);
}

.landing-brand,
.landing-header nav,
.hero-actions,
.trust-row,
.store-buttons,
.landing-footer div {
  display: flex;
  align-items: center;
}

.landing-brand {
  gap: 10px;
  min-width: 0;
}

.landing-brand span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.landing-brand b {
  max-width: 170px;
  overflow: hidden;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-header nav {
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.landing-header nav a {
  padding: 9px 11px;
  border-radius: 999px;
}

.landing-header nav a:hover {
  background: #fff;
}

.nav-cta,
.btn.primary {
  color: #fff !important;
  background: var(--brand);
}

main {
  overflow: hidden;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(38px, 8vw, 92px) clamp(16px, 6vw, 76px);
  background:
    radial-gradient(circle at 80% 16%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 30%),
    linear-gradient(180deg, #ffffff, #f3f7fb);
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, #ffffff);
  border-radius: 999px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.eyebrow.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .12);
}

.hero-copy h1 {
  max-width: 720px;
  margin: 18px 0 14px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: .98;
  font-weight: 900;
}

.hero-copy p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.hero-actions {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 900;
}

.btn.secondary {
  color: var(--brand);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, #ffffff);
  background: #fff;
}

.trust-row {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-panel {
  display: grid;
  place-items: center;
}

.ad-stack {
  position: relative;
  width: min(100%, 430px);
}

.ad-stack>img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .16);
}

.phone-card {
  position: relative;
  width: min(100%, 390px);
  margin: -70px auto 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 30px;
  background:
    linear-gradient(145deg, var(--brand-dark), var(--brand)),
    radial-gradient(circle at top right, rgba(255, 255, 255, .28), transparent 36%);
  color: #fff;
  box-shadow: 0 28px 80px color-mix(in srgb, var(--brand) 26%, transparent);
}

.phone-top {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .12);
}

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

.phone-top b {
  display: block;
  margin-top: 8px;
  font-size: 34px;
}

.phone-top small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

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

.quick-grid span,
.live-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .14);
  font-weight: 900;
}

.live-card {
  margin-top: 12px;
}

.live-card i {
  font-size: 25px;
}

.live-card b,
.live-card small {
  display: block;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(16px, 6vw, 76px) clamp(24px, 5vw, 46px);
  background: linear-gradient(180deg, #f3f7fb, var(--bg));
}

.stats-strip div {
  padding: 24px 18px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.stats-strip div:first-child {
  border-radius: 22px 0 0 22px;
}

.stats-strip div:last-child {
  border-radius: 0 22px 22px 0;
}

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

.stats-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.ad-section,
.service-band,
.pricing-section,
.reviews-section,
.faq-section,
.business-section,
.download-section,
.developer-section,
.cta-section {
  padding: clamp(34px, 6vw, 70px) clamp(16px, 6vw, 76px);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 22px;
}

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

.section-heading span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-heading h2,
.business-section h2,
.download-section h2,
.developer-section h2,
.cta-section h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 900;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}

.ad-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: #ffffff;
}

.ad-section article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #f8fafc;
  box-shadow: 0 14px 42px rgba(15, 23, 42, .05);
}

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

.ad-section div {
  padding: 22px;
}

.ad-section span,
.plan-name {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.ad-section p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .045);
}

.service-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 15px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 20px;
}

.service-grid b {
  display: block;
  font-size: 16px;
}

.service-grid p,
.business-section p,
.download-section p,
.developer-section p,
.cta-section p {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.pricing-section {
  background:
    radial-gradient(circle at 10% 20%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 28%),
    #ffffff;
}

.pricing-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-grid article,
.review-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, .055);
}

.pricing-grid .featured-plan {
  color: #ffffff;
  border-color: transparent;
  background:
    radial-gradient(circle at 80% 0, rgba(255, 255, 255, .22), transparent 34%),
    linear-gradient(145deg, var(--brand-dark), var(--brand));
}

.pricing-grid h3 {
  margin: 8px 0 10px;
  font-size: 25px;
}

.pricing-grid p,
.review-grid p {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

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

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

.pricing-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

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

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

.pricing-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 13px;
  color: #ffffff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

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

.business-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(135deg, #0f172a, var(--brand-dark));
}

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

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

.business-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
  font-weight: 800;
}

.business-list i {
  color: color-mix(in srgb, var(--brand) 30%, #ffffff);
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  background: #ffffff;
}

.download-section p {
  max-width: 600px;
}

.store-buttons {
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.store-buttons a {
  min-width: 190px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  border-radius: 17px;
  color: #ffffff;
  background: #0f172a;
  font-weight: 900;
}

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

.store-buttons small {
  display: block;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  line-height: 1.1;
}

.reviews-section {
  background: #f8fafc;
}

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

.review-grid b {
  color: var(--ink);
}

.faq-section {
  background: #ffffff;
}

.faq-grid {
  max-width: 900px;
  display: grid;
  gap: 10px;
  margin: 0 auto;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
}

.faq-grid summary {
  cursor: pointer;
  padding: 17px 18px;
  color: var(--ink);
  font-weight: 900;
}

.faq-grid p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}

.developer-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, .16), transparent 30%),
    linear-gradient(135deg, var(--brand), #0f172a);
}

.developer-section p {
  max-width: 690px;
  color: rgba(255, 255, 255, .76);
}

.developer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

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

.btn.outline-light {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  white-space: nowrap;
}

.cta-section {
  text-align: center;
  background: #fff;
}

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

.landing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(16px, 6vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.landing-footer div {
  gap: 14px;
}

.developer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--ink);
}

.developer-brand small {
  color: var(--muted);
  font-size: 11px;
}

.developer-brand b {
  color: var(--brand);
  font-size: 12px;
}

@media (max-width: 860px) {
  .landing-header nav a:not(.nav-cta):not([href="/login"]) {
    display: none;
  }

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

  .stats-strip,
  .ad-section,
  .service-grid,
  .pricing-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-strip div,
  .stats-strip div:first-child,
  .stats-strip div:last-child {
    border-radius: 18px;
  }

  .store-buttons {
    justify-content: flex-start;
  }

  .developer-section {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .landing-header {
    padding: 12px;
  }

  .landing-header nav {
    gap: 4px;
    font-size: 12px;
  }

  .landing-header nav a {
    padding: 8px 9px;
  }

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

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

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

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

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

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

  .ad-section img {
    height: 190px;
  }

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

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

  .landing-footer {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .developer-actions .btn {
    width: 100%;
  }
}
