﻿:root {
  --bg-top: #020611;
  --bg-mid: #051332;
  --bg-bottom: #0a2f77;
  --line: rgba(210, 236, 255, 0.22);
  --line-soft: rgba(193, 231, 255, 0.12);
  --text: #eef8ff;
  --muted: rgba(223, 241, 255, 0.74);
  --card-bg: rgba(7, 24, 56, 0.52);
  --card-bg-strong: rgba(7, 29, 71, 0.74);
  --accent: #3ecbff;
  --accent-strong: #2f83ff;
  --accent-soft: #8be9ff;
  --ok: #61e4c2;
  --warn: #ffd36c;
  --bad: #ff9cad;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
  background: linear-gradient(175deg, var(--bg-top) 0%, var(--bg-mid) 44%, var(--bg-bottom) 100%);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 32px 0 88px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(177, 224, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(177, 224, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  animation: bg-pan 26s linear infinite;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(108px);
  z-index: -3;
}

.orb-a {
  width: 360px;
  height: 360px;
  left: -120px;
  top: -130px;
  background: rgba(67, 202, 255, 0.48);
}

.orb-b {
  width: 410px;
  height: 410px;
  right: -130px;
  bottom: -120px;
  background: rgba(50, 121, 255, 0.46);
}

.orb-c {
  width: 320px;
  height: 320px;
  right: 24%;
  top: -140px;
  background: rgba(90, 227, 255, 0.3);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(138deg, var(--card-bg-strong), var(--card-bg));
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 26px 60px rgba(2, 9, 24, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.soft-card {
  border-radius: var(--radius-md);
  border-color: var(--line-soft);
  box-shadow: 0 18px 34px rgba(2, 8, 22, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero {
  padding: 28px;
  display: grid;
  gap: 14px;
}

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

.hero-brand img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(52, 189, 255, 0.36);
  border: 1px solid rgba(212, 242, 255, 0.56);
}

.badge {
  display: inline-block;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid rgba(131, 217, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e7f8ff;
  background: linear-gradient(138deg, rgba(62, 203, 255, 0.2), rgba(47, 131, 255, 0.2));
}

.hero-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.24;
}

h1 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(21px, 2.4vw, 30px);
  margin-bottom: 12px;
}

h3 {
  font-size: clamp(18px, 2vw, 22px);
}

p {
  margin: 0;
}

.hero-text {
  color: var(--muted);
  max-width: 67ch;
}

.section {
  margin-top: 24px;
}

.grid {
  display: grid;
  gap: 14px;
}

.plans-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.soft-card {
  padding: 20px;
}

.muted {
  color: var(--muted);
}

.price {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 800;
  color: #f4fbff;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 11px 15px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  background: rgba(12, 35, 80, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(146, 225, 255, 0.58);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-primary {
  color: #03223f;
  border-color: rgba(158, 232, 255, 0.75);
  background: linear-gradient(135deg, #9cebff 0%, #54cfff 42%, #307fff 100%);
  box-shadow: 0 14px 28px rgba(67, 195, 255, 0.3);
}

.btn-ghost {
  background: rgba(8, 25, 56, 0.45);
}

.auth-body .container {
  width: min(980px, 94vw);
}

.auth-shell {
  padding: 26px;
  display: grid;
  gap: 18px;
}

.auth-hero {
  display: flex;
  gap: 16px;
  align-items: center;
}

.auth-hero img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(200, 240, 255, 0.6);
  box-shadow: 0 14px 28px rgba(53, 178, 255, 0.35);
}

.auth-hero p {
  margin-top: 8px;
  color: var(--muted);
}

.auth-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.auth-card {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(7, 26, 62, 0.54);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.auth-card p {
  color: var(--muted);
  min-height: 54px;
}

.connect-body .container {
  width: min(850px, 94vw);
  padding-top: 12px;
}

.qv-shell {
  display: grid;
  gap: 12px;
}

.qv-page > * {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 0.5s ease forwards;
}

.qv-page > :nth-child(2) {
  animation-delay: 0.08s;
}

.qv-page > :nth-child(3) {
  animation-delay: 0.16s;
}

.qv-panel {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8, 31, 73, 0.83), rgba(6, 22, 52, 0.9));
  box-shadow: 0 20px 46px rgba(2, 8, 20, 0.44);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.qv-panel:hover {
  border-color: rgba(136, 219, 255, 0.42);
}

.qv-topbar {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 10px;
  z-index: 20;
}

.qv-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qv-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(189, 236, 255, 0.54);
}

.qv-brand strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.qv-brand p {
  margin: 1px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.qv-head-actions {
  display: flex;
  gap: 8px;
}

.qv-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(12, 40, 90, 0.3);
  color: var(--text);
  display: grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.qv-icon-btn:hover {
  border-color: rgba(124, 215, 255, 0.56);
  transform: translateY(-1px);
}

.qv-ic {
  width: 18px;
  height: 18px;
  display: block;
}

.qv-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 12px;
}

.qv-status,
.qv-meta-item {
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
}

.qv-status-active {
  color: #bdffe9;
  border-color: rgba(97, 228, 194, 0.5);
  background: rgba(97, 228, 194, 0.16);
}

.qv-status-expired {
  color: #fff0be;
  border-color: rgba(255, 211, 108, 0.48);
  background: rgba(255, 211, 108, 0.16);
}

.qv-status-suspended {
  color: #ffd2da;
  border-color: rgba(255, 156, 173, 0.48);
  background: rgba(255, 156, 173, 0.16);
}

.qv-installation {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.qv-installation.is-switching .qv-card {
  opacity: 0.55;
  transform: translateY(4px);
}

.qv-install-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.qv-install-head h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0;
}

.qv-os-select {
  height: 40px;
  min-width: 150px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(10, 36, 82, 0.62);
  color: var(--text);
  padding: 0 10px;
}

.qv-app-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.qv-app-tab {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(12, 39, 88, 0.44);
  color: var(--text);
  padding: 10px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.qv-app-tab.is-active {
  border-color: rgba(142, 223, 255, 0.62);
  background: linear-gradient(120deg, rgba(62, 203, 255, 0.25), rgba(47, 131, 255, 0.26));
}

.qv-tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(183, 233, 255, 0.6);
}

.qv-app-tab.is-active .qv-tab-dot {
  background: #91e4ff;
}

.qv-card {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 14px;
  background: rgba(9, 31, 70, 0.54);
  transition: transform 0.2s ease;
}

.qv-card-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.qv-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(138deg, rgba(62, 203, 255, 0.44), rgba(47, 131, 255, 0.44));
  color: #dff5ff;
  flex-shrink: 0;
}

.qv-card-icon-ok {
  background: linear-gradient(138deg, rgba(97, 228, 194, 0.34), rgba(62, 203, 255, 0.34));
}

.qv-card h2 {
  font-size: 18px;
  margin: 0 0 2px;
}

.qv-card p {
  color: var(--muted);
  font-size: 13px;
}

.qv-link-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.qv-link-btn {
  text-decoration: none;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 10px;
  color: var(--text);
  background: rgba(14, 43, 95, 0.45);
  font-size: 13px;
  font-weight: 700;
}

.qv-sub-box {
  border: 1px dashed rgba(145, 228, 255, 0.48);
  border-radius: 12px;
  padding: 12px;
  background: rgba(8, 30, 68, 0.65);
  margin-bottom: 10px;
}

.qv-sub-box code {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.qv-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.qv-btn {
  appearance: none;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  color: var(--text);
  background: rgba(12, 40, 87, 0.48);
  padding: 10px 13px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.qv-btn-primary {
  color: #03233d;
  border-color: rgba(156, 236, 255, 0.76);
  background: linear-gradient(135deg, #9feeff, #44c8ff 48%, #2f83ff 100%);
}

.qv-steps {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.qv-steps li {
  color: var(--muted);
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 11px;
  border: 1px solid rgba(155, 236, 255, 0.56);
  background: rgba(6, 31, 73, 0.95);
  color: #e7f8ff;
  font-size: 13px;
  z-index: 100;
  box-shadow: 0 12px 24px rgba(2, 9, 24, 0.45);
}

@keyframes bg-pan {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(34px);
  }
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(95vw, 1120px);
    padding-top: 20px;
  }

  .hero {
    padding: 20px;
  }

  .hero-brand img {
    width: 56px;
    height: 56px;
  }

  .auth-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .qv-install-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .qv-os-select {
    width: 100%;
  }
}

.landing-nav {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 10px;
  z-index: 40;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.landing-brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(193, 231, 255, 0.58);
}

.landing-brand strong {
  display: block;
  font-size: 14px;
}

.landing-brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.landing-nav-actions {
  display: flex;
  gap: 8px;
}

.landing-hero {
  margin-top: 14px;
  padding: 30px;
  display: grid;
  gap: 14px;
}

.landing-hero p {
  color: var(--muted);
  max-width: 68ch;
}

.landing-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-stats {
  margin-top: 4px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-stat {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(8, 32, 74, 0.56);
  padding: 12px;
}

.landing-stat span {
  font-size: 12px;
  color: var(--muted);
}

.landing-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.1;
}

.landing-stat p {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.landing-section {
  margin-top: 18px;
}

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

.landing-feature {
  padding: 18px;
}

.landing-feature h3 {
  font-size: 19px;
}

.landing-feature p {
  margin-top: 8px;
  color: var(--muted);
}

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

.landing-step {
  padding: 18px;
}

.landing-step span {
  display: inline-block;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(138, 218, 255, 0.55);
  background: rgba(62, 203, 255, 0.14);
}

.landing-step h3 {
  margin-top: 8px;
  font-size: 19px;
}

.landing-step p {
  margin-top: 6px;
  color: var(--muted);
}

.landing-plan .btn {
  margin-top: 10px;
}

.landing-faq {
  display: grid;
  gap: 10px;
}

.landing-faq details {
  padding: 14px 16px;
}

.landing-faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.landing-faq summary::-webkit-details-marker {
  display: none;
}

.landing-faq details p {
  margin-top: 8px;
  color: var(--muted);
}

.landing-final {
  margin-top: 18px;
  padding: 24px;
  display: grid;
  gap: 10px;
}

.landing-final p {
  color: var(--muted);
}

@media (max-width: 960px) {
  .landing-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .landing-nav {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .landing-nav-actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .landing-hero {
    padding: 20px;
  }

  .landing-features {
    grid-template-columns: 1fr;
  }

  .landing-stats {
    grid-template-columns: 1fr;
  }
}

.landing-body .container {
  width: min(1200px, 94vw);
  padding-top: 18px;
}

.ln-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  min-height: 62px;
  border: 1px solid rgba(205, 237, 255, 0.24);
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(7, 25, 59, 0.85), rgba(7, 20, 48, 0.75));
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 20px 40px rgba(2, 8, 21, 0.42);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
}

.ln-brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ln-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(187, 232, 255, 0.64);
  box-shadow: 0 10px 22px rgba(65, 183, 255, 0.34);
}

.ln-brand strong {
  display: block;
  font-size: 15px;
}

.ln-brand span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.ln-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.ln-nav a {
  text-decoration: none;
  color: rgba(233, 247, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.ln-nav a:hover {
  border-color: rgba(142, 219, 255, 0.5);
  background: rgba(64, 156, 255, 0.12);
}

.ln-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ln-hero {
  margin-top: 16px;
  border: 1px solid rgba(200, 236, 255, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 84% 24%, rgba(81, 188, 255, 0.18), transparent 43%),
    radial-gradient(circle at 18% 74%, rgba(62, 112, 255, 0.18), transparent 48%),
    linear-gradient(140deg, rgba(7, 25, 59, 0.82), rgba(6, 18, 43, 0.8));
  box-shadow: 0 30px 60px rgba(2, 9, 24, 0.45);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
}

.ln-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(186, 234, 255, 0.82);
  font-weight: 800;
}

.ln-copy h1 {
  margin: 8px 0 10px;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.ln-copy p {
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}

.ln-cta-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ln-metrics {
  margin-top: 18px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.ln-metrics div {
  display: grid;
  gap: 2px;
}

.ln-metrics strong {
  font-size: 22px;
  line-height: 1;
}

.ln-metrics span {
  color: var(--muted);
  font-size: 12px;
}

.ln-preview {
  border: 1px solid rgba(173, 228, 255, 0.26);
  border-radius: 16px;
  background: rgba(8, 30, 68, 0.55);
  padding: 18px;
}

.ln-preview-title {
  margin: 0;
  font-size: 13px;
  color: rgba(187, 236, 255, 0.82);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ln-preview ul {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.ln-preview-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 11px;
  border: 1px solid rgba(159, 232, 255, 0.48);
  background: linear-gradient(135deg, rgba(20, 76, 158, 0.4), rgba(12, 43, 92, 0.55));
  text-decoration: none;
  color: #def7ff;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.ln-preview-link::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.22s ease;
}

.ln-preview-link:hover {
  transform: translateY(-2px);
  border-color: rgba(173, 236, 255, 0.74);
  box-shadow: 0 12px 24px rgba(33, 120, 219, 0.26);
  filter: brightness(1.08);
}

.ln-preview-link:hover::after {
  transform: translateX(2px);
}

.ln-preview-link:active {
  transform: translateY(0);
}

.ln-strip {
  margin-top: 14px;
  border-top: 1px solid rgba(170, 226, 255, 0.2);
  border-bottom: 1px solid rgba(170, 226, 255, 0.2);
  overflow: hidden;
}

.ln-strip-marquee {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ln-scroll 22s linear infinite;
  will-change: transform;
}

.ln-strip-track {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(216, 243, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px 10px 0;
}

.ln-section {
  margin-top: 26px;
}

.ln-section-head span {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(185, 234, 255, 0.8);
  margin-bottom: 6px;
}

.ln-section-head h2 {
  margin: 0;
}

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

.ln-why-grid article {
  border-left: 2px solid rgba(109, 205, 255, 0.7);
  background: rgba(7, 25, 59, 0.45);
  border-radius: 12px;
  padding: 16px 16px 16px 14px;
}

.ln-why-grid h3 {
  margin: 0;
  font-size: 20px;
}

.ln-why-grid p {
  margin-top: 8px;
  color: var(--muted);
}

.ln-ref-grid {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ln-ref-card {
  border: 1px solid rgba(171, 225, 255, 0.24);
  border-radius: 14px;
  background: rgba(8, 31, 72, 0.5);
  padding: 16px;
}

.ln-ref-card h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1;
}

.ln-ref-card p {
  margin-top: 8px;
  color: var(--muted);
}

.ln-pricing {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ln-plan {
  border: 1px solid rgba(171, 225, 255, 0.24);
  border-radius: 14px;
  background: rgba(8, 31, 72, 0.5);
  padding: 16px;
}

.ln-plan h3 {
  margin: 0;
}

.ln-plan p {
  margin-top: 4px;
  color: var(--muted);
}

.ln-plan-price {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.ln-plan .btn {
  width: 100%;
  justify-content: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease,
    border-color 0.2s ease;
}

.ln-plan .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(44, 149, 255, 0.34);
  filter: brightness(1.06);
}

.ln-plan .btn:active {
  transform: translateY(0);
}

.ln-faq {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.ln-faq details {
  border: 1px solid rgba(171, 225, 255, 0.2);
  border-radius: 12px;
  background: rgba(8, 27, 65, 0.45);
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.ln-faq details:hover {
  border-color: rgba(177, 232, 255, 0.46);
  background: rgba(10, 33, 78, 0.56);
  box-shadow: 0 10px 22px rgba(3, 11, 29, 0.32);
  transform: translateY(-1px);
}

.ln-faq details[open] {
  border-color: rgba(171, 233, 255, 0.56);
  background: rgba(11, 35, 83, 0.62);
  box-shadow: 0 14px 30px rgba(3, 11, 29, 0.4);
}

.ln-faq summary {
  position: relative;
  padding: 14px 44px 14px 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.ln-faq summary:hover {
  color: #dcf5ff;
}

.ln-faq summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(194, 238, 255, 0.9);
  border-bottom: 2px solid rgba(194, 238, 255, 0.9);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.24s ease;
}

.ln-faq details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.ln-faq summary::-webkit-details-marker {
  display: none;
}

.ln-faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.ln-faq-content > p {
  margin: 0;
  padding: 0 16px;
  overflow: hidden;
  color: var(--muted);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.22s ease, transform 0.22s ease, padding 0.22s ease;
}

.ln-faq details[open] .ln-faq-content {
  grid-template-rows: 1fr;
}

.ln-faq details[open] .ln-faq-content > p {
  padding: 0 16px 14px;
  opacity: 1;
  transform: translateY(0);
}

.ln-final {
  margin-top: 28px;
  border: 1px solid rgba(190, 234, 255, 0.25);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(8, 32, 75, 0.76), rgba(6, 18, 43, 0.86));
  box-shadow: 0 24px 54px rgba(2, 9, 24, 0.4);
  text-align: center;
  padding: 24px 18px;
}

.ln-final h2 {
  margin: 0;
}

.ln-final p {
  margin-top: 8px;
  color: var(--muted);
}

.ln-final .ln-cta-row {
  justify-content: center;
}

.ln-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 0.62s cubic-bezier(0.2, 0.74, 0.24, 1),
    transform 0.62s cubic-bezier(0.2, 0.74, 0.24, 1),
    filter 0.62s cubic-bezier(0.2, 0.74, 0.24, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.ln-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@keyframes ln-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .ln-header {
    grid-template-columns: 1fr;
    justify-items: start;
    position: static;
  }

  .ln-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .ln-hero {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .ln-copy h1 {
    font-size: clamp(32px, 10vw, 52px);
  }

  .ln-why-grid {
    grid-template-columns: 1fr;
  }

  .ln-ref-grid {
    grid-template-columns: 1fr;
  }

  .ln-reveal {
    transition-delay: 0ms !important;
  }
}

@media (max-width: 640px) {
  .landing-body .container {
    width: min(96vw, 1200px);
    padding-top: 14px;
  }

  .ln-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .ln-actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .ln-hero {
    padding: 18px;
  }

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

  .ln-metrics {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ln-strip-marquee {
    animation: none !important;
  }

  .ln-preview-link,
  .ln-preview-link::after,
  .ln-plan .btn,
  .ln-faq details,
  .ln-faq summary,
  .ln-faq summary::after,
  .ln-faq-content,
  .ln-faq-content > p {
    transition: none !important;
  }

  .ln-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
