/* ==========================================================================
   claude-custom.css
   --------------------------------------------------------------------------
   The ONLY stylesheet Claude writes to. Loaded last, after custom.css, so
   rules here win on equal specificity without needing !important.

   READ-ONLY — never edit any of these:
     style.css            critical.css        bootstrap-grid.css
     font-awesome.min.css slick.min.css       flickity.css
     flickity-fullscreen.css                  stylebackup.css
     custom.css           <- the developer's file, also off-limits

   Rules for anything added below:
     1. Check core first and reuse what exists (.btn, .slogan, .title-line-left,
        the grid and spacing utilities). See /theme-guide.html for the full set.
     2. Scope every rule to its component. No bare element or global selectors.
     3. Core carries 8 !important declarations (style.css lines 20, 250, 271,
        272, 313, 332, 333, 4498). Override with equal-or-greater priority —
        never by editing core.
     4. If an admin or content change achieves the same result, do that instead
        and add nothing here.
   ========================================================================== */

/* No rules yet. */

/* ==========================================================================
   Hero — Scrolling Video   (block: hero-scroll-video)
   Pinned stage: the video holds while scenes cross-fade, then the page
   continues. Desktop only; stacks normally on mobile and for reduced motion.
   ========================================================================== */

/* Core applies padding to every section outside its own allow-list
   (style.css: section:not(.main-slide-video, .main-slider-block,
   .main-slider-cover)). Cancel it here rather than touching core. */
section.psx-hero,
section.psx-hero:first-child {
  padding-top: 0;
  padding-bottom: 0;
  /* Core reserves 120px on ordinary sections to clear the fixed header, but
     exempts its own heroes (.main-slide-video, .main-slider-block,
     .main-slider-cover) so they run full-bleed beneath it. This is a hero,
     so it follows that same pattern. */
  margin-top: 0;
  position: relative;
}

/* Scroll distance = one viewport per scene. The block caps at 4 scenes. */
.psx-hero[data-scene-count="2"] { height: 200vh; }
.psx-hero[data-scene-count="3"] { height: 300vh; }
.psx-hero[data-scene-count="4"] { height: 400vh; }

.psx-hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.psx-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Darker on the left, where the copy sits, so the footage stays visible
   on the right. Sits above the video, below the text. */
.psx-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(19, 18, 19, .88) 0%, rgba(19, 18, 19, .70) 45%, rgba(19, 18, 19, .35) 100%);
}

.psx-hero__scenes {
  position: relative;
  z-index: 2;
  width: 100%;
}

.psx-hero__scene {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility .5s ease;
}

.psx-hero__scene--on {
  opacity: 1;
  visibility: visible;
}

.psx-hero__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.psx-hero__copy { flex: 1 1 55%; min-width: 0; }
.psx-hero__figure { flex: 0 1 40%; min-width: 0; }
/* No blanket `.psx-hero__figure img` rule: at (0,1,1) it outranks the
   individual layer classes at (0,1,0) and silently resized the float.
   Each layer sets its own dimensions instead. */
.psx-hero__figure img { display: block; height: auto; }

/* Core centres h2 and gives it an underline rule via ::before. Neither suits
   a left-aligned hero, so both are reset for this component only. */
.psx-hero__heading {
  text-align: left;
  padding-bottom: 0;
  margin-bottom: 18px;
}

.psx-hero__heading::before { display: none; }

/* Body copy inherits #a4a4a4 from core, which is too weak over footage. */
.psx-hero__text {
  color: #fff;
  max-width: 46ch;
  margin-bottom: 26px;
}

.psx-hero__cta { margin-bottom: 0; }

/* --- Mobile: no pinning. Scenes become ordinary stacked content. --------- */
@media (max-width: 991px) {
  .psx-hero,
  .psx-hero[data-scene-count="2"],
  .psx-hero[data-scene-count="3"],
  .psx-hero[data-scene-count="4"] {
    height: auto;
  }

  .psx-hero__stage {
    position: relative;
    height: auto;
    display: block;
  }

  .psx-hero__video {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .psx-hero__scrim { display: none; }

  .psx-hero__scenes { background: #131213; }

  .psx-hero__scene {
    position: relative;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 36px 0;
  }

  .psx-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .psx-hero__copy,
  .psx-hero__figure { flex: 1 1 auto; width: 100%; }
}

/* --- Reduced motion: everything visible, nothing pinned, no fades -------- */
@media (prefers-reduced-motion: reduce) {
  .psx-hero,
  .psx-hero[data-scene-count="2"],
  .psx-hero[data-scene-count="3"],
  .psx-hero[data-scene-count="4"] {
    height: auto;
  }

  .psx-hero__stage {
    position: relative;
    height: auto;
    display: block;
  }

  .psx-hero__scene {
    position: relative;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    padding: 36px 0;
  }
}

/* --- Scene indicator ------------------------------------------------------
   Reuses the theme's slider nav (.main-slider-nav / .main-slide-nav): the
   152px thumbnail, 36px numeral, dark veil and 5px accent border are all
   already defined in style.css.

   EVERY selector is scoped under .psx-hero. Those classes belong to the live
   slider on /resins, /reseller and the homepage — unscoped rules would break
   all three.
   -------------------------------------------------------------------------- */

.psx-hero .psx-hero__nav {
  position: absolute;
  right: 0;
  bottom: 55px;
  z-index: 3;
  display: flex;
  gap: 10px;
  padding-bottom: 0;      /* theme reserves 53px for slick arrows we don't have */
  margin-right: 0;        /* theme pulls -10px for slick's slide gutters */
}

.psx-hero .psx-hero__nav-item {
  flex: 0 0 auto;
  width: 190px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.psx-hero .psx-hero__nav-item .img-cover {
  display: block;
  overflow: hidden;
}

.psx-hero .psx-hero__nav-item img {
  display: block;
  width: 100%;
  height: 152px;
  object-fit: cover;
}

/* Active state mirrors the theme's own :hover rather than inventing one. */
.psx-hero .main-slide-nav--on .img-cover { border-color: #45a7ef; }
.psx-hero .main-slide-nav--on .img-cover::before { opacity: 0; }
.psx-hero .main-slide-nav--on span {
  opacity: 1;
  text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

/* Core kills focus rings globally with `outline: none !important`
   (style.css line 20). Keyboard users need one back on a real control, so
   this override has to match that priority. */
.psx-hero .psx-hero__nav-item:focus-visible {
  outline: 2px solid #45a7ef !important;
  outline-offset: 3px;
}

/* Match the theme's own thumbnail scaling at its breakpoints. */
@media (max-width: 1440px) {
  .psx-hero .psx-hero__nav-item { width: 155px; }
  .psx-hero .psx-hero__nav-item img { height: 120px; }
}

@media (max-width: 1199px) {
  .psx-hero .psx-hero__nav-item { width: 135px; }
  .psx-hero .psx-hero__nav-item img { height: 105px; }
}

/* Below 992px the hero un-pins and every scene is ordinary stacked content,
   so an indicator would point at nothing. */
@media (max-width: 991px) {
  .psx-hero .psx-hero__nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .psx-hero .psx-hero__nav { display: none; }
}

/* --- Short viewports ------------------------------------------------------
   The theme's breakpoints are width-based, but this hero is height-bound:
   copy, figure and indicator all share one 100vh stage. On a 768px-tall
   laptop the figure and the strip collide. Cap the figure and tighten the
   strip so everything stays inside the fold.
   -------------------------------------------------------------------------- */

.psx-hero__figure img { max-height: 46vh; object-fit: contain; }

@media (max-height: 860px) {
  .psx-hero .psx-hero__nav { bottom: 28px; gap: 8px; }
  .psx-hero .psx-hero__nav-item { width: 150px; }
  .psx-hero .psx-hero__nav-item img { height: 92px; }
  .psx-hero .psx-hero__nav-item span { font-size: 26px; bottom: 12px; }
  .psx-hero__figure img { max-height: 38vh; }
  .psx-hero__text { margin-bottom: 18px; }
  .psx-hero__heading { margin-bottom: 12px; }
}

@media (max-height: 700px) {
  .psx-hero .psx-hero__nav-item { width: 120px; }
  .psx-hero .psx-hero__nav-item img { height: 72px; }
  .psx-hero .psx-hero__nav-item span { font-size: 22px; }
  .psx-hero__figure img { max-height: 30vh; }
}

/* --- Scene artwork: stage panel, product, floating detail -----------------
   Layers, back to front: backdrop panel -> brand glow -> product (with a
   silhouette shadow) -> floating detail -> accent frame.
   Every element is optional; a scene with only a product image renders
   exactly as it did before this was added.
   -------------------------------------------------------------------------- */

.psx-hero__stagepanel {
  position: relative;
  display: block;
  line-height: 0;          /* kill inline-image descender gap */
  /* Shrink-wrap to the panel image. Without this the box takes the full
     column width (530px) while a square image renders narrower (414px), so
     the frame - sized from the box - overshot the image by 96px, and
     products centred on the column instead of on the image. */
  width: fit-content;
  max-width: 100%;
}

/* Brand glow. Its job is to lift a product off the backdrop, so it only
   appears when BOTH a panel and a product are present. A panel on its own
   (e.g. a photo used as the backdrop) would otherwise get a blue haze
   painted over it: the glow is z-index 1, the panel image z-index 0. */
.psx-hero__stagepanel--panelled.psx-hero__stagepanel--has-product::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 78%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(69, 167, 239, .34), rgba(69, 167, 239, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.psx-hero__panelimg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}

/* The machine. drop-shadow follows the cut-out silhouette, which box-shadow
   cannot do on a transparent PNG. */
.psx-hero__product {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  max-height: 46vh;
  object-fit: contain;
  filter: drop-shadow(0 26px 26px rgba(0, 0, 0, .55));
}

/* When a panel is present the product sits on top of it rather than in flow.
   Backdrops are wide (1920x900) while products are square, so cap BOTH axes:
   width alone would make a square product overflow a short panel badly.
   A slight overhang past 100% height is deliberate - it breaks the frame. */
.psx-hero__stagepanel--panelled .psx-hero__product {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: 62%;
  max-height: 126%;
  transform: translate(-50%, -50%);
}

/* Floating detail — follows the theme's .price-drone idea: overlaps the
   panel edge so the composition breaks its own frame. */
.psx-hero__float {
  position: absolute;
  z-index: 3;
  bottom: -6%;
  right: -8%;
  width: 42%;
  /* vh, not %: a percentage max-height resolves against the parent's height,
     and .psx-hero__stagepanel is auto-height (set by its image), so a
     percentage is treated as none and the float overhangs unchecked. */
  max-height: 32vh;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .5));
}

/* Theme frame: default is opacity 0 with translate(-50%, -30%), revealed only
   on .serv-block-item:hover. Scoped here so those blocks keep their behaviour. */
.psx-hero .border-item {
  opacity: 1;
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: none;
}

/* --- Motion ---------------------------------------------------------------
   The theme's own @keyframes levitation is a 20s 50px circular orbit built
   for a hovering drone. A printer must not orbit, so this is a plain drift.
   -------------------------------------------------------------------------- */
@keyframes psx-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@keyframes psx-float-centred {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 8px)); }
}

.psx-hero__product { animation: psx-float 6s ease-in-out infinite; }

.psx-hero__stagepanel--panelled .psx-hero__product {
  animation: psx-float-centred 6s ease-in-out infinite;
}

/* Offset in phase so the two pieces don't move as one slab. */
.psx-hero__float { animation: psx-float 7.5s ease-in-out -2.5s infinite; }

@media (prefers-reduced-motion: reduce) {
  .psx-hero__product,
  .psx-hero__stagepanel--panelled .psx-hero__product,
  .psx-hero__float { animation: none; }
}

/* Height budget: the panel plus an overhanging float adds visual mass, so the
   existing short-viewport caps have to cover these too. */
.psx-hero__stagepanel { max-height: 46vh; }
.psx-hero__panelimg { max-height: 46vh; width: auto; }

@media (max-height: 860px) {
  .psx-hero__stagepanel,
  .psx-hero__panelimg { max-height: 38vh; }
  .psx-hero__float { width: 38%; max-height: 27vh; }
}

@media (max-height: 700px) {
  .psx-hero__stagepanel,
  .psx-hero__panelimg { max-height: 30vh; }
  .psx-hero__float { width: 34%; max-height: 22vh; }
}

/* --- Scene typography ------------------------------------------------------
   Eyebrow, two-tone headline, accent rule, staggered entrance, and a larger
   treatment for text-only scenes.
   -------------------------------------------------------------------------- */

/* Eyebrow: theme typography (Open Sans, uppercase) in the theme accent. */
.psx-hero__eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #45a7ef;
}

/* Two-tone headline. #45a7ef on the scrimmed dark stage is ~7.9:1, so the
   accent stays readable, not just decorative. */
.psx-hero__accent { color: #45a7ef; }

/* Reused core classes .title-left / .title-line-left give the 50px x 2px
   accent bar. Two collisions to resolve, both scoped to this component:
   1. .title-line-left:before sets left:0 but never resets the
      transform: translate(-50%, 0) that core's h2::before applies, which
      would shift the bar 25px left of the text.
   2. Earlier in this file .psx-hero__heading::before is display:none (to
      drop core's centred h2 underline), and .psx-hero__heading sets
      padding-bottom:0, which would sit the bar against the text.        */
.psx-hero .psx-hero__heading.title-line-left {
  padding-bottom: 16px;
  margin-bottom: 22px;
}

.psx-hero .psx-hero__heading.title-line-left::before {
  display: block;
  left: 0;
  width: 50px;
  transform: none;
}

/* Text-only scene (no product or backdrop): the thesis statement, so larger
   and allowed a wider measure. */
.psx-hero__copy--solo { flex-basis: 100%; max-width: 900px; }

.psx-hero__copy--solo .psx-hero__heading {
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.18;
}

.psx-hero__copy--solo .psx-hero__text {
  font-size: 19px;
  max-width: 52ch;
}

/* Staggered entrance. Hidden-until-active ONLY while pinning is live:
   on mobile the JS clears --on because every scene is visible stacked
   content, so an unscoped hidden state would blank the text there.
   A scene without --on is already invisible as a whole, so this adds no
   new way for content to go missing if the script fails.              */
@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .psx-hero__copy > * {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s ease;
  }

  .psx-hero__scene--on .psx-hero__copy > * {
    opacity: 1;
    transform: translateY(0);
  }

  .psx-hero__scene--on .psx-hero__copy > *:nth-child(1) { transition-delay: .05s; }
  .psx-hero__scene--on .psx-hero__copy > *:nth-child(2) { transition-delay: .14s; }
  .psx-hero__scene--on .psx-hero__copy > *:nth-child(3) { transition-delay: .23s; }
  .psx-hero__scene--on .psx-hero__copy > *:nth-child(4) { transition-delay: .32s; }
}

/* Short viewports: keep the larger solo headline inside the fold. */
@media (max-height: 860px) {
  .psx-hero__copy--solo .psx-hero__heading { font-size: clamp(30px, 2.9vw, 44px); }
  .psx-hero__copy--solo .psx-hero__text { font-size: 17px; }
  .psx-hero__eyebrow { margin-bottom: 10px; }
}

@media (max-width: 991px) {
  .psx-hero__copy--solo .psx-hero__heading { font-size: 30px; }
  .psx-hero__copy--solo .psx-hero__text { font-size: 16px; }
}

/* --- Logo above the heading ------------------------------------------------
   Replaces the eyebrow text when a scene sets a logo. Sized by height, the
   standard for logos, so wide and square marks sit on the same baseline.
   -------------------------------------------------------------------------- */
.psx-hero__logo {
  margin: 0 0 18px;
  line-height: 0;
}

.psx-hero__logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
}

.psx-hero__copy--solo .psx-hero__logo img { height: 54px; max-width: 340px; }

/* --- Large product image ---------------------------------------------------
   Scenes that carry a product get a wider image column and a bigger product.

   Why it was stuck at 400px: .psx-hero__stagepanel is width:fit-content (so a
   frame can trace a backdrop image), the product sizes to that box, and the
   template's sizes="400px" made the browser fetch a 400px file. Each held the
   other at 400. The template now requests 700w/1400w; this releases the box.

   Specificity: .psx-hero__figure img (0,1,1) caps every figure image at 46vh.
   Two-class selectors (0,2,0) below outrank it.
   -------------------------------------------------------------------------- */
.psx-hero__copy.psx-hero__copy--beside-product { flex: 1 1 42%; }
.psx-hero__figure.psx-hero__figure--product    { flex: 0 1 56%; }

/* Product with no backdrop: fill the column. */
.psx-hero__figure--product .psx-hero__stagepanel {
  width: 100%;
  max-height: none;
}

.psx-hero__figure--product .psx-hero__product {
  width: 100%;
  /* 58vh keeps the bottom edge clear of the scene indicator strip, which
     sits bottom: 55px with 120-152px thumbnails. Verified by measurement. */
  max-height: 58vh;
  object-fit: contain;
}

/* Product on a backdrop panel: the panel fills the column, the product fills
   more of the panel than the old 62% cap. */
.psx-hero__figure--product .psx-hero__panelimg {
  width: 100%;
  height: auto;
  max-height: 58vh;
  object-fit: cover;
}

.psx-hero__figure--product .psx-hero__stagepanel--panelled .psx-hero__product {
  max-width: 80%;
  max-height: 118%;
}

/* Short viewports: shrink in step with the existing caps. */
@media (max-height: 860px) {
  .psx-hero__figure--product .psx-hero__product,
  .psx-hero__figure--product .psx-hero__panelimg { max-height: 50vh; }
  .psx-hero__logo img { height: 36px; }
  .psx-hero__copy--solo .psx-hero__logo img { height: 44px; }
}

@media (max-height: 700px) {
  .psx-hero__figure--product .psx-hero__product,
  .psx-hero__figure--product .psx-hero__panelimg { max-height: 40vh; }
}

/* Mobile: columns stack, so undo the split and let the image run full width. */
@media (max-width: 991px) {
  .psx-hero__copy.psx-hero__copy--beside-product,
  .psx-hero__figure.psx-hero__figure--product { flex: 1 1 auto; width: 100%; }
  .psx-hero__figure--product .psx-hero__product { max-height: 70vw; }
  .psx-hero__logo img { height: 34px; }
}

/* --- Spec strip ------------------------------------------------------------
   Real figures under the button, filling the 548x349px dead zone measured at
   1920x1080. Number styling is NOT redefined here: the strip carries the
   .s-infographics class, so core's `.s-infographics .number` (700, 48px,
   0.05em, uppercase, white, plus its 46/34/36/30px responsive steps)
   applies natively.

   Deliberately NOT reused:
   - .block-icon: a #292929 tile, 206px min-height, inset frame, blue hover
     fill. Too tall for this space, and would make static figures look
     clickable.
   - .s-info-bg: never added, so `.s-info-bg.s-infographics` (678px
     min-height) can never match.
   -------------------------------------------------------------------------- */
.psx-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  margin: 32px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

/* Label comes first in the DOM so screen readers announce
   "Finest pixel, 40um"; column-reverse puts the number on top visually. */
.psx-hero__stat {
  display: flex;
  flex-direction: column-reverse;
  min-width: 0;
}

.psx-hero__stat-value {
  margin: 0;
  white-space: nowrap;
}

/* Mirrors core's .block-icon h6 treatment (uppercase, 0.1em, 600) without
   pulling in the tile. #a4a4a4 is the theme body grey. */
.psx-hero__stat-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a4a4a4;
}

/* Stagger: the strip is the copy's 5th child, so it rises last. */
@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .psx-hero__scene--on .psx-hero__copy > *:nth-child(5) { transition-delay: .41s; }
}

/* Short screens. 1366x768 leaves ~35px under the header once the strip is
   in, so shrink the numbers. (0,3,0) outranks core's (0,2,0). */
@media (max-height: 860px) {
  .psx-hero .psx-hero__stats { margin-top: 22px; padding-top: 16px; }
}

/* Very short screens: the strip is an enhancement. Hide it rather than
   crush the heading and button. */
@media (max-height: 700px) {
  .psx-hero__stats { display: none; }
}

@media (max-width: 991px) {
  .psx-hero__stats { gap: 14px 28px; margin-top: 24px; }
}

/* --- Spec strip: preserve unit case ----------------------------------------
   Core's `.s-infographics .number` sets text-transform: uppercase. That
   turned "40µm" into "40ΜM": the micro sign (U+00B5) uppercases to Greek
   capital Mu (U+039C), which renders identically to a Latin M - so
   micrometres displayed as millimetres, a 1000x error on a published spec.
   Units must keep the case typed in the admin ("mm", "µm").
   (0,3,0) outranks core's (0,2,0).
   -------------------------------------------------------------------------- */
.psx-hero .s-infographics .psx-hero__stat-value { text-transform: none; }

/* Keep three figures on one row inside the 548px copy column. */
.psx-hero__stats { column-gap: 28px; }

/* --- Spec strip: figure size ------------------------------------------------
   At core's 48px the three figures measured 143 + 189 + 219px plus two 28px
   gaps = 607px, in a 548px copy column, so the third wrapped onto its own
   row. 40px scales that to ~514px. Desktop only (>= 992px), so phones keep
   core's own .s-infographics .number steps (34 / 36 / 30px).

   The short-screen size is re-stated AFTER the 40px rule on purpose: both
   match a 1366x768 laptop, and the later rule wins at equal specificity.
   It was previously unscoped by width, which also forced 34px onto phones
   (812px tall) over core's 30px - now fixed.
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .psx-hero .s-infographics .number { font-size: 40px; }
}

@media (min-width: 992px) and (max-height: 860px) {
  .psx-hero .s-infographics .number { font-size: 34px; }
}

/* ==========================================================================
   Claude Design Hero   (block: claude-design-hero)
   The "Saudi Arabia Hero Redesign" canvas, built as its own block so the
   Scrolling Video hero above stays untouched. Every selector is prefixed
   .cdh-hero; the two blocks share no classes.

   Reused from core: .container, .btn (border, type, trailing ::before line
   and hover fill) and .border-item (the 2px #45a7ef frame). Core colours:
   #131213 ground, #45a7ef accent, #a4a4a4 body grey. #1274d7 is the logo
   blue, used to fill the button because white on #45a7ef fails WCAG AA.
   Pixel values in comments are the canvas at 1920x1080.
   ========================================================================== */

.cdh-hero {
  --cdh-header: 125px;          /* fixed site header at desktop widths */
  --cdh-art: min(76vh, 43vw);   /* artwork square: 820px at 1920x1080 */
  --cdh-rule: rgba(255, 255, 255, .12);
}

/* Same core section overrides as the Scrolling Video hero (see above). */
section.cdh-hero,
section.cdh-hero:first-child {
  position: relative;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: #131213;
}

.cdh-hero[data-scene-count="2"] { height: 200vh; }
.cdh-hero[data-scene-count="3"] { height: 300vh; }
.cdh-hero[data-scene-count="4"] { height: 400vh; }

.cdh-hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.cdh-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark where the copy sits, lighter mid-right so the footage shows, and a
   fade into the page ground along the bottom edge. */
.cdh-hero__scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(0deg, #131213 0%, rgba(19, 18, 19, 0) 24%),
    linear-gradient(90deg, rgba(19, 18, 19, .94) 0%, rgba(19, 18, 19, .82) 36%, rgba(19, 18, 19, .40) 68%, rgba(19, 18, 19, .62) 100%);
}

.cdh-hero__scenes { position: relative; z-index: 2; height: 100%; }

.cdh-hero__scene {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}

.cdh-hero__scene--on { opacity: 1; visibility: visible; }

.cdh-hero__scene .container { position: relative; height: 100%; }

/* Copy is centred in the space below the fixed header. */
.cdh-hero__inner {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  padding-top: var(--cdh-header);
  display: flex;
  align-items: center;
}

/* 52% copy + the artwork's 24px nudge below keep text clear of the printers
   and the lower label at 1440x900, where the gap measured 18px at 54%. */
.cdh-hero__copy {
  position: relative;
  z-index: 3;
  width: 52%;
  max-width: 720px;
}

.cdh-hero__scene--text .cdh-hero__copy { width: 100%; max-width: 900px; }

/* --- Copy ---------------------------------------------------------------- */

.cdh-hero__lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 34px;
}

/* --cdh-logo-scale (1-2) is set per scene from the logo's proportions, so a
   compact mark gets the same visual weight as the wide Protospeed wordmark. */
.cdh-hero__logo {
  display: block;
  width: auto;
  height: calc(32px * var(--cdh-logo-scale, 1));
  max-width: 240px;
  object-fit: contain;
  object-position: left center;
}

.cdh-hero__lockup-rule {
  display: block;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, .28);
}

.cdh-hero__tag {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #45a7ef;
}

/* (0,2,0) outranks core h1/h2 sizing at every breakpoint. Core's centred
   h2::before underline is hidden; the left bar is drawn with ::after so it
   works the same whether the tag is h1 or h2. */
.cdh-hero .cdh-hero__heading {
  position: relative;
  margin: 0;
  padding: 0 0 24px;
  text-align: left;
  font-size: clamp(34px, 2.7vw, 52px);
  line-height: 1.19;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.cdh-hero .cdh-hero__heading::before { display: none; }

.cdh-hero .cdh-hero__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #45a7ef;
}

.cdh-hero__accent { color: #45a7ef; }
.cdh-hero__keepcase { text-transform: none; }

.cdh-hero .cdh-hero__text {
  margin: 26px 0 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .86);
}

/* Row gap 84px clears the 44px line core .btn::before draws past its edge. */
.cdh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 84px;
  margin-top: 38px;
}

.cdh-hero .btn.cdh-hero__btn {
  padding: 0 32px;
  color: #fff;
  background-color: #1274d7;
}

.cdh-hero .btn.cdh-hero__btn:hover { background-color: #45a7ef; }

.cdh-hero .cdh-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: color .3s ease;
}

.cdh-hero .cdh-hero__link:hover { color: #45a7ef; }

.cdh-hero__arrow {
  flex: none;
  fill: none;
  stroke: #45a7ef;
  stroke-width: 1.6;
  transition: transform .3s ease;
}

.cdh-hero__link:hover .cdh-hero__arrow { transform: translateX(4px); }

/* Core removes focus rings with `outline: none !important` (style.css
   line 20), so restoring them has to match that priority. */
.cdh-hero .cdh-hero__btn:focus-visible,
.cdh-hero .cdh-hero__link:focus-visible,
.cdh-hero .cdh-hero__nav-item:focus-visible {
  outline: 2px solid #45a7ef !important;
  outline-offset: 3px;
}

.cdh-hero .cdh-hero__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: #a4a4a4;
}

.cdh-hero__pin {
  flex: none;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #45a7ef;
  stroke-width: 2;
}

.cdh-hero__note-strong { font-weight: 600; color: #fff; }

/* --- Highlight strip -------------------------------------------------------
   Not core's `.s-infographics .number`: its 48px size and responsive steps
   don't fit a figure + unit pair in this column, and its uppercase would
   need the µ workaround on every value.
   -------------------------------------------------------------------------- */

.cdh-hero__strip {
  display: grid;
  grid-template-columns: repeat(var(--cdh-cols, 3), minmax(0, 1fr));
  max-width: 720px;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--cdh-rule);
}

.cdh-hero__strip[data-count="1"] { --cdh-cols: 1; }
.cdh-hero__strip[data-count="2"] { --cdh-cols: 2; }
.cdh-hero__strip[data-count="3"] { --cdh-cols: 3; }
.cdh-hero__strip[data-count="4"] { --cdh-cols: 4; }

.cdh-hero__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 24px 28px 0;
  border-left: 1px solid var(--cdh-rule);
}

.cdh-hero__item:first-child { padding-left: 0; border-left: 0; }
.cdh-hero__item:last-child { padding-right: 0; }

.cdh-hero__item dt,
.cdh-hero__item dd { margin: 0; }

/* Figures: label is first in the DOM, the figure shows on top. */
.cdh-hero__strip--figures .cdh-hero__item {
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.cdh-hero__item-value {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 42px;
  line-height: 48px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  color: #fff;
}

.cdh-hero__strip[data-count="4"] .cdh-hero__item-value { font-size: 32px; line-height: 40px; }

.cdh-hero__item-unit {
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #45a7ef;
}

.cdh-hero__item-label,
.cdh-hero__item-desc {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a4a4a4;
}

.cdh-hero__strip--names .cdh-hero__item { padding-left: 20px; padding-right: 20px; }
.cdh-hero__strip--names .cdh-hero__item:first-child { padding-left: 0; }
.cdh-hero__strip--names .cdh-hero__item:last-child { padding-right: 0; }

.cdh-hero__item-name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}

.cdh-hero__item-desc { font-size: 12px; line-height: 17px; letter-spacing: .08em; }

/* Narrow desktops and landscape tablets: four names in one row overflowed
   ("FOROWAX" ran into "VELVET" at 1024px), so they shrink, then go 2 x 2. */
@media (min-width: 992px) and (max-width: 1439px) {
  .cdh-hero__strip--names .cdh-hero__item-name { font-size: 18px; }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .cdh-hero__strip.cdh-hero__strip--names[data-count="4"] { --cdh-cols: 2; }
  .cdh-hero__strip--names[data-count="4"] .cdh-hero__item { padding: 14px 12px 14px 14px; }
  .cdh-hero__strip--names[data-count="4"] .cdh-hero__item:nth-child(odd) { padding-left: 0; border-left: 0; }
  .cdh-hero__strip--names[data-count="4"] .cdh-hero__item:nth-child(even) { border-left: 1px solid var(--cdh-rule); }
  .cdh-hero__strip--names[data-count="4"] .cdh-hero__item:nth-child(n+3) { border-top: 1px solid var(--cdh-rule); }
}

/* --- Artwork ---------------------------------------------------------------
   One square (--cdh-art) holds every layer; positions are percentages of it,
   taken from the canvas, so the composition scales as one piece.
   Back to front: glow -> frame or photo panel -> floor -> product ->
   photo tile -> labels.
   -------------------------------------------------------------------------- */

.cdh-hero__visual {
  position: absolute;
  z-index: 2;
  left: calc(50% + 24px);
  top: calc(50% + var(--cdh-header) / 2);
  width: var(--cdh-art);
  height: var(--cdh-art);
  transform: translateY(calc(-50% - 2vh));
}

.cdh-hero__art { position: relative; width: 100%; height: 100%; }

.cdh-hero__glow {
  position: absolute;
  left: 3.7%;
  top: 9.8%;
  width: 95%;
  height: 95%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(18, 116, 215, .30), rgba(18, 116, 215, 0));
  pointer-events: none;
}

/* Printer layout: core .border-item as a free-standing outline the product
   stands in front of. (0,3,0) outranks core's size, offset and opacity. */
.cdh-hero .cdh-hero__frame.border-item {
  left: 22%;
  top: 14.6%;
  width: 63.4%;
  height: 79.9%;
  transform: none;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.cdh-hero__floor {
  position: absolute;
  z-index: 1;
  left: -2.4%;
  top: 96.6%;
  width: 109.8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(69, 167, 239, 0), rgba(69, 167, 239, .55) 50%, rgba(69, 167, 239, 0));
}

.cdh-hero__floor::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 91%;
  height: calc(var(--cdh-art) * .11);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(69, 167, 239, .28), rgba(69, 167, 239, 0));
}

/* drop-shadow follows a cut-out's silhouette; box-shadow can't. */
.cdh-hero__product {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .6));
}

/* Photo-panel layout */
.cdh-hero__scene--panel .cdh-hero__glow { left: 4.9%; top: 3.7%; width: 100%; height: 100%; }

.cdh-hero__panel {
  position: absolute;
  z-index: 1;
  left: 18.3%;
  top: 3.7%;
  width: 73.2%;
  height: 87.8%;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
}

.cdh-hero__panel-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cdh-hero__panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(19, 18, 19, .10) 0%, rgba(19, 18, 19, .15) 55%, rgba(19, 18, 19, .78) 100%);
}

/* Core frame rests at opacity 0 / translate(-50%, -30%) for
   .serv-block-item:hover; made permanent here only. */
.cdh-hero__panel .border-item {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cdh-hero__scene--panel .cdh-hero__product {
  left: 11%;
  top: 18.5%;
  width: auto;
  max-width: 60%;
  height: 78%;
  object-position: left bottom;
}

.cdh-hero__scene--panel .cdh-hero__floor::before { left: 34%; width: 58%; }

.cdh-hero__detail {
  position: absolute;
  z-index: 3;
  left: 69.5%;
  top: 64.6%;
  width: 36.6%;
  height: 30.5%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .55);
}

.cdh-hero__detail-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cdh-hero__detail-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 28px 16px 12px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, 0));
  font-size: 11px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
}

.cdh-hero__detail-caption .cdh-hero__arrow { stroke-width: 1.8; }

/* Wide-product layout: product image 1.4:1 or wider (e.g. a bottle line-up),
   detected in the template. The line-up is centred on the copy, and the frame
   hugs its lower half so the bottles rise out of it, the way the printers
   break out of theirs. (A tall frame left a big empty box above the bottles.)
   Percentages follow the image: at 106% width a 2.13:1 line-up spans 25-75%
   of the square, its bottles 30-72%. */
.cdh-hero__scene--wide .cdh-hero__glow { left: 5%; top: 22%; width: 90%; height: 62%; }

.cdh-hero__scene--wide .cdh-hero__frame.border-item {
  left: 0;
  top: 46%;
  width: 100%;
  height: 31%;
}

.cdh-hero__scene--wide .cdh-hero__product {
  top: 50%;
  left: -3%;
  width: 106%;
  height: auto;
  transform: translateY(-50%);
}

.cdh-hero__scene--wide .cdh-hero__floor { top: 72%; }

.cdh-hero__scene--wide .cdh-hero__detail { left: 66%; top: 4%; width: 34%; height: 28%; }

/* --- Product labels --------------------------------------------------------
   Each label is a zero-size point at its admin %; the dot is centred on it,
   an L-shaped leader (56px, then 40px) runs to the text.
   -------------------------------------------------------------------------- */

.cdh-hero__callout {
  position: absolute;
  z-index: 4;
  width: 0;
  height: 0;
}

.cdh-hero__callout-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #45a7ef;
  box-shadow: 0 0 0 4px rgba(69, 167, 239, .25);
}

.cdh-hero__callout-line {
  position: absolute;
  width: 40px;
  height: 56px;
  border: 0 solid rgba(255, 255, 255, .4);
}

.cdh-hero__callout-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: nowrap;
}

.cdh-hero .cdh-hero__callout-title {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
}

.cdh-hero__callout-text {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #a4a4a4;
}

.cdh-hero__callout--up-right .cdh-hero__callout-line,
.cdh-hero__callout--up-left .cdh-hero__callout-line { bottom: 0; border-top-width: 1px; }
.cdh-hero__callout--down-right .cdh-hero__callout-line,
.cdh-hero__callout--down-left .cdh-hero__callout-line { top: 0; border-bottom-width: 1px; }
.cdh-hero__callout--up-right .cdh-hero__callout-line,
.cdh-hero__callout--down-right .cdh-hero__callout-line { left: 0; border-left-width: 1px; }
.cdh-hero__callout--up-left .cdh-hero__callout-line,
.cdh-hero__callout--down-left .cdh-hero__callout-line { right: 0; border-right-width: 1px; }

.cdh-hero__callout--up-right .cdh-hero__callout-label,
.cdh-hero__callout--up-left .cdh-hero__callout-label { bottom: 56px; transform: translateY(50%); }
.cdh-hero__callout--down-right .cdh-hero__callout-label,
.cdh-hero__callout--down-left .cdh-hero__callout-label { top: 56px; transform: translateY(-50%); }
.cdh-hero__callout--up-right .cdh-hero__callout-label,
.cdh-hero__callout--down-right .cdh-hero__callout-label { left: 50px; }
.cdh-hero__callout--up-left .cdh-hero__callout-label,
.cdh-hero__callout--down-left .cdh-hero__callout-label { right: 50px; align-items: flex-end; text-align: right; }

/* --- Scene indicator -------------------------------------------------------
   Replaces the big thumbnails: number, scene name and a bar that fills when
   its scene is on. Padding lifts each button to a 44px hit target.
   -------------------------------------------------------------------------- */

.cdh-hero__nav {
  position: absolute;
  z-index: 4;
  right: 40px;
  bottom: 34px;
  display: flex;
  align-items: flex-end;
  gap: 28px;
}

.cdh-hero .cdh-hero__nav-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 10px;
  min-width: 120px;
  padding: 14px 0 0;
  white-space: nowrap;      /* "3D Printers" wrapped at a fixed 120px */
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.cdh-hero__nav-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #6f6f6f;
  transition: color .3s ease;
}

.cdh-hero__nav-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #8a8a8a;
  transition: color .3s ease;
}

.cdh-hero__nav-bar {
  grid-column: 1 / -1;
  position: relative;
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
}

.cdh-hero__nav-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #45a7ef;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}

.cdh-hero__nav-item:hover .cdh-hero__nav-name,
.cdh-hero__nav-item--on .cdh-hero__nav-name { color: #fff; }
.cdh-hero__nav-item--on .cdh-hero__nav-num { color: #45a7ef; }
.cdh-hero__nav-item--on .cdh-hero__nav-bar::after { transform: scaleX(1); }

/* --- Entrance --------------------------------------------------------------
   Only while pinning is live (>= 992px, motion allowed). On mobile the JS
   clears --on because every scene is stacked content.
   -------------------------------------------------------------------------- */
@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .cdh-hero__copy > *,
  .cdh-hero__art {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .cdh-hero__scene--on .cdh-hero__copy > *,
  .cdh-hero__scene--on .cdh-hero__art {
    opacity: 1;
    transform: none;
  }

  .cdh-hero__scene--on .cdh-hero__art { transition-delay: .1s; }
  .cdh-hero__scene--on .cdh-hero__copy > *:nth-child(1) { transition-delay: .05s; }
  .cdh-hero__scene--on .cdh-hero__copy > *:nth-child(2) { transition-delay: .13s; }
  .cdh-hero__scene--on .cdh-hero__copy > *:nth-child(3) { transition-delay: .21s; }
  .cdh-hero__scene--on .cdh-hero__copy > *:nth-child(4) { transition-delay: .29s; }
  .cdh-hero__scene--on .cdh-hero__copy > *:nth-child(5) { transition-delay: .37s; }
  .cdh-hero__scene--on .cdh-hero__copy > *:nth-child(6) { transition-delay: .45s; }
}

/* --- Narrow desktops: labels need room either side of the artwork. ------- */
@media (max-width: 1199px) {
  .cdh-hero__callout { display: none; }
}

/* --- Short desktop screens (1366x768 laptops) ----------------------------- */
@media (min-width: 992px) and (max-height: 860px) {
  .cdh-hero { --cdh-art: min(72vh, 42vw); }
  .cdh-hero__lockup { margin-bottom: 22px; }
  .cdh-hero__logo { height: calc(28px * var(--cdh-logo-scale, 1)); }
  .cdh-hero .cdh-hero__heading { font-size: clamp(30px, 2.4vw, 44px); padding-bottom: 18px; }
  .cdh-hero .cdh-hero__text { margin-top: 18px; font-size: 16px; }
  .cdh-hero__actions { margin-top: 26px; }
  .cdh-hero .cdh-hero__note { margin-top: 14px; }
  .cdh-hero__strip { margin-top: 30px; }
  .cdh-hero__item { padding-top: 16px; }
  .cdh-hero__item-value { font-size: 34px; line-height: 40px; }
  .cdh-hero__nav { bottom: 22px; }
}

@media (min-width: 992px) and (max-height: 700px) {
  .cdh-hero { --cdh-art: min(66vh, 40vw); }
  .cdh-hero__strip,
  .cdh-hero .cdh-hero__note,
  .cdh-hero__callout { display: none; }
}

/* --- Reduced motion: nothing pinned, each scene a full screen ------------ */
@media (prefers-reduced-motion: reduce) {
  .cdh-hero,
  .cdh-hero[data-scene-count="2"],
  .cdh-hero[data-scene-count="3"],
  .cdh-hero[data-scene-count="4"] { height: auto; }

  .cdh-hero__stage { position: relative; height: auto; }
  .cdh-hero__scenes { height: auto; }

  .cdh-hero__scene {
    position: relative;
    height: 100vh;
    min-height: 640px;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  .cdh-hero__nav { display: none; }
}

/* --- Mobile: scenes stack; artwork moves up under the heading ------------- */
@media (max-width: 991px) {
  .cdh-hero,
  .cdh-hero[data-scene-count="2"],
  .cdh-hero[data-scene-count="3"],
  .cdh-hero[data-scene-count="4"] { height: auto; }

  .cdh-hero__stage { position: relative; height: auto; }

  /* Footage behind the first scene only, fading into the page ground. */
  .cdh-hero__video,
  .cdh-hero__scrim { bottom: auto; height: 1100px; max-height: 100%; }

  .cdh-hero__scrim {
    background: linear-gradient(180deg, rgba(19, 18, 19, .80) 0%, rgba(19, 18, 19, .86) 55%, #131213 100%);
  }

  .cdh-hero__scenes { height: auto; }

  .cdh-hero__scene {
    position: relative;
    height: auto;
    min-height: 0;
    opacity: 1;
    visibility: visible;
    transition: none;
    padding: 76px 0 52px;     /* 50px mobile header + 26px */
  }

  .cdh-hero__scene + .cdh-hero__scene {
    padding-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .cdh-hero__scene .container,
  .cdh-hero__inner { height: auto; }

  .cdh-hero__inner {
    padding-top: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Unwrap the copy so the artwork can sit between heading and text. */
  .cdh-hero__copy { display: contents; }
  .cdh-hero__lockup { order: 1; }
  .cdh-hero .cdh-hero__heading { order: 2; }
  .cdh-hero__visual { order: 3; }
  .cdh-hero .cdh-hero__text { order: 4; }
  .cdh-hero__actions { order: 5; }
  .cdh-hero__strip { order: 6; }
  .cdh-hero .cdh-hero__note { order: 7; }

  .cdh-hero__lockup { gap: 12px; margin-bottom: 20px; }
  .cdh-hero__logo { height: calc(22px * var(--cdh-logo-scale, 1)); }
  .cdh-hero__lockup-rule { height: 14px; }
  .cdh-hero__tag { font-size: 11px; letter-spacing: .2em; }

  .cdh-hero .cdh-hero__heading {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: .06em;
    padding-bottom: 16px;
  }

  .cdh-hero .cdh-hero__heading::after { width: 40px; }

  .cdh-hero__visual {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 520px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-top: 22px;
    transform: none;
  }

  .cdh-hero__detail,
  .cdh-hero__callout { display: none; }

  /* 16:10 box: the line-up spans 12-88% of the height, its bottles 20-83%. */
  .cdh-hero__scene--wide .cdh-hero__visual { aspect-ratio: 16 / 10; }
  .cdh-hero__scene--wide .cdh-hero__product { left: 0; width: 100%; }
  .cdh-hero__scene--wide .cdh-hero__frame.border-item { top: 50%; height: 42%; }
  .cdh-hero__scene--wide .cdh-hero__floor { top: 83%; }

  .cdh-hero .cdh-hero__text { margin-top: 18px; font-size: 15px; line-height: 23px; }

  .cdh-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 24px;
  }

  .cdh-hero .cdh-hero__link { font-size: 13px; }

  .cdh-hero__strip { width: 100%; margin-top: 30px; }
  .cdh-hero__item { padding: 16px 10px 0 12px; }
  .cdh-hero__item-value { gap: 4px; font-size: 24px; line-height: 30px; letter-spacing: .02em; }
  .cdh-hero__strip[data-count="4"] .cdh-hero__item-value { font-size: 24px; line-height: 30px; }
  .cdh-hero__item-unit { font-size: 10px; }
  .cdh-hero__item-label { font-size: 11px; line-height: 15px; letter-spacing: .08em; }

  /* Names, and four figures, go 2 x 2 on phones. */
  .cdh-hero__strip.cdh-hero__strip--names,
  .cdh-hero__strip--figures[data-count="4"] { --cdh-cols: 2; }

  .cdh-hero__strip--names .cdh-hero__item,
  .cdh-hero__strip--figures[data-count="4"] .cdh-hero__item { padding: 14px 12px 14px 14px; }

  .cdh-hero__strip--names .cdh-hero__item:nth-child(odd),
  .cdh-hero__strip--figures[data-count="4"] .cdh-hero__item:nth-child(odd) { padding-left: 0; border-left: 0; }

  .cdh-hero__strip--names .cdh-hero__item:nth-child(even),
  .cdh-hero__strip--figures[data-count="4"] .cdh-hero__item:nth-child(even) { border-left: 1px solid var(--cdh-rule); }

  .cdh-hero__strip--names .cdh-hero__item:nth-child(n+3),
  .cdh-hero__strip--figures[data-count="4"] .cdh-hero__item:nth-child(n+3) { border-top: 1px solid var(--cdh-rule); }

  .cdh-hero__item-name { font-size: 16px; line-height: 22px; }
  .cdh-hero__item-desc { font-size: 11px; line-height: 15px; }

  .cdh-hero .cdh-hero__note {
    align-items: flex-start;
    margin-top: 20px;
    font-size: 13px;
    line-height: 19px;
  }

  .cdh-hero__pin { margin-top: 3px; }
  .cdh-hero__nav { display: none; }
}

/* Tablets: the fixed header grows with the viewport, from 75px at 576px to
   117px at 991px (measured), and covered the logo line at a fixed 76px. */
@media (min-width: 576px) and (max-width: 991px) {
  .cdh-hero__scene:first-child { padding-top: calc(42.8px + 10.1vw); }
}

/* ==========================================================================
   Claude product page blocks
   claude-product-hero (.cph) · claude-video-cards (.cvc) ·
   claude-feature-tiles (.cft) · claude-specs (.cspec) · claude-compare (.ccmp)

   Reused from core: .container, section spacing, h2 (35px, centred, 140x2px
   accent bar), .slogan, .btn and .block-icon. Section padding has to be set
   as `section.x` (0,1,1) to match core's `section:not(...)` rule.
   ========================================================================== */

/* µ must not be uppercased: CSS text-transform turns it into Greek capital Mu. */
.claude-keepcase { text-transform: none; }

/* --- Product hero --------------------------------------------------------- */

section.cph { padding-top: 40px; padding-bottom: 90px; }

.cph__inner { display: flex; align-items: center; gap: 60px; }
.cph__copy { flex: 1 1 54%; min-width: 0; }
.cph__visual { position: relative; flex: 0 1 46%; min-width: 0; display: flex; justify-content: flex-end; }

.cph__crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.cph__crumbs a { color: #8a8a8a; }
.cph__crumbs a:hover { color: #ffffff; }
.cph__crumbs svg { fill: none; stroke: #8a8a8a; stroke-width: 1.6; flex: none; }
.cph__crumbs-here { color: #ffffff; }

.cph__eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #45a7ef;
}

/* Product logo. --cph-logo-scale comes from the template: the same optical
   sizing as the design hero, so a squat mark isn't dwarfed by a long wordmark. */
.cph__lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
}

.cph .cph__logo {
  display: block;
  width: auto;
  height: calc(30px * var(--cph-logo-scale, 1));
  max-width: 250px;
  object-fit: contain;
}

.cph__lockup-rule {
  flex: none;
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, .22);
}

.cph .cph__eyebrow--lockup { margin: 0; }

/* The logo standing in for the heading. The heading text is still in the h1,
   visually hidden, so the page keeps a readable title. */
.cph .cph__heading--logo { padding-bottom: 26px; }

.cph .cph__title-logo {
  display: block;
  width: auto;
  height: calc(54px * var(--cph-logo-scale, 1));
  max-width: 100%;
  object-fit: contain;
}

.cph__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Core centres headings and gives h2 a ::before bar; this one is left-aligned
   and draws its own, so it works as either h1 or h2. */
.cph .cph__heading {
  position: relative;
  margin: 0;
  padding: 0 0 24px;
  text-align: left;
  font-size: clamp(30px, 2.7vw, 52px);
  line-height: 1.19;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
}

.cph .cph__heading::before { display: none; }

.cph .cph__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #45a7ef;
}

.cph__accent { color: #45a7ef; }

.cph .cph__summary {
  margin: 26px 0 0;
  max-width: 610px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .86);
}

/* 84px clears the 44px line core .btn::before draws past its right edge. */
.cph__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 84px;
  margin-top: 38px;
}

.cph .btn.cph__btn { padding: 0 32px; color: #ffffff; background-color: #1274d7; }
.cph .btn.cph__btn:hover { background-color: #45a7ef; }

.cph .cph__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: color .3s ease;
}

.cph .cph__link:hover { color: #45a7ef; }

.cph__link-icon {
  flex: none;
  fill: none;
  stroke: #45a7ef;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cph__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 20px;
  color: #a4a4a4;
}

.cph__trust li { display: flex; align-items: center; gap: 8px; }
.cph__trust svg { flex: none; fill: none; stroke: #45a7ef; stroke-width: 2.4; }

/* Flex, not a 4-column grid: a build volume ("190 × 107 × 200") is three times
   as wide as "40", and equal columns cut it off. Figures wrap instead. */
.cph__figures {
  display: flex;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

/* Label first in the DOM, figure on top visually. */
.cph__figure-item {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
  padding: 22px 16px 0;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.cph__figure-item:first-child { padding-left: 0; border-left: 0; }
.cph__figure-item:last-child { padding-right: 0; }

.cph__figure-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 42px;
  font-weight: 700;
  white-space: nowrap;
  color: #ffffff;
}

.cph__figure-value--long { font-size: clamp(18px, 1.2vw, 22px); }

.cph__figure-unit {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #45a7ef;
}

.cph__figure-label {
  margin: 0;
  font-size: 12px;
  line-height: 17px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a4a4a4;
}

.cph__frame {
  position: absolute;
  z-index: 0;
  right: 0;
  top: -36px;
  width: 92%;
  height: calc(100% + 16px);
  border: 2px solid #45a7ef;
  pointer-events: none;
}

.cph .cph__product {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .55);
}

/* --- Video cards ---------------------------------------------------------- */

.cvc__grid {
  display: grid;
  grid-template-columns: repeat(var(--cvc-cols, 4), minmax(0, 1fr));
  gap: 24px;
}

.cvc__grid[data-count="2"] { --cvc-cols: 2; }
.cvc__grid[data-count="3"], .cvc__grid[data-count="5"], .cvc__grid[data-count="6"] { --cvc-cols: 3; }
.cvc__grid[data-count="4"] { --cvc-cols: 4; }

.cvc .cvc__card {
  display: flex;
  flex-direction: column;
  background: #1c1b1c;
  border: 1px solid rgba(255, 255, 255, .08);
  color: inherit;
  text-decoration: none;
  transition: border-color .3s ease;
}

.cvc .cvc__card:hover { border-color: #45a7ef; }
.cvc .cvc__card:hover .cvc__play { background: #1274d7; }

.cvc__thumb { position: relative; display: block; aspect-ratio: 2 / 1; overflow: hidden; }
.cvc .cvc__img { display: block; width: 100%; height: 100%; object-fit: cover; }

.cvc__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #45a7ef;
  border-radius: 50%;
  background: rgba(19, 18, 19, .72);
  transition: background .3s ease;
}

.cvc__play svg { fill: #ffffff; }

.cvc__body { display: flex; flex-direction: column; gap: 8px; padding: 22px 24px 26px; }

.cvc__value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: #ffffff;
}

.cvc__unit { font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #45a7ef; }

.cvc__title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff;
}

.cvc__watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #45a7ef;
}

.cvc__watch svg { flex: none; fill: none; stroke: #45a7ef; stroke-width: 1.8; }
.cvc__watch .cvc__watch-play { fill: #45a7ef; stroke: none; }

/* --- Feature tiles -------------------------------------------------------- */

.cft__grid {
  display: grid;
  grid-template-columns: repeat(var(--cft-cols, 4), minmax(0, 1fr));
  gap: 24px;
}

.cft__grid[data-count="3"], .cft__grid[data-count="5"], .cft__grid[data-count="6"] { --cft-cols: 3; }
.cft__grid[data-count="4"], .cft__grid[data-count="7"], .cft__grid[data-count="8"] { --cft-cols: 4; }

.cft .cft__tile {
  min-height: 250px;
  padding: 40px 28px 36px;
  justify-content: flex-start;
  gap: 14px;
}

/* Core sets .block-icon img { margin-bottom: 21px; max-height: 59px } and
   shifts it on hover; these tiles are not links, so nothing moves. */
.cft .cft__icon { display: block; width: auto; height: 60px; max-height: 60px; margin: 0; }
.cft .block-icon h6,
.cft .block-icon:hover h6 { padding-top: 18px; }
.cft .block-icon:hover { background-color: #292929; }
.cft .block-icon:hover::before { border-color: #45a7ef; }
.cft .block-icon:hover h6::before { background-color: #45a7ef; }
.cft .block-icon:hover .cft__icon { margin-bottom: 0; }

.cft__text { margin: 0; font-size: 15px; line-height: 23px; text-align: center; }

/* --- Specifications ------------------------------------------------------- */

section.cspec--versions { padding-bottom: 10px; }

.cspec__versions {
  display: grid;
  grid-template-columns: repeat(var(--cspec-vcols, 2), minmax(0, 1fr));
  gap: 24px;
}

.cspec__versions[data-count="1"] { --cspec-vcols: 1; }

.cspec__version {
  display: flex;
  flex-direction: column;
  padding: 44px 48px;
  background: #1c1b1c;
  border: 1px solid rgba(255, 255, 255, .1);
}

.cspec__version-label {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #45a7ef;
}

.cspec__version-title {
  margin-top: 10px;
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
}

.cspec__version-figures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.cspec__version-figure { display: flex; flex-direction: column; gap: 6px; padding: 22px 0 0 28px; border-left: 1px solid rgba(255, 255, 255, .12); }
.cspec__version-figure:first-child { padding-left: 0; border-left: 0; }

.cspec__version-value { font-size: 30px; line-height: 38px; font-weight: 700; color: #ffffff; }
.cspec__version-caption { font-size: 12px; line-height: 17px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #a4a4a4; }
.cspec .cspec__version-text { margin: 26px 0 0; font-size: 16px; line-height: 25px; }
.cspec .cspec__footnote { margin: 30px 0 0; text-align: center; font-size: 14px; line-height: 20px; letter-spacing: .04em; }

.cspec__groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 60px;
}

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

.cspec__group-name {
  padding-bottom: 12px;
  border-bottom: 2px solid #45a7ef;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #45a7ef;
}

.cspec__list { margin: 0; padding: 0; }

.cspec__row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.cspec__key { margin: 0; font-size: 12px; line-height: 22px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ffffff; }
.cspec__value { margin: 0; font-size: 16px; line-height: 22px; color: #d2d2d2; }
.cspec__cta { margin: 56px 0 0; text-align: center; }

/* --- Compare -------------------------------------------------------------- */

.ccmp__table {
  display: grid;
  grid-template-columns: 260px repeat(var(--ccmp-cols, 3), minmax(0, 1fr));
}

.ccmp__table[data-count="2"] { --ccmp-cols: 2; }
.ccmp__table[data-count="4"] { --ccmp-cols: 4; }

.ccmp__cell {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 16px;
  line-height: 23px;
  color: #d2d2d2;
}

.ccmp__key { padding-left: 0; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ffffff; }
.ccmp__cell--corner { border-bottom: 0; }

.ccmp__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 30px 24px;
  text-align: center;
}

.ccmp .ccmp__img { display: block; width: 170px; height: 170px; object-fit: cover; }
.ccmp__name { font-size: 22px; line-height: 30px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ffffff; }
.ccmp__tagline { font-size: 12px; line-height: 18px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #45a7ef; }

/* The column for the printer this page is about. */
.ccmp__cell--current { background: rgba(69, 167, 239, .07); border-left: 2px solid #45a7ef; border-right: 2px solid #45a7ef; color: #ffffff; }
.ccmp__head.ccmp__cell--current { border-top: 2px solid #45a7ef; }
.ccmp__foot { padding-top: 26px; text-align: center; border-bottom: 0; }
.ccmp__foot.ccmp__cell--current { border-bottom: 2px solid #45a7ef; }

.ccmp .ccmp__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}

.ccmp .ccmp__link:hover { color: #45a7ef; }
.ccmp__link svg { flex: none; fill: none; stroke: #45a7ef; stroke-width: 1.6; }

/* --- Split: photo beside copy and a two-column list ----------------------- */

.csp__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.csp--photo-right .csp__media { order: 2; }

.csp__media { position: relative; display: flex; align-items: center; justify-content: center; }

.csp__glow {
  position: absolute;
  left: 5%;
  top: 8%;
  width: 90%;
  height: 84%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(18, 116, 215, .24), rgba(18, 116, 215, 0));
  pointer-events: none;
}

.csp .csp__img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .6));
}

.csp__copy { display: flex; flex-direction: column; align-items: flex-start; }

.csp__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #45a7ef;
}

/* Core centres h2 and its bar; this one sits left, beside the photo. */
.csp .csp__heading { margin: 0 0 20px; text-align: left; }
.csp .csp__heading::before { left: 0; width: 50px; transform: none; }
.csp__accent { color: #45a7ef; }
.csp .csp__text { margin: 6px 0 0; max-width: 560px; }

.csp__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.csp__list[data-count="1"], .csp__list[data-count="2"], .csp__list[data-count="3"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.csp__item { display: flex; flex-direction: column; gap: 4px; padding: 18px 16px 18px 20px; border-left: 1px solid rgba(255, 255, 255, .12); }
.csp__item:nth-child(odd) { padding-left: 0; border-left: 0; }
.csp__item:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .12); }

.csp__name { margin: 0; font-size: 20px; line-height: 28px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ffffff; }
.csp__note { margin: 0; font-size: 12px; line-height: 17px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #a4a4a4; }

.csp .csp__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: color .3s ease;
}

.csp .csp__link:hover { color: #45a7ef; }
.csp__link svg { flex: none; fill: none; stroke: #45a7ef; stroke-width: 1.6; transition: transform .3s ease; }
.csp__link:hover svg { transform: translateX(4px); }

/* --- Closing call-to-action band ------------------------------------------ */

.ccta__band {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 60px;
  background: #1c1b1c;
  text-align: center;
}

.ccta__frame {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid #45a7ef;
  pointer-events: none;
}

.ccta__eyebrow {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #45a7ef;
}

.ccta .ccta__heading { margin: 14px 0 20px; }
.ccta__accent { color: #45a7ef; }

.ccta .ccta__text {
  margin: 6px 0 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, .86);
}

.ccta__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 84px; margin-top: 40px; }
.ccta .btn.ccta__btn { padding: 0 32px; color: #ffffff; background-color: #1274d7; }
.ccta .btn.ccta__btn:hover { background-color: #45a7ef; }

.ccta .ccta__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: color .3s ease;
}

.ccta .ccta__link:hover { color: #45a7ef; }
.ccta__link svg { flex: none; fill: none; stroke: #45a7ef; stroke-width: 1.6; }

/* --- Narrow desktops and tablets ------------------------------------------ */

@media (max-width: 1365px) {
  .csp__inner { gap: 48px; }
  .cspec__row { grid-template-columns: 170px minmax(0, 1fr); gap: 16px; }
  .ccmp__table { grid-template-columns: 200px repeat(var(--ccmp-cols, 3), minmax(0, 1fr)); }
  .ccmp__cell { padding: 16px 18px; font-size: 15px; }
  .ccmp .ccmp__img { width: 140px; height: 140px; }
  .cvc__value { font-size: 32px; line-height: 40px; }
  .cspec__version { padding: 36px 34px; }
}

@media (max-width: 1199px) {
  .cft__grid[data-count] { --cft-cols: 2; }
  .cvc__grid[data-count="4"] { --cvc-cols: 2; }
}

@media (max-width: 991px) {
  /* Hero: heading, then the photo, then the rest - as in the design. */
  .cph__inner { flex-direction: column; align-items: flex-start; gap: 0; }
  .cph__copy { display: contents; }
  .cph__crumbs { order: 1; margin-bottom: 20px; }
  .cph__eyebrow { order: 2; }
  .cph__lockup { order: 2; }
  .cph .cph__heading { order: 3; }
  .cph__visual { order: 4; width: 100%; max-width: 520px; margin-top: 26px; justify-content: flex-start; }
  .cph .cph__summary { order: 5; margin-top: 22px; font-size: 16px; }
  .cph__actions { order: 6; flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 24px; }
  .cph__figures { order: 7; width: 100%; }
  .cph__trust { order: 8; margin-top: 22px; }
  .cph__figure-item { flex: 1 1 45%; padding: 16px 12px 16px 14px; }
  .cph__figure-item:nth-child(odd) { padding-left: 0; border-left: 0; }
  .cph__figure-item:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .12); }
  .cph__frame { top: -20px; width: 88%; height: calc(100% + 10px); }

  /* Tiles become rows on phones and tablets: eight centred tiles made the page
     about 1,100px longer than it needs to be. */
  .cft__grid[data-count] { --cft-cols: 1; gap: 0; }
  .cft .cft__tile {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    min-height: 0;
    padding: 20px 16px;
    background: none;
    box-shadow: none;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .cft .cft__tile::before { display: none; }
  .cft .cft__icon { height: 42px; max-height: 42px; flex: none; }
  .cft .block-icon h6,
  .cft .block-icon:hover h6 { padding-top: 0; text-align: left; }
  .cft .block-icon h6::before { display: none; }
  .cft__text { text-align: left; font-size: 14px; line-height: 21px; }

  .cvc__grid[data-count] { --cvc-cols: 2; }

  .cspec__versions[data-count] { --cspec-vcols: 1; }
  .cspec__groups { grid-template-columns: minmax(0, 1fr); gap: 36px; }

  /* The comparison keeps its columns and scrolls sideways instead of squashing. */
  .ccmp .container { overflow-x: auto; }
  .ccmp__table { min-width: 720px; }

  .csp__inner { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .csp--photo-right .csp__media { order: 0; }
  .csp .csp__img { max-width: 520px; margin: 0 auto; }
  .csp__list { margin-top: 26px; }

  .ccta__band { padding: 48px 24px; }
  .ccta .ccta__text { font-size: 16px; line-height: 25px; }
  .ccta__actions { flex-direction: column; gap: 20px; margin-top: 30px; }
}

@media (max-width: 575px) {
  /* No room for logo and label side by side on a phone: the label drops below. */
  .cph__lockup { flex-wrap: wrap; gap: 10px 12px; margin-bottom: 16px; }
  .cph .cph__logo { height: calc(25px * var(--cph-logo-scale, 1)); }
  .cph__lockup-rule { display: none; }
  .cph .cph__eyebrow--lockup { flex: 1 0 100%; }
  .cph .cph__title-logo { height: calc(40px * var(--cph-logo-scale, 1)); }
  .cft__grid[data-count] { --cft-cols: 1; }
  .cvc__grid[data-count] { --cvc-cols: 1; }
  .cspec__row { grid-template-columns: minmax(0, 1fr); gap: 2px; padding: 12px 0; }
  .cspec__version { padding: 28px 22px; }
  .cspec__version-title { font-size: 21px; line-height: 30px; }
  .cspec__version-value { font-size: 24px; line-height: 32px; }
}

/* ==========================================================================
   HTML block: "Readable intro" section style   (block: html, section_style)
   Opt-in per block. Every other HTML block with a background keeps the theme
   look. Measured on the casting-trees photo (media 278), which has pure-white
   highlights: the theme's 40% layer gives 2.6:1 behind white text; 72% gives
   ~7:1 (WCAG AA needs 4.5:1). The layer eases to 45% past the text column so
   the photo still reads on the right.
   ========================================================================== */

/* custom.css .parallax forces 25px padding with !important. */
section.parallax.claude-readable {
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

.parallax.claude-readable::before {
  background: linear-gradient(90deg, rgba(19, 18, 19, .72) 0%, rgba(19, 18, 19, .72) 55%, rgba(19, 18, 19, .45) 100%);
}

.claude-readable h1 {
  position: relative;
  max-width: 900px;
  margin: 0 0 26px;
  padding-bottom: 22px;
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1.25;
  text-align: left;
}

.claude-readable h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #45a7ef;
}

/* Core centres h2 and its underline; keep any h2 in this style on the left. */
.claude-readable h2 { text-align: left; }
.claude-readable h2::before { left: 0; transform: none; }

.claude-readable p {
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .9);
}

.claude-readable .btn { margin-top: 12px; }

@media (max-width: 991px) {
  section.parallax.claude-readable {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
    background-attachment: scroll;   /* fixed backgrounds stutter or are ignored on phones */
  }

  .parallax.claude-readable::before { background: rgba(19, 18, 19, .72); }
  .claude-readable h1 { font-size: 26px; }
  .claude-readable p { font-size: 16px; }
}

/* ==========================================================================
   Claude Stats   (block: claude-stats)
   The theme's infographics component, minus three things that suit its demo
   page but not a strip of figures: the default bg-2.jpg photo, the 678-776px
   minimum height, and the hover state (these tiles are not links).
   ========================================================================== */

section.s-info-bg.claude-stats {
  min-height: 0;
  padding: 100px 0;
  background-image: none;
  background-attachment: scroll;
}

/* Top-aligned, not the theme's centred column: when labels wrap to different
   line counts (1024px), centring put the figures at different heights. */
.claude-stats .block-icon {
  min-height: 170px;
  justify-content: flex-start;
  padding-top: 32px;
}
.claude-stats .block-icon:hover { background-color: #292929; }
.claude-stats .block-icon:hover::before { border-color: #45a7ef; }
.claude-stats .block-icon:hover h6::before { background-color: #45a7ef; }

.claude-stats .block-icon h6,
.claude-stats .block-icon:hover h6 { padding-top: 22px; }

/* "LIFETIME" must fit a quarter-width tile: 40px at 1920, 24px at 1024. */
.claude-stats .number {
  font-size: clamp(24px, 2.2vw, 40px);
  white-space: nowrap;
}

.claude-stats .block-icon-cover { margin-bottom: 20px; }

@media (max-width: 575px) {
  .claude-stats .block-icon { min-height: 130px; padding: 16px 10px; }
  .claude-stats .number { font-size: 22px; letter-spacing: .02em; }
  .claude-stats .block-icon h6 { font-size: 12px; }
}

/* ==========================================================================
   Claude Gallery   (block: claude-gallery)
   A photo grid for product pages, for printers that have plenty of stills but
   few videos. Clicking a photo opens Fancybox 5, which the theme already
   loads, so this block adds no JavaScript of its own.
   ========================================================================== */

.cgal__grid {
  display: grid;
  grid-template-columns: repeat(var(--cgal-cols, 3), minmax(0, 1fr));
  gap: 24px;
}

.cgal__item {
  margin: 0;
  min-width: 0;
}

.cgal__thumb {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #1c1b1c;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: border-color .3s ease;
}

.cgal .cgal__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.cgal .cgal__thumb:hover { border-color: #45a7ef; }
.cgal .cgal__thumb:hover .cgal__image { transform: scale(1.06); }
.cgal .cgal__thumb:hover .cgal__zoom { opacity: 1; transform: none; }

/* The magnifier says "this opens larger" without a caption having to. */
.cgal__zoom {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 18, 19, .72);
  border: 2px solid #45a7ef;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease;
}

.cgal__zoom svg { fill: none; stroke: #ffffff; stroke-width: 1.8; stroke-linecap: round; }

.cgal__caption {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .04em;
  color: #a4a4a4;
}

/* Mosaic: the first photo takes two columns and two rows, the rest fill in
   around it. Captions move onto the photo so the rows stay square. */
.cgal__grid.cgal--mosaic { grid-auto-rows: 1fr; }
.cgal--mosaic .cgal__item:first-child { grid-column: span 2; grid-row: span 2; }
.cgal--mosaic .cgal__thumb { aspect-ratio: auto; height: 100%; min-height: 220px; }

.cgal__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(19, 18, 19, .88), rgba(19, 18, 19, 0));
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ffffff;
}

.cgal__accent { color: #45a7ef; }

@media (max-width: 1199px) {
  .cgal__grid { gap: 20px; }
}

@media (max-width: 991px) {
  .cgal__grid { --cgal-cols: 2 !important; }
  .cgal--mosaic .cgal__item:first-child { grid-row: span 1; }
  .cgal--mosaic .cgal__thumb { aspect-ratio: 3 / 2; height: auto; }
}

@media (max-width: 575px) {
  /* Two across on phones: one across made a six-photo gallery ~1,700px long. */
  .cgal__grid { --cgal-cols: 2 !important; gap: 16px 12px; }
  .cgal--mosaic .cgal__item:first-child { grid-column: span 2; }
  .cgal__caption { margin-top: 8px; font-size: 13px; line-height: 18px; letter-spacing: 0; }
  .cgal__overlay { padding: 26px 10px 10px; font-size: 11px; line-height: 15px; }
  .cgal__zoom { opacity: 1; transform: none; width: 30px; height: 30px; right: 8px; top: 8px; }
  .cgal__zoom svg { width: 16px; height: 16px; }
}

/* ==========================================================================
   Section flow   (App\Support\ClaudeSection, used by the Claude blocks)
   Opt-in per block from its "Section flow" panel; nothing here applies to a
   section without a .cflow class.
   - Spacing: sections pair into chapters. .cflow--chapter opens one with more
     space above, .cflow--continue follows on with less, and the last section
     of a chapter gets the larger gap below.
   - Band: neighbouring .cflow--lift sections read as one lighter band that
     fades in at the first and out at the last (worked out from the order, so
     nothing to set by hand).
   - Guide line: .cflow--line sections count themselves with a CSS counter
     (01, 02 ...). From 1600px the line runs beside the content (the 1356px
     container leaves a 122px+ gutter); below that each section shows a short
     thread and numbered ring above its label instead.
   The blocks print straight into <main>, so neighbours are true siblings.
   ========================================================================== */

main { counter-reset: cflow; }

main > section.cflow.cflow { position: relative; margin-bottom: 0; }
main > section.cflow.cflow:not(:first-child) { margin-top: 0; }
main > section.cflow--line { counter-increment: cflow; }

/* The theme's 40% black layer on .s-info-bg would print a darker strip here. */
main > section.claude-stats.cflow::before { display: none; }

/* --- Spacing ---------------------------------------------------------------- */

main > section.cflow--chapter.cflow--chapter { --cflow-dot: 172px; padding-top: 170px; padding-bottom: 80px; }
main > section.cflow--continue.cflow--continue { --cflow-dot: 112px; padding-top: 110px; padding-bottom: 80px; }
main > section.cflow.cflow:is(.cflow--chapter, .cflow--continue):is(:has(+ section.cflow--chapter), :not(:has(+ section.cflow))) { padding-bottom: 170px; }

@media (max-width: 991px) {
  main > section.cflow--chapter.cflow--chapter { padding-top: 110px; padding-bottom: 56px; }
  main > section.cflow--continue.cflow--continue { padding-top: 72px; padding-bottom: 56px; }
  main > section.cflow.cflow:is(.cflow--chapter, .cflow--continue):is(:has(+ section.cflow--chapter), :not(:has(+ section.cflow))) { padding-bottom: 110px; }
}

@media (max-width: 575px) {
  main > section.cflow--chapter.cflow--chapter { padding-top: 88px; padding-bottom: 48px; }
  main > section.cflow--continue.cflow--continue { padding-top: 64px; padding-bottom: 48px; }
  main > section.cflow.cflow:is(.cflow--chapter, .cflow--continue):is(:has(+ section.cflow--chapter), :not(:has(+ section.cflow))) { padding-bottom: 96px; }
}

/* --- Lighter band -------------------------------------------------------------- */

main > section.cflow--lift.cflow--lift {
  --cflow-in: 0px;
  --cflow-out: 0px;
  background-color: #1b1a1b;
  background-image: linear-gradient(180deg, #131213 0, #1b1a1b var(--cflow-in), #1b1a1b calc(100% - var(--cflow-out)), #131213 100%);
}

main > section.cflow--lift.cflow--lift:not(section.cflow--lift + section.cflow--lift) { --cflow-in: 240px; }
main > section.cflow--lift.cflow--lift:not(:has(+ section.cflow--lift)) { --cflow-out: 240px; }

@media (max-width: 991px) {
  main > section.cflow--lift.cflow--lift:not(section.cflow--lift + section.cflow--lift) { --cflow-in: 140px; }
  main > section.cflow--lift.cflow--lift:not(:has(+ section.cflow--lift)) { --cflow-out: 140px; }
}

/* Soft glows on dark sections: behind the closing band and the feature tiles. */
main > section.ccta.cflow:not(.cflow--lift) {
  background-image: radial-gradient(ellipse 60% 48% at 50% 52%, rgba(18, 116, 215, .17), rgba(18, 116, 215, 0) 72%);
}
main > section.cft.cflow:not(.cflow--lift) {
  background-image: radial-gradient(ellipse 52% 42% at 50% 64%, rgba(18, 116, 215, .11), rgba(18, 116, 215, 0) 72%);
}
.cflow .ccta__band { box-shadow: 0 50px 100px rgba(0, 0, 0, .45); }

/* --- Guide line (wide screens) ------------------------------------------------- */

.cflow-rail { display: none; }

@media (min-width: 1600px) {
  .cflow-rail {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: calc(50% - 777px);
    display: block;
    width: 1px;
    background: rgba(69, 167, 239, .26);
    pointer-events: none;
  }

  /* First of a run fades in under the section above; last fades out below its marker. */
  main > section.cflow--line:not(section.cflow--line + section.cflow--line) > .cflow-rail {
    background: linear-gradient(180deg, rgba(69, 167, 239, 0) 0, rgba(69, 167, 239, .38) var(--cflow-dot, 52px), rgba(69, 167, 239, .26) 100%);
  }
  main > section.cflow--line:not(:has(+ section.cflow--line)) > .cflow-rail {
    background: linear-gradient(180deg, rgba(69, 167, 239, .26) 0, rgba(69, 167, 239, .38) var(--cflow-dot, 52px), rgba(69, 167, 239, 0) calc(var(--cflow-dot, 52px) + 260px));
  }

  .cflow-rail__dot {
    position: absolute;
    top: var(--cflow-dot, 52px);
    left: -6px;
    width: 13px;
    height: 13px;
    border: 2px solid #45a7ef;
    border-radius: 50%;
    background: #131213;
  }
  .cflow--lift .cflow-rail__dot { background: #1b1a1b; }

  .cflow-rail__dot::after {
    content: counter(cflow, decimal-leading-zero);
    position: absolute;
    top: 50%;
    left: 23px;
    transform: translateY(-50%);
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #45a7ef;
  }

  main > section.cflow--line:not(:has(+ section.cflow--line)) .cflow-rail__dot {
    background: #45a7ef;
    box-shadow: 0 0 0 7px rgba(69, 167, 239, .16);
  }
}

/* --- Guide thread (laptops, tablets, phones) ----------------------------------- */

.cflow-thread {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 11px;
  margin: 0 auto 18px;
}
.cflow-thread--left { margin-left: 0; }

.cflow-thread::before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(69, 167, 239, 0), rgba(69, 167, 239, .55));
}

.cflow-thread__ring {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  border: 2px solid #45a7ef;
  border-radius: 50%;
}

.cflow-thread__ring::after {
  content: counter(cflow, decimal-leading-zero);
  position: absolute;
  top: -5px;
  left: 19px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #45a7ef;
}

main > section.cflow--line:not(:has(+ section.cflow--line)) .cflow-thread__ring {
  background: #45a7ef;
  box-shadow: 0 0 0 5px rgba(69, 167, 239, .16);
}

@media (min-width: 1600px) {
  .cflow-thread { display: none; }
}

/* Small blue label above a centred heading (Stats, Compare, Gallery, Tiles,
   Video Cards, Steps, Guides). */
.claude-eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
  color: #45a7ef;
}

/* Compare: optional line under the table; label column stays put while the
   table scrolls sideways on smaller screens. */
.ccmp .ccmp__footnote {
  max-width: 960px;
  margin: 56px auto 0;
  padding: 22px 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #d2d2d2;
}

@media (max-width: 991px) {
  .ccmp { --ccmp-bg: #131213; }
  .ccmp.cflow--lift { --ccmp-bg: #1b1a1b; }
  .ccmp .ccmp__key,
  .ccmp .ccmp__cell--corner { position: sticky; left: 0; z-index: 1; background: var(--ccmp-bg); }
  .ccmp .ccmp__footnote { margin-top: 32px; padding: 16px 18px; font-size: 14px; line-height: 22px; text-align: left; }
}

/* ==========================================================================
   Claude Intro   (block: claude-intro)
   The answer-first opening: copy on the left, a framed "At a glance" list of
   facts on the right with a soft glow behind it.
   ========================================================================== */

.cin__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 90px;
  align-items: center;
}
.cin--solo .cin__inner { grid-template-columns: minmax(0, 1fr); }
.cin--solo .cin__copy { max-width: 820px; }

.cin__copy { display: flex; flex-direction: column; align-items: flex-start; }

.cin__eyebrow,
.cin__facts-title,
.cwtb__eyebrow,
.cfaq__eyebrow,
.cgd__label {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #45a7ef;
}

/* Core centres h2 and its bar; these sit left. */
.cin .cin__heading,
.cwtb .cwtb__heading,
.cfaq .cfaq__heading { margin: 0 0 32px; text-align: left; }
.cin .cin__heading::before,
.cwtb .cwtb__heading::before,
.cfaq .cfaq__heading::before { left: 0; width: 50px; transform: none; }
.cin__accent, .cwtb__accent, .cfaq__accent, .cstep__accent, .cgd__accent { color: #45a7ef; }

.cin .cin__lead,
.cwtb .cwtb__lead {
  margin: 0 0 18px;
  max-width: 690px;
  font-size: 19px;
  line-height: 30px;
  color: #d2d2d2;
}
.cin .cin__text,
.cwtb .cwtb__text { margin: 0; max-width: 690px; }

.cin__actions,
.cwtb__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 100px;
  margin-top: 44px;
}

.cin .btn.cin__btn,
.cwtb .btn.cwtb__btn { padding: 0 32px; color: #ffffff; background-color: #1274d7; }
.cin .btn.cin__btn:hover,
.cwtb .btn.cwtb__btn:hover { background-color: #45a7ef; }

.cin .cin__link,
.cwtb .cwtb__link,
.cfaq .cfaq__link,
.cgd .cgd__all-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: color .3s ease;
}
.cin .cin__link:hover,
.cwtb .cwtb__link:hover,
.cfaq .cfaq__link:hover,
.cgd .cgd__all-link:hover { color: #45a7ef; }
.cin__link svg, .cwtb__link svg, .cfaq__link svg, .cgd__all-link svg, .cgd__more svg {
  flex: none;
  fill: none;
  stroke: #45a7ef;
  stroke-width: 1.6;
  transition: transform .3s ease;
}
.cin__link:hover svg, .cwtb__link:hover svg, .cfaq__link:hover svg, .cgd__all-link:hover svg, .cgd__card:hover .cgd__more svg { transform: translateX(4px); }

.cin__panel { position: relative; }

.cin__glow {
  position: absolute;
  left: -14%;
  top: -22%;
  width: 128%;
  height: 144%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(18, 116, 215, .16), rgba(18, 116, 215, 0));
  pointer-events: none;
}

.cin__facts {
  position: relative;
  padding: 44px 48px;
  background: #1c1b1c;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .35);
}

.cin__frame {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #45a7ef;
  pointer-events: none;
}

.cin .cin__facts-title { position: relative; margin-bottom: 6px; }

.cin__list { position: relative; margin: 0; }

.cin__row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.cin__row:last-child { border-bottom: 0; }

.cin__row dt {
  margin: 0;
  font-size: 12px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff;
}

.cin__row dd { margin: 0; font-size: 16px; line-height: 22px; color: #d2d2d2; }

/* ==========================================================================
   Claude Steps   (block: claude-steps)
   ========================================================================== */

.cstep__list {
  --cstep-cols: 4;
  display: grid;
  grid-template-columns: repeat(var(--cstep-cols), minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid #45a7ef;
}
.cstep__list[data-count="2"] { --cstep-cols: 2; }
.cstep__list[data-count="3"],
.cstep__list[data-count="5"],
.cstep__list[data-count="6"] { --cstep-cols: 3; }

.cstep__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 40px 36px 10px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}
.cstep__item:first-child,
.cstep__list[data-count="5"] .cstep__item:nth-child(4),
.cstep__list[data-count="6"] .cstep__item:nth-child(4) { padding-left: 0; border-left: 0; }
.cstep__item:last-child { padding-right: 0; }

.cstep__top { display: flex; align-items: center; justify-content: space-between; }
.cstep__num { font-size: 44px; line-height: 50px; font-weight: 700; color: #45a7ef; }

.cstep__icon {
  flex: none;
  fill: none;
  stroke: #45a7ef;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cstep .cstep__title {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
  color: #ffffff;
}
.cstep .cstep__title::before { display: none; }

.cstep .cstep__text { margin: 0; font-size: 16px; line-height: 24px; }

/* ==========================================================================
   Claude Where to Buy   (block: claude-where-to-buy)
   ========================================================================== */

.cwtb__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: start;
}

.cwtb__copy { display: flex; flex-direction: column; align-items: flex-start; }

.cwtb__regions { display: flex; flex-direction: column; gap: 32px; padding-top: 6px; }

.cwtb .cwtb__region-name {
  margin: 0 0 14px;
  padding: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: left;
  color: #ffffff;
}
.cwtb .cwtb__region-name::before { display: none; }

.cwtb__countries { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }

.cwtb__countries li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 15px;
  line-height: 38px;
  color: #d2d2d2;
}

/* ==========================================================================
   Claude FAQ   (block: claude-faq)
   Native <details>, so it opens and closes without JavaScript.
   ========================================================================== */

.cfaq__inner {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: 90px;
  align-items: start;
}

.cfaq__intro { display: flex; flex-direction: column; align-items: flex-start; }
.cfaq .cfaq__heading { margin-bottom: 30px; }
.cfaq .cfaq__text { margin: 0 0 34px; }

.cfaq__list { display: flex; flex-direction: column; gap: 12px; }

.cfaq__item {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 5px;
  background: #131213;
  transition: border-color .3s ease;
}
.cfaq__item[open],
.cfaq__item:hover { border-color: rgba(69, 167, 239, .5); }

.cfaq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  list-style: none;
  cursor: pointer;
}
.cfaq__q::-webkit-details-marker { display: none; }
.cfaq__q::marker { content: ""; }

.cfaq .cfaq__question {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
  text-align: left;
  color: #ffffff;
}
.cfaq .cfaq__question::before { display: none; }

.cfaq__chev {
  flex: none;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  transition: transform .3s ease;
}
.cfaq__item[open] .cfaq__chev { transform: rotate(180deg); }

.cfaq__a { padding: 0 20px 22px; font-size: 16px; line-height: 25px; color: #d2d2d2; }

/* ==========================================================================
   Claude Guides   (block: claude-guides)
   ========================================================================== */

.cgd__grid {
  --cgd-cols: 3;
  display: grid;
  grid-template-columns: repeat(var(--cgd-cols), minmax(0, 1fr));
  gap: 28px;
}
.cgd__grid[data-count="1"] { --cgd-cols: 1; max-width: 460px; margin: 0 auto; }
.cgd__grid[data-count="2"],
.cgd__grid[data-count="4"] { --cgd-cols: 2; }

.cgd .cgd__card {
  display: flex;
  flex-direction: column;
  background: #1c1b1c;
  border: 1px solid rgba(255, 255, 255, .08);
  color: inherit;
  text-decoration: none;
  transition: border-color .3s ease;
}
.cgd .cgd__card:hover { border-color: #45a7ef; }

.cgd__thumb { display: block; aspect-ratio: 2 / 1; overflow: hidden; background: #0d0c0d; }
.cgd .cgd__img { display: block; width: 100%; height: 100%; object-fit: cover; }

.cgd__body { display: flex; flex-direction: column; gap: 12px; padding: 26px 28px 30px; }
.cgd .cgd__label { margin: 0; font-size: 12px; }

.cgd .cgd__title {
  margin: 0;
  padding: 0;
  font-size: 19px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  text-align: left;
  color: #ffffff;
}
.cgd .cgd__title::before { display: none; }

.cgd__excerpt { font-size: 15px; line-height: 23px; color: #a4a4a4; }

.cgd__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff;
}

.cgd__all { margin-top: 50px; text-align: center; }

/* --- New blocks: smaller screens ---------------------------------------------- */

@media (max-width: 1199px) {
  .cin__inner, .cwtb__inner, .cfaq__inner { gap: 50px; }
  .cstep__item { padding: 34px 24px 10px; }
  .cgd__grid { gap: 20px; }
}

@media (max-width: 991px) {
  .cin__inner, .cwtb__inner, .cfaq__inner { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .cin__panel { max-width: 600px; width: 100%; }

  /* Steps become a vertical timeline. */
  .cstep__list { grid-template-columns: minmax(0, 1fr); margin-left: 4px; border-top: 0; border-left: 2px solid #45a7ef; }
  .cstep__item,
  .cstep__item:first-child,
  .cstep__list[data-count] .cstep__item:nth-child(4) {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 8px;
    row-gap: 2px;
    padding: 0 0 28px 18px;
    border-left: 0;
  }
  .cstep__item:last-child { padding-bottom: 0; }
  .cstep__top { grid-row: span 2; align-items: flex-start; }
  .cstep__num { font-size: 30px; line-height: 34px; }
  .cstep__icon { display: none; }
  .cstep .cstep__title { font-size: 15px; line-height: 22px; }
  .cstep .cstep__text { font-size: 14px; line-height: 21px; }

  .cgd__grid[data-count] { --cgd-cols: 2; }
}

@media (max-width: 575px) {
  .cin .cin__lead, .cwtb .cwtb__lead { font-size: 16px; line-height: 26px; }
  .cin__actions, .cwtb__actions { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 30px; }
  .cin__facts { padding: 28px 24px; }
  .cin__frame { top: 8px; left: 8px; right: 8px; bottom: 8px; }
  .cin__row { grid-template-columns: 110px minmax(0, 1fr); gap: 14px; padding: 12px 0; }
  .cin__row dt { font-size: 11px; line-height: 20px; }
  .cin__row dd { font-size: 14px; line-height: 20px; }

  .cwtb__regions { gap: 22px; }
  .cwtb__countries { gap: 8px; }
  .cwtb__countries li { padding: 0 12px; font-size: 14px; line-height: 34px; }

  .cfaq__q { padding: 14px 16px; gap: 14px; min-height: 56px; }
  .cfaq .cfaq__question { font-size: 14px; line-height: 20px; }
  .cfaq__a { padding: 0 16px 18px; font-size: 14px; line-height: 22px; }

  /* Guides become compact rows: thumbnail and title. */
  .cgd__grid[data-count] { --cgd-cols: 1; gap: 14px; max-width: none; }
  .cgd .cgd__card { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 14px; padding: 14px; }
  .cgd__thumb { width: 110px; height: 110px; aspect-ratio: auto; }
  .cgd__body { gap: 6px; padding: 0; }
  .cgd .cgd__label { font-size: 10px; }
  .cgd .cgd__title { font-size: 15px; line-height: 21px; }
  .cgd__excerpt, .cgd__more { display: none; }
  .cgd__all { margin-top: 24px; }
}

.ccmp__footnote-lead { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #ffffff; }

/* Balanced line breaks, so a heading never ends on one short orphan word. */
.cin .cin__heading, .cwtb .cwtb__heading, .cfaq .cfaq__heading,
.cflow h2, .cgd .cgd__title { text-wrap: balance; }

/* The glow behind "At a glance" may reach past the screen edge; clip it
   rather than let the page scroll sideways. */
section.cin { overflow-x: clip; }

/* ==========================================================================
   Claude Product Cards   (block: claude-product-cards)
   Full cards for the printer overview page; compact rows for Home and the
   "other printers" section of each product page.
   ========================================================================== */

/* A jump link (#compare) lands with the heading clear of the fixed header. */
:is(.cflow, .cpc, .ccmp, .cgal, .cfaq, .cgd, .csp, .cft, .cvc, .cspec, .cstep, .cwtb, .cin, .ccta, .claude-stats)[id] { scroll-margin-top: 60px; }

.cpc .cpc__lead {
  max-width: 900px;
  margin: 0 auto 64px;
  font-size: 19px;
  line-height: 30px;
  text-align: center;
  color: #d2d2d2;
  text-wrap: pretty;
}
.cpc__strong { font-weight: 700; color: #ffffff; }
.cpc .cpc__heading { text-wrap: balance; }
.cpc__accent { color: #45a7ef; }

.cpc__grid {
  --cpc-cols: 3;
  display: grid;
  grid-template-columns: repeat(var(--cpc-cols), minmax(0, 1fr));
  gap: 30px;
}
.cpc__grid[data-count="1"] { --cpc-cols: 1; max-width: 460px; margin: 0 auto; }
.cpc__grid[data-count="2"] { --cpc-cols: 2; }
.cpc__grid[data-count="4"] { --cpc-cols: 4; }

.cpc__card {
  display: flex;
  flex-direction: column;
  background: #1c1b1c;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: border-color .3s ease;
}
.cpc__card:hover { border-color: rgba(69, 167, 239, .5); }

.cpc__media { background: #0d0c0d; }
.cpc .cpc__img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }

.cpc__body { display: flex; flex-direction: column; flex: 1; padding: 30px 32px 34px; }

.cpc .cpc__name {
  margin: 0;
  padding: 0;
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
  color: #ffffff;
}
.cpc .cpc__name::before, .cpc .cpc__name::after { display: none; }

.cpc .cpc__tagline {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #45a7ef;
}

.cpc .cpc__best { margin: 18px 0 20px; font-size: 16px; line-height: 25px; color: #a4a4a4; }
.cpc__best strong { font-weight: 700; color: #ffffff; }

.cpc .cpc__specs { margin: 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.cpc__row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.cpc .cpc__row dt { font-size: 11px; line-height: 22px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ffffff; }
.cpc .cpc__row dd { margin: 0; font-size: 15px; line-height: 22px; color: #d2d2d2; }

.cpc__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
}

.cpc .cpc__link,
.cpc .cpc__all-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: color .3s ease;
}
.cpc .cpc__link:hover, .cpc .cpc__all-link:hover { color: #45a7ef; }
.cpc__link svg, .cpc__all-link svg { flex: none; fill: none; stroke: #45a7ef; stroke-width: 1.6; transition: transform .3s ease; }
.cpc__link:hover svg, .cpc__all-link:hover svg { transform: translateX(4px); }

.cpc .cpc__brochure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #a4a4a4;
  transition: color .3s ease;
}
.cpc .cpc__brochure:hover { color: #ffffff; }
.cpc__brochure svg { flex: none; fill: none; stroke: #45a7ef; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cpc__all { margin-top: 50px; text-align: center; }

/* --- Compact rows: small photo beside the name ---------------------------- */

.cpc--compact .cpc__lead { margin-bottom: 50px; }
.cpc--compact .cpc__grid { gap: 24px; }
.cpc--compact .cpc__grid[data-count="2"] { max-width: 900px; margin: 0 auto; }

.cpc--compact .cpc__card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px;
}
.cpc--compact .cpc__body { padding: 0; }
.cpc--compact .cpc__name { font-size: 22px; line-height: 30px; }
.cpc--compact .cpc__tagline { margin-top: 2px; font-size: 11px; }
.cpc--compact .cpc__best { margin: 8px 0 0; font-size: 15px; line-height: 22px; }
.cpc--compact .cpc__actions { margin-top: 0; padding-top: 14px; }
.cpc--compact .cpc__link { font-size: 13px; }

@media (max-width: 1199px) {
  .cpc__grid { gap: 20px; }
  .cpc__body { padding: 26px 24px 30px; }
  .cpc .cpc__name { font-size: 22px; line-height: 30px; }
  .cpc__row { grid-template-columns: 90px minmax(0, 1fr); gap: 12px; }

  .cpc--compact .cpc__grid[data-count] { --cpc-cols: 1; max-width: 720px; margin: 0 auto; gap: 16px; }
}

/* Tablets: full cards turn sideways, photo beside the text. */
@media (max-width: 991px) {
  .cpc .cpc__lead { margin-bottom: 44px; font-size: 17px; line-height: 27px; }
  .cpc--full .cpc__grid[data-count] { --cpc-cols: 1; max-width: 720px; margin: 0 auto; }
  .cpc--full .cpc__card { display: grid; grid-template-columns: 240px minmax(0, 1fr); align-items: start; }
  .cpc--full .cpc__media { margin: 24px 0 0 24px; }
}

/* Phones: every card is a compact row; full cards keep their specs below. */
@media (max-width: 575px) {
  .cpc .cpc__lead { margin-bottom: 32px; font-size: 15px; line-height: 24px; }
  .cpc__grid[data-count] { gap: 14px; }

  .cpc .cpc__card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 0 14px;
    align-items: center;
    padding: 14px;
  }
  .cpc--full .cpc__media { align-self: center; margin: 0; }
  .cpc .cpc__img { width: 104px; height: 104px; }
  .cpc__body { display: contents; }
  .cpc__head { grid-column: 2; }
  .cpc__specs, .cpc__actions { grid-column: 1 / -1; }
  .cpc .cpc__specs { margin-top: 14px; }

  .cpc .cpc__name { font-size: 18px; line-height: 24px; }
  .cpc .cpc__tagline { font-size: 10px; line-height: 15px; }
  .cpc .cpc__best { margin: 6px 0 0; font-size: 13px; line-height: 19px; }
  .cpc__best strong { display: none; }
  .cpc__row { grid-template-columns: 84px minmax(0, 1fr); padding: 10px 0; }
  .cpc .cpc__row dd { font-size: 14px; line-height: 20px; }
  .cpc__actions { padding-top: 14px; }
  .cpc--compact .cpc__media { grid-row: 1 / span 2; }
  .cpc--compact .cpc__actions { grid-column: 2; padding-top: 8px; }
  .cpc .cpc__link { font-size: 12px; }
  .cpc__all { margin-top: 26px; }
}

/* Product hero figures on desktop: a long label wraps onto two lines instead of
   pushing the last figure onto a row of its own. Strips that already fit, like
   Rapid's, are unchanged. */
@media (min-width: 1200px) {
  .cph__figures { flex-wrap: nowrap; }
  .cph__figure-item { flex: 0 1 auto; }
}
