/* Landing pricing module (Explorer / Plus / Pro redesign).
   Owns everything inside #pricing except the shared section plumbing
   (scene width, seam padding, section-head centering), which stays in
   landing.css / landing-mobile.css. Loads after both so equal-specificity
   rules here win by order. */

body.landing-3d .depth-pricing-scene {
  --pp-accent: #27c889;
  --pp-accent-dim: rgba(39, 200, 137, 0.72);
  --pp-line: rgba(170, 196, 224, 0.14);
  --pp-line-strong: rgba(170, 196, 224, 0.24);
  --pp-line-faint: rgba(170, 196, 224, 0.06);
  --pp-fg: #eef4ff;
  --pp-dim: rgba(200, 216, 236, 0.72);
  --pp-faint: rgba(200, 216, 236, 0.48);
}

/* ── Section head: tighter rhythm than the default scene head ─────────── */

body.landing-3d #pricing .depth-section-head {
  /* With no billing toggle between them, the headline sits directly above the
     plan cards — give it a premium gap, not a cramped one. */
  margin-bottom: clamp(34px, 3.2vw, 44px);
}

/* Spacious section seams to match the hero/how-it-works rhythm — the fold
   shows headline, toggle, and the top of the cards; the rest scrolls.
   scroll-margin keeps direct #pricing hash arrivals clear of the fixed navbar
   (same 80px contract as #features); in-page nav clicks already offset via
   landing.js. Mobile inherits the generic 52px landing-section rule. */
@media (min-width: 701px) {
  body.landing-3d #pricing {
    /* Pricing opens with the same generous top spacing as its peer sections
       (#features / #dashboard), so the section seam sits centered. */
    padding: clamp(96px, 8vw, 120px) 0 var(--section-y-standard);
    scroll-margin-top: 80px;
    /* Contained commercial atmosphere: an almost-subliminal brand pool over
       a faint blue-teal depth layer — the decision moment, never a glowing
       pricing section. */
    background:
      radial-gradient(circle at 50% 60%, rgba(60, 120, 150, 0.035), transparent 50%);
  }
}

/* The eyebrow keeps the sitewide dash + label treatment so section eyebrows
   stay consistent; the gap below it matches the hero/how-it-works/features
   eyebrows so every intro lockup reads identically down the page. */
body.landing-3d #pricing .depth-tag {
  margin-bottom: 22px;
}

body.landing-3d #pricing .depth-heading {
  max-width: 900px;
  color: rgba(232, 240, 248, 0.92);
  /* A step below the hero — premium and bold, but not a second hero headline.
     3.34vw reaches 48px at 1440px (~11% smaller than before). */
  font-size: clamp(36px, 3.34vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

body.landing-3d #pricing .pricing-heading-line {
  display: block;
  color: inherit;
}

body.landing-3d #pricing .pricing-heading-line span {
  /* Muted brand green (#27c889) — one emphasized phrase, never neon. */
  color: rgba(39, 200, 137, 0.8);
}

body.landing-3d #pricing .depth-copy {
  max-width: 580px;
  margin-top: 12px;
  color: rgba(210, 225, 235, 0.7);
  font-size: clamp(0.90625rem, 1vw, 0.96875rem);
  font-weight: 400;
  line-height: 1.6;
}

/* ── Plan cards ────────────────────────────────────────────────────────── */

body.landing-3d #pricing .pricing-carousel {
  position: relative;
}

body.landing-3d #pricing .pricing-carousel-track {
  min-width: 0;
}

body.landing-3d #pricing .pricing-carousel-controls {
  display: none;
}

body.landing-3d #pricing .plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 2.4vw, 32px);
  align-items: stretch;
}

body.landing-3d #pricing .plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 29px 28px 30px;
  border: 1px solid rgba(170, 210, 225, 0.13);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 22, 31, 0.86), rgba(4, 12, 18, 0.92));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  transition: border-color 0.2s ease;
}

body.landing-3d #pricing .plan-card:hover {
  border-color: var(--pp-line-strong);
}

/* Plus: hairline green top edge and a faint interior wash — recommended,
   never advertised. The interior wash sits ~40% closer to the neutral card
   fill than before, so the green reads as a whisper, not a tint. */
body.landing-3d #pricing .plan-card-recommended {
  border-color: rgba(35, 209, 139, 0.16);
  background: linear-gradient(180deg, rgba(9, 28, 36, 0.96), rgba(5, 16, 23, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(35, 209, 139, 0.22),
    0 28px 85px rgba(0, 0, 0, 0.38);
}

body.landing-3d #pricing .plan-card-recommended:hover {
  border-color: rgba(35, 209, 139, 0.24);
}

/* Plus sits a step proud of its siblings on desktop — recommendation as
   posture, not decoration. */
@media (min-width: 901px) {
  body.landing-3d #pricing .plan-card-recommended {
    transform: translateY(-6px);
  }
}

/* Badge sits optically centered against the plan-name row. */
body.landing-3d #pricing .plan-flag {
  position: absolute;
  top: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border: 1px solid rgba(35, 209, 139, 0.12);
  border-radius: 999px;
  background: rgba(35, 209, 139, 0.055);
  color: rgba(35, 209, 139, 0.7);
  font-size: 0.625rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  line-height: 1;
}

body.landing-3d #pricing .plan-name {
  margin: 0;
  color: rgba(238, 244, 255, 0.94);
  font-size: clamp(1rem, 1.1vw, 1.0625rem);
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

body.landing-3d #pricing .plan-desc {
  /* Bonded to the plan name as one header unit — the description sits right
     under it, then a deliberate gap opens down to the price. On desktop
     (≥1101px) every description is a single line, so the box hugs one line
     with no dead space above the price; the cramped 3-col band below restores
     a two-line reserve so price baselines stay aligned where descriptions
     wrap (see the media query below). */
  min-height: 1.7em;
  margin: 6px 0 0;
  color: rgba(210, 225, 235, 0.7);
  font-size: clamp(0.8125rem, 0.9vw, 0.84375rem);
  line-height: 1.45;
}

/* Cramped 3-column band: descriptions wrap to two lines at different points
   (Explorer holds one line while Plus/Pro wrap), so reserve two lines here to
   keep the price row aligned. Above this band every description is one line. */
@media (min-width: 701px) and (max-width: 1100px) {
  body.landing-3d #pricing .plan-desc {
    min-height: 2.9em;
  }
}

body.landing-3d #pricing .plan-price {
  display: flex;
  align-items: baseline;
  min-height: 44px;
  /* Deliberate separation below the description — the price opens the decision
     block. */
  margin-top: clamp(16px, 1.5vw, 18px);
  color: var(--pp-fg);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

body.landing-3d #pricing .plan-price-currency {
  margin-right: 2px;
  color: rgba(205, 220, 230, 0.62);
  font-size: 1.05rem;
  font-weight: 600;
}

body.landing-3d #pricing .plan-price-amount {
  font-size: clamp(2.375rem, 2.9vw, 2.625rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

/* Free reads a step below the paid figures. */
body.landing-3d #pricing .plan-card[data-plan="explorer"] .plan-price-amount {
  font-size: clamp(2.125rem, 2.5vw, 2.25rem);
}

body.landing-3d #pricing .plan-price-cents {
  color: rgba(238, 244, 255, 0.62);
  font-size: 1rem;
  font-weight: 550;
  letter-spacing: -0.01em;
}

body.landing-3d #pricing .plan-price-period {
  margin-left: 8px;
  color: rgba(205, 220, 230, 0.62);
  font-size: 0.78rem;
  font-weight: 500;
}

body.landing-3d #pricing .plan-billing-note {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: var(--pp-faint);
  font-size: 0.75rem;
  line-height: 1.4;
}

/* ── CTAs (deliberately not .btn/.depth-btn — those carry landing-wide
      uppercase/fill/width behaviors this design opts out of) ────────────── */

body.landing-3d #pricing .plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  /* Seated close under the price block (price + billing note) so the two read
     as one decision group, with the feature divider opening below. */
  margin-top: clamp(14px, 1.4vw, 16px);
  padding: 0 20px;
  border-radius: 11px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

body.landing-3d #pricing .plan-cta:focus-visible {
  outline: 2px solid rgba(35, 209, 139, 0.7);
  outline-offset: 2px;
}

body.landing-3d #pricing .plan-cta-outline {
  /* A defined hairline, not a disabled ghost — the outline reads as an
     intentional choice beside the filled primary. */
  border: 1px solid rgba(214, 236, 245, 0.26);
  background: transparent;
  color: rgba(235, 245, 250, 0.86);
}

body.landing-3d #pricing .plan-cta-outline:hover {
  border-color: rgba(214, 236, 245, 0.36);
  background: rgba(255, 255, 255, 0.035);
  color: var(--pp-fg);
}

body.landing-3d #pricing .plan-cta-primary {
  /* A deeper, richer cut of the sitewide green primary — dialed down from the
     hero fill for the pricing decision moment: less saturated, less glow, a
     very subtle top highlight. Reads premium and considered, not app-store. */
  border: 1px solid rgba(31, 168, 115, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #24b382, #10885b);
  /* Near-black, faintly green — legible on the fill without the harshness of
     pure black. */
  color: #071510;
  font-weight: 700;
  box-shadow:
    0 9px 20px -14px rgba(12, 110, 74, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.landing-3d #pricing .plan-cta-primary:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #29bd8a, #149063);
  border-color: rgba(35, 185, 127, 0.58);
  color: #071510;
  transform: translateY(-1px);
  box-shadow:
    0 13px 24px -14px rgba(12, 120, 80, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* Pro: outlined like Explorer, one register more present. */
body.landing-3d #pricing .plan-cta-outline-pro {
  border: 1px solid rgba(214, 236, 245, 0.26);
  background: transparent;
  color: rgba(235, 245, 250, 0.86);
}

body.landing-3d #pricing .plan-cta-outline-pro:hover {
  border-color: rgba(35, 209, 139, 0.4);
  background: rgba(255, 255, 255, 0.035);
  color: var(--pp-fg);
}

/* ── Bullets ───────────────────────────────────────────────────────────── */

body.landing-3d #pricing .plan-points {
  display: grid;
  gap: 0;
  /* A hairline divider opens the "what's included" zone, separating the
     feature list from the decision block (name → price → CTA) above. The 16px
     bottom margin guarantees breathing room above the bottom-pinned footnote
     even on the tallest card. */
  margin: clamp(20px, 1.9vw, 22px) 0 16px;
  padding: clamp(18px, 1.7vw, 20px) 0 0;
  border-top: 1px solid var(--pp-line);
  list-style: none;
}

body.landing-3d #pricing .plan-points li {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 6px 0;
  color: rgba(220, 235, 240, 0.76);
  font-size: clamp(0.8125rem, 0.95vw, 0.875rem);
  line-height: 1.5;
}

body.landing-3d #pricing .plan-points li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 0.18em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.1 6.5 4.8 9.1 9.9 3.2' fill='none' stroke='%2323d18b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.72;
}

/* Extra bullets show inline on desktop; the duplicate "View details"
   disclosure is a mobile affordance. */
body.landing-3d #pricing .plan-more {
  display: none;
}

body.landing-3d #pricing .plan-footnote {
  /* Bottom-pinned closing line — but a real plan note, not fine print: these
     call out the key differentiator ("No live monitoring or alerts included",
     "Includes everything in Explorer") so they read clearly above the hairline
     that matches the feature divider. */
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--pp-line);
  color: rgba(206, 220, 232, 0.66);
  font-size: 0.76rem;
  line-height: 1.45;
}

/* ── Trust line ────────────────────────────────────────────────────────── */

body.landing-3d #pricing .plans-trust {
  margin: clamp(32px, 3.2vw, 38px) auto 0;
  color: rgba(205, 220, 230, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  text-align: center;
}

/* ── Compare all features ──────────────────────────────────────────────── */

body.landing-3d #pricing .pricing-compare {
  margin-top: 13px;
}

body.landing-3d #pricing .pricing-compare-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 40px;
  margin: 0 auto;
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(35, 209, 139, 0.78);
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 650;
  list-style: none;
  transition: color 160ms ease;
}

body.landing-3d #pricing .pricing-compare-trigger::-webkit-details-marker {
  display: none;
}

body.landing-3d #pricing .pricing-compare-trigger:hover {
  color: rgba(35, 209, 139, 0.88);
}

body.landing-3d #pricing .pricing-compare-trigger:focus-visible {
  outline: 2px solid rgba(35, 209, 139, 0.7);
  outline-offset: 2px;
}

body.landing-3d #pricing .pricing-compare-chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--pp-accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

body.landing-3d #pricing .pricing-compare[open] .pricing-compare-chevron {
  transform: rotate(180deg);
}

body.landing-3d #pricing .pricing-compare-body {
  margin-top: clamp(28px, 3vw, 44px);
  overflow: hidden;
  border: 1px solid var(--pp-line);
  border-radius: 18px;
  /* Premium comparison matrix on the shared product-card material, seated
     with a grounded shadow — not a spreadsheet pasted below the cards. */
  background: linear-gradient(180deg, rgba(8, 22, 31, 0.94), rgba(4, 12, 18, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

/* Shared marks (table + mobile stack). */
body.landing-3d #pricing .cmp-yes svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: rgba(35, 209, 139, 0.74);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

body.landing-3d #pricing .cmp-no {
  color: rgba(200, 216, 236, 0.35);
  font-weight: 500;
}

body.landing-3d #pricing .cmp-text {
  color: rgba(222, 234, 250, 0.7);
}

/* Desktop matrix. */
body.landing-3d #pricing .cmp-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

body.landing-3d #pricing .cmp-table th,
body.landing-3d #pricing .cmp-table td {
  padding: 14px clamp(16px, 1.6vw, 24px);
  font-size: clamp(0.84rem, 0.98vw, 0.9rem);
  text-align: center;
  vertical-align: middle;
}

body.landing-3d #pricing .cmp-table th:first-child {
  width: 30%;
  text-align: left;
}

body.landing-3d #pricing .cmp-table thead th {
  padding-top: clamp(18px, 1.8vw, 26px);
  padding-bottom: clamp(16px, 1.6vw, 22px);
  border-bottom: 1px solid var(--pp-line);
  background: rgba(255, 255, 255, 0.02);
  vertical-align: top;
}

body.landing-3d #pricing .cmp-features-head {
  color: rgba(200, 220, 230, 0.56);
  font-family: var(--depth-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.landing-3d #pricing .cmp-head-name {
  display: block;
  color: var(--pp-fg);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.landing-3d #pricing .cmp-head-flag {
  display: block;
  margin-top: 6px;
  color: rgba(35, 209, 139, 0.76);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

body.landing-3d #pricing .cmp-head-price {
  display: block;
  margin-top: 6px;
  color: rgba(222, 234, 250, 0.78);
  font-size: 0.8rem;
  font-weight: 550;
  font-variant-numeric: tabular-nums;
}

body.landing-3d #pricing .cmp-head-tagline {
  display: block;
  margin-top: 5px;
  color: var(--pp-faint);
  font-size: 0.74rem;
  font-weight: 450;
  line-height: 1.35;
}

body.landing-3d #pricing .cmp-group-row th {
  padding-top: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--pp-line-faint);
  color: rgba(200, 216, 236, 0.58);
  font-family: var(--depth-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.landing-3d #pricing .cmp-table tbody th[scope="row"] {
  border-bottom: 1px solid var(--pp-line-faint);
  color: rgba(222, 234, 250, 0.82);
  /* Inter ships static weights, so 500 keeps the half-step under the 600
     plan-name headers instead of snapping up to 600 itself. */
  font-weight: 500;
}

body.landing-3d #pricing .cmp-table tbody td {
  border-bottom: 1px solid var(--pp-line-faint);
  color: rgba(210, 225, 235, 0.72);
  font-weight: 500;
}

body.landing-3d #pricing .cmp-table tbody tr:last-child th,
body.landing-3d #pricing .cmp-table tbody tr:last-child td {
  border-bottom: 0;
}

body.landing-3d #pricing .cmp-table .cmp-col-plus {
  background: rgba(35, 209, 139, 0.022);
  /* Barely-there vertical hairlines seat the recommended column without a
     glowing green rail. */
  box-shadow:
    inset 1px 0 0 rgba(35, 209, 139, 0.045),
    inset -1px 0 0 rgba(35, 209, 139, 0.045);
}

/* A faint band carries the eye across the row on pointer devices — the long
   traverse from feature label to the plan columns stays connected. */
@media (hover: hover) and (pointer: fine) {
  body.landing-3d #pricing .cmp-table tbody tr:not(.cmp-group-row):hover th[scope="row"],
  body.landing-3d #pricing .cmp-table tbody tr:not(.cmp-group-row):hover td {
    background-color: rgba(255, 255, 255, 0.015);
  }

  /* The recommended column keeps its green seat under the hover band. */
  body.landing-3d #pricing .cmp-table tbody tr:not(.cmp-group-row):hover td.cmp-col-plus {
    background-color: rgba(35, 209, 139, 0.035);
  }
}

/* Mobile stack is hidden wherever the table renders. */
body.landing-3d #pricing .cmp-stack {
  display: none;
}

/* Native-details open/close eases where supported (same pattern as the FAQ). */
body.landing-3d #pricing .pricing-compare::details-content {
  block-size: 0;
  overflow: clip;
  transition: block-size 260ms cubic-bezier(0.2, 0.75, 0.25, 1), content-visibility 260ms allow-discrete;
}

body.landing-3d #pricing .pricing-compare[open]::details-content {
  block-size: auto;
}

/* ── Mobile ────────────────────────────────────────────────────────────── */

@media (max-width: 700px) {
  body.landing-3d #pricing {
    padding-top: clamp(44px, 6svh, 60px);
    padding-bottom: clamp(44px, 6.5svh, 64px);
  }

  body.landing-3d #pricing .depth-heading {
    font-size: clamp(1.68rem, 7.4vw, 2.1rem);
    line-height: 1.16;
  }

  body.landing-3d #pricing .depth-copy {
    font-size: clamp(0.92rem, 3.8vw, 1rem);
  }

  body.landing-3d #pricing .depth-section-head {
    margin-bottom: clamp(14px, 2.2svh, 20px);
  }

  body.landing-3d #pricing .pricing-carousel {
    --pricing-card-w: min(88vw, 21.5rem);
    --pricing-carousel-edge: max(
      var(--mobile-page-gutter, 18px),
      calc((100vw - var(--pricing-card-w)) / 2)
    );
  }

  body.landing-3d #pricing .pricing-carousel-track {
    width: calc(100% + (var(--mobile-page-gutter, 18px) * 2));
    margin-inline: calc(var(--mobile-page-gutter, 18px) * -1);
    margin-block: -8px -22px;
    padding-block: 8px 22px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: var(--pricing-carousel-edge);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    /* Only feather the very outer edge — a wider fade (8%) swallowed the ~32px
       neighbour-card peek entirely, so the adjacent plans read as invisible on
       first load. A 3% ramp softens the edge yet leaves the faint traces. */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  }

  body.landing-3d #pricing .pricing-carousel-track::-webkit-scrollbar {
    display: none;
  }

  body.landing-3d #pricing .plans-grid {
    width: max-content;
    grid-auto-flow: column;
    grid-auto-columns: var(--pricing-card-w);
    grid-template-columns: none;
    gap: clamp(12px, 3.4vw, 16px);
    padding-inline: var(--pricing-carousel-edge);
  }

  body.landing-3d #pricing .plan-card {
    width: 100%;
    padding: 22px 18px 20px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  body.landing-3d #pricing .plan-flag {
    top: 22px;
    right: 18px;
  }

  body.landing-3d #pricing .plan-desc {
    min-height: 0;
    max-width: none;
  }

  body.landing-3d #pricing .plan-price {
    min-height: 0;
    margin-top: 12px;
  }

  body.landing-3d #pricing .plan-price-amount {
    font-size: clamp(1.7rem, 7vw, 2rem);
  }

  body.landing-3d #pricing .plan-cta {
    margin-top: 12px;
  }

  body.landing-3d #pricing .plan-points {
    /* Phones size cards to content: keep the original tight rhythm above the
       footnote (the desktop 16px reserve is for the bottom-pinned variant) and
       drop the desktop feature divider — the stacked cards stay uncluttered. */
    margin: 12px 0 0;
    padding-top: 0;
    border-top: 0;
  }

  body.landing-3d #pricing .plan-points li {
    font-size: clamp(0.83rem, 3.4vw, 0.9rem);
  }

  /* Five bullets, then a quiet disclosure for the rest. The li qualifier keeps
     this ahead of the base `.plan-points li` display rule. */
  body.landing-3d #pricing .plan-points li.plan-point-extra {
    display: none;
  }

  body.landing-3d #pricing .plan-more {
    display: block;
    margin-top: 2px;
  }

  body.landing-3d #pricing .plan-more summary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    padding: 4px 0;
    color: var(--pp-accent);
    cursor: pointer;
    font-size: clamp(0.78rem, 3.2vw, 0.84rem);
    font-weight: 600;
    list-style: none;
  }

  body.landing-3d #pricing .plan-more summary::-webkit-details-marker {
    display: none;
  }

  body.landing-3d #pricing .plan-more summary::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
  }

  body.landing-3d #pricing .plan-more[open] summary::after {
    transform: translateY(1px) rotate(-135deg);
  }

  body.landing-3d #pricing .plan-more .plan-points {
    margin-top: 2px;
  }

  body.landing-3d #pricing .plan-footnote {
    margin-top: 10px;
    padding-top: 10px;
  }

  /* The prev/next arrows are dropped on mobile — swiping the cards side to
     side is self-evident, so the carousel needs no chrome. */
  body.landing-3d #pricing .pricing-carousel-controls {
    display: none;
  }

  body.landing-3d #pricing .pricing-carousel-arrow {
    appearance: none;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    display: inline-grid;
    place-items: center;
    position: absolute;
    top: 50%;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(214, 236, 245, 0.18);
    border-radius: 50%;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
      rgba(7, 20, 29, 0.82);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    color: rgba(226, 239, 246, 0.78);
    pointer-events: auto;
    transform: translateY(-50%);
    transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, opacity 160ms ease, transform 160ms ease;
  }

  body.landing-3d #pricing [data-pricing-carousel-prev] {
    left: max(-4px, calc(var(--pricing-carousel-edge) - var(--mobile-page-gutter, 18px) - 18px));
  }

  body.landing-3d #pricing [data-pricing-carousel-next] {
    right: max(-4px, calc(var(--pricing-carousel-edge) - var(--mobile-page-gutter, 18px) - 18px));
  }

  body.landing-3d #pricing .pricing-carousel-arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  body.landing-3d #pricing .pricing-carousel-arrow:not(:disabled):active {
    transform: translateY(-50%) scale(0.96);
  }

  body.landing-3d #pricing .pricing-carousel-arrow:disabled {
    cursor: default;
    border-color: rgba(214, 236, 245, 0.1);
    background: rgba(7, 20, 29, 0.48);
    box-shadow: none;
    color: rgba(226, 239, 246, 0.3);
    opacity: 0.52;
  }

  body.landing-3d #pricing .pricing-carousel-arrow:focus-visible {
    outline: 2px solid rgba(35, 209, 139, 0.72);
    outline-offset: 3px;
  }

  body.landing-3d #pricing .plans-trust {
    margin-top: 8px;
    text-align: center;
  }

  body.landing-3d #pricing .pricing-compare {
    margin-top: 6px;
    text-align: center;
  }

  /* Comparison: stacked per-feature rows behind category disclosures. */
  body.landing-3d #pricing .cmp-table {
    display: none;
  }

  body.landing-3d #pricing .cmp-stack {
    display: block;
    padding: 4px 16px 10px;
  }

  body.landing-3d #pricing .cmp-group + .cmp-group {
    border-top: 1px solid var(--pp-line);
  }

  body.landing-3d #pricing .cmp-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 12px 0;
    color: var(--pp-fg);
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 600;
    list-style: none;
  }

  body.landing-3d #pricing .cmp-group summary::-webkit-details-marker {
    display: none;
  }

  body.landing-3d #pricing .cmp-group summary::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid var(--pp-faint);
    border-bottom: 1.5px solid var(--pp-faint);
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  body.landing-3d #pricing .cmp-group[open] summary::after {
    transform: rotate(-135deg);
  }

  body.landing-3d #pricing .cmp-item {
    padding: 10px 0 12px;
    border-top: 1px solid var(--pp-line-faint);
  }

  body.landing-3d #pricing .cmp-item-name {
    margin: 0 0 8px;
    color: rgba(238, 244, 255, 0.85);
    font-size: 0.83rem;
    font-weight: 550;
    line-height: 1.35;
  }

  body.landing-3d #pricing .cmp-item-vals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.landing-3d #pricing .cmp-item-vals > div {
    display: grid;
    gap: 3px;
    align-content: start;
  }

  body.landing-3d #pricing .cmp-item-vals > div > span:first-child {
    color: var(--pp-faint);
    font-family: var(--depth-mono);
    font-size: 0.54rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  body.landing-3d #pricing .cmp-item-vals .cmp-text,
  body.landing-3d #pricing .cmp-item-vals .cmp-no {
    font-size: 0.76rem;
  }

  body.landing-3d #pricing .cmp-item-vals .cmp-col-plus > span:first-child {
    color: var(--pp-accent-dim);
  }
}
