:root {
  color-scheme: light;
  --page-start: #57c9e0;
  --page-mid: #cee6f0;
  --page-end: #e5f3f9;
  --hero-bg: #57c9e0;
  --hero-top-glow: linear-gradient(90deg, #00f2ff 0%, #65cde3 58%, rgba(101, 205, 227, 0) 100%);
  --hero-top-blue: linear-gradient(90deg, #0064ff 0%, #2877d3 38%, rgba(103, 206, 227, 0) 100%);
  --hero-main: linear-gradient(90deg, #ff7e00 0%, #ff1181 45%, #008ae4 80%);
  --hero-bottom: linear-gradient(90deg, rgba(211, 238, 246, 0) 0%, rgba(160, 82, 211, 0.78) 58%, #8a00d7 100%);
  --body-band: linear-gradient(90deg, #b3e0ea 0%, #acdae7 25%, #c9e9f0 50%, #bce4ed 75%, #e2f4f8 100%);
  --section-start: #9bd8e5;
  --section-end: #d6f1f7;
  --text: #1c2938;
  --muted: #31505d;
  --hero-text: #111827;
  --surface: #fbfdfd;
  --surface-strong: #ffffff;
  --surface-border: rgba(0, 160, 255, 0.22);
  --panel: #212121;
  --panel-alt: #212121;
  --tag: #00a0ff;
  --tag-text: #ffffff;
  --plus-bg: #212121;
  --stats-bg: #d4eff7;
  --stats-text: #1c2938;
  --stats-pill: rgba(255, 255, 255, 0.72);
  --stats-release: rgba(255, 255, 255, 0.72);
  --stats-release-text: #1c2938;
  --button-dark: #182334;
  --button-dark-text: #ffffff;
  --footer: #e5f3f8;
  --footer-bar: #d0d5dc;
  --shadow: rgba(0, 0, 0, 0.16);
  --review: #ff6b00;
  --review-next: #ff8a00;
  --premium-icon: #361e00;
  --nav-bg: rgba(129, 213, 232, 0.28);
  --nav-glow: rgba(255, 255, 255, 0.22);
  --nav-border: rgba(255, 255, 255, 0.28);
  --nav-chip: rgba(232, 249, 252, 0.58);
  --nav-chip-border: rgba(255, 255, 255, 0.34);
  --mobile-menu-bg: rgba(255, 255, 255, 0.94);
  --mobile-menu-border: rgba(28, 41, 56, 0.14);
  --mobile-menu-text: #1c2938;
  --mobile-menu-trigger: rgba(255, 255, 255, 0.62);
  --cta: linear-gradient(120deg, #00a0ff 3%, #ff1181 52%, #00a0ff 108%);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page-start: #0a2d4a;
  --page-mid: #061f37;
  --page-end: #0a1725;
  --hero-bg: #06253f;
  --hero-top-glow: linear-gradient(90deg, #00f2ff 0%, #65cde3 58%, rgba(101, 205, 227, 0) 100%);
  --hero-top-blue: linear-gradient(90deg, #0064ff 0%, #246fc7 36%, rgba(103, 206, 227, 0) 100%);
  --hero-main: linear-gradient(90deg, #035aae 0%, #ff1181 45%, #008ae4 80%);
  --hero-bottom: linear-gradient(90deg, rgba(207, 236, 245, 0) 0%, rgba(116, 79, 183, 0.78) 58%, #8a00d7 100%);
  --section-start: #0c3d5f;
  --section-end: #071625;
  --body-band: radial-gradient(circle at 42% 18%, rgba(43, 161, 201, 0.45), transparent 30%),
    linear-gradient(90deg, #0b3b5c 0%, #062b48 30%, #041d35 60%, #07111f 100%);
  --text: #ffffff;
  --muted: #d8ecf4;
  --hero-text: #ffffff;
  --surface: #171b1f;
  --surface-strong: #101418;
  --surface-border: transparent;
  --panel: #212121;
  --panel-alt: #f3f3f3;
  --tag: #5cc9ff;
  --tag-text: #ffffff;
  --plus-bg: #616161;
  --stats-bg: linear-gradient(90deg, #1a2330 0%, #162a40 30%, #151a23 50%, #0f192e 70%, #13161b 100%);
  --stats-text: #ffffff;
  --stats-pill: #212121;
  --stats-release: #0d0d0d;
  --stats-release-text: #ffffff;
  --button-dark: #ffffff;
  --button-dark-text: #0d0d0d;
  --footer: linear-gradient(90deg, #0b1622 0%, #0a1119 54%, #11151a 100%);
  --footer-bar: #0d0d0d;
  --shadow: rgba(0, 0, 0, 0.42);
  --review: #a855f7;
  --review-next: #bf46dc;
  --premium-icon: #351800;
  --nav-bg: rgba(19, 42, 72, 0.48);
  --nav-glow: rgba(255, 255, 255, 0.12);
  --nav-border: rgba(255, 255, 255, 0.18);
  --nav-chip: rgba(30, 55, 113, 0.5);
  --nav-chip-border: transparent;
  --mobile-menu-bg: rgba(10, 18, 28, 0.96);
  --mobile-menu-border: rgba(255, 255, 255, 0.14);
  --mobile-menu-text: #ffffff;
  --mobile-menu-trigger: rgba(10, 18, 28, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--page-end);
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.45;
}

body,
button,
input,
textarea,
select {
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
  background:
    linear-gradient(180deg, var(--page-start) 0, var(--page-mid) 920px, var(--page-end) 100%),
    var(--body-band);
}

.site-header {
  align-items: center;
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  backdrop-filter: blur(22px) saturate(165%);
  background:
    linear-gradient(180deg, var(--nav-glow), rgba(255, 255, 255, 0)),
    var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 40px rgba(0, 0, 0, 0.08);
  color: var(--hero-text);
  display: flex;
  gap: 12px;
  height: 80px;
  inset: 0 0 auto 0;
  padding: 0 62px;
  position: fixed;
  z-index: 20;
}

.brand {
  font-family: "Times New Roman", Times, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.site-header .brand {
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-header .brand:hover,
.site-header .brand:focus-visible {
  opacity: 0.86;
  transform: translateY(-1px);
}

.mascot-peek {
  --mascot-flip: 1;
  filter: drop-shadow(0 12px 18px rgba(0, 22, 46, 0.2));
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 520ms cubic-bezier(0.16, 0.84, 0.34, 1);
  width: clamp(100px, 9vw, 136px);
  z-index: 70;
}

.mascot-peek img {
  height: auto;
  width: 100%;
}

.mascot-peek.is-visible {
  opacity: 1;
}

.mascot-peek-bottom-left {
  bottom: -1px;
  left: 4.5vw;
  transform: translate3d(-50%, 112%, 0) rotate(-2deg);
}

.mascot-peek-bottom-left.is-visible {
  transform: translate3d(-50%, 4%, 0) rotate(-2deg);
}

.mascot-peek-bottom-right {
  bottom: -1px;
  left: 95.5vw;
  transform: translate3d(-50%, 112%, 0) rotate(2deg);
}

.mascot-peek-bottom-right.is-visible {
  transform: translate3d(-50%, 4%, 0) rotate(2deg);
}

.mascot-peek-side-left {
  --mascot-flip: -1;
  left: 0;
  top: 54vh;
  transform: translate3d(-112%, -50%, 0);
  width: clamp(76px, 6vw, 96px);
}

.mascot-peek-side-left.is-visible {
  transform: translate3d(-42%, -50%, 0);
}

.mascot-peek-side-right {
  right: 0;
  top: 38vh;
  transform: translate3d(112%, -50%, 0);
  width: clamp(76px, 6vw, 96px);
}

.mascot-peek-side-right.is-visible {
  transform: translate3d(42%, -50%, 0);
}

.mascot-peek.is-visible img {
  animation: mascot-peek-hello 1100ms ease-in-out both;
}

@keyframes mascot-peek-hello {
  0%,
  100% {
    transform: translateY(0) scaleX(var(--mascot-flip));
  }

  48% {
    transform: translateY(-3px) scaleX(var(--mascot-flip));
  }
}

.error-body {
  overflow: hidden;
}

.error-shell {
  background: linear-gradient(90deg, var(--section-start), var(--section-end));
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

.error-page {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 160, 255, 0.08), transparent 52%),
    linear-gradient(90deg, var(--section-start), var(--section-end));
  color: var(--text);
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) 190px;
  height: 100svh;
  height: 100dvh;
  margin: 0 auto;
  max-width: 1120px;
  padding: 80px 48px 0;
  position: relative;
}

.error-copy {
  max-width: 660px;
}

.error-code {
  color: var(--accent);
  font-size: clamp(88px, 12vw, 164px);
  font-weight: 700;
  line-height: 0.8;
  margin: 0 0 30px;
}

.error-copy h1 {
  color: var(--text);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  margin: 0 0 18px;
}

.error-copy > p:not(.error-code) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 30px;
  max-width: 520px;
}

.error-home {
  align-items: center;
  background: var(--text);
  border-radius: 6px;
  color: var(--surface-strong);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.error-home:hover,
.error-home:focus-visible {
  box-shadow: 0 14px 28px rgba(0, 30, 54, 0.18);
  transform: translateY(-2px);
}

.error-mascot {
  filter: drop-shadow(0 18px 26px rgba(0, 30, 54, 0.18));
  height: auto;
  justify-self: center;
  width: min(100%, 176px);
}

@media (max-width: 760px) {
  .error-page {
    align-content: center;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
    padding: 86px 24px 24px;
  }

  .error-copy {
    align-self: center;
    padding-bottom: 70px;
  }

  .error-code {
    margin-bottom: 22px;
  }

  .error-copy > p:not(.error-code) {
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 310px;
  }

  .error-mascot {
    bottom: 18px;
    position: absolute;
    right: 20px;
    width: 82px;
  }
}

/* Product clarity pass */
.plain-layer-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.plain-layer-list article {
  align-items: flex-start;
  background: var(--surface-strong);
  border: 1px solid var(--surface-border);
  border-radius: 7px;
  display: grid;
  gap: 16px;
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 20px;
}

.plain-layer-list article > i {
  align-items: center;
  background: #00a0ff;
  border-radius: 6px;
  color: #ffffff;
  display: inline-flex;
  font-size: 23px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.plain-layer-list h3 {
  font-size: 17px;
  margin: 0 0 5px;
}

.plain-layer-list p {
  font-size: 14px;
}

.docs-index a i {
  font-size: 12px;
  margin-left: 3px;
}

.changelog-page {
  background: linear-gradient(90deg, var(--section-start), var(--section-end));
  color: var(--text);
  min-height: 100vh;
  padding: 142px max(24px, calc((100% - 980px) / 2)) 100px;
}

.changelog-heading {
  border-bottom: 1px solid var(--surface-border);
  margin-bottom: 58px;
  padding-bottom: 40px;
}

.changelog-heading > span,
.release-meta span,
.restricted-docs-page section > span {
  color: #00a0ff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.changelog-heading h1 {
  font-size: 52px;
  line-height: 1.05;
  margin: 7px 0 13px;
}

.changelog-heading p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
  max-width: 620px;
}

.changelog-feed {
  display: grid;
}

.release-entry {
  border-bottom: 1px solid var(--surface-border);
  display: grid;
  gap: 48px;
  grid-template-columns: 150px minmax(0, 1fr);
  padding: 0 0 52px;
}

.release-entry + .release-entry {
  padding-top: 52px;
}

.release-meta {
  align-self: start;
  display: grid;
  gap: 8px;
  position: sticky;
  top: 110px;
}

.release-meta time {
  color: var(--muted);
  font-size: 12px;
}

.release-latest .release-meta span {
  align-items: center;
  background: #00a0ff;
  border-radius: 4px;
  color: #ffffff;
  display: inline-flex;
  min-height: 24px;
  padding: 0 7px;
  width: max-content;
}

.release-entry h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.release-entry p,
.release-entry li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.release-entry p { margin: 0; }
.release-entry ul { display: grid; gap: 8px; margin: 20px 0 0; padding-left: 20px; }

.changelog-back {
  align-items: center;
  background: var(--button-dark);
  border-radius: 6px;
  color: var(--button-dark-text);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  margin-top: 38px;
  min-height: 44px;
  padding: 0 15px;
}

.restricted-docs-body {
  background: #071625;
  color: #ffffff;
}

.restricted-docs-page {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 100vh;
}

.restricted-docs-page > aside {
  background: #101820;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 30px 20px 22px;
  position: sticky;
  top: 0;
}

.restricted-docs-page > aside > span {
  color: #8da5b5;
  font-size: 11px;
  margin: 6px 10px 26px;
  text-transform: uppercase;
}

.restricted-docs-page aside nav {
  display: grid;
  gap: 5px;
}

.restricted-docs-page aside a {
  align-items: center;
  border-radius: 5px;
  color: #b9cbd6;
  display: flex;
  font-size: 13px;
  gap: 10px;
  min-height: 41px;
  padding: 0 10px;
}

.restricted-docs-page aside a i { font-size: 17px; }
.restricted-docs-page aside a.is-active,
.restricted-docs-page aside a:hover { background: rgba(0, 160, 255, 0.12); color: #ffffff; }
.restricted-docs-page > aside > a:last-child { margin-top: auto; }

.restricted-docs-page > article {
  margin: 0 auto;
  max-width: 1040px;
  padding: 0 48px 100px;
  width: 100%;
}

.restricted-docs-page > article > header {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  margin-bottom: 68px;
  min-height: 94px;
}

.restricted-docs-page header span { color: #8da5b5; font-size: 11px; }
.restricted-docs-page header h1 { font-size: 22px; margin: 4px 0 0; }
.restricted-docs-page header a { align-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 5px; display: inline-flex; font-size: 12px; gap: 7px; min-height: 38px; padding: 0 12px; }

.restricted-docs-page section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding-bottom: 54px;
}

.restricted-docs-page section + section { padding-top: 54px; }
.restricted-docs-page section h2 { font-size: 32px; line-height: 1.18; margin: 8px 0 15px; max-width: 720px; }
.restricted-docs-page section > p { color: #b9cbd6; font-size: 15px; line-height: 1.7; margin: 0; max-width: 760px; }

.restricted-warning {
  align-items: flex-start;
  background: rgba(255, 147, 0, 0.1);
  border-left: 3px solid #ff9300;
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding: 18px;
}

.restricted-warning i { color: #ff9300; font-size: 22px; }
.restricted-warning p { color: #d9c7bc; font-size: 13px; line-height: 1.65; margin: 0; }

.restricted-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 27px; }
.restricted-grid article { background: #101820; border: 1px solid rgba(255,255,255,.09); border-radius: 6px; padding: 20px; }
.restricted-grid i { color: #00a0ff; font-size: 24px; }
.restricted-grid h3 { font-size: 15px; margin: 13px 0 6px; }
.restricted-grid p { color: #8da5b5; font-size: 12px; line-height: 1.55; margin: 0; }

.restricted-docs-page table { border-collapse: collapse; font-size: 13px; margin-top: 25px; width: 100%; }
.restricted-docs-page th, .restricted-docs-page td { border-bottom: 1px solid rgba(255,255,255,.09); padding: 12px; text-align: left; }
.restricted-docs-page th { background: rgba(0,160,255,.08); }
.restricted-docs-page td { color: #b9cbd6; }

/* Refined premium experience */
.pricing-refined {
  gap: clamp(36px, 5vw, 78px);
  grid-template-columns: minmax(320px, 0.72fr) minmax(650px, 1.28fr);
  max-width: 1540px;
}

.pricing-refined .pricing-intro > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
  margin: 20px 0 0;
  max-width: 520px;
}

.pricing-kicker {
  align-items: center;
  border-radius: 5px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 7px;
  min-height: 31px;
  padding: 0 10px;
}

.pricing-assurances {
  gap: 9px !important;
  margin: 25px 0 28px !important;
}

.pricing-assurances li {
  color: rgba(255,255,255,.9);
  font-size: 14px;
  gap: 8px;
}

.pricing-assurances li::before { display: none; }
.pricing-assurances i { color: #ff9300; font-size: 17px; }

.pricing-help { align-items: center; display: flex; gap: 12px; }
.pricing-help > span { align-items: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: 50%; display: inline-flex; font-size: 19px; height: 40px; justify-content: center; width: 40px; }
.pricing-help strong, .pricing-help a { display: block; }
.pricing-help strong { font-size: 12px; }
.pricing-help a { color: rgba(255,255,255,.76); font-size: 11px; margin-top: 2px; }

.refined-pricing-panel {
  height: min(74vh, 690px);
  min-height: 530px;
  padding: 25px;
}

.refined-pricing-panel .pricing-panel-heading { margin-bottom: 13px; }
.refined-pricing-panel .pricing-panel-heading h2 { font-size: 26px; }
.refined-pricing-panel .pricing-panel-heading > small { color: #8f8f8f; font-size: 10px; }

.refined-plan-grid {
  display: grid;
  flex: 1;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 0;
}

.refined-plan {
  background: #181818;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.refined-plan:hover { border-color: rgba(255,147,0,.48); box-shadow: 0 18px 32px rgba(0,0,0,.2); transform: translateY(-3px); }
.refined-plan-featured { background: linear-gradient(180deg, rgba(255,147,0,.12), #181818 42%); border-color: rgba(255,147,0,.6); box-shadow: inset 0 3px 0 #ff9300; }
.refined-plan-top { align-items: center; color: #a9a9a9; display: flex; font-size: 9px; font-weight: 600; justify-content: space-between; text-transform: uppercase; }
.refined-plan-top i { align-items: center; background: #00a0ff; border-radius: 5px; color: #fff; display: inline-flex; font-size: 18px; height: 34px; justify-content: center; width: 34px; }
.refined-plan-featured .refined-plan-top i { background: #ff9300; color: #202020; }
.refined-plan h3 { font-size: 23px; margin: 17px 0 5px; }
.refined-plan > p { color: #aaa; font-size: 11px; line-height: 1.45; margin: 0; min-height: 48px; }
.refined-price { align-items: baseline; display: flex; gap: 5px; margin-top: 16px; }
.refined-price strong { font-size: 28px; line-height: 1; }
.refined-price span, .refined-plan > small { color: #8f8f8f; font-size: 9px; }
.refined-plan > small { display: block; margin-top: 5px; min-height: 26px; }
.refined-plan ul { display: grid; gap: 6px; list-style: none; margin: 14px 0 16px; padding: 13px 0 0; border-top: 1px solid rgba(255,255,255,.08); }
.refined-plan li { color: #c8c8c8; font-size: 10px; line-height: 1.35; padding-left: 15px; position: relative; }
.refined-plan li::before { color: #ff9300; content: "✓"; left: 0; position: absolute; }
.refined-plan > a { align-items: center; background: #fff; border-radius: 5px; color: #202020; display: inline-flex; font-size: 11px; font-weight: 600; gap: 5px; justify-content: center; margin-top: auto; min-height: 38px; transition: box-shadow 180ms ease, transform 180ms ease; }
.refined-plan-featured > a { background: #ff9300; }
.refined-plan > a:hover { box-shadow: 0 9px 18px rgba(0,0,0,.25); transform: translateY(-2px); }
.pricing-included { align-items: center; color: #9a9a9a; display: flex; font-size: 10px; gap: 8px; padding-top: 13px; }.pricing-included i { color: #ff9300; font-size: 15px; }

/* Refined 404 */
.refined-error-page {
  align-content: center;
  background: linear-gradient(135deg, var(--section-start), var(--section-end));
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(300px, 500px) minmax(380px, 580px);
  justify-content: center;
  padding: 112px 48px 48px;
}

.error-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 480px;
  position: relative;
}

.error-art span {
  color: color-mix(in srgb, var(--text) 12%, transparent);
  font-size: clamp(190px, 18vw, 310px);
  font-weight: 700;
  line-height: .8;
}

.error-art img { filter: drop-shadow(0 25px 30px rgba(0,0,0,.18)); margin: 0 -52px; max-height: 390px; object-fit: contain; position: relative; width: 300px; z-index: 1; }
.refined-error-page .error-copy { align-self: center; max-width: 530px; text-align: left; }
.error-eyebrow { align-items: center; color: #008ee5; display: inline-flex; font-size: 12px; font-weight: 600; gap: 7px; text-transform: uppercase; }
.refined-error-page .error-copy h1 { font-size: clamp(44px, 5vw, 72px); line-height: 1.02; margin: 11px 0 17px; }
.refined-error-page .error-copy > p { font-size: 16px; margin: 0; max-width: 480px; }
.error-actions { display: flex; gap: 10px; margin-top: 29px; }
.error-actions a { align-items: center; border: 1px solid var(--surface-border); border-radius: 6px; display: inline-flex; font-size: 13px; font-weight: 600; gap: 7px; min-height: 46px; padding: 0 15px; }
.error-actions .error-home { margin: 0; }
.error-actions a:last-child { background: var(--surface-strong); color: var(--text); }
.error-shortcuts { border-top: 1px solid var(--surface-border); display: grid; gap: 3px; margin-top: 35px; padding-top: 18px; }
.error-shortcuts a { align-items: center; color: var(--muted); display: flex; font-size: 12px; justify-content: space-between; min-height: 32px; transition: color 160ms ease, transform 160ms ease; }
.error-shortcuts a:hover { color: var(--text); transform: translateX(3px); }

@media (max-width: 1120px) {
  .pricing-refined { gap: 26px; grid-template-columns: minmax(290px, .65fr) minmax(590px, 1.35fr); }
  .pricing-refined .pricing-intro h1 { font-size: 45px; }
  .refined-pricing-panel { padding: 20px; }
  .refined-plan { padding: 14px; }
  .refined-error-page { gap: 20px; grid-template-columns: minmax(300px, 430px) minmax(340px, 480px); }
}

@media (max-width: 760px) {
  .plain-layer-list article { gap: 12px; grid-template-columns: 40px minmax(0, 1fr); padding: 15px; }.plain-layer-list article > i { font-size: 20px; height: 38px; width: 38px; }.plain-layer-list h3 { font-size: 15px; }.plain-layer-list p { font-size: 13px; }
  .changelog-page { padding: 104px 18px 64px; }.changelog-heading { margin-bottom: 38px; padding-bottom: 28px; }.changelog-heading h1 { font-size: 38px; }.changelog-heading p { font-size: 14px; }.release-entry { gap: 15px; grid-template-columns: 1fr; padding-bottom: 38px; }.release-entry + .release-entry { padding-top: 38px; }.release-meta { display: flex; gap: 10px; position: static; }.release-entry h2 { font-size: 23px; }.release-entry p, .release-entry li { font-size: 13px; }
  .restricted-docs-page { display: block; }.restricted-docs-page > aside { min-height: 0; padding: 19px 14px; position: static; }.restricted-docs-page > aside > span { margin: 2px 10px 13px; }.restricted-docs-page aside nav { display: none; }.restricted-docs-page > aside > a:last-child { margin-top: 8px; }.restricted-docs-page > article { padding: 0 18px 64px; }.restricted-docs-page > article > header { align-items: flex-start; flex-direction: column; gap: 14px; margin-bottom: 40px; padding: 20px 0; }.restricted-docs-page section h2 { font-size: 25px; }.restricted-grid { grid-template-columns: 1fr; }.restricted-docs-page table { display: block; overflow-x: auto; }
  .pricing-body { overflow: auto; }.pricing-body .pricing-shell, .pricing-body .pricing-page { height: auto; min-height: 100svh; overflow: visible; }.pricing-body .pricing-page { padding-top: 72px; }.pricing-refined { display: block; height: auto; padding: 26px 0 40px; width: calc(100% - 28px); }.pricing-refined .pricing-intro { max-width: none; }.pricing-refined .pricing-intro h1 { font-size: 36px; }.pricing-refined .pricing-intro > p { font-size: 14px; }.pricing-help { margin-bottom: 24px; }.refined-pricing-panel { height: auto; min-height: 0; padding: 17px; }.refined-pricing-panel .pricing-panel-heading { align-items: flex-start; }.refined-pricing-panel .pricing-panel-heading h2 { font-size: 22px; }.refined-plan-grid { grid-template-columns: 1fr; }.refined-plan { min-height: 0; padding: 17px; }.refined-plan > p { min-height: 0; }.refined-plan > small { min-height: 0; }.refined-plan ul { margin-bottom: 14px; }.refined-plan > a { min-height: 42px; }.pricing-included { line-height: 1.45; }
  .refined-error-page { align-content: start; display: flex; flex-direction: column; gap: 10px; min-height: 100svh; padding: 96px 20px 42px; }.error-art { min-height: 230px; order: 2; }.error-art span { font-size: 120px; }.error-art img { margin: 0 -28px; max-height: 210px; width: 160px; }.refined-error-page .error-copy { order: 1; }.refined-error-page .error-copy h1 { font-size: 42px; }.refined-error-page .error-copy > p { font-size: 14px; }.error-actions { flex-direction: column; }.error-actions a { justify-content: center; width: 100%; }.error-shortcuts { margin-top: 26px; }
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--hero-text);
  cursor: pointer;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  margin-left: 4px;
  padding: 0;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  width: 28px;
}

.nav-toggle i {
  display: block;
  font-size: 19px;
  font-weight: 600;
  transition: transform 180ms ease;
}

.nav-toggle .nav-toggle-menu {
  display: none;
}

.nav-tabs {
  align-items: center;
  background: var(--nav-chip);
  border: 1px solid var(--nav-chip-border);
  border-radius: 6px;
  box-shadow: none;
  display: flex;
  min-height: 28px;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    width 180ms ease;
  width: 238px;
}

.nav-tabs a {
  align-items: center;
  color: var(--hero-text);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 500;
  height: 28px;
  line-height: 1;
  padding: 0 14px;
  transition:
    background-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.site-header.nav-collapsed .nav-toggle-arrow {
  transform: none;
}

.site-header.nav-collapsed .nav-tabs {
  border-color: transparent;
  border-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  width: 0;
}

.nav-tabs a:focus-visible,
.nav-toggle:focus-visible,
.button:focus-visible,
.icon-button:focus-visible,
.release-pill:focus-visible,
.review-arrow:focus-visible,
.more-button:focus-visible,
.contact-actions a:focus-visible,
.footer-column a:focus-visible {
  outline: 3px solid #ffc300;
  outline-offset: 3px;
}

.pricing-card > a:focus-visible {
  outline: 3px solid #ffc300;
  outline-offset: 3px;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--hero-text);
  cursor: pointer;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
  width: 34px;
}

.icon-button i {
  font-size: 23px;
  line-height: 1;
}

.premium-trigger {
  isolation: isolate;
  position: relative;
}

.premium-trigger::before,
.premium-trigger::after {
  content: "";
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.premium-trigger::before {
  display: none;
  background: #ff9300;
  bottom: 1px;
  box-shadow: 0 1px 7px rgba(255, 147, 0, 0.28);
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  transition:
    opacity 220ms ease,
    width 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 0;
}

.premium-trigger::after {
  background: #ff9300;
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  height: 8px;
  right: 0;
  top: 1px;
  transform: translate(-7px, 7px) scale(0.35);
  width: 8px;
}

.premium-trigger:hover::before,
.premium-trigger:focus-visible::before,
.premium-trigger.is-launching::before {
  opacity: 0.9;
  width: 27px;
}

.premium-trigger:hover::after,
.premium-trigger:focus-visible::after,
.premium-trigger.is-launching::after {
  animation: premium-crown-glint 820ms ease-out both;
}

.premium-trigger i {
  display: inline-block;
  transition:
    filter 240ms ease,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-trigger:hover i,
.premium-trigger:focus-visible i,
.premium-trigger.is-launching i {
  background: none;
  color: #ff9300;
  filter: drop-shadow(0 4px 7px rgba(255, 147, 0, 0.26));
  transform: translateY(-2px) scale(1.07);
}

.premium-trigger.is-launching {
  transform: scale(1.08);
}

.premium-click-burst {
  height: 1px;
  pointer-events: none;
  position: fixed;
  width: 1px;
  z-index: 100;
}

.premium-click-ring {
  animation: premium-line-flare 760ms cubic-bezier(0.15, 0.8, 0.25, 1) both;
  background: linear-gradient(90deg, transparent, #ff9300 50%, transparent);
  box-shadow: 0 0 16px rgba(255, 147, 0, 0.34);
  height: 1px;
  left: -58px;
  position: absolute;
  top: 0;
  width: 116px;
}

.premium-click-spark {
  animation: premium-spark-burst 620ms cubic-bezier(0.16, 0.84, 0.34, 1) var(--spark-delay) both;
  background: var(--spark-color);
  height: 9px;
  left: -1px;
  position: absolute;
  top: -4px;
  transform: rotate(var(--spark-rotation));
  width: 2px;
}

body.premium-leaving::after {
  animation: premium-page-flash 820ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  background: linear-gradient(
    102deg,
    transparent 55%,
    rgba(255, 147, 0, 0.04) 64%,
    rgba(255, 147, 0, 0.14) 70%,
    transparent 78%
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 90;
}

@keyframes premium-crown-glint {
  0% {
    opacity: 0;
    transform: translate(-7px, 7px) scale(0.35);
  }

  38% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(3px, -3px) scale(1.12);
  }
}

@keyframes premium-line-flare {
  0% {
    opacity: 0;
    transform: scaleX(0.08);
  }

  24% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scaleX(1.28);
  }
}

@keyframes premium-spark-burst {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(var(--spark-rotation)) scaleY(0.4);
  }

  24% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) rotate(var(--spark-rotation)) scaleY(1);
  }
}

@keyframes premium-page-flash {
  0% {
    opacity: 0;
    transform: translateX(26%);
  }

  34% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateX(-8%);
  }
}

.hero {
  background: var(--hero-bg);
  min-height: 833px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42));
  bottom: 0;
  content: "";
  height: 220px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

:root[data-theme="dark"] .hero::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.58));
}

.hero-art {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero-shape {
  display: block;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) rotate(-12deg);
  transform-origin: center;
}

.hero-shape-top-glow {
  background: var(--hero-top-glow);
  height: 84px;
  top: -50px;
  width: max(122vw, 1700px);
}

.hero-shape-top-blue {
  background: var(--hero-top-blue);
  height: 92px;
  top: 26px;
  width: max(122vw, 1700px);
}

.hero-shape-main {
  background: var(--hero-main);
  height: 417px;
  top: 58px;
  width: max(122vw, 1700px);
}

.hero-shape-bottom {
  background: var(--hero-bottom);
  height: 150px;
  top: 700px;
  width: max(122vw, 1700px);
}

.hero-inner {
  margin: 0 auto;
  max-width: 1236px;
  min-height: 833px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  left: 0;
  position: absolute;
  top: 252px;
}

.hero h1 {
  color: var(--hero-text);
  font-size: 74px;
  font-weight: 600;
  line-height: 0.97;
  margin: 0 0 28px;
  max-width: 500px;
}

.hero h1 span {
  display: block;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  align-items: center;
  border-radius: 7px;
  display: inline-flex;
  font-size: 16px;
  gap: 8px;
  height: 48px;
  justify-content: center;
  min-width: 256px;
  padding: 0 24px;
  text-transform: uppercase;
  transition:
    box-shadow 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.button-primary,
.button-secondary {
  background: var(--button-dark);
  color: var(--button-dark-text);
}

:root[data-theme="light"] .button-primary,
:root[data-theme="light"] .button-secondary {
  background: #182334;
  color: #ffffff;
}

.visual-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 42%),
    var(--panel);
  border-radius: 7px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.hero-panel {
  height: 354px;
  margin: 0;
  position: absolute;
  right: 0;
  top: 310px;
  width: 623px;
}

.stats-band {
  background: var(--stats-bg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  color: var(--stats-text);
}

.stats-inner {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, max-content) 1fr;
  min-height: 96px;
  margin: 0 auto;
  max-width: 1128px;
  padding: 16px 0;
}

.stat-item {
  align-items: center;
  column-gap: 12px;
  display: grid;
  grid-template-columns: 32px auto;
}

.stat-item > .stat-icon {
  align-items: center;
  color: var(--stats-text);
  display: inline-flex;
  font-size: 32px;
  grid-column: 1;
  height: 32px;
  justify-content: center;
  line-height: 1;
  width: 32px;
}

.stat-item > div {
  display: grid;
  gap: 3px;
}

.stat-item > div span {
  white-space: nowrap;
}

.stat-item .stat-value {
  align-items: center;
  display: flex;
  gap: 10px;
}

.stat-item span {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.stat-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.stat-item .delta {
  align-items: center;
  background: var(--stats-pill);
  border-radius: 32px;
  color: var(--stats-text);
  display: inline-flex;
  font-size: 12px;
  gap: 2px;
  height: 18px;
  justify-content: center;
  line-height: 1;
  padding: 0 7px 0 4px;
  white-space: nowrap;
}

.stat-item .delta i {
  align-items: center;
  color: #2bff76;
  display: inline-flex;
  font-size: 16px;
  height: 14px;
  justify-content: center;
  line-height: 1;
  overflow: hidden;
  width: 14px;
}

.stat-item .delta i::before {
  display: block;
}

.release-pill {
  align-items: center;
  background: var(--stats-release);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  color: var(--stats-release-text);
  display: inline-flex;
  font-size: 18px;
  font-weight: 600;
  gap: 13px;
  isolation: isolate;
  justify-self: end;
  min-height: 47px;
  overflow: visible;
  padding: 0 21px 0 12px;
  position: relative;
  transition:
    box-shadow 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.release-pill i {
  font-size: 32px;
  line-height: 1;
}

.release-pill > * {
  position: relative;
  z-index: 1;
}

.release-pill::before,
.release-pill::after {
  border-radius: 2px;
  content: "";
  height: 6px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  transform: translate3d(0, 0, 0) scale(0.6) rotate(0);
  width: 6px;
  z-index: 0;
}

.release-pill::before {
  background: #ffc300;
  box-shadow:
    18px -8px 0 #ff3299,
    38px 3px 0 #00a0ff,
    60px -14px 0 #ff7e00,
    82px 5px 0 #2bff76;
  left: 20px;
}

.release-pill::after {
  background: #00f2ff;
  box-shadow:
    -18px -10px 0 #ff1181,
    -40px 2px 0 #ffc300,
    -62px -15px 0 #008ae4,
    -84px 6px 0 #ff7e00;
  right: 18px;
}

.release-pill:hover::before,
.release-pill:focus-visible::before {
  animation: confetti-pop-left 700ms ease-out both;
}

.release-pill:hover::after,
.release-pill:focus-visible::after {
  animation: confetti-pop-right 700ms ease-out both;
}

.nav-toggle:hover,
.nav-tabs a:hover,
.icon-button:hover,
.review-arrow:hover {
  transform: translateY(-1px) scale(1.06);
}

.nav-tabs a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button:hover,
.release-pill:hover,
.more-button:hover,
.contact-actions a:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.tag-list button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.footer-column a:hover {
  opacity: 0.72;
  transform: translateX(2px);
}

.button:active,
.nav-toggle:active,
.icon-button:active,
.release-pill:active,
.tag-list button:active,
.more-button:active,
.review-arrow:active,
.contact-actions a:active {
  transform: translateY(0) scale(0.98);
}

@keyframes confetti-pop-left {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.5) rotate(0);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-12px, -34px, 0) scale(1) rotate(24deg);
  }
}

@keyframes confetti-pop-right {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.5) rotate(0);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(12px, -34px, 0) scale(1) rotate(-24deg);
  }
}

main {
  background:
    linear-gradient(90deg, var(--section-start), var(--section-end)),
    var(--body-band);
  padding-bottom: 112px;
}

.feature,
.more-features,
.reviews,
.growth {
  margin: 0 auto;
  max-width: 1210px;
}

.feature {
  align-items: center;
  display: grid;
  gap: 118px;
  grid-template-columns: minmax(0, 1fr) 500px;
  min-height: 780px;
  padding: 110px 0;
}

.feature-right {
  grid-template-columns: 500px minmax(0, 1fr);
}

.feature-copy {
  color: var(--text);
}

.feature-copy h2 {
  font-size: 74px;
  font-weight: 600;
  line-height: 0.97;
  margin: 0 0 14px;
}

.feature-copy p {
  color: var(--text);
  font-size: 18px;
  margin: 0;
  max-width: 635px;
}

.feature-panel {
  height: 334px;
  width: 500px;
}

.tag-list {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}

.tag-list span,
.tag-list strong,
.tag-list button {
  align-items: center;
  background: var(--tag);
  border-radius: 12px;
  border: 0;
  color: var(--tag-text);
  cursor: default;
  display: inline-flex;
  font-size: 16px;
  font-weight: 400;
  font-family: inherit;
  line-height: 1;
  min-height: 24px;
  padding: 3px 12px;
}

.tag-list strong,
.tag-list button {
  align-self: center;
  background: var(--plus-bg);
  border-radius: 8px;
  color: var(--tag-text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  justify-content: center;
  min-width: 24px;
  padding: 3px 6px;
}

.tag-list .core-extra-tag {
  display: none;
}

.tag-list.is-expanded .core-extra-tag {
  display: inline-flex;
}

.tag-list button {
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.tag-list button:hover {
  filter: brightness(1.08);
}

.tag-list .premium {
  background: #ff9300;
  color: #361e00;
  gap: 7px;
  padding: 3px 12px;
}

.tag-list .premium i {
  color: var(--premium-icon);
  font-size: 15px;
  line-height: 1;
}

.more-features {
  padding: 56px 0 82px;
  text-align: center;
}

.more-features h2,
.reviews h2 {
  color: var(--text);
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 52px;
}

.feature-grid {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1096px;
}

.mini-feature {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 3px;
  color: var(--text);
  min-height: 275px;
  padding: 18px 18px 22px;
  text-align: left;
}

.mini-icon {
  align-items: center;
  background: #00a0ff;
  border-radius: 5px;
  display: inline-flex;
  height: 41px;
  justify-content: center;
  margin-bottom: 16px;
  width: 40px;
}

.mini-icon i {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.mini-feature h3 {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: 600;
  gap: 8px;
  line-height: 1.2;
  margin: 0 0 6px;
}

.mini-feature mark {
  align-items: center;
  background: linear-gradient(90deg, #ffc300, #ff3299);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  height: 24px;
  margin: 0;
  overflow: hidden;
  width: 32px;
}

.mini-feature mark i {
  color: var(--premium-icon);
  font-size: 15px;
  line-height: 1;
}

:root[data-theme="dark"] .mini-feature {
  border-color: transparent;
}

.mini-feature p {
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}

.more-button {
  background: var(--surface-strong);
  border-radius: 7px;
  color: var(--text);
  display: inline-flex;
  font-size: 18px;
  font-weight: 600;
  margin-top: 26px;
  min-height: 49px;
  padding: 11px 18px;
  transition:
    box-shadow 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.reviews {
  padding: 30px 0 114px;
  text-align: center;
}

.reviews h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 44px;
}

.review-carousel {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
}

.review-window {
  height: 297px;
  overflow: hidden;
  position: relative;
}

.review-slide {
  background: linear-gradient(90deg, var(--review), var(--review-next));
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translateX(20px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.review-slide:nth-child(2) {
  background: linear-gradient(90deg, #00a0ff, #ff1181);
}

.review-slide:nth-child(3) {
  background: linear-gradient(90deg, #ffc300, #ff3299);
}

.review-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.review-arrow {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  padding: 0;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
  width: 32px;
}

.review-arrow i {
  font-size: 32px;
  line-height: 1;
}

.growth {
  align-items: center;
  display: grid;
  gap: 112px;
  grid-template-columns: minmax(0, 1fr) 544px;
  padding: 0 0 160px;
}

.growth h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 16px;
}

.growth p {
  font-size: 16px;
  margin: 0;
  max-width: 520px;
}

.growth-panel {
  background: var(--panel-alt);
  height: 207px;
  width: 544px;
}

:root[data-theme="light"] .growth-panel {
  background: var(--panel);
}

.contact-card {
  background: var(--cta);
  border-radius: 7px;
  color: #ffffff;
  margin: 0 auto;
  max-width: 654px;
  min-height: 373px;
  padding: 70px 72px 74px;
  text-align: center;
}

.contact-card h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 46px;
}

.contact-card p {
  font-size: 16px;
  margin: 0 auto 48px;
  max-width: 510px;
}

.contact-actions {
  display: inline-flex;
}

.contact-actions a {
  align-items: center;
  border: 1px solid #ffffff;
  display: inline-flex;
  font-size: 18px;
  font-weight: 600;
  gap: 11px;
  height: 65px;
  justify-content: center;
  min-width: 150px;
  padding: 0 20px;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.contact-actions a:first-child {
  border-radius: 7px 0 0 7px;
}

.contact-actions a:last-child {
  border-left: 0;
  border-radius: 0 7px 7px 0;
}

.contact-actions i {
  font-size: 22px;
  line-height: 1;
  width: 22px;
}

.site-footer {
  background: var(--footer);
  color: var(--text);
}

.footer-inner {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(220px, 1.8fr) repeat(3, minmax(130px, 1fr));
  margin: 0 auto;
  max-width: 1216px;
  min-height: 329px;
  padding: 95px 0 65px;
}

.footer-brand p {
  font-size: 14px;
  margin: 28px 0 0;
  max-width: 260px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 18px;
}

.footer-column a {
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  width: fit-content;
}

.copyright {
  align-items: center;
  background: var(--footer-bar);
  display: flex;
  font-size: 14px;
  min-height: 51px;
  padding-left: max(24px, calc((100% - 1216px) / 2));
  padding-right: max(24px, calc((100% - 1216px) / 2));
}

.pricing-shell {
  background:
    linear-gradient(150deg, var(--page-start) 0, var(--page-mid) 46%, var(--page-end) 100%),
    var(--body-band);
}

.pricing-page {
  color: var(--text);
  min-height: 100vh;
  padding: 80px 0 120px;
  position: relative;
}

.pricing-page::before {
  background: linear-gradient(102deg, #ff7e00 0%, #ff1181 46%, #008ae4 82%);
  clip-path: polygon(0 18%, 100% 0, 100% 42%, 0 66%);
  content: "";
  height: 520px;
  left: 0;
  opacity: 0.96;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 80px;
}

:root[data-theme="dark"] .pricing-page::before {
  background: linear-gradient(102deg, #0759aa 0%, #ff1181 46%, #008ae4 82%);
}

.pricing-intro,
.pricing-grid,
.pricing-assurance {
  margin-left: auto;
  margin-right: auto;
  max-width: 1128px;
  position: relative;
  z-index: 1;
}

.pricing-intro {
  animation: pricing-intro-enter 620ms cubic-bezier(0.16, 0.84, 0.34, 1) backwards;
  padding: 84px 0 68px;
}

.pricing-kicker {
  align-items: center;
  background: rgba(20, 27, 37, 0.88);
  border-radius: 6px;
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  margin-bottom: 22px;
  min-height: 34px;
  padding: 0 13px;
  text-transform: uppercase;
}

.pricing-kicker i {
  color: #ffc300;
  font-size: 18px;
}

.pricing-intro h1 {
  color: #ffffff;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.03;
  margin: 0 0 20px;
  max-width: 820px;
}

.pricing-intro > p {
  color: #ffffff;
  font-size: 18px;
  margin: 0;
  max-width: 670px;
}

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

.pricing-card {
  animation: pricing-card-enter 620ms cubic-bezier(0.16, 0.84, 0.34, 1) backwards;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 7px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 506px;
  overflow: hidden;
  padding: 34px 30px 30px;
  position: relative;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.pricing-card:nth-child(2) {
  animation-delay: 90ms;
}

.pricing-card:nth-child(3) {
  animation-delay: 180ms;
}

.pricing-card:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.21);
  transform: translateY(-5px);
}

.pricing-card-featured {
  animation-name: pricing-card-featured-enter;
  border-color: transparent;
  transform: translateY(-14px);
}

.pricing-card-featured::before {
  background: linear-gradient(90deg, #ffc300, #ff1181, #008ae4);
  content: "";
  height: 6px;
  inset: 0 0 auto;
  position: absolute;
}

.pricing-card-featured:hover {
  transform: translateY(-19px);
}

.pricing-popular {
  align-self: flex-end;
  background: linear-gradient(90deg, #ffc300, #ff3299);
  border-radius: 5px;
  color: #351800;
  font-size: 12px;
  font-weight: 600;
  margin: -13px 0 20px;
  padding: 5px 9px;
  text-transform: uppercase;
}

.pricing-card-heading {
  align-items: center;
  display: flex;
  gap: 14px;
}

.pricing-card-heading > i {
  align-items: center;
  background: #00a0ff;
  border-radius: 6px;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 24px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.pricing-card-featured .pricing-card-heading > i {
  background: linear-gradient(135deg, #ffc300, #ff3299);
  color: #351800;
}

.pricing-card-heading h2 {
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 3px;
}

.pricing-card-heading p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.price {
  align-items: baseline;
  display: flex;
  gap: 6px;
  margin: 34px 0 28px;
}

.price span {
  font-size: 43px;
  font-weight: 600;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 14px;
}

.pricing-card ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.pricing-card li {
  align-items: flex-start;
  display: flex;
  font-size: 14px;
  gap: 9px;
}

.pricing-card li i {
  color: #00a0ff;
  font-size: 18px;
  line-height: 1.2;
}

.pricing-card > a {
  align-items: center;
  background: var(--button-dark);
  border-radius: 6px;
  color: var(--button-dark-text);
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
  min-height: 48px;
  padding: 0 18px;
  transition:
    box-shadow 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.pricing-card-featured > a {
  background: linear-gradient(90deg, #ff7e00, #ff1181);
  color: #ffffff;
}

.pricing-card > a:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.pricing-assurance {
  border-bottom: 1px solid var(--surface-border);
  border-top: 1px solid var(--surface-border);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  padding: 27px 0;
}

.pricing-assurance div {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  gap: 10px;
  justify-content: center;
}

.pricing-assurance i {
  color: #00a0ff;
  font-size: 22px;
}

@keyframes pricing-intro-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes pricing-card-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes pricing-card-featured-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(-14px);
  }
}

@media (max-width: 1320px) {
  .hero-inner,
  .stats-inner,
  .feature,
  .more-features,
  .reviews,
  .growth,
  .pricing-intro,
  .pricing-grid,
  .pricing-assurance,
  .footer-inner {
    width: calc(100% - 48px);
  }

  .site-header {
    width: 100%;
  }

  .hero-panel {
    width: 100%;
  }
}

@media (max-width: 1040px) {
  .site-header {
    padding: 0 28px;
  }

  .hero-inner {
    display: grid;
    gap: 32px;
    min-height: 1120px;
    padding: 140px 0 80px;
  }

  .hero-copy {
    max-width: 640px;
    position: static;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-panel {
    max-width: 623px;
    position: static;
  }

  .stats-inner {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .release-pill {
    justify-self: start;
  }

  .feature,
  .feature-right,
  .growth {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .feature-right .visual-panel {
    order: 2;
  }

  .feature-panel,
  .growth-panel {
    max-width: 544px;
    width: 100%;
  }

  .feature-copy h2 {
    font-size: 58px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-intro {
    padding-top: 72px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .pricing-card-featured,
  .pricing-card-featured:hover {
    animation-name: pricing-card-enter;
    transform: none;
  }

  .footer-inner {
    gap: 38px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .copyright {
    padding: 0 24px;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    height: 72px;
    min-height: 72px;
    padding: 0 16px;
  }

  .brand {
    font-size: 32px;
  }

  .nav-toggle {
    background: var(--mobile-menu-trigger);
    border: 1px solid var(--mobile-menu-border);
    color: var(--mobile-menu-text);
    height: 34px;
    margin-left: 0;
    width: 34px;
  }

  .nav-toggle .nav-toggle-arrow {
    display: none;
  }

  .nav-toggle .nav-toggle-menu {
    display: block;
    font-size: 20px;
    font-weight: 500;
  }

  .nav-tabs a {
    border-radius: 6px;
    color: var(--mobile-menu-text);
    font-size: 16px;
    height: 40px;
    padding: 0 12px;
  }

  .nav-tabs {
    background: var(--mobile-menu-bg);
    border-color: var(--mobile-menu-border);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
    color: var(--mobile-menu-text);
    display: grid;
    grid-template-columns: 1fr;
    left: 16px;
    max-height: 112px;
    min-height: 0;
    padding: 6px;
    position: absolute;
    right: 16px;
    top: calc(100% + 8px);
    transform-origin: top;
    transition:
      border-color 180ms ease,
      max-height 180ms ease,
      opacity 180ms ease,
      padding 180ms ease,
      transform 180ms ease;
    width: auto;
  }

  .nav-tabs a + a {
    border-top: 1px solid var(--mobile-menu-border);
  }

  .site-header.nav-collapsed .nav-tabs {
    border-width: 0;
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
    padding-top: 0;
    transform: translateY(-8px) scaleY(0.96);
    width: auto;
  }

  .header-actions {
    gap: 6px;
    margin-left: auto;
    width: auto;
  }

  .icon-button {
    height: 30px;
    width: 30px;
  }

  .icon-button i {
    font-size: 21px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-shape-top-glow {
    height: 72px;
    top: 42px;
    width: max(300vw, 1180px);
  }

  .hero-shape-top-blue {
    height: 78px;
    top: 132px;
    width: max(305vw, 1200px);
  }

  .hero-shape-main {
    height: 360px;
    top: 228px;
    width: max(320vw, 1260px);
  }

  .hero-shape-bottom {
    bottom: 52px;
    height: 118px;
    width: max(325vw, 1280px);
  }

  .hero-inner {
    min-height: 760px;
    padding: 128px 0 54px;
  }

  .hero h1 {
    font-size: 44px;
    max-width: 360px;
  }

  .button {
    min-width: 0;
    width: 100%;
  }

  .hero-buttons {
    gap: 12px;
    max-width: 280px;
  }

  .hero-panel {
    height: 220px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .stat-item {
    grid-template-columns: 32px auto;
  }

  .stat-item .stat-value {
    justify-content: flex-start;
  }

  .release-pill {
    font-size: 15px;
    width: 100%;
  }

  .pricing-page {
    padding-bottom: 80px;
  }

  .pricing-page::before {
    height: 440px;
  }

  .pricing-intro {
    padding: 64px 0 52px;
  }

  .pricing-intro h1 {
    font-size: 40px;
  }

  .pricing-intro > p {
    font-size: 16px;
  }

  .pricing-card {
    min-height: 0;
    padding: 28px 24px 24px;
  }

  .pricing-assurance {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: auto;
    padding: 76px 0;
  }

  .feature-copy h2 {
    font-size: 44px;
  }

  .feature-copy p {
    font-size: 16px;
  }

  .feature-panel {
    height: 235px;
  }

  .tag-list span,
  .tag-list strong,
  .tag-list button {
    font-size: 14px;
  }

  .more-features h2,
  .reviews h2 {
    font-size: 28px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .mini-feature {
    min-height: 210px;
  }

  .review-carousel {
    gap: 10px;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
  }

  .review-window {
    height: 178px;
  }

  .growth {
    padding-bottom: 90px;
  }

  .growth-panel {
    height: 160px;
  }

  .contact-card {
    margin-left: 24px;
    margin-right: 24px;
    padding: 48px 24px;
  }

  .contact-actions {
    display: flex;
    flex-direction: column;
  }

  .contact-actions a {
    min-width: 210px;
  }

  .contact-actions a:first-child {
    border-radius: 7px 7px 0 0;
  }

  .contact-actions a:last-child {
    border-left: 1px solid #ffffff;
    border-radius: 0 0 7px 7px;
    border-top: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 64px 0 48px;
  }
}

.pricing-body {
  background: #190700;
  overflow: hidden;
}

.pricing-body .pricing-shell {
  --hero-top-glow: linear-gradient(
    90deg,
    #ff7e00 0%,
    #7a1f00 58%,
    rgba(122, 31, 0, 0) 100%
  );
  --hero-top-blue: linear-gradient(
    90deg,
    #ff5a00 0%,
    #9a2300 38%,
    rgba(154, 35, 0, 0) 100%
  );
  --hero-main: linear-gradient(90deg, #ff4b00 0%, #ff087f 45%, #ff7e00 80%);
  --hero-bottom: linear-gradient(
    90deg,
    rgba(62, 11, 0, 0) 0%,
    rgba(45, 8, 0, 0.92) 58%,
    #dcca00 100%
  );
  background: #190700;
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

.pricing-shell .site-header {
  background:
    linear-gradient(90deg, rgba(168, 45, 0, 0.96), rgba(255, 126, 0, 0.96)),
    #c83800;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 34px rgba(41, 5, 0, 0.22);
  color: #ffffff;
}

.pricing-shell .brand,
.pricing-shell .nav-toggle,
.pricing-shell .nav-tabs a,
.pricing-shell .icon-button {
  color: #ffffff;
}

.pricing-shell .nav-tabs {
  background: rgba(102, 27, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.08);
}

.pricing-shell .nav-tabs a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-shell .pricing-actions a:focus-visible,
.pricing-shell .pricing-option > a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.pricing-shell .premium-trigger:hover i,
.pricing-shell .premium-trigger:focus-visible i,
.pricing-shell .premium-trigger.is-launching i {
  color: #ff9300;
}

.pricing-body .pricing-page {
  background: #190700;
  color: #ffffff;
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  padding: 80px 0 0;
  position: relative;
}

.pricing-body .pricing-page::before {
  display: none;
}

.premium-hero-art {
  background: #190700;
}

.pricing-layout {
  align-items: center;
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  height: calc(100svh - 80px);
  height: calc(100dvh - 80px);
  margin: 0 auto;
  max-width: 1480px;
  padding: 4.5vh 0 4vh;
  position: relative;
  width: calc(100% - 120px);
  z-index: 2;
}

.pricing-body .pricing-intro {
  animation: pricing-intro-enter 620ms cubic-bezier(0.16, 0.84, 0.34, 1) backwards;
  margin: 0;
  max-width: 590px;
  padding: 0;
}

.pricing-body .pricing-kicker {
  background: rgba(24, 8, 2, 0.82);
  color: #ffffff;
  margin-bottom: 18px;
}

.pricing-body .pricing-kicker i {
  color: #ff9300;
}

.pricing-body .pricing-intro h1 {
  color: #ffffff;
  font-size: 58px;
  line-height: 1.04;
  margin: 0;
  max-width: 590px;
}

.pricing-intro ul {
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 28px 0 30px;
  padding: 0;
}

.pricing-intro li {
  align-items: center;
  display: flex;
  font-size: 17px;
  gap: 10px;
}

.pricing-intro li::before {
  background: #ffffff;
  content: "";
  height: 6px;
  width: 6px;
}

.pricing-actions {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 520px;
}

.pricing-actions a {
  align-items: center;
  background: #ffffff;
  border-radius: 6px;
  color: #202020;
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  gap: 8px;
  height: 52px;
  justify-content: center;
  padding: 0 18px;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.pricing-actions a:hover {
  box-shadow: 0 14px 28px rgba(30, 4, 0, 0.24);
  transform: translateY(-2px);
}

.pricing-panel {
  animation: pricing-card-enter 620ms cubic-bezier(0.16, 0.84, 0.34, 1) 100ms backwards;
  background: #202020;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  box-shadow: 0 28px 70px rgba(20, 3, 0, 0.3);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: min(68vh, 640px);
  min-height: 470px;
  overflow: hidden;
  padding: 30px;
}

.pricing-panel-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pricing-panel-heading span {
  color: #ff9300;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-panel-heading h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  margin: 2px 0 0;
}

.pricing-panel-heading > i {
  color: #ff9300;
  font-size: 32px;
}

.pricing-options {
  display: grid;
  flex: 1;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  min-height: 0;
}

.pricing-option {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: grid;
  gap: 14px;
  grid-template-columns: 46px minmax(0, 1fr) auto 34px;
  min-height: 0;
  padding: 13px 0;
}

.pricing-option > i {
  align-items: center;
  background: #00a0ff;
  border-radius: 6px;
  color: #ffffff;
  display: inline-flex;
  font-size: 23px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.pricing-option h3 {
  font-size: 20px;
  line-height: 1.1;
  margin: 0 0 3px;
}

.pricing-option p {
  color: #c9c9c9;
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}

.pricing-option div > span {
  color: #ff9300;
  display: block;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.pricing-option strong {
  font-size: 21px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-option strong small {
  color: #a9a9a9;
  font-size: 11px;
  font-weight: 400;
}

.pricing-option > a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #ffffff;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
  width: 32px;
}

.pricing-option > a:hover {
  background: #ff9300;
  border-color: #ff9300;
  color: #202020;
  transform: translateX(2px);
}

.pricing-option-featured {
  background: rgba(255, 147, 0, 0.07);
  border-left: 2px solid #ff9300;
  margin-left: -14px;
  margin-right: -14px;
  padding-left: 12px;
  padding-right: 14px;
}

.pricing-option-featured > i {
  background: #ff9300;
  color: #202020;
}

.pricing-panel-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #a9a9a9;
  font-size: 12px;
  padding-top: 15px;
}

.premium-feature-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  min-height: 0;
  overflow: hidden;
}

.premium-switcher {
  background: rgba(32, 8, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 520px;
  padding: 4px;
}

.premium-switcher button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  gap: 8px;
  height: 52px;
  justify-content: center;
  padding: 0 18px;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.premium-switcher button:hover,
.premium-switcher button:focus-visible {
  color: #ffffff;
}

.premium-switcher button.is-active {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(30, 4, 0, 0.2);
  color: #7d2600;
}

.premium-view {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.premium-view[hidden] {
  display: none;
}

.premium-view.is-active {
  animation: premium-view-enter 360ms cubic-bezier(0.16, 0.84, 0.34, 1) both;
}

.premium-plan-grid {
  display: grid;
  flex: 1;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  min-height: 0;
}

.premium-plan {
  align-items: center;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #ffffff;
  display: grid;
  gap: 18px;
  grid-template-columns: 46px minmax(78px, 0.62fr) minmax(128px, 0.9fr) minmax(120px, 0.95fr) auto;
  min-width: 0;
  padding: 14px 0;
  position: relative;
  transition:
    background-color 200ms ease,
    padding 200ms ease;
}

.premium-plan:hover {
  background: rgba(255, 255, 255, 0.035);
  padding-left: 10px;
  padding-right: 10px;
}

.premium-plan > i {
  align-items: center;
  background: #00a0ff;
  border-radius: 5px;
  color: #ffffff;
  display: inline-flex;
  font-size: 23px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.premium-plan-featured {
  background: rgba(255, 147, 0, 0.07);
  box-shadow: inset 2px 0 0 #ff9300;
  margin: 0 -14px;
  padding-left: 14px;
  padding-right: 14px;
}

.premium-plan-featured::before {
  display: none;
}

.premium-plan-featured > i {
  background: #ff9300;
  color: #202020;
}

.premium-plan h3 {
  font-size: 20px;
  line-height: 1.1;
  margin: 0;
}

.premium-price {
  align-items: baseline;
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  margin: 0;
}

.premium-price span {
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.premium-price small {
  color: #a9a9a9;
  font-size: 11px;
}

.premium-plan > strong {
  color: #c9c9c9;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.premium-plan > a {
  align-items: center;
  background: #ffffff;
  border-radius: 5px;
  color: #202020;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 6px;
  justify-content: center;
  margin: 0;
  min-height: 42px;
  padding: 0 15px;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.premium-plan-featured > a {
  background: #ff9300;
}

.premium-plan > a:hover {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

@keyframes premium-view-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.premium-feature {
  align-items: center;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  gap: 14px;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
  position: relative;
  text-align: left;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.premium-feature:nth-child(-n + 2) {
  border-top: 0;
}

.premium-feature:nth-child(odd) {
  border-left: 0;
}

.premium-feature::after {
  background: linear-gradient(90deg, transparent, rgba(255, 147, 0, 0.42), transparent);
  content: "";
  height: 1px;
  left: -100%;
  position: absolute;
  right: 100%;
  top: 0;
  transition:
    left 420ms ease,
    right 420ms ease;
}

.premium-feature:hover,
.premium-feature:focus-visible,
.premium-feature.is-active {
  background: rgba(255, 147, 0, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 147, 0, 0.28);
  transform: none;
}

.premium-feature:hover::after,
.premium-feature:focus-visible::after,
.premium-feature.is-active::after {
  left: 0;
  right: 0;
}

.premium-feature > i {
  align-items: center;
  background: #00a0ff;
  border-radius: 5px;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 22px;
  height: 40px;
  justify-content: center;
  transition:
    background-color 200ms ease,
    color 200ms ease,
    transform 240ms ease;
  width: 40px;
}

.premium-feature:hover > i,
.premium-feature:focus-visible > i,
.premium-feature.is-active > i {
  background: #ff9300;
  color: #202020;
  transform: scale(1.05);
}

.support-body {
  overflow: hidden;
}

.support-body .support-shell {
  background: linear-gradient(90deg, var(--section-start), var(--section-end));
  height: 100svh;
  min-height: 0;
  overflow: hidden;
}

.support-page {
  align-items: center;
  background:
    linear-gradient(90deg, var(--section-start), var(--section-end)),
    var(--body-band);
  display: grid;
  height: 100svh;
  justify-content: center;
  min-height: 0;
  padding: 80px 24px 0;
}

.support-actions {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 124px);
  transform: translateY(-18px);
}

.support-actions a {
  align-items: center;
  background: var(--surface-strong);
  border: 1px solid var(--surface-border);
  border-radius: 5px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  height: 124px;
  justify-content: center;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.support-actions a:hover,
.support-actions a:focus-visible {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

.support-actions i {
  font-size: 57px;
  line-height: 1;
}

.support-actions span {
  font-size: 13px;
  margin-top: 5px;
}

.docs-body .docs-shell {
  background: linear-gradient(90deg, var(--section-start), var(--section-end));
  min-height: 100vh;
}

.docs-page {
  background:
    linear-gradient(90deg, var(--section-start), var(--section-end)),
    var(--body-band);
  color: var(--text);
  display: grid;
  gap: 72px;
  grid-template-columns: 220px minmax(0, 720px);
  justify-content: center;
  min-height: 100vh;
  padding: 144px 40px 100px;
}

.docs-index {
  align-self: start;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 136px);
  overflow-y: auto;
  position: sticky;
  top: 112px;
}

.docs-mobile-index {
  display: none;
}

.docs-index h1 {
  font-size: 25px;
  margin: 0 0 24px;
}

.docs-index a {
  border-left: 2px solid rgba(0, 160, 255, 0.22);
  color: var(--muted);
  font-size: 14px;
  padding: 8px 0 8px 14px;
}

.docs-index a[aria-current="page"] {
  border-color: #00a0ff;
  color: var(--text);
  font-weight: 600;
}

.docs-content {
  display: grid;
  gap: 0;
  min-width: 0;
}

.docs-content section {
  border-bottom: 1px solid var(--surface-border);
  min-width: 0;
  padding: 0 0 52px;
}

.docs-content section + section {
  padding-top: 52px;
}

.docs-content section > span {
  color: #00a0ff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.docs-content h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 8px 0 14px;
}

.docs-content p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
  max-width: 650px;
}

.docs-content p + p {
  margin-top: 14px;
}

.docs-content h3 {
  font-size: 19px;
  margin: 30px 0 12px;
}

.docs-content ul,
.docs-content ol {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  max-width: 680px;
  padding-left: 21px;
}

.docs-content li {
  color: var(--muted);
  font-size: 15px;
  padding-left: 4px;
}

.docs-steps {
  counter-reset: docs-step;
  list-style: none;
  padding-left: 0 !important;
}

.docs-steps li {
  align-items: start;
  counter-increment: docs-step;
  display: grid;
  gap: 4px 12px;
  grid-template-columns: 34px 1fr;
}

.docs-steps li::before {
  align-items: center;
  background: #00a0ff;
  border-radius: 5px;
  color: #ffffff;
  content: counter(docs-step);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  grid-row: 1 / 3;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.docs-steps strong {
  color: var(--text);
  font-size: 15px;
}

.docs-content table {
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 28px;
  width: 100%;
}

.docs-content th,
.docs-content td {
  border-bottom: 1px solid var(--surface-border);
  padding: 13px 12px;
  text-align: left;
  vertical-align: top;
}

.docs-content th {
  background: rgba(0, 160, 255, 0.08);
  color: var(--text);
  font-weight: 600;
}

.docs-content td {
  color: var(--muted);
}

.docs-content pre {
  background: #171b1f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #eef7fb;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.6;
  margin: 26px 0 0;
  overflow-x: auto;
  padding: 20px;
}

.docs-callout {
  align-items: flex-start;
  background: rgba(0, 160, 255, 0.08);
  border-left: 3px solid #00a0ff;
  display: flex;
  gap: 13px;
  margin-top: 28px;
  padding: 18px;
}

.docs-callout > i {
  color: #00a0ff;
  font-size: 22px;
  line-height: 1;
}

.docs-callout strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.docs-callout p {
  font-size: 14px;
}

.docs-callout-warning {
  background: rgba(255, 147, 0, 0.08);
  border-left-color: #ff9300;
}

.docs-callout-warning > i {
  color: #ff9300;
}

.docs-content section > a {
  align-items: center;
  background: var(--button-dark);
  border-radius: 6px;
  color: var(--button-dark-text);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  margin-top: 24px;
  min-height: 44px;
  padding: 0 16px;
}

.checkout-body .checkout-shell {
  background:
    linear-gradient(135deg, var(--section-start), var(--section-end)),
    var(--body-band);
  min-height: 100vh;
}

.checkout-page {
  align-items: stretch;
  background:
    linear-gradient(135deg, var(--section-start), var(--section-end)),
    var(--body-band);
  color: var(--text);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(300px, 0.8fr) minmax(430px, 1.2fr);
  justify-content: center;
  min-height: 100vh;
  padding: 150px max(24px, calc((100% - 980px) / 2)) 80px;
}

.checkout-summary,
.checkout-form {
  min-height: 540px;
  padding: 54px;
}

.checkout-summary {
  background: #202020;
  border-radius: 7px 0 0 7px;
  color: #ffffff;
}

.checkout-summary > span {
  color: #ff9300;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.checkout-summary h1 {
  font-size: 46px;
  margin: 10px 0 26px;
}

.checkout-price {
  align-items: baseline;
  display: flex;
  gap: 8px;
}

.checkout-price strong {
  font-size: 42px;
}

.checkout-price small,
.checkout-summary p {
  color: #b8b8b8;
}

.checkout-summary > a {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  gap: 7px;
  margin-top: 46px;
}

.checkout-form {
  background: var(--surface-strong);
  border: 1px solid var(--surface-border);
  border-radius: 0 7px 7px 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.checkout-form h2 {
  font-size: 26px;
  margin: 0 0 8px;
}

.checkout-form label {
  display: grid;
  font-size: 13px;
  font-weight: 500;
  gap: 7px;
}

.checkout-form input {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 5px;
  color: var(--text);
  font: inherit;
  height: 44px;
  padding: 0 12px;
}

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

.checkout-form .checkout-consent {
  align-items: flex-start;
  display: flex;
  font-weight: 400;
  gap: 10px;
  line-height: 1.4;
}

.checkout-consent input {
  flex: 0 0 auto;
  height: 18px;
  margin: 1px 0 0;
  width: 18px;
}

.checkout-consent a {
  color: #00a0ff;
}

.checkout-form > button {
  align-items: center;
  background: #ff9300;
  border: 0;
  border-radius: 6px;
  color: #202020;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
  min-height: 48px;
}

.checkout-status {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
  min-height: 34px;
}

.legal-body .legal-shell {
  background:
    linear-gradient(90deg, var(--section-start), var(--section-end)),
    var(--body-band);
  min-height: 100vh;
}

.legal-page {
  background:
    linear-gradient(90deg, var(--section-start), var(--section-end)),
    var(--body-band);
  color: var(--text);
  min-height: 100vh;
  padding: 138px 24px 110px;
}

.legal-page article {
  margin: 0 auto;
  max-width: 820px;
}

.legal-heading {
  border-bottom: 1px solid var(--surface-border);
  margin-bottom: 50px;
  padding-bottom: 42px;
}

.legal-heading > span {
  color: #00a0ff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.legal-heading h1 {
  font-size: 50px;
  line-height: 1.08;
  margin: 8px 0 18px;
}

.legal-heading p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  max-width: 740px;
}

.legal-page section {
  border-bottom: 1px solid var(--surface-border);
  padding: 0 0 38px;
}

.legal-page section + section {
  padding-top: 38px;
}

.legal-page h2 {
  font-size: 23px;
  line-height: 1.25;
  margin: 0 0 14px;
}

.legal-page p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.legal-page p + p {
  margin-top: 13px;
}

.legal-page ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 21px;
}

.legal-page li {
  color: var(--muted);
  font-size: 15px;
  padding-left: 4px;
}

.legal-page a {
  color: #007fc9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

:root[data-theme="dark"] .legal-page a {
  color: #66c8ff;
}

.legal-page table {
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 24px;
  width: 100%;
}

.legal-page th,
.legal-page td {
  border-bottom: 1px solid var(--surface-border);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.legal-page th {
  background: rgba(0, 160, 255, 0.08);
  color: var(--text);
}

.legal-page td {
  color: var(--muted);
}

.legal-page code {
  background: rgba(0, 160, 255, 0.08);
  border-radius: 3px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
  padding: 2px 5px;
}

@media (max-width: 1120px) {
  .pricing-layout {
    gap: 30px;
    grid-template-columns: minmax(310px, 0.8fr) minmax(480px, 1.2fr);
    width: calc(100% - 48px);
  }

  .pricing-body .pricing-intro h1 {
    font-size: 46px;
  }

  .pricing-panel {
    padding: 24px;
  }

  .docs-page {
    gap: 42px;
  }

  .checkout-summary,
  .checkout-form {
    padding: 38px;
  }
}

@media (max-width: 760px) {
  .pricing-body .pricing-page {
    padding-top: 72px;
  }

  .pricing-shell .nav-tabs {
    background: rgba(44, 12, 2, 0.96);
  }

  .pricing-shell .nav-toggle {
    background: rgba(44, 12, 2, 0.48);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
  }

  .pricing-layout {
    align-items: stretch;
    gap: 14px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    height: calc(100svh - 72px);
    height: calc(100dvh - 72px);
    padding: 14px 0 max(14px, env(safe-area-inset-bottom));
    width: calc(100% - 32px);
  }

  .pricing-body .pricing-kicker {
    font-size: 11px;
    margin-bottom: 9px;
    min-height: 28px;
  }

  .pricing-body .pricing-intro h1 {
    font-size: 32px;
    max-width: 430px;
  }

  .premium-switcher {
    gap: 4px;
    margin-top: 12px;
    max-width: none;
  }

  .premium-switcher button {
    font-size: 13px;
    height: 40px;
  }

  .pricing-intro ul {
    gap: 3px;
    margin: 10px 0 12px;
  }

  .pricing-intro li {
    font-size: 12px;
  }

  .pricing-actions {
    gap: 8px;
    max-width: none;
  }

  .pricing-actions a {
    font-size: 13px;
    height: 40px;
  }

  .pricing-panel {
    height: auto;
    min-height: 0;
    overflow: hidden;
    padding: 17px;
  }

  .pricing-panel-heading {
    margin-bottom: 8px;
  }

  .pricing-panel-heading h2 {
    font-size: 21px;
  }

  .pricing-panel-heading > i {
    font-size: 25px;
  }

  .pricing-option {
    gap: 9px;
    grid-template-columns: 38px minmax(0, 1fr) auto 30px;
    padding: 7px 0;
  }

  .pricing-option > i {
    font-size: 19px;
    height: 36px;
    width: 36px;
  }

  .pricing-option h3 {
    font-size: 16px;
  }

  .pricing-option p {
    display: none;
  }

  .pricing-option strong {
    font-size: 15px;
  }

  .pricing-option > a {
    height: 28px;
    width: 28px;
  }

  .pricing-option-featured {
    margin-left: -9px;
    margin-right: -9px;
    padding-left: 7px;
    padding-right: 9px;
  }

  .pricing-panel-footer {
    font-size: 10px;
    padding-top: 8px;
  }

  .premium-feature-grid {
    gap: 0;
  }

  .premium-feature {
    align-items: flex-start;
    flex-direction: column;
    font-size: 13px;
    gap: 7px;
    justify-content: center;
    padding: 10px;
  }

  .premium-feature > i {
    font-size: 17px;
    height: 30px;
    width: 30px;
  }

  .premium-plan-grid {
    gap: 0;
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .premium-plan {
    gap: 4px 10px;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    padding: 8px 0;
  }

  .premium-plan > i {
    font-size: 17px;
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 34px;
    width: 34px;
  }

  .premium-plan h3 {
    align-self: end;
    font-size: 15px;
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }

  .premium-price {
    align-self: start;
    grid-column: 2;
    grid-row: 2;
    margin: 0;
  }

  .premium-price span {
    font-size: 18px;
  }

  .premium-price small {
    font-size: 9px;
  }

  .premium-plan > strong {
    display: none;
  }

  .premium-plan > a {
    font-size: 0;
    grid-column: 3;
    grid-row: 1 / span 2;
    height: 34px;
    min-height: 34px;
    padding: 0;
    width: 34px;
  }

  .premium-plan > a i {
    font-size: 16px;
  }

  .premium-plan-featured {
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .premium-plan:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .premium-plan-featured:hover {
    padding-left: 8px;
    padding-right: 8px;
  }

  .support-page {
    padding-top: 72px;
  }

  .support-actions {
    grid-template-columns: repeat(2, 116px);
  }

  .support-actions a {
    height: 116px;
  }

  .support-actions i {
    font-size: 52px;
  }

  .docs-page {
    display: block;
    grid-template-columns: 1fr;
    padding: 78px 14px 56px;
  }

  .docs-index {
    display: none;
  }

  .docs-mobile-index {
    background: var(--surface-strong);
    border: 1px solid var(--surface-border);
    display: block;
    margin: 0 0 22px;
    position: sticky;
    top: 68px;
    z-index: 8;
  }

  .docs-mobile-index summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
    grid-template-columns: 18px 1fr 18px;
    list-style: none;
    min-height: 42px;
    padding: 0 12px;
  }

  .docs-mobile-index summary::-webkit-details-marker {
    display: none;
  }

  .docs-mobile-index summary i {
    color: #00a0ff;
    font-size: 17px;
  }

  .docs-mobile-index summary i:last-child {
    color: var(--muted);
    transition: transform 180ms ease;
  }

  .docs-mobile-index[open] summary i:last-child {
    transform: rotate(180deg);
  }

  .docs-mobile-index nav {
    border-top: 1px solid var(--surface-border);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 6px;
  }

  .docs-mobile-index nav a {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.2;
    min-width: 0;
    padding: 8px 6px;
  }

  .docs-content section {
    padding-bottom: 28px;
    scroll-margin-top: 122px;
    width: 100%;
  }

  .docs-content section + section {
    padding-top: 28px;
  }

  .docs-content h2 {
    font-size: 25px;
    line-height: 1.14;
    margin-bottom: 10px;
  }

  .docs-content h3 {
    font-size: 17px;
    margin-top: 20px;
  }

  .docs-content p {
    font-size: 14px;
    line-height: 1.62;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .docs-content ul,
  .docs-content ol {
    gap: 8px;
    margin-top: 14px;
    padding-left: 19px;
    max-width: 100%;
  }

  .docs-content li {
    font-size: 13px;
    line-height: 1.52;
  }

  .docs-steps li {
    gap: 3px 10px;
    grid-template-columns: 30px 1fr;
  }

  .docs-steps li::before {
    height: 28px;
    width: 28px;
  }

  .docs-content table {
    display: block;
    margin-top: 18px;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    table-layout: fixed;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .docs-content table thead,
  .docs-content table tbody {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .docs-content th,
  .docs-content td {
    font-size: 12px;
    line-height: 1.5;
    padding: 9px 8px;
  }

  .docs-content pre {
    font-size: 11px;
    line-height: 1.55;
    margin-top: 16px;
    padding: 12px;
  }

  .docs-callout {
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
  }

  .docs-callout > i {
    font-size: 20px;
  }

  .docs-callout p {
    font-size: 13px;
  }

  .checkout-page {
    grid-template-columns: 1fr;
    padding: 104px 16px 40px;
  }

  .checkout-summary,
  .checkout-form {
    min-height: 0;
    padding: 28px 24px;
  }

  .checkout-summary {
    border-radius: 7px 7px 0 0;
  }

  .checkout-summary h1 {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .checkout-summary > a {
    margin-top: 18px;
  }

  .checkout-form {
    border-radius: 0 0 7px 7px;
  }

  .checkout-fields {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding: 104px 18px 64px;
  }

  .legal-heading {
    margin-bottom: 32px;
    padding-bottom: 28px;
  }

  .legal-heading h1 {
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .legal-heading p {
    font-size: 14px;
    line-height: 1.65;
  }

  .legal-page section {
    padding-bottom: 30px;
    scroll-margin-top: 96px;
  }

  .legal-page section + section {
    padding-top: 30px;
  }

  .legal-page h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 11px;
  }

  .legal-page p,
  .legal-page li {
    font-size: 14px;
    line-height: 1.7;
  }

  .legal-page ul {
    gap: 7px;
    margin-top: 14px;
    padding-left: 19px;
  }

  .legal-page a,
  .legal-page strong,
  .legal-page code {
    overflow-wrap: anywhere;
  }

  .legal-page table {
    display: block;
    margin-top: 18px;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .legal-page table thead,
  .legal-page table tbody {
    display: table;
    table-layout: fixed;
    width: 660px;
  }

  .legal-page th,
  .legal-page td {
    font-size: 12px;
    line-height: 1.5;
    padding: 10px;
  }
}

@media (max-height: 620px) {
  .pricing-layout {
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .pricing-body .pricing-intro h1 {
    font-size: 38px;
  }

  .pricing-intro ul {
    margin-bottom: 14px;
    margin-top: 14px;
  }

  .pricing-panel {
    height: calc(100svh - 112px);
    height: calc(100dvh - 112px);
    min-height: 0;
  }
}

@media (max-width: 760px) and (max-height: 620px) and (orientation: landscape) {
  .pricing-layout {
    gap: 20px;
    grid-template-columns: minmax(250px, 0.8fr) minmax(390px, 1.2fr);
    grid-template-rows: 1fr;
  }

  .pricing-body .pricing-intro h1 {
    font-size: 30px;
  }

  .pricing-intro ul {
    display: none;
  }

  .pricing-panel {
    height: auto;
  }
}

@media (max-width: 760px) and (max-height: 620px) and (orientation: portrait) {
  .pricing-body .pricing-intro h1 {
    font-size: 27px;
  }

  .pricing-intro ul {
    margin-bottom: 9px;
    margin-top: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* Authenticated studio workspace placeholders */
.auth-body {
  background: var(--page-end);
  min-height: 100vh;
}

.auth-page {
  align-items: center;
  background:
    linear-gradient(135deg, var(--section-start), var(--section-end)),
    var(--body-band);
  display: grid;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 48px 24px;
  position: relative;
}

.auth-page::before,
.auth-page::after {
  background: var(--hero-main);
  content: "";
  height: 42vh;
  opacity: 0.9;
  position: absolute;
  transform: rotate(-12deg);
  width: 130vw;
}

.auth-page::before {
  left: -48vw;
  top: -31vh;
}

.auth-page::after {
  background: var(--hero-bottom);
  bottom: -35vh;
  right: -50vw;
}

.auth-brand {
  color: var(--hero-text);
  font-family: "Times New Roman", Times, serif;
  font-size: 38px;
  font-weight: 700;
  left: 54px;
  position: absolute;
  top: 42px;
  z-index: 1;
}

.auth-card {
  background: var(--surface-strong);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  box-shadow: 0 24px 64px var(--shadow);
  max-width: 440px;
  padding: 42px;
  position: relative;
  width: min(100%, 440px);
  z-index: 1;
}

.auth-mark {
  align-items: center;
  background: #00a0ff;
  border-radius: 6px;
  color: #ffffff;
  display: inline-flex;
  font-size: 24px;
  height: 46px;
  justify-content: center;
  margin-bottom: 25px;
  width: 46px;
}

.auth-card > span,
.eyebrow {
  color: #00a0ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.auth-card h1 {
  font-size: 34px;
  line-height: 1.12;
  margin: 7px 0 12px;
}

.auth-card > p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.login-form {
  display: grid;
  gap: 16px;
  margin-top: 29px;
}

.login-form label {
  display: grid;
  font-size: 13px;
  font-weight: 500;
  gap: 7px;
}

.login-form input {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 5px;
  color: var(--text);
  font: inherit;
  height: 46px;
  padding: 0 12px;
}

.login-form button,
.dashboard-primary-action {
  align-items: center;
  background: var(--button-dark);
  border: 0;
  border-radius: 6px;
  color: var(--button-dark-text);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.login-form button:hover,
.dashboard-primary-action:hover {
  box-shadow: 0 12px 24px var(--shadow);
  transform: translateY(-2px);
}

.login-status {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
  min-height: 18px;
}

.auth-card > small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 17px;
}

.auth-card small a {
  color: #00a0ff;
  font-weight: 600;
}

.auth-theme {
  align-items: center;
  background: var(--surface-strong);
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  bottom: 32px;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  font-size: 19px;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 32px;
  width: 42px;
  z-index: 1;
}

.dashboard-body {
  background: var(--page-end);
  min-height: 100vh;
}

.dashboard-shell {
  background: var(--page-end);
  color: var(--text);
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100vh;
}

.dashboard-sidebar {
  background: var(--surface-strong);
  border-right: 1px solid var(--surface-border);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 29px 16px 20px;
  position: sticky;
  top: 0;
}

.dashboard-sidebar-close { display: none; }

.dashboard-brand {
  color: var(--text);
  font-family: "Times New Roman", Times, serif;
  font-size: 31px;
  font-weight: 700;
  margin: 0 12px 30px;
}

.studio-picker {
  align-items: center;
  background: rgba(0, 160, 255, 0.08);
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  display: grid;
  font-size: 13px;
  font-weight: 600;
  gap: 9px;
  grid-template-columns: 18px minmax(0, 1fr) 16px;
  margin-bottom: 27px;
  min-height: 44px;
  padding: 0 11px;
}

.studio-picker > i:first-child { color: #00a0ff; font-size: 18px; }
.studio-picker > i:last-child { color: var(--muted); font-size: 17px; }

.dashboard-nav,
.dashboard-sidebar-foot {
  display: grid;
  gap: 4px;
}

.dashboard-nav a,
.dashboard-sidebar-foot a {
  align-items: center;
  border-radius: 5px;
  color: var(--muted);
  display: grid;
  font-size: 13px;
  gap: 11px;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  min-height: 42px;
  padding: 0 11px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.dashboard-nav a i,
.dashboard-sidebar-foot a i { font-size: 18px; }

.dashboard-nav a b {
  align-items: center;
  background: #ff9300;
  border-radius: 10px;
  color: #1e1e1e;
  display: inline-flex;
  font-size: 10px;
  height: 18px;
  justify-content: center;
  min-width: 18px;
}

.dashboard-nav a:hover,
.dashboard-nav a.is-active,
.dashboard-sidebar-foot a:hover {
  background: rgba(0, 160, 255, 0.1);
  color: var(--text);
}

.dashboard-nav a.is-active { color: #008ee5; font-weight: 600; }
.dashboard-sidebar-foot { margin-top: auto; padding-top: 22px; }

.dashboard-main { min-width: 0; }

.dashboard-topbar {
  align-items: center;
  background: var(--surface-strong);
  border-bottom: 1px solid var(--surface-border);
  display: flex;
  height: 74px;
  justify-content: space-between;
  padding: 0 36px;
  position: sticky;
  top: 0;
  z-index: 5;
}

.dashboard-breadcrumb {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  gap: 6px;
}
.dashboard-breadcrumb i { font-size: 16px; }
.dashboard-breadcrumb strong { color: var(--text); font-weight: 600; }

.dashboard-actions { align-items: center; display: flex; gap: 10px; }

.dashboard-icon-button,
.dashboard-menu {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 5px;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  height: 36px;
  justify-content: center;
  position: relative;
  width: 36px;
}

.dashboard-icon-button:hover,
.dashboard-menu:hover { background: rgba(0, 160, 255, 0.1); }
.dashboard-icon-button > span { background: #ff5c45; border: 2px solid var(--surface-strong); border-radius: 50%; height: 8px; position: absolute; right: 6px; top: 5px; width: 8px; }
.dashboard-profile { align-items: center; display: inline-flex; gap: 5px; margin-left: 4px; }
.dashboard-profile span { align-items: center; background: #008ee5; border-radius: 50%; color: #ffffff; display: inline-flex; font-size: 11px; font-weight: 600; height: 32px; justify-content: center; width: 32px; }
.dashboard-profile i { color: var(--muted); font-size: 16px; }
.dashboard-menu { display: none; }

.dashboard-content { margin: 0 auto; max-width: 1440px; padding: 46px 52px 64px; }

.dashboard-heading { align-items: end; display: flex; gap: 24px; justify-content: space-between; margin-bottom: 31px; }
.dashboard-heading h1 { font-size: 34px; line-height: 1.15; margin: 4px 0 8px; }
.dashboard-heading p { color: var(--muted); font-size: 14px; margin: 0; max-width: 620px; }
.dashboard-primary-action { flex: 0 0 auto; padding: 0 15px; }

.dashboard-kpis { display: grid; gap: 14px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 14px; }
.dashboard-kpis article,
.dashboard-panel { background: var(--surface-strong); border: 1px solid var(--surface-border); border-radius: 7px; }
.dashboard-kpis article { display: grid; gap: 6px; min-height: 132px; padding: 21px; }
.dashboard-kpis span { color: var(--muted); font-size: 12px; }
.dashboard-kpis strong { font-size: 28px; line-height: 1.1; }
.dashboard-kpis small { align-items: center; color: #0f9c5c; display: inline-flex; font-size: 11px; gap: 3px; }
.dashboard-kpis small.neutral { color: var(--muted); }

.dashboard-grid { display: grid; gap: 14px; grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr); }
.dashboard-panel { min-width: 0; padding: 24px; }
.panel-heading { align-items: flex-start; display: flex; gap: 14px; justify-content: space-between; }
.panel-heading h2 { font-size: 18px; line-height: 1.2; margin: 0 0 4px; }
.panel-heading p { color: var(--muted); font-size: 12px; margin: 0; }
.panel-heading > a { align-items: center; color: #008ee5; display: inline-flex; font-size: 12px; font-weight: 600; gap: 4px; }

.range-control { background: var(--surface); border: 1px solid var(--surface-border); border-radius: 5px; display: inline-flex; padding: 2px; }
.range-control button { background: transparent; border: 0; border-radius: 3px; color: var(--muted); cursor: pointer; font: inherit; font-size: 11px; height: 27px; min-width: 34px; }
.range-control button.is-active { background: #00a0ff; color: #ffffff; font-weight: 600; }

.chart-wrap { display: grid; grid-template-columns: 28px minmax(0, 1fr); margin-top: 28px; }
.chart-axis { color: var(--muted); display: flex; flex-direction: column; font-size: 10px; justify-content: space-between; padding-bottom: 22px; }
.chart-bars { align-items: end; background: repeating-linear-gradient(to bottom, transparent 0, transparent 42px, var(--surface-border) 43px); display: grid; gap: 13px; grid-template-columns: repeat(7, 1fr); height: 188px; padding: 0 8px; }
.chart-bars i { background: linear-gradient(180deg, #00b8ff, #0064ff); border-radius: 4px 4px 0 0; height: var(--bar); min-height: 12px; position: relative; }
.chart-bars i:nth-child(3n) { background: linear-gradient(180deg, #ff5c45, #ff1181); }
.chart-days { color: var(--muted); display: grid; font-size: 10px; grid-column: 2; grid-template-columns: repeat(7, 1fr); padding: 8px 8px 0; text-align: center; }
.chart-legend { align-items: center; color: var(--muted); display: flex; flex-wrap: wrap; font-size: 11px; gap: 13px; margin: 18px 0 0 28px; }
.chart-legend span { align-items: center; display: inline-flex; gap: 5px; }
.chart-legend i { background: #008ee5; border-radius: 50%; height: 7px; width: 7px; }.chart-legend span:nth-child(2) i { background: #ff1181; }.chart-legend span:nth-child(3) i { background: #7f65e9; }

.posture-panel { min-height: 310px; }
.posture-score { color: #008ee5; font-size: 18px; font-weight: 700; }.posture-score small { color: var(--muted); font-size: 11px; font-weight: 400; }
.posture-ring { align-items: center; aspect-ratio: 1; background: conic-gradient(#00a0ff 0deg 238deg, #ff9300 238deg 331deg, var(--surface-border) 331deg); border-radius: 50%; display: flex; justify-content: center; margin: 20px auto; max-width: 112px; position: relative; }.posture-ring::before { background: var(--surface-strong); border-radius: 50%; content: ""; inset: 9px; position: absolute; }.posture-ring span { color: var(--text); font-size: 13px; font-weight: 600; position: relative; }
.coverage-list { display: grid; gap: 9px; list-style: none; margin: 0; padding: 0; }.coverage-list li { align-items: center; color: var(--muted); display: flex; font-size: 11px; justify-content: space-between; }.coverage-list span { align-items: center; display: inline-flex; gap: 6px; }.coverage-list i { color: #0f9c5c; font-size: 14px; }.coverage-list li:last-child i, .coverage-list li:last-child strong { color: #ff9300; }.coverage-list strong { color: #0f9c5c; font-size: 10px; font-weight: 600; }

.queue-panel,
.signal-panel { min-height: 246px; }
.review-list { display: grid; margin-top: 18px; }.review-row { align-items: center; background: transparent; border: 0; border-top: 1px solid var(--surface-border); color: var(--text); cursor: pointer; display: grid; gap: 12px; grid-template-columns: 53px minmax(0, 1fr) 24px 16px; padding: 12px 0; text-align: left; }.review-row:hover { background: rgba(0, 160, 255, 0.05); }.severity { border-radius: 3px; font-size: 9px; font-weight: 600; padding: 4px 5px; text-align: center; }.severity.high { background: rgba(255, 92, 69, 0.15); color: #e44535; }.severity.medium { background: rgba(255, 147, 0, 0.18); color: #c66c00; }.review-row strong, .review-row small { display: block; }.review-row strong { font-size: 12px; }.review-row small { color: var(--muted); font-size: 10px; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.review-row time, .review-row > i { color: var(--muted); font-size: 10px; }.review-row > i { font-size: 17px; }

.live-status { align-items: center; color: #0f9c5c; display: inline-flex; font-size: 11px; font-weight: 600; gap: 5px; }.live-status i { background: #0f9c5c; border-radius: 50%; box-shadow: 0 0 0 4px rgba(15, 156, 92, 0.12); height: 6px; width: 6px; }.signal-list { display: grid; gap: 15px; list-style: none; margin: 23px 0 0; padding: 0; }.signal-list li { align-items: center; display: grid; gap: 11px; grid-template-columns: 32px minmax(0, 1fr); }.signal-list > li > i { align-items: center; background: rgba(0, 160, 255, 0.1); border-radius: 5px; color: #008ee5; display: inline-flex; font-size: 17px; height: 32px; justify-content: center; width: 32px; }.signal-list strong, .signal-list small { display: block; }.signal-list strong { font-size: 12px; }.signal-list small { color: var(--muted); font-size: 10px; margin-top: 2px; }

@media (max-width: 1020px) {
  .dashboard-shell { grid-template-columns: 210px minmax(0, 1fr); }
  .dashboard-content { padding: 36px 28px 52px; }
  .dashboard-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .posture-panel { min-height: 0; }
}

@media (max-width: 760px) {
  .auth-page { padding: 24px; }.auth-brand { font-size: 31px; left: 24px; top: 25px; }.auth-card { margin-top: 28px; padding: 30px 24px; }.auth-card h1 { font-size: 30px; }.auth-theme { bottom: 20px; right: 20px; }
  .dashboard-shell { display: block; }.dashboard-sidebar { box-shadow: 20px 0 48px rgba(0, 0, 0, 0.2); height: 100vh; left: 0; min-height: 0; padding-top: 22px; position: fixed; top: 0; transform: translateX(-105%); transition: transform 220ms ease; width: min(260px, 82vw); z-index: 20; }.dashboard-nav-open .dashboard-sidebar { transform: translateX(0); }.dashboard-nav-open::after { background: rgba(0, 0, 0, 0.4); content: ""; inset: 0; position: fixed; z-index: 15; }.dashboard-sidebar-close { align-items: center; background: transparent; border: 0; border-radius: 5px; color: var(--text); cursor: pointer; display: inline-flex; font-size: 20px; height: 34px; justify-content: center; position: absolute; right: 13px; top: 20px; width: 34px; }.dashboard-sidebar-close:hover { background: rgba(0, 160, 255, 0.1); }
  .dashboard-topbar { height: 66px; padding: 0 14px; }.dashboard-menu { display: inline-flex; }.dashboard-breadcrumb { display: none; }.dashboard-actions { margin-left: auto; }.dashboard-content { padding: 30px 14px 44px; }.dashboard-heading { align-items: flex-start; flex-direction: column; gap: 17px; margin-bottom: 24px; }.dashboard-heading h1 { font-size: 29px; }.dashboard-heading p { font-size: 13px; }.dashboard-primary-action { min-height: 42px; width: 100%; }
  .dashboard-kpis { gap: 10px; margin-bottom: 10px; }.dashboard-kpis article { min-height: 112px; padding: 16px; }.dashboard-kpis strong { font-size: 24px; }.dashboard-panel { padding: 18px; }.dashboard-grid { gap: 10px; }.panel-heading h2 { font-size: 17px; }.range-control button { min-width: 30px; }.chart-bars { gap: 7px; height: 165px; }.chart-legend { gap: 8px; margin-left: 28px; }.posture-ring { margin: 17px auto; }.review-row { gap: 8px; grid-template-columns: 49px minmax(0, 1fr) 21px 14px; }.signal-list { gap: 13px; }
}

/* Keep the product-pass layouts authoritative over legacy page styles. */
.pricing-layout.pricing-refined {
  gap: clamp(36px, 5vw, 78px);
  grid-template-columns: minmax(320px, 0.72fr) minmax(650px, 1.28fr);
  max-width: 1540px;
}

.pricing-panel.refined-pricing-panel {
  height: min(74vh, 690px);
  min-height: 530px;
  padding: 25px;
}

.error-page.refined-error-page {
  align-content: center;
  background: linear-gradient(135deg, var(--section-start), var(--section-end));
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(300px, 500px) minmax(380px, 580px);
  justify-content: center;
  padding: 112px 48px 48px;
}

.refined-error-page .error-copy {
  align-self: center;
  max-width: 530px;
  text-align: left;
}

@media (max-width: 1120px) {
  .pricing-layout.pricing-refined { gap: 26px; grid-template-columns: minmax(290px, .65fr) minmax(590px, 1.35fr); }
  .error-page.refined-error-page { gap: 20px; grid-template-columns: minmax(300px, 430px) minmax(340px, 480px); }
}

@media (max-width: 760px) {
  .pricing-body { overflow: auto; }
  .pricing-body .pricing-shell,
  .pricing-body .pricing-page { height: auto; min-height: 100svh; overflow: visible; }
  .pricing-layout.pricing-refined { display: block; height: auto; padding: 26px 0 40px; width: calc(100% - 28px); }
  .pricing-panel.refined-pricing-panel { height: auto; min-height: 0; padding: 17px; }
  .error-page.refined-error-page { align-content: start; display: flex; flex-direction: column; gap: 10px; min-height: 100svh; padding: 96px 20px 42px; }
}

/* Non-collecting prototype access states */
.auth-preview-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.auth-preview-actions a {
  align-items: center;
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.auth-preview-actions a:hover {
  box-shadow: 0 12px 24px var(--shadow);
  transform: translateY(-2px);
}

.auth-preview-actions .auth-preview-primary {
  background: var(--button-dark);
  border-color: transparent;
  color: var(--button-dark-text);
}

.checkout-preview {
  background: var(--surface-strong);
  border: 1px solid var(--surface-border);
  border-radius: 0 7px 7px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
  padding: 54px;
}

.checkout-preview-icon {
  align-items: center;
  background: rgba(0, 160, 255, 0.1);
  border-radius: 6px;
  color: #00a0ff;
  display: inline-flex;
  font-size: 25px;
  height: 48px;
  justify-content: center;
  margin-bottom: 22px;
  width: 48px;
}

.checkout-preview > span {
  color: #00a0ff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.checkout-preview h2 {
  font-size: 29px;
  line-height: 1.18;
  margin: 8px 0 13px;
  max-width: 480px;
}

.checkout-preview > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

.checkout-preview ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
}

.checkout-preview li {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  gap: 8px;
}

.checkout-preview li i {
  color: #0f9c5c;
  font-size: 17px;
}

.checkout-preview-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-preview-actions a {
  align-items: center;
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 7px;
  justify-content: center;
  min-height: 46px;
  padding: 0 12px;
}

.checkout-preview-actions a:last-child {
  background: var(--button-dark);
  border-color: transparent;
  color: var(--button-dark-text);
}

.checkout-preview > small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 18px;
}

@media (max-width: 1120px) {
  .checkout-preview { padding: 38px; }
}

@media (max-width: 760px) {
  .checkout-preview { border-radius: 0 0 7px 7px; min-height: 0; padding: 30px 24px; }
  .checkout-preview h2 { font-size: 25px; }
  .checkout-preview-actions { grid-template-columns: 1fr; }
}
