/* SoluMus shared information, legal, support and utility pages */
:root {
  --page-forest: #1f4d3f;
  --page-forest-deep: #143c30;
  --page-forest-soft: #e8f0ec;
  --page-coral: #ff7a5c;
  --page-cream: #f8f7f2;
  --page-paper: #fffefa;
  --page-white: #fff;
  --page-ink: #15231e;
  --page-muted: #68746f;
  --page-line: #dfe5e1;
  --page-shadow: 0 28px 76px rgba(20, 60, 48, 0.1);
}

body.info-page,
body.checkout-page,
body.error-page {
  margin: 0;
  color: var(--page-ink);
  background:
    radial-gradient(circle at 6% 0%, rgba(31, 77, 63, 0.08), transparent 32rem),
    radial-gradient(circle at 96% 12%, rgba(255, 122, 92, 0.1), transparent 28rem),
    var(--page-cream);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

.info-page *, .checkout-page *, .error-page * { box-sizing: border-box; }
.info-page img, .checkout-page img, .error-page img { max-width: 100%; }
.info-page a, .checkout-page a, .error-page a { color: inherit; }
.info-page :focus-visible, .checkout-page :focus-visible, .error-page :focus-visible {
  outline: 3px solid rgba(255, 122, 92, 0.5);
  outline-offset: 3px;
}

.site-topbar,
.info-page header.top,
.download-page header.top,
.checkout-brandbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  border-bottom: 1px solid rgba(31, 77, 63, 0.1);
  background: rgba(248, 247, 242, 0.9);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.site-topbar__inner,
.info-page .top-inner,
.checkout-brandbar__inner {
  width: min(100% - 40px, 1120px);
  min-height: 68px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-topbar__logo,
.info-page .logo,
.checkout-brandbar__logo { display: inline-flex; align-items: center; text-decoration: none; }
.site-topbar__logo img,
.info-page .logo img,
.checkout-brandbar__logo img { display: block; width: auto; height: 32px; }
.site-topbar__links { display: flex; align-items: center; gap: 20px; }
.site-topbar__links a,
.info-page .back-link,
.checkout-brandbar__back {
  color: var(--page-forest);
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
}

.info-hero {
  width: min(100% - 40px, 960px);
  margin: auto;
  padding: 92px 0 56px;
  text-align: center;
}
.info-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--page-forest);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.info-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--page-coral); }
.info-hero h1 {
  margin: 0;
  font-size: clamp(43px, 7vw, 78px);
  font-weight: 850;
  letter-spacing: -.052em;
  line-height: 1.02;
}
.info-hero p { max-width: 740px; margin: 22px auto 0; color: var(--page-muted); font-size: clamp(17px, 2vw, 21px); }
.info-status {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 122, 92, .26);
  border-radius: 999px;
  color: #9a3f2d;
  background: rgba(255, 122, 92, .09);
  font-size: 12px;
  font-weight: 780;
}

.info-layout,
.info-page .wrap {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 0 0 100px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 50px;
}
.info-toc,
.info-page nav.toc {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--page-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
}
.info-toc strong,
.info-page nav.toc .grp {
  display: block;
  margin: 14px 10px 7px;
  color: var(--page-coral);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.info-toc strong:first-child,
.info-page nav.toc .grp:first-child { margin-top: 0; }
.info-toc a,
.info-page nav.toc a {
  display: block;
  padding: 7px 10px;
  border-radius: 9px;
  color: var(--page-muted);
  font-size: 13px;
  text-decoration: none;
}
.info-toc a:hover,
.info-page nav.toc a:hover { color: var(--page-forest); background: var(--page-forest-soft); }

.info-article,
.info-page .wrap > main {
  min-width: 0;
  padding: 44px 50px 58px;
  border: 1px solid var(--page-line);
  border-radius: 30px;
  background: rgba(255, 254, 250, .94);
  box-shadow: var(--page-shadow);
}
.info-article > section,
.info-page .wrap > main > section { margin: 0; padding: 34px 0; border-top: 1px solid var(--page-line); scroll-margin-top: 94px; }
.info-article > section:first-child,
.info-page .wrap > main > section:first-of-type { padding-top: 0; border-top: 0; }
.info-article h2,
.info-page .wrap > main h2 { margin: 0 0 12px; color: var(--page-forest-deep); font-size: clamp(25px, 3vw, 36px); letter-spacing: -.025em; line-height: 1.15; }
.info-article h3,
.info-page .wrap > main h3 { margin: 23px 0 7px; color: var(--page-ink); font-size: 17px; }
.info-article p,
.info-page .wrap > main p { color: #46534e; }
.info-article ul, .info-article ol,
.info-page .wrap > main ul, .info-page .wrap > main ol { padding-left: 22px; }
.info-article li,
.info-page .wrap > main li { margin-bottom: 8px; }
.info-article a,
.info-page .wrap > main a.inline { color: var(--page-forest); font-weight: 720; }
.info-article code,
.info-page .wrap > main code { padding: 2px 6px; border-radius: 6px; color: var(--page-forest); background: var(--page-forest-soft); }

.info-summary,
.info-page .tip,
.info-page .card {
  margin: 18px 0 0;
  padding: 20px 22px;
  border: 1px solid rgba(31, 77, 63, .13);
  border-left: 4px solid var(--page-coral);
  border-radius: 16px;
  color: #405149;
  background: #f2f6f3;
}
.info-summary strong, .info-page .tip b { color: var(--page-forest-deep); }
.info-note { padding: 17px 19px; border-radius: 15px; color: #7f3b2e; background: rgba(255, 122, 92, .09); }
.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.info-card { padding: 20px; border: 1px solid var(--page-line); border-radius: 17px; background: var(--page-white); }
.info-card strong { display: block; margin-bottom: 5px; color: var(--page-forest-deep); }
.info-card p { margin: 0; font-size: 14px; }
.info-price { width: 100%; margin-top: 18px; border-collapse: collapse; font-size: 14px; }
.info-price th, .info-price td { padding: 13px 12px; border-bottom: 1px solid var(--page-line); text-align: left; vertical-align: top; }
.info-price th { color: var(--page-forest-deep); background: var(--page-forest-soft); }
.info-price td:nth-child(2) { white-space: nowrap; font-weight: 800; }

.site-footer,
.info-page > footer,
.download-page footer.bottom {
  padding: 34px 20px 44px;
  border-top: 1px solid var(--page-line);
  color: var(--page-muted);
  background: transparent;
  font-size: 12px;
  text-align: center;
}
.site-footer a,
.info-page > footer a,
.download-page footer.bottom a { color: var(--page-forest); font-weight: 720; text-decoration: none; }

/* Existing ONE guide and download page selectors */
.docs-page .wrap { padding-top: 54px; }
.docs-page .wrap > main > h1 { margin: 0; color: var(--page-forest-deep); font-size: clamp(38px, 5vw, 58px); letter-spacing: -.04em; line-height: 1.05; }
.docs-page .lede { color: var(--page-muted) !important; font-size: 18px; }

.download-page main { width: min(100% - 40px, 820px); max-width: none; padding: 78px 0 92px; }
.download-page .hero { margin-bottom: 38px; }
.download-page h1 { margin: 0 0 14px; color: var(--page-forest-deep); font-size: clamp(40px, 6vw, 66px); font-weight: 850; letter-spacing: -.045em; line-height: 1.03; }
.download-page .tagline { max-width: 660px; margin: 0 auto 28px; color: var(--page-muted); font-size: 18px; }
.download-page .gate-card,
.download-page .req-card,
.download-page .step { border: 1px solid var(--page-line); border-radius: 20px; background: rgba(255, 254, 250, .95); box-shadow: 0 16px 45px rgba(20, 60, 48, .07); }
.download-page .gate-card { max-width: 640px; margin-inline: auto; padding: 26px; }
.download-page .req-card { padding: 28px; }
.download-page .step { overflow: hidden; }
.download-page .btn-download { border: 0; border-radius: 999px; background: var(--page-forest); }
.download-page .btn-download:hover { background: var(--page-forest-deep); }

/* Existing checkout selectors */
.checkout-page { padding: 0 !important; }
.checkout-page > .wrap { width: min(100% - 40px, 620px); max-width: none; padding: 54px 0 90px; }
.checkout-page .card,
.checkout-page .qr-card { border-radius: 24px; box-shadow: var(--page-shadow); }
.checkout-page header h1 { color: var(--page-forest-deep); font-size: 34px; letter-spacing: -.035em; }
.checkout-page button.primary { border-radius: 999px; }
.checkout-page .tier-opt { border-radius: 15px; }

/* 404 */
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.error-page .container { width: min(100%, 620px); padding: 48px; border: 1px solid var(--page-line); border-radius: 30px; background: rgba(255, 254, 250, .95); box-shadow: var(--page-shadow); text-align: center; }
.error-page .error-logo { display: block; width: 150px; margin: 0 auto 34px; }
.error-page .code { color: var(--page-coral); font-family: inherit; font-size: clamp(78px, 16vw, 132px); font-weight: 850; letter-spacing: -.08em; }
.error-page h1 { font-size: 30px; letter-spacing: -.03em; }
.error-page a.btn { border-radius: 999px; background: var(--page-forest); }
.error-page .error-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 20px; font-size: 13px; }
.error-page .error-links a { color: var(--page-forest); font-weight: 720; text-decoration: none; }

.legal-price del { margin-left: 6px; color: var(--page-muted); }
.legal-price [data-price-promo] { display: block; margin-top: 4px; color: var(--page-forest); font-size: 12px; font-weight: 760; }

@media (max-width: 800px) {
  .site-topbar__links a:not(:last-child) { display: none; }
  .info-hero { padding: 68px 0 42px; }
  .info-layout, .info-page .wrap { grid-template-columns: 1fr; gap: 20px; }
  .info-toc, .info-page nav.toc { position: static; display: none; }
  .info-article, .info-page .wrap > main { padding: 32px 24px 42px; border-radius: 24px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-price { display: block; overflow-x: auto; }
  .download-page .req-grid { grid-template-columns: 1fr; }
  .download-page .req-grid .label { margin-top: 7px; }
}

@media (max-width: 520px) {
  .site-topbar__inner, .info-page .top-inner, .checkout-brandbar__inner { width: min(100% - 28px, 1120px); min-height: 62px; }
  .site-topbar__logo img, .info-page .logo img, .checkout-brandbar__logo img { height: 29px; }
  .info-hero, .info-layout, .info-page .wrap { width: min(100% - 28px, 1120px); }
  .info-article, .info-page .wrap > main { padding-inline: 19px; }
  .checkout-page > .wrap { width: min(100% - 28px, 620px); }
  .error-page .container { padding: 38px 22px; }
}
