:root {
  --bg: #061126;
  --bg-2: #0a1a34;
  --ink: #eaf2ff;
  --muted: #a7bbdc;
  --line: #244672;
  --card: #0d1f3f;
  --card-2: #10274d;
  --brand: #35a8ff;
  --brand-2: #2088e0;
  --good: #22c55e;
  --warn: #f59e0b;
}
body[data-theme="sky"] {
  --bg: #001b49;
  --bg-2: #00295f;
  --ink: #eef5ff;
  --muted: #c7daf6;
  --line: #24508c;
  --card: #ffffff;
  --card-2: #f6fbff;
  --brand: #00c4ff;
  --brand-2: #0096df;
}
body[data-theme="cloud"] {
  --bg: #eef3fb;
  --bg-2: #f7fafe;
  --ink: #102341;
  --muted: #4d6387;
  --line: #b8d0ee;
  --card: #ffffff;
  --card-2: #f8fbff;
  --brand: #2f9bf0;
  --brand-2: #1f7fce;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  color: var(--ink);
  font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
  background:
    radial-gradient(900px 480px at 0% 0%, rgba(43, 126, 208, .32) 0%, transparent 60%),
    radial-gradient(860px 520px at 100% 100%, rgba(44, 152, 233, .22) 0%, transparent 58%),
    linear-gradient(165deg, var(--bg), var(--bg-2));
  min-height: 100vh;
}
a { color: #9bd1ff; }
.wrap { width: min(1180px, 92%); margin: 0 auto; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 15, 32, .84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.brand {
  font-size: 1.48rem;
  font-weight: 800;
  letter-spacing: .3px;
  flex: 0 0 auto;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  min-width: 0;
}
.brand .ix { color: var(--brand); }
.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: .92rem;
  white-space: nowrap;
  opacity: .92;
  position: relative;
  transition: color .24s ease, opacity .24s ease, transform .24s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #76cfff, #2f9bf0);
  transition: width .24s ease;
}
.nav-links a:hover { opacity: 1; color: #b8dcff; transform: translateY(-1px); }
.nav-links a:hover::after { width: 100%; }
.nav-downloads {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-downloads--mobile {
  display: none !important;
  margin-left: 0;
}
.nav-downloads--desktop {
  display: inline-flex !important;
}
.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(118, 207, 255, .24);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.nav-download::after {
  display: none;
}
.nav-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .28);
  border-color: rgba(118, 207, 255, .44);
}
.nav-download img {
  display: block;
  width: auto;
  height: 40px;
}

.hero {
  padding: 72px 0 36px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
}
.hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: .2px;
}
.hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 740px;
}
.hero-panel {
  border: 1px solid #2f568a;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(25, 64, 120, .52), rgba(13, 30, 62, .8));
  padding: 16px;
  box-shadow: 0 20px 46px rgba(2, 8, 18, .35);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.hero-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 52px rgba(2, 8, 18, .42);
  border-color: #4d83c2;
}
.hero-panel h3 { margin: 0 0 10px; }
.hero-panel ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.55; }

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .8rem;
  color: var(--ink);
  font-weight: 700;
}
.pay-chip .chip-icon {
  min-width: 28px;
  height: 20px;
  padding: 2px 4px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .96);
  box-shadow: inset 0 0 0 1px rgba(8, 18, 36, .08);
}
.pay-chip .chip-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge {
  display: inline-block;
  border: 1px solid #2f578d;
  background: #13325d;
  color: #bde0ff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .2px;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.btn {
  display: inline-block;
  border-radius: 12px;
  padding: 11px 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  border: 1px solid #62bdff;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
}
.btn.secondary {
  background: linear-gradient(180deg, #17345f, #12305a);
  border-color: #315d92;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.34) 45%, transparent 70%);
  transform: translateX(-130%);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 144, 236, .34);
  filter: brightness(1.06);
}
.btn.secondary:hover {
  box-shadow: 0 10px 22px rgba(22, 68, 126, .35);
}
.btn:hover::before {
  animation: btnShine .8s ease;
}
.btn:active {
  transform: translateY(0);
}

.section { padding: 28px 0; }
.section h2 { margin-top: 0; }
.kicker { color: var(--muted); font-size: .9rem; }

.grid { display: grid; gap: 14px; }
.cards-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.pricing-plans {
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pricing-title {
  text-align: center;
}
.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--card), var(--card-2));
  padding: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .2);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card h3 { margin-top: 0; }
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, .28);
  border-color: #3a659b;
}

.plan-card .plan-price {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0;
}
.plan-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.plan-card .btn {
  margin-top: auto;
}
.plan-card .plan-price span {
  font-size: .92rem;
  color: var(--muted);
  font-weight: 500;
}
.plan-featured {
  border-color: #59b2ff;
  box-shadow: 0 0 0 1px rgba(89, 178, 255, .38), 0 20px 40px rgba(0, 0, 0, .24);
  animation: softPulse 2.8s ease-in-out infinite;
}
.plan-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: .74rem;
    color: #072749;
    background: #8dd1ff;
    font-weight: 700;
  }
  .plan-tag--placeholder {
    visibility: hidden;
  }

.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}
.table th, .table td {
  border: 1px solid #2a4f81;
  padding: 10px;
  font-size: .93rem;
}
.pricing-matrix th,
.pricing-matrix td {
  padding: 10px 12px;
  font-size: .96rem;
  line-height: 1.45;
}
.table th { background: #14325f; }
.pricing-matrix .group td {
  background: #173868;
  color: #d4e7ff;
  font-weight: 800;
}
.pricing-table-wrap {
  overflow-x: auto;
  display: flex;
  justify-content: center;
}
.pricing-matrix {
  width: auto;
  min-width: 760px;
  table-layout: auto;
}
.pricing-matrix td:nth-child(2),
.pricing-matrix td:nth-child(3),
.pricing-matrix td:nth-child(4),
.pricing-matrix th:nth-child(2),
.pricing-matrix th:nth-child(3),
.pricing-matrix th:nth-child(4) { text-align: center; }
.pricing-matrix td:nth-child(2),
.pricing-matrix td:nth-child(3),
.pricing-matrix th:nth-child(2),
.pricing-matrix th:nth-child(3) {
  width: 72px;
  white-space: nowrap;
}
.pricing-matrix td:first-child,
.pricing-matrix th:first-child {
  min-width: 420px;
}
.pricing-matrix td {
  vertical-align: middle;
}
.pricing-matrix td:not(:first-child),
.pricing-matrix th:not(:first-child) {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.stacked-copy {
  display: inline-block;
  line-height: 1.22;
  text-align: center;
}
.feature-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.feature-link:hover {
  color: #bfe0ff;
  border-bottom-color: #5fb3ff;
}
.feature-copy {
  display: grid;
  gap: 4px;
}
.feature-sub {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35;
}
.feature-anchor {
  scroll-margin-top: 90px;
}
.feature-guide-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.feature-guide-list .card {
  padding: 18px;
}
.feature-guide-list h2 {
  margin-bottom: 8px;
}
.feature-story {
  margin-top: 10px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.feature-story p {
  margin: 0 0 9px;
  color: var(--ink);
  line-height: 1.58;
}
.feature-story p strong {
  color: #b9dcff;
}
body[data-theme="sky"] .feature-story p strong {
  color: #0f4ea1;
}
.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 8px 0;
}
.feature-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .82rem;
  background: rgba(255,255,255,.03);
}
.feature-guide-list ul {
  margin: 8px 0 0 0;
  padding-left: 18px;
}
.mark {
  display: inline-block;
  min-width: 14px;
  text-align: center;
  font-weight: 800;
}
.mark.yes { color: #16a34a; }
.mark.no { color: #64748b; }

.section-tight { margin-top: 14px; }
.faq-search {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  color: var(--ink);
  padding: 11px 12px;
  font-size: .95rem;
}
.faq-search::placeholder { color: var(--muted); }
.faq-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--card), var(--card-2));
  padding: 12px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}
.legal-policy-section h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.legal-policy-section + .legal-policy-section {
  margin-top: 0;
}
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.faq-item ul {
  margin-top: 10px;
}

.legal-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 86px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--card), var(--card-2));
  padding: 12px;
}

.legal-sidebar h3 {
  margin: 4px 0 10px;
  font-size: 1rem;
}

.legal-sidebar a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid transparent;
  margin-bottom: 6px;
  font-size: .92rem;
}

.legal-sidebar a:hover {
  border-color: #4d83c2;
  background: rgba(59, 130, 246, .14);
}

.legal-sidebar a.active {
  border-color: #5faeff;
  background: rgba(59, 130, 246, .20);
  color: #dff0ff;
  font-weight: 700;
}

.legal-content .card {
  margin-bottom: 14px;
}

.legal-note {
  border-left: 4px solid var(--brand);
  background: rgba(59, 130, 246, .12);
  padding: 10px 12px;
  border-radius: 10px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

@media (max-width: 980px) {
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (min-width: 1000px) {
  .pricing-matrix th,
  .pricing-matrix td {
    padding: 12px 14px;
    font-size: 1.04rem;
    line-height: 1.5;
  }
  .pricing-matrix td:nth-child(2),
  .pricing-matrix td:nth-child(3),
  .pricing-matrix th:nth-child(2),
  .pricing-matrix th:nth-child(3) {
    width: 84px;
  }
  .pricing-matrix td:first-child,
  .pricing-matrix th:first-child {
    min-width: 520px;
  }
  .mark {
    font-size: 1.08rem;
    min-width: 18px;
  }
}

.tick { color: var(--good); font-weight: 800; }
.note { color: var(--muted); font-size: .86rem; }
.notice {
  border-left: 4px solid var(--warn);
  padding-left: 10px;
  color: #ffdfad;
}


.theme-picker {
  position: fixed;
  right: 16px;
  top: 10px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 21, 46, .9);
  border: 1px solid #2f578d;
  border-radius: 10px;
  padding: 6px 8px;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.theme-picker__label {
  font-size: .72rem;
  color: #d6e7ff;
  font-weight: 700;
}
.theme-picker__select {
  border: 1px solid #4f7aaf;
  border-radius: 8px;
  background: #0f2d56;
  color: #eaf3ff;
  padding: 4px 6px;
  font-size: .72rem;
}
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: linear-gradient(180deg, #0f2650, #0b1e3f);
  border: 1px solid #396aa3;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 14px 32px rgba(0,0,0,.35);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner__text {
  color: #d7e8ff;
  font-size: .9rem;
  line-height: 1.45;
}
.cookie-banner__text a { color: #9bd1ff; }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  border: 1px solid #66beff;
  background: linear-gradient(180deg, #35a8ff, #2088e0);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-btn--secondary {
  border-color: #4d6f99;
  background: linear-gradient(180deg, #193b6c, #122f57);
}

.legal-content .card {
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  nav {
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }
  .brand-group {
    gap: 6px;
    width: calc(100% - 76px);
    max-width: calc(100% - 76px);
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    order: 2;
    gap: 12px;
  }
  .nav-downloads {
    margin-left: 0;
    gap: 4px;
  }
  .nav-downloads--desktop {
    display: none !important;
  }
  .nav-downloads--mobile {
    display: inline-flex !important;
  }
  .nav-download {
    border-radius: 7px;
  }
  .nav-download img {
    height: 22px;
  }
}
.legal-content h1 { margin-top: 0; }
.legal-content h2 {
  margin: 24px 0 10px;
  font-size: 1.06rem;
}
.legal-content p,
.legal-content li {
  color: #d4e5ff;
  line-height: 1.6;
}
.legal-content a {
  color: #8fd1ff;
}
.legal-content ul {
  margin: 0;
  padding-left: 20px;
}

body[data-theme="sky"] header {
  background: rgba(0, 27, 73, .92);
}
body[data-theme="cloud"] header {
  background: rgba(236, 244, 255, .94);
  border-bottom-color: #c6daf4;
}
body[data-theme="sky"] .nav-links a {
  color: #eaf3ff;
}
body[data-theme="cloud"] .nav-links a {
  color: #103466;
}
body[data-theme="sky"] .nav-links a:hover {
  color: #ffffff;
}
body[data-theme="cloud"] .nav-links a:hover {
  color: #006ec4;
}
body[data-theme="sky"] .hero-panel,
body[data-theme="sky"] .card {
  background: #ffffff;
  color: #102341;
  border-color: #bfd7f6;
  box-shadow: 0 14px 30px rgba(0, 28, 72, .12);
}
body[data-theme="cloud"] .hero-panel,
body[data-theme="cloud"] .card {
  background: #ffffff;
  color: #102341;
  border-color: #c7daf4;
  box-shadow: 0 12px 24px rgba(12, 44, 89, .09);
}
body[data-theme="sky"] .hero-panel h3,
body[data-theme="sky"] .hero-panel li,
body[data-theme="sky"] .card h1,
body[data-theme="sky"] .card h2,
body[data-theme="sky"] .card h3,
body[data-theme="sky"] .card p,
body[data-theme="sky"] .card li,
body[data-theme="sky"] .card td,
body[data-theme="sky"] .card th {
  color: #102341;
}
body[data-theme="sky"] .legal-content,
body[data-theme="sky"] .legal-content h1,
body[data-theme="sky"] .legal-content h2,
body[data-theme="sky"] .legal-content p,
body[data-theme="sky"] .legal-content li,
body[data-theme="sky"] .legal-content strong,
body[data-theme="sky"] .legal-content summary,
body[data-theme="sky"] .legal-sidebar h3,
body[data-theme="sky"] .legal-sidebar a {
  color: #102341;
}
body[data-theme="sky"] .legal-content a,
body[data-theme="sky"] .legal-content .card a,
body[data-theme="sky"] .legal-sidebar a.active {
  color: #006ec4;
}
body[data-theme="sky"] .legal-sidebar {
  background: linear-gradient(180deg, #ffffff, #f4faff);
  border-color: #bfd7f6;
}
body[data-theme="sky"] .legal-sidebar a:hover {
  background: #eaf4ff;
  border-color: #93bee7;
  color: #103466;
}
body[data-theme="sky"] .legal-sidebar a.active {
  background: #d9edff;
  border-color: #7db8ea;
  color: #0f2a53;
}
body[data-theme="sky"] .faq-item summary {
  color: #12315d;
}
body[data-theme="sky"] .legal-policy-section h2 {
  color: #12315d;
}
body[data-theme="sky"] .faq-item p,
body[data-theme="sky"] .faq-item li,
body[data-theme="sky"] .legal-content .kicker {
  color: #000000;
}
body[data-theme="sky"] .faq-item a,
body[data-theme="sky"] .faq-item strong {
  color: #000000;
}
body[data-theme="sky"] .legal-note {
  background: #eaf4ff;
  color: #12315d;
}
body[data-theme="cloud"] .hero-panel h3,
body[data-theme="cloud"] .hero-panel li,
body[data-theme="cloud"] .card h1,
body[data-theme="cloud"] .card h2,
body[data-theme="cloud"] .card h3,
body[data-theme="cloud"] .card p,
body[data-theme="cloud"] .card li,
body[data-theme="cloud"] .card td,
body[data-theme="cloud"] .card th {
  color: #102341;
}
body[data-theme="sky"] .kicker,
body[data-theme="sky"] .hero p,
body[data-theme="sky"] .hero-panel ul,
body[data-theme="sky"] .note {
  color: #4f6487;
}
body[data-theme="cloud"] .kicker,
body[data-theme="cloud"] .hero p,
body[data-theme="cloud"] .hero-panel ul,
body[data-theme="cloud"] .note {
  color: #4f6487;
}
body[data-theme="sky"] .table th,
body[data-theme="sky"] .pricing-matrix .group td {
  background: #eaf4ff;
  color: #0f2a53;
  border-color: #c6dcf7;
}
body[data-theme="sky"] .table td {
  border-color: #c6dcf7;
  color: #102341;
  background: #ffffff;
}
body[data-theme="sky"] .feature-link {
  color: #103466;
}
body[data-theme="sky"] .faq-search,
body[data-theme="cloud"] .faq-search {
  background: #fff;
  color: #102341;
  border-color: #c6dcf7;
}
body[data-theme="sky"] .faq-item,
body[data-theme="cloud"] .faq-item {
  background: #fff;
  border-color: #c6dcf7;
}
body[data-theme="cloud"] .faq-item summary {
  color: #12315d;
}
body[data-theme="cloud"] .legal-policy-section h2 {
  color: #12315d;
}
body[data-theme="cloud"] .faq-item p,
body[data-theme="cloud"] .faq-item li,
body[data-theme="cloud"] .faq-item a,
body[data-theme="cloud"] .faq-item strong,
body[data-theme="cloud"] .legal .kicker {
  color: #000000;
}
body[data-theme="cloud"] .feature-link {
  color: #103466;
}
body[data-theme="sky"] .feature-link:hover {
  color: #006ec4;
  border-bottom-color: #4ca7ee;
}
body[data-theme="cloud"] .feature-link:hover {
  color: #006ec4;
  border-bottom-color: #4ca7ee;
}
body[data-theme="sky"] .mark.yes { color: #0f9f43; }
body[data-theme="sky"] .mark.no { color: #4b6183; }
body[data-theme="cloud"] .mark.yes { color: #0f9f43; }
body[data-theme="cloud"] .mark.no { color: #4b6183; }
body[data-theme="sky"] .badge {
  background: #e6f5ff;
  color: #0f2a53;
  border-color: #b9dbf7;
}
body[data-theme="cloud"] .badge {
  background: #e6f5ff;
  color: #0f2a53;
  border-color: #b9dbf7;
}
body[data-theme="sky"] .cookie-banner {
  background: #ffffff;
  border-color: #c1daf7;
}
body[data-theme="cloud"] .cookie-banner {
  background: #ffffff;
  border-color: #c1daf7;
}
body[data-theme="sky"] .cookie-banner__text {
  color: #12315d;
}
body[data-theme="cloud"] .cookie-banner__text {
  color: #12315d;
}
body[data-theme="sky"] .cookie-banner__text a {
  color: #006ec4;
}
body[data-theme="cloud"] .cookie-banner__text a {
  color: #006ec4;
}
body[data-theme="sky"] .theme-picker {
  background: rgba(255,255,255,.96);
  border-color: #c1daf7;
}
body[data-theme="cloud"] .theme-picker {
  background: rgba(255,255,255,.96);
  border-color: #c1daf7;
}
body[data-theme="sky"] .theme-picker__label {
  color: #12315d;
}
body[data-theme="cloud"] .theme-picker__label {
  color: #12315d;
}
body[data-theme="sky"] .theme-picker__select {
  background: #ffffff;
  color: #12315d;
  border-color: #93bee7;
}
body[data-theme="cloud"] .theme-picker__select {
  background: #ffffff;
  color: #12315d;
  border-color: #93bee7;
}

@keyframes btnShine {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(89, 178, 255, .28), 0 20px 40px rgba(0, 0, 0, .22); }
  50% { box-shadow: 0 0 0 1px rgba(89, 178, 255, .55), 0 24px 45px rgba(0, 0, 0, .28); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
}

@media (max-width: 740px) {
  nav { flex-direction: column; align-items: flex-start; }
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 14px;
  }
  .theme-picker { right: 10px; top: 8px; }
  .theme-picker__label { display: none; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: flex-end; }
  .pricing-plans {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .pricing-table-wrap {
    overflow-x: visible;
    justify-content: stretch;
  }
  .pricing-matrix {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }
  .pricing-matrix th,
  .pricing-matrix td {
    font-size: .72rem;
    line-height: 1.2;
    padding: 7px 5px;
  }
  .pricing-matrix td:first-child,
  .pricing-matrix th:first-child {
    min-width: 0;
    width: 54%;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .pricing-matrix td:nth-child(2),
  .pricing-matrix td:nth-child(3),
  .pricing-matrix th:nth-child(2),
  .pricing-matrix th:nth-child(3) {
    width: 23%;
    text-align: center;
  }
  .mark {
    min-width: 12px;
    font-size: .92rem;
  }
  .feature-link {
    font-size: .72rem;
    line-height: 1.18;
  }
}

/* Light marketing layout for long-form feature pages */
body.marketing-lite {
  --bg: #f2f4f8;
  --bg-2: #f2f4f8;
  --ink: #16254a;
  --muted: #4f5f7f;
  --line: #dfe5ef;
  --card: #ffffff;
  --card-2: #fbfcfe;
  --brand: #2f9bf0;
  --brand-2: #1f7fce;
  background: linear-gradient(180deg, #f2f4f8, #eef2f7);
}
body.marketing-lite header {
  background: rgba(5, 15, 32, .84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
}
.lite-nav-shell {
  margin: 0 auto;
  width: min(1180px, 92%);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
body.marketing-lite .lite-nav-shell .btn-row {
  display: none;
}
body.marketing-lite .brand { color: #16254a; }
body.marketing-lite .brand .ix { color: #2a86ff; }
body.marketing-lite .nav-links a { color: #233760; }
body.marketing-lite .btn.light-outline {
  background: #fff;
  color: #1d2f56;
  border-color: #d9e0eb;
}
body.marketing-lite .hero-card {
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid #e5ebf3;
  background: #fff;
  padding: 34px;
  box-shadow: 0 16px 40px rgba(20, 30, 55, .08);
}
body.marketing-lite .hero-card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
body.marketing-lite .hero-visual {
  background: linear-gradient(180deg, #fff0ea, #ffe6de);
  border-radius: 14px;
  padding: 18px;
}
body.marketing-lite .hero-visual img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
}
body.marketing-lite .copy-block {
  max-width: 760px;
  margin: 34px auto 14px;
  color: #2b3f66;
  line-height: 1.62;
}
body.marketing-lite .split-feature {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: center;
  margin: 24px 0;
}
body.marketing-lite .split-feature.reverse {
  grid-template-columns: 1.05fr .95fr;
}
body.marketing-lite .split-feature.reverse .feature-visual { order: 2; }
body.marketing-lite .split-feature.reverse .feature-copy { order: 1; }
body.marketing-lite .feature-visual {
  background: #fff;
  border: 1px solid #e6ebf3;
  border-radius: 16px;
  padding: 14px;
}
body.marketing-lite .feature-visual img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: block;
}
body.marketing-lite .feature-copy h2 {
  margin: 0 0 6px;
  color: #192b54;
}
body.marketing-lite .feature-copy p {
  color: #40547b;
  line-height: 1.62;
}
body.marketing-lite .feature-copy ul {
  margin: 8px 0 0;
  padding-left: 20px;
  color: #31456d;
  line-height: 1.6;
}
body.marketing-lite .article-cards { margin-top: 10px; }
body.marketing-lite .article-card {
  border: 1px solid #e4eaf3;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
body.marketing-lite .article-thumb { height: 170px; }
body.marketing-lite .article-body { padding: 16px; }
body.marketing-lite .article-body h3 {
  margin: 0 0 8px;
  color: #1b2d55;
}
body.marketing-lite .article-body p {
  margin: 0 0 10px;
  color: #40547b;
}
body.marketing-lite .article-body a {
  color: #ff5c62;
  font-weight: 700;
  text-decoration: none;
}
body.marketing-lite .mega-footer {
  margin-top: 36px;
  background: #fff;
  border-top: 1px solid #e3e9f2;
}
body.marketing-lite .mega-footer .wrap { padding: 28px 0 16px; }
body.marketing-lite .mega-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}
body.marketing-lite .mega-col h4 {
  margin: 0 0 8px;
  color: #1d2f58;
}
body.marketing-lite .mega-col a,
body.marketing-lite .mega-col p {
  display: block;
  margin: 0 0 7px;
  color: #516487;
  text-decoration: none;
}
/* Shared footer block (all pages) */
.mega-footer {
  margin-top: 36px;
  background: #0d1f3f;
  border-top: 1px solid #315785;
}
.mega-footer .wrap {
  padding: 28px 0 16px;
}
.mega-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}
.mega-col h4 {
  margin: 0 0 8px;
  color: #dceaff;
}
.mega-col a,
.mega-col p {
  display: block;
  margin: 0 0 7px;
  color: #b8ceee;
  text-decoration: none;
}
.mega-footer .brand {
  color: #f3f8ff;
}
.mega-footer .brand .ix {
  color: #7fd0ff;
}
.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: block;
  background: #0d1f3f;
  box-shadow: 0 8px 18px rgba(2, 8, 18, .24);
}
.mega-col a:hover {
  color: #ffffff;
}
@media (max-width: 900px) {
  body.marketing-lite .hero-card-grid,
  body.marketing-lite .split-feature,
  body.marketing-lite .split-feature.reverse {
    grid-template-columns: 1fr;
  }
  body.marketing-lite .split-feature.reverse .feature-visual,
  body.marketing-lite .split-feature.reverse .feature-copy {
    order: initial;
  }
  body.marketing-lite .mega-grid { grid-template-columns: 1fr 1fr; }
  body.marketing-lite .hero-visual img,
  body.marketing-lite .feature-visual img {
    max-width: 100%;
  }
  .mega-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Marketing-lite theme compatibility (Dark / Sky / Cloud) */
body.marketing-lite:not([data-theme]),
body.marketing-lite[data-theme="scrubix"] {
  background:
    radial-gradient(900px 480px at 0% 0%, rgba(43, 126, 208, .24) 0%, transparent 60%),
    radial-gradient(860px 520px at 100% 100%, rgba(44, 152, 233, .18) 0%, transparent 58%),
    linear-gradient(165deg, #061126, #0a1a34) !important;
}
body.marketing-lite:not([data-theme]) .lite-nav-shell,
body.marketing-lite[data-theme="scrubix"] .lite-nav-shell {
  background: #0e2244 !important;
  border-color: #2d4f7f !important;
}
body.marketing-lite:not([data-theme]) .brand,
body.marketing-lite[data-theme="scrubix"] .brand {
  color: #eaf2ff !important;
}
body.marketing-lite:not([data-theme]) .brand .ix,
body.marketing-lite[data-theme="scrubix"] .brand .ix {
  color: #57b4ff !important;
}
body.marketing-lite:not([data-theme]) .nav-links a,
body.marketing-lite[data-theme="scrubix"] .nav-links a {
  color: #cfe2ff !important;
}
body.marketing-lite:not([data-theme]) .hero-card,
body.marketing-lite[data-theme="scrubix"] .hero-card,
body.marketing-lite:not([data-theme]) .feature-visual,
body.marketing-lite[data-theme="scrubix"] .feature-visual,
body.marketing-lite:not([data-theme]) .article-card,
body.marketing-lite[data-theme="scrubix"] .article-card,
body.marketing-lite:not([data-theme]) .mega-footer,
body.marketing-lite[data-theme="scrubix"] .mega-footer {
  background: #10274d !important;
  border-color: #315785 !important;
}
body.marketing-lite:not([data-theme]) .feature-copy h2,
body.marketing-lite[data-theme="scrubix"] .feature-copy h2,
body.marketing-lite:not([data-theme]) .article-body h3,
body.marketing-lite[data-theme="scrubix"] .article-body h3,
body.marketing-lite:not([data-theme]) .mega-col h4,
body.marketing-lite[data-theme="scrubix"] .mega-col h4 {
  color: #dceaff !important;
}
body.marketing-lite:not([data-theme]) .copy-block,
body.marketing-lite[data-theme="scrubix"] .copy-block,
body.marketing-lite:not([data-theme]) .feature-copy p,
body.marketing-lite[data-theme="scrubix"] .feature-copy p,
body.marketing-lite:not([data-theme]) .article-body p,
body.marketing-lite[data-theme="scrubix"] .article-body p,
body.marketing-lite:not([data-theme]) .mega-col a,
body.marketing-lite[data-theme="scrubix"] .mega-col a,
body.marketing-lite:not([data-theme]) .mega-col p,
body.marketing-lite[data-theme="scrubix"] .mega-col p {
  color: #b8ceee !important;
}

body.marketing-lite[data-theme="sky"] {
  background: linear-gradient(180deg, #0b2f66, #0d3f7e 35%, #f0f6ff 35%, #edf5ff) !important;
}
body.marketing-lite[data-theme="sky"] .lite-nav-shell {
  background: #ffffff !important;
  border-color: #bfd7f6 !important;
}
body.marketing-lite[data-theme="sky"] .hero-card,
body.marketing-lite[data-theme="sky"] .feature-visual,
body.marketing-lite[data-theme="sky"] .article-card,
body.marketing-lite[data-theme="sky"] .mega-footer {
  background: #ffffff !important;
  border-color: #c7daf4 !important;
}
body.marketing-lite[data-theme="sky"] .copy-block,
body.marketing-lite[data-theme="sky"] .feature-copy p,
body.marketing-lite[data-theme="sky"] .article-body p,
body.marketing-lite[data-theme="sky"] .mega-col a,
body.marketing-lite[data-theme="sky"] .mega-col p {
  color: #40547b !important;
}

body.marketing-lite[data-theme="cloud"] {
  background: linear-gradient(180deg, #eef3fb, #f7fafe) !important;
}
body.marketing-lite[data-theme="cloud"] .lite-nav-shell {
  background: #ffffff !important;
  border-color: #d7e4f5 !important;
}
body.marketing-lite[data-theme="cloud"] .hero-card,
body.marketing-lite[data-theme="cloud"] .feature-visual,
body.marketing-lite[data-theme="cloud"] .article-card,
body.marketing-lite[data-theme="cloud"] .mega-footer {
  background: #ffffff !important;
  border-color: #d7e4f5 !important;
}

