@import url("/static/landing-azs-toplivo.css");

:root {
  --apk-bg: #f3f6fb;
  --apk-card: #ffffff;
  --apk-line: #dbe4f2;
  --apk-text: #1a2940;
  --apk-muted: #5b6e8a;
  --apk-brand: #3f6df6;
  --apk-brand-2: #6f93ff;
  --apk-success: #2ea86f;
  --apk-radius: 16px;
  --apk-shadow: 0 14px 34px rgba(28, 51, 84, 0.09);
}

html.land-azs-toplivo-apk body {
  margin: 0;
  color: var(--apk-text);
  background:
    radial-gradient(780px 320px at 8% -8%, rgba(70, 110, 246, 0.16), transparent 62%),
    radial-gradient(760px 300px at 100% 0, rgba(85, 184, 255, 0.12), transparent 58%),
    var(--apk-bg);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

html.land-azs-toplivo-apk .lm-root {
  width: min(1080px, calc(100% - 28px));
  margin: 0 auto;
  padding: 20px 0 34px;
}

html.land-azs-toplivo-apk .lm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

html.land-azs-toplivo-apk .lm-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

html.land-azs-toplivo-apk .lm-brand strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

html.land-azs-toplivo-apk .lm-brand small {
  display: block;
  margin-top: 2px;
  color: var(--apk-muted);
  font-size: 0.82rem;
}

html.land-azs-toplivo-apk .lm-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--apk-line);
  border-radius: 999px;
  background: #fff;
  color: var(--apk-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

html.land-azs-toplivo-apk .lm-chip--live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--apk-success);
  box-shadow: 0 0 0 0 rgba(46, 168, 111, 0.45);
  animation: apkPulse 1.7s ease-out infinite;
}

@keyframes apkPulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 168, 111, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(46, 168, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 168, 111, 0); }
}

html.land-azs-toplivo-apk .lm-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: start;
}

html.land-azs-toplivo-apk .lm-hero-copy {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #e2eaf7;
  border-radius: var(--apk-radius);
  padding: 22px;
}

html.land-azs-toplivo-apk .lm-kicker {
  margin: 0 0 8px;
  color: var(--apk-brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html.land-azs-toplivo-apk .lm-hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

html.land-azs-toplivo-apk .lm-lead {
  margin: 0 0 16px;
  color: var(--apk-muted);
  font-size: 1rem;
  line-height: 1.54;
}

html.land-azs-toplivo-apk .lm-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

html.land-azs-toplivo-apk .lm-highlights li {
  border: 1px solid var(--apk-line);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

html.land-azs-toplivo-apk .lm-highlights b {
  display: block;
  font-size: 1.26rem;
}

html.land-azs-toplivo-apk .lm-highlights span {
  color: var(--apk-muted);
  font-size: 0.82rem;
}

html.land-azs-toplivo-apk .lm-panel {
  border: 1px solid var(--apk-line);
  border-radius: var(--apk-radius);
  background: var(--apk-card);
  box-shadow: var(--apk-shadow);
  padding: 18px;
}

html.land-azs-toplivo-apk .lm-stage { display: none; }
html.land-azs-toplivo-apk .lm-stage.is-active { display: block; }

html.land-azs-toplivo-apk .lm-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
}

html.land-azs-toplivo-apk .lm-panel-head h2 {
  margin: 0;
  font-size: 1.06rem;
}

html.land-azs-toplivo-apk .lm-panel-head p {
  margin: 4px 0 0;
  color: var(--apk-muted);
  font-size: 0.83rem;
}

html.land-azs-toplivo-apk .lm-step-pill {
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef3ff;
  color: #3556b5;
  font-size: 0.74rem;
  font-weight: 700;
}

html.land-azs-toplivo-apk .lm-block { margin-bottom: 13px; }

html.land-azs-toplivo-apk .lm-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 700;
}

html.land-azs-toplivo-apk .lm-fuels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

html.land-azs-toplivo-apk .lm-fuels button {
  min-height: 54px;
  border: 1px solid var(--apk-line);
  border-radius: 12px;
  background: #f7f9fe;
  text-align: left;
  padding: 10px 11px;
  font: inherit;
  color: var(--apk-text);
  cursor: pointer;
  transition: all 0.16s ease;
}

html.land-azs-toplivo-apk .lm-fuels button:hover {
  border-color: #c4d3f4;
  transform: translateY(-1px);
}

html.land-azs-toplivo-apk .lm-fuels button.is-active {
  border-color: var(--apk-brand);
  background: #edf2ff;
  box-shadow: inset 0 0 0 1px rgba(63, 109, 246, 0.18);
}

html.land-azs-toplivo-apk .lm-fuels .lm-fuel-wide {
  grid-column: 1 / -1;
}

html.land-azs-toplivo-apk .lm-fuels strong {
  display: block;
  font-size: 0.96rem;
}

html.land-azs-toplivo-apk .lm-fuels small {
  color: var(--apk-muted);
  font-size: 0.75rem;
}

html.land-azs-toplivo-apk .lm-select select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--apk-line);
  border-radius: 12px;
  background: #fff;
  color: var(--apk-text);
  font: inherit;
  padding: 0 12px;
}

html.land-azs-toplivo-apk .lm-select select:focus {
  outline: none;
  border-color: #9cb4f6;
  box-shadow: 0 0 0 3px rgba(78, 126, 248, 0.18);
}

html.land-azs-toplivo-apk .lm-ghost {
  width: 100%;
  margin-top: 8px;
  min-height: 40px;
  border: 1px dashed #bfd0f3;
  border-radius: 12px;
  background: #f7f9ff;
  color: #4666bb;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

html.land-azs-toplivo-apk .lm-ghost.is-active {
  border-color: var(--apk-brand);
  background: #edf2ff;
  color: #2e4ea7;
}

html.land-azs-toplivo-apk .lm-checks {
  display: grid;
  gap: 8px;
}

html.land-azs-toplivo-apk .lm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: #3f5579;
}

html.land-azs-toplivo-apk .lm-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #4d79f7;
}

html.land-azs-toplivo-apk .lm-form-hint {
  margin: 0 0 8px;
  color: #be3f47;
  font-size: 0.84rem;
}

html.land-azs-toplivo-apk .lm-cta {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--apk-brand), var(--apk-brand-2));
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
}

html.land-azs-toplivo-apk .lm-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

html.land-azs-toplivo-apk .lm-fine {
  margin: 10px 0 0;
  color: var(--apk-muted);
  font-size: 0.79rem;
  text-align: center;
  line-height: 1.4;
}

html.land-azs-toplivo-apk .lm-meter {
  height: 10px;
  border-radius: 999px;
  background: #e9eef9;
  overflow: hidden;
  margin-bottom: 8px;
}

html.land-azs-toplivo-apk .lm-meter i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #5a84ff, #77d5ff);
  transition: width 0.2s ease;
}

html.land-azs-toplivo-apk .lm-meter-val {
  margin-bottom: 10px;
  text-align: right;
  color: var(--apk-muted);
  font-size: 0.8rem;
}

html.land-azs-toplivo-apk .lm-scan-log {
  margin: 0;
  padding-left: 17px;
  color: #3e577f;
  font-size: 0.88rem;
  line-height: 1.5;
}

html.land-azs-toplivo-apk .lm-result-box {
  border: 1px solid #dce6f9;
  border-radius: 12px;
  background: #f7faff;
  padding: 14px;
  margin-bottom: 12px;
}

html.land-azs-toplivo-apk .lm-result-box small {
  display: block;
  color: var(--apk-muted);
  font-size: 0.76rem;
}

html.land-azs-toplivo-apk .lm-result-box strong {
  display: block;
  margin: 4px 0 8px;
  font-size: 1.5rem;
}

html.land-azs-toplivo-apk .lm-result-box mark {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
  background: #e9f0ff;
  color: #3b59a7;
  font-size: 0.78rem;
}

html.land-azs-toplivo-apk .lm-info {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

html.land-azs-toplivo-apk .lm-info-card {
  border: 1px solid var(--apk-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  padding: 13px;
}

html.land-azs-toplivo-apk .lm-info-card h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

html.land-azs-toplivo-apk .lm-info-card p {
  margin: 0;
  color: var(--apk-muted);
  font-size: 0.84rem;
  line-height: 1.44;
}

@media (max-width: 920px) {
  html.land-azs-toplivo-apk .lm-hero,
  html.land-azs-toplivo-apk .lm-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  html.land-azs-toplivo-apk .lm-root {
    width: min(100% - 14px, 1080px);
    padding-top: 12px;
  }

  html.land-azs-toplivo-apk .lm-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  html.land-azs-toplivo-apk .lm-hero-copy,
  html.land-azs-toplivo-apk .lm-panel {
    padding: 14px;
  }
}
