/* Hand-authored layer.
 *
 * Everything else under public/css/ is generated from the reference build.
 * This file holds only what the reference expressed through JavaScript,
 * inline attributes, or its own runtime — plus the accessibility affordances
 * it never shipped, and a couple of font-substitution compensations.
 */

/* --- Font-substitution wrap compensation ---------------------------
 * The "supercharged digital" outro heading is set at ~350px. In the reference's
 * Söhne Schmal it fits on two lines; the free substitute is ~4% wider per glyph,
 * so "supercharged" overflows its container and breaks into a third line —
 * adding a full 297px line and skewing the page height, most visibly on short
 * pages. A hair more negative tracking on this one heading pulls it back to two
 * lines with no horizontal overflow, matching the reference layout. Remove this
 * if the licensed font is ever dropped in. */
.supercharged-heading {
  letter-spacing: -0.02em;
}

/* --- Brand lockup (Anchorage Web Design) ---------------------------
 * The reference nav/footer logo was an inline SVG wordmark ("IGNITE®").
 * It's replaced by the anchor mark + an "ANCHORAGE" wordmark. The mark is a
 * fixed-gold PNG; the wordmark uses currentColor so it still inverts over dark
 * sections (nav colour-inversion, dark footer) exactly like the old wordmark.
 * One font-size on .brand-lockup scales the whole thing — nav and footer just
 * set different sizes. */
/* The full horizontal lockup (anchor + ANCHORAGE + WEB DESIGN) as a single
 * image. Nav uses the colour version (navy on the light bar); footer uses the
 * light version (white ANCHORAGE on the dark footer). Sized by height. */
/* --- Nav wordmark: gold anchor mark + inverting text -------------------------
 * The PNG lockup couldn't invert. This is the anchor mark (gold accent) + a
 * clean text wordmark in currentColor, so the words automatically flip to match
 * whatever section is behind the nav as you scroll (the nav colour-change
 * trigger already drives `color`). */
.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem; /* review: let the lockup breathe */
  text-decoration: none;
  color: currentColor;
}
/* 72px nav bar (anchor lives in the left lockup, as originally). */
.nav_wrapper {
  position: relative;
  min-height: 72px;
  align-items: center;
}

/* --- "Back to previous" bar — top counterpart of the footer next-up band -----
 * Slim rotating strip at the very top of every page except home; click → the
 * previous page in the browse chain. Sits in normal flow below the fixed nav. */
.prev-up-bar {
  display: block;
  /* Clear the REAL nav height (measured 112px: 72px bar + logo + paddings).
   * Under the fixed nav the bar's top strip lost clicks to the nav container
   * and got smeared by its backdrop blur. */
  margin-top: 136px; /* clears the text-lockup nav + notch (nav is 131px) */
  position: relative;
  /* Above the fixed .gradient-blur top overlay (z 5) so the bar is never
   * smeared by it while scrolling, and always clickable. */
  z-index: 6;
  padding: 0.55rem 0;
  overflow: hidden;
  text-decoration: none;
  background: var(--background-color--background-alternate, #0a1b2e);
  color: var(--text-color--text-alternate, #f6f8fa);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.prev-up-bar_track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: prev-up-scroll 26s linear infinite;
  will-change: transform;
}
.prev-up-bar_item {
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.prev-up-bar:hover .prev-up-bar_item {
  opacity: 1;
}
@keyframes prev-up-scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .prev-up-bar_track {
    animation: none;
  }
}
/* The reference's fixed progressive top-blur overlay must never intercept
 * clicks — it sat over the top ~128px eating interactions (e.g. the back-to
 * bar) with pointer-events left at auto. */
.gradient-blur {
  pointer-events: none !important;
}

/* --- Client case-study pages ------------------------------------------------- */
.collage_grid-2col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}
@media (max-width: 767px) {
  .collage_grid-2col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.project-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.project-feature-list_item {
  padding-left: 1.4rem;
  position: relative;
}
.project-feature-list_item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--base-color-brand--ignite-red, #4d7fa6);
}
.project-feature-list_item p {
  margin: 0;
}

/* --- Menu: anchor instead of the OG lightning + fit on mobile ----------------
 * The fullscreen menu's non-3D fallback (mobile) still showed the reference's
 * lightning-bolt webp; swap it for the brand anchor. And the menu content
 * overflowed short viewports — let it scroll and size the links to fit. */
.menu-bolt.is-image {
  background-image: url('/brand/anchorage-anchor-transparent.svg') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.nav .menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .menu-link-heading {
    font-size: clamp(2.2rem, 11vw, 3.4rem) !important;
    line-height: 1.05;
  }
  .menu-inner {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }
  /* Back-to bar + nav are shorter on mobile (nav ≈ 90px with the 4rem mark). */
  .prev-up-bar {
    margin-top: 104px;
  }
}

.brand-wordmark_mark {
  height: 5.4rem;
  width: auto;
  display: block;
  flex: none;
}
.brand-wordmark_text {
  display: flex;
  flex-direction: column;
  line-height: 0.98;
  color: currentColor;
}
.brand-wordmark_name {
  font-family: 'Neue Montreal', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  letter-spacing: -0.022em;
}
.brand-wordmark_tag {
  margin-top: 6px;
  font-family: 'Neue Montreal', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.82;
}
@media (max-width: 767px) {
  .brand-wordmark_mark {
    height: 4rem;
  }
  .brand-wordmark_name {
    font-size: 1.8rem;
  }
  .brand-wordmark_tag {
    font-size: 0.7rem;
  }
}

.brand-fullmark {
  display: block;
  width: auto;
  height: 50px;
}
.footer_grid-item .brand-fullmark {
  height: 68px;
}
@media (max-width: 767px) {
  .brand-fullmark {
    height: 38px;
  }
  .footer_grid-item .brand-fullmark {
    height: 48px;
  }
}

/* --- Lenis ---------------------------------------------------------
 * The reference loads lenis.css from a CDN; these are the same rules,
 * self-hosted. */

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* --- Preloader -----------------------------------------------------
 * Hidden up front for repeat visitors and reduced-motion users so there is
 * no flash before the script has a chance to run. */

[data-loader-seen='true'] .home-loader_component,
[data-reduced-motion='true'] .home-loader_component {
  display: none;
}

/* --- Preloader: full-bleed anchor swirl + wordmark + split-apart reveal ------
 * The panel itself is transparent; the navy background is two curtains that
 * split apart on exit (top up, bottom down) to reveal the site. The anchor +
 * wordmark sit on a centred stage above them and scale/fade as it opens. */
.home-loader_component {
  background-color: transparent !important;
  overflow: hidden;
}
.home-loader_curtain {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50.5%; /* slight overlap kills a hairline seam at the split */
  background-color: #101830; /* Alaska midnight navy */
  z-index: 1;
}
.home-loader_curtain--top {
  top: 0;
}
.home-loader_curtain--bottom {
  bottom: 0;
}
.home-loader_stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vh, 2rem);
  will-change: transform, opacity;
}
/* The injected anchor SVG is sized in preloader.ts, but cap it here too. */
.home-loader_stage .home-loader_anchor-mount {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-loader_wordmark {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.92;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
}
.home-loader_wordmark-main {
  font-family: var(--_text-base---heading, 'Neue Montreal', sans-serif);
  font-weight: 700;
  font-size: clamp(2rem, 7vw, 5.5rem);
  letter-spacing: 0.02em;
}
.home-loader_wordmark-sub {
  margin-top: 0.35em;
  font-family: var(--_text-base---heading, 'Neue Montreal', sans-serif);
  font-weight: 500;
  font-size: clamp(0.85rem, 2.4vw, 1.9rem);
  letter-spacing: 0.42em;
  padding-left: 0.42em; /* balance the trailing tracking so it reads centred */
  color: #ffb612; /* Alaska gold */
}
/* The number counter + corner labels sit above the curtains, in white. */
.home-loader_number-wrapper,
.home-loader_top-left,
.home-loader_top-right,
.home-loader_bottom-left,
.home-loader_bottom-right {
  z-index: 3;
  color: #ffffff;
}

/* Lock scrolling while the loader owns the screen. */
html:not([data-loader-done]):not([data-loader-seen]):not([data-reduced-motion]) body {
  overflow: hidden;
}

/* --- Split text ----------------------------------------------------
 * SplitText wraps lines in an extra element so they can be masked; give it
 * the overflow context it needs. */

.split-line-wrap {
  overflow: hidden;
  display: block;
}

.split-line {
  display: block;
  will-change: transform;
}

/* --- Marquee -------------------------------------------------------
 * Track is duplicated in JS; the gap comes from the reference token. */

.marquee_track {
  display: flex;
  flex: none;
  align-items: center;
  gap: var(--marquee-gap, 3em);
  will-change: transform;
}

/* --- Custom cursor -------------------------------------------------
 * Follows the pointer on fine-pointer devices only; the reference leaves it
 * visible on touch, where it can never move. */

@media (hover: none), (pointer: coarse) {
  .cursor_component {
    display: none;
  }
}

/* --- Accessibility -------------------------------------------------
 * The reference has no visible focus ring and no skip target styling.
 * Both are added here rather than patched into the generated files. */

:where(a, button, [role='button'], input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--base-color-brand--ignite-red, #ffb612);
  outline-offset: 3px;
  border-radius: var(--radius--tiny, 0.25rem);
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--base-color-neutral--black, #000);
  color: var(--base-color-neutral--white, #fff);
  font-family: var(--_text-base---body, sans-serif);
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

/* --- Reduced motion ------------------------------------------------
 * Kill the scroll-linked and looping work entirely; the page still reads and
 * every section still reaches its resting state. */

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

  .marquee_track {
    transform: none !important;
  }

  /* The scrub-intro paragraphs are stacked — sticky, and fixed for the middle
   * ones — because normally only one is visible at a time and JS cross-fades
   * between them. With that script skipped they would all paint on top of each
   * other, so lay them out as an ordinary readable sequence instead. */
  .scrub-intro_paragraph-wrapper,
  .scrub-intro_paragraph-wrapper:not(:first-child, :last-child) {
    position: static;
    height: auto;
    opacity: 1;
    margin-bottom: var(--spacing--3, 3rem);
  }

  /* The colour wipe is driven by background-size; without it the text would
   * stay clipped to a zero-width gradient and read as blank. */
  .scrub-intro_paragraph {
    background-size: 100% 100% !important;
  }

  /* The scroll container reserves one viewport per paragraph for the pinned
   * sequence. Nothing is pinned now, so that height is just dead space. */
  .scrub-intro_scroll-container > * {
    height: auto !important;
  }

  /* The hero's rotating industry word cycles on an infinite CSS animation.
   * Clamping iteration-count above freezes it mid-transform, which can leave it
   * half off-screen — pin it to its resting position instead. */
  .home-hero_title-rotating-text {
    animation: none !important;
    transform: none !important;
  }

  .home-hero_title-rotating-text:not(:last-child) {
    display: none;
  }
}

/* --- Delight stack (three pinned panels, cross-faded by initDelightStack) -----
 * The page CSS stacks three .section_delight_new panels absolutely inside a
 * sticky wrapper; JS shows one at a time. The transition makes the swap a
 * cross-fade. A safe default keeps only the first panel visible if JS is slow,
 * so the panels never render on top of each other. */
.delight_sticky-wrapper .section_delight_new {
  transition: opacity 0.45s ease;
}
.delight_sticky-wrapper .section_delight_new:not(:first-child) {
  opacity: 0;
}
/* Reduced-motion / no-scroll fallback: unstack so the three read in sequence. */
.delight_section-wrapper.is-static {
  height: auto;
}
.delight_section-wrapper.is-static .delight_sticky-wrapper {
  position: static;
  height: auto;
  overflow: visible;
}
.delight_section-wrapper.is-static .section_delight_new {
  position: relative;
  width: auto;
  height: auto;
  min-height: 55vh;
  opacity: 1 !important;
  justify-content: center;
}

/* --- Cursor: keep the stylized dot; native caret only on editable text -------
 * The reference hides the OS cursor (body { cursor: none }) and uses the custom
 * gold dot — keep that look. The one exception is the genuinely-editable
 * "Edit Effortlessly" heading: give it a native text caret so it's obviously
 * clickable and typeable. The gold dot must stay visible everywhere it lives. */
[contenteditable],
[contenteditable="plaintext-only"],
.is-text-editable {
  cursor: text !important;
  /* Bright gold insertion caret so the typing position is obvious while editing. */
  caret-color: #e08a15 !important;
}
/* Belt-and-braces: the custom dot is never hidden, always on top. */
.cursor { opacity: 1 !important; visibility: visible !important; }
/* The reference grows the dot from scale(0) via a cursor script we didn't port,
 * so `.cursor_background` was stuck at scale(0) — invisible — in sections like
 * the delight/"Edit Effortlessly" area. Pin it to full size so the dot always
 * shows, and give the gold fill a crisp navy ring so it stays visible on white
 * backgrounds too (the gold alone reads only on the dark sections). */
.cursor .cursor_background {
  transform: scale(1) !important;
  box-shadow: 0 0 0 2px #101830, 0 1px 4px rgba(0, 0, 0, 0.25) !important;
}

/* --- Scrub-intro readability over the anchor --------------------------------
 * The narrative text is faint white; the gold 3D anchor sits behind it and
 * kills the contrast. A dark halo/outline behind each letter keeps the words
 * legible over the anchor without touching the scrub reveal animation. */
/* (scrub halo consolidated into the round-1/#1 rule below) */

/* --- Delight stack: hold each panel longer ----------------------------------
 * Was 400vh (each of the 3 panels ~133vh of scroll); lengthen so users dwell on
 * Drive / Delight / Edit instead of blasting past. (Hard "click to advance" gate
 * is a separate, larger change.) */
.delight_section-wrapper {
  height: 1080vh;
}

/* --- TEMP: hide the audience-tabs section between "the team" and testimonials --
 * Rinaldo asked to remove this area for now. Delete this rule to bring it back. */
.section_home-tabs {
  display: none !important;
}
/* Team section restored per Rinaldo (still the template's placeholder people —
 * swap in real team content when supplied). */

/* --- Delight stack: background changes per panel ----------------------------
 * Drive More Leads = white, Delight Your Users = navy, Edit Effortlessly =
 * black. Set by initDelightStack via data-delight-bg on the sticky wrapper. */
.delight_sticky-wrapper {
  transition: background-color 0.5s ease, color 0.5s ease;
}
/* Each panel carries its own solid background, so the colour arrives with the
 * panel's cross-fade: Drive = white, Delight = navy, Edit = black. The dark two
 * force light text so headings/body stay readable. */
.delight_sticky-wrapper .section_delight_new:nth-child(1) { background-color: #ffffff; }
.delight_sticky-wrapper .section_delight_new:nth-child(2) { background-color: #101830; }
.delight_sticky-wrapper .section_delight_new:nth-child(3) { background-color: #000000; }
.delight_sticky-wrapper .section_delight_new:nth-child(2),
.delight_sticky-wrapper .section_delight_new:nth-child(2) :is(h1, h2, h3, h4, p, div, span),
.delight_sticky-wrapper .section_delight_new:nth-child(3),
.delight_sticky-wrapper .section_delight_new:nth-child(3) :is(h1, h2, h3, h4, p, div, span) {
  color: #ffffff !important;
}
/* Reduced-motion fallback (panels unstacked): give each its own background. */
.delight_section-wrapper.is-static .section_delight_new:nth-child(1) { background: #fff; }
.delight_section-wrapper.is-static .section_delight_new:nth-child(2) { background: #101830; }
.delight_section-wrapper.is-static .section_delight_new:nth-child(3) { background: #000; }
.delight_section-wrapper.is-static .section_delight_new:nth-child(2),
.delight_section-wrapper.is-static .section_delight_new:nth-child(2) :is(h1,h2,h3,h4,p,div),
.delight_section-wrapper.is-static .section_delight_new:nth-child(3),
.delight_section-wrapper.is-static .section_delight_new:nth-child(3) :is(h1,h2,h3,h4,p,div) { color: #fff !important; }

/* --- Delight emoji cursors + bursts (initDelightEffects) --------------------
 * Drive = money cursor, Delight = "click" pointer, Edit = native text caret.
 * The gold dot is hidden inside these zones; the emoji cursor follows instead. */
.delight-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  pointer-events: none;
  font-size: 40px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.18s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
}
body[data-delight-zone='drive'] .delight-cursor,
body[data-delight-zone='delight'] .delight-cursor {
  opacity: 1;
}
.delight-cursor_label {
  margin-top: 2px;
  padding: 2px 9px;
  border-radius: 999px;
  background: #101830;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
/* Hide the gold dot inside the emoji/edit zones. */
body[data-delight-zone='drive'] .cursor,
body[data-delight-zone='delight'] .cursor,
body[data-delight-zone='edit'] .cursor {
  opacity: 0 !important;
}
/* Edit panel: real I-beam over the whole panel so it reads as editable. */
.delight_sticky-wrapper .section_delight_new:nth-child(3) {
  cursor: text;
}
/* Bursting emoji particles, clipped to the pinned area. */
.delight-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}
.delight-particle {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 34px;
  line-height: 1;
  will-change: transform;
}

/* --- Client-name strip ("like these leaders") ------------------------------
 * The reference used logo images; we show client names as understated logotype
 * text instead. */
.marquee_item.is-logos .marquee_name {
  margin: 0;
  white-space: nowrap;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: -0.01em;
  color: var(--text-color--text-primary, #191813);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.marquee_item.is-logos:hover .marquee_name { opacity: 1; }

/* --- Testimonial attribution (client name replaces the logo) ---------------- */
.testimonials_client-name {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--base-color-brand--ignite-red, #e08a15);
}

/* ============================================================================
 * ROUND 2 (2026-07-24 voice note) — see planning/HOMEPAGE-REVISIONS.md
 * ========================================================================== */

/* --- #9 Edit Effortlessly: make the heading genuinely editable --------------
 * The reference sets the delight content wrapper to pointer-events:none so its
 * confetti/matter canvas receives clicks. The Edit panel has no canvas and its
 * heading must be clickable — the caret was showing but never moving because the
 * H3 inherited pointer-events:none. Force it (and its wrapper) interactive. */
.delight_sticky-wrapper .section_delight_new:nth-child(3) .delight_content-wrapper,
.is-text-editable,
[contenteditable='true'],
[contenteditable='plaintext-only'] {
  pointer-events: auto !important;
  -webkit-user-select: text !important;
  user-select: text !important;
}
/* Show the ✏️ "edit" emoji cursor while the Edit panel is active. */
body[data-delight-zone='edit'] .delight-cursor {
  opacity: 1;
}

/* --- Typeface: Manrope everywhere -------------------------------------------
 * Rinaldo's pick: Manrope for logo, nav, body and hero (hero just leans on size/
 * weight). Repoint both base tokens + force it on headings (which had inline/var
 * families and the old ultra-condensed variation). */
:root {
  --_text-base---heading: 'Manrope', 'Inter', system-ui, sans-serif;
  --_text-base---body: 'Manrope', 'Inter', system-ui, sans-serif;
}
body,
.text-size-large,
.text-size-regular,
p {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  letter-spacing: 0;
}
[class*='heading-style'],
h1, h2, h3, h4, h5, h6,
.home-hero_title,
.menu-link-heading,
.marq-advanced_heading,
.brand-wordmark_name,
.brand-wordmark_tag {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif !important;
  font-variation-settings: normal !important;
  font-stretch: normal !important;
  letter-spacing: -0.02em; /* Manrope is a touch wide; tighten headings slightly */
}
/* Hero: same Manrope, differentiated by size — big + bold, sized to fit. */
.home-hero_title {
  /* Ignite-scale display type — the hero is the site's biggest statement. */
  font-size: clamp(2.8rem, 6.5cqw, 7.4rem) !important;
  line-height: 0.96;
  font-weight: 800;
}
/* Mobile: LARGE hero lettering (it was bottoming out at the clamp minimum). */
@media (max-width: 767px) {
  .home-hero_title {
    font-size: clamp(3.1rem, 13.2vw, 4.4rem) !important;
    line-height: 0.99;
    max-width: 100% !important;
  }
  .home-hero_subtitle {
    max-width: 100%;
  }
}
/* Logo: all caps per Rinaldo. */
.brand-wordmark_name {
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

/* --- Cap the giant condensed-era display headings for Manrope ----------------
 * These were 27–75cqw to fill the width with the narrow condensed face; Manrope
 * is ~2× wider, so they overflowed and clipped ("testimonials", "blog", the
 * footer "websites that rank"). Bring them to sizes that fit the viewport. */
.testimonials_heading,
.featured-blog_heading {
  font-size: clamp(2.75rem, 12cqw, 8.5rem) !important;
  line-height: 1.02;
}
.team-feature_heading {
  font-size: clamp(2.5rem, 10cqw, 7rem) !important;
  line-height: 1.02;
}
.marq-advanced_heading,
.next-page_heading {
  font-size: clamp(2.75rem, 12cqw, 8rem) !important;
  line-height: 1.05;
}
.supercharged-heading {
  font-size: clamp(2.5rem, 12cqw, 8rem) !important;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
/* The "Where to next?" block was absolutely pinned bottom-left OVER the giant
 * heading — the reference's ultra-condensed type left that corner empty, but
 * Manrope wraps across it (text-over-text). Put the block in normal flow below
 * the heading (the mobile breakpoint already does exactly this). */
.supercharged_cta {
  position: static !important;
  margin-top: var(--spacing--3, 3rem);
}

/* --- #1 Scrub-intro: clearer grey → PURE-white progression -------------------
 * Base fill is a mid grey; the scroll-driven wipe reveals a SOLID white gradient
 * (no transparent tail — that tail was letting the grey show through, so the
 * text never fully whitened). Now a fully-wiped line is pure #fff. */
.scrub-intro_paragraph {
  color: rgba(233, 240, 252, 0.5) !important; /* lighter cool-grey start (not muted) */
  -webkit-text-fill-color: rgba(233, 240, 252, 0.5) !important;
  background-image: linear-gradient(90deg, #ffffff, #ffffff) !important; /* wipes to pure white */
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45); /* light halo only */
}

/* --- #3 Nav logo bigger / #13 footer logo not cut off on mobile -------------- */
.brand-fullmark {
  height: 62px;
}
@media (max-width: 767px) {
  .brand-fullmark {
    height: 46px;
  }
  /* Footer lockup was clipping on narrow screens — width-constrain it so the
   * whole anchor + wordmark shows. */
  .footer_grid-item .brand-fullmark {
    height: auto;
    width: min(72vw, 320px);
    max-width: 100%;
  }
}

/* --- Hero rotating word was clipping ----------------------------------------
 * The rotating-word wrapper is overflow:hidden (to hide the cycling words), but
 * the ultra-condensed display caps are taller than its line-box, so the tops of
 * "RANK." / "CONVERT." got sheared off. Give the line-box room and drop the 3%
 * nudge that pushed the glyphs into the clip. Cycle offsets are height-relative,
 * so this doesn't desync the animation. */
.home-hero_title-rotating-text-wrapper {
  line-height: 1.08 !important;
  translate: 0 0 !important;
  padding-bottom: 0.1em;
}
.home-hero_title-rotating-text {
  line-height: 1.08 !important;
}

/* --- #2 Anchor centred (never drifting) on mobile --------------------------- */
#three-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
#three-container canvas {
  display: block;
  margin: 0 auto;
}

/* --- #18 Reviews: star emojis rising from the bottom, fading by mid-page ----- */
.review-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.review-star {
  position: absolute;
  bottom: -40px;
  font-size: 22px;
  line-height: 1;
  will-change: transform, opacity;
}

/* --- #6/#17 Client screenshots: project-card hover image + testimonial shot ---
 * The ROUNDING lives on the wrapper (overflow:hidden), not the image — rounding
 * the square image alone left the wrapper's dark corners poking out behind it. */
.home-tabs_link-video-wrapper {
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
}
.home-tabs_hover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 0;
}
.testimonials_client-image-wrapper:has(.testimonials_client-shot) {
  overflow: hidden;
  border-radius: 12px;
}
.testimonials_client-shot {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 0;
}
/* Capabilities collage: client screenshots replace the Vimeo case-study videos,
 * each framed with a brand-colour (Alaska Blue) border. */
.collage_card-visual-wrapper {
  overflow: hidden;
  border: 2px solid #0a3a8c;
  border-radius: 14px;
}
.collage_card-visual {
  overflow: hidden;
  border-radius: 12px;
}
.collage_card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 0;
}

/* --- /work project screenshots ---------------------------------------------- */
.work_item_video {
  overflow: hidden;
  border-radius: 14px;
}
.work_item_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* --- Reviews: flip-on-hover cards (front = quote, back = site screenshot) -----
 * The tile flips to reveal that client's website on hover (or keyboard focus). */
.reviews_flip {
  perspective: 1400px;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 16px;
}
.reviews_flip-inner {
  position: relative;
  width: 100%;
  min-height: 15rem;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.7, 0, 0.2, 1);
}
.reviews_flip:hover .reviews_flip-inner,
.reviews_flip:focus-within .reviews_flip-inner {
  transform: rotateY(180deg);
}
.reviews_flip-front,
.reviews_flip-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
}
.reviews_flip-front {
  padding: 2rem;
  min-height: 15rem;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.reviews_flip-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  background: #0a3a8c;
}
.reviews_flip-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.reviews_person {
  margin: 0.35rem 0 0;
  opacity: 0.72;
  font-size: 0.95rem;
}

/* --- Never break a word mid-glyph -------------------------------------------
 * "THAT" was still snapping across two lines because the earlier :where() rule
 * had 0 specificity and lost to the page CSS. Force it, high-specificity, on the
 * hero + all headings. Whole words may wrap, but never split. */
.home-hero_title,
.home-hero_title span,
h1[class*='heading-style'],
[class*='heading-style'],
h1, h2, h3, h4, h5, h6 {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  word-wrap: normal !important;
  hyphens: none !important;
}

/* --- Team bios: always visible ------------------------------------------------
 * The reference collapsed .team-feature_paragraph-wrapper (grid-template-rows:
 * 0fr) and revealed on hover only. Rinaldo wants the bios readable at rest. */
/* Touch screens keep bios open (no hover); desktop reveals them on hover —
 * see the pointer:fine block in alaska-theme.css. */
/* Mobile: bios start collapsed and expand as the card scrolls past centre
 * (see initScrollActivate) — the same reveal desktop gets on hover. */
@media (max-width: 991px) {
  .team-feature_paragraph-wrapper {
    grid-template-rows: 0fr !important;
    transition: grid-template-rows 480ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .team-feature_member-item.is-active .team-feature_paragraph-wrapper {
    grid-template-rows: 1fr !important;
  }
}
.team-feature_paragraph-mobile-overlay {
  display: none !important;
}

/* Favorite-Alaskan-things line under each bio (colors live in alaska-theme). */
.team-bio_favorites {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.team-bio_favorites-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

/* The reference pinned member tiles to 400px. Where bios are always open
 * (touch / narrow), the tile must size to its content instead. On desktop the
 * hover-reveal reserves a fixed height instead — see alaska-theme.css. */
@media (max-width: 991px) {
  .team-feature_member-item {
    height: auto !important;
  }
}

/* Team LinkedIn links (structural — colors in alaska-theme). */
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

/* --- Individual project pages ------------------------------------------------- */
.project-hero .header_heading {
  font-size: clamp(2.6rem, 8.5cqw, 6.5rem);
  line-height: 1;
}
.project-page_shot {
  border: 2px solid var(--base-color-brand--ignite-blue, #4d7fa6);
  border-radius: 18px;
  overflow: hidden;
}
.project-page_shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* Case-study columns: keep the giant display headings — just give everything
 * room. Wider column gutter, top-aligned columns, and the CTA row clearly
 * separated from the content above it. */
.collage_grid-2col {
  align-items: start;
  gap: 3.5rem 5rem;
}
.collage_card .button_group {
  margin-top: 2rem;
  column-gap: 2rem;
  row-gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 767px) {
  .collage_grid-2col {
    gap: 3rem;
  }
  .collage_card .button_group {
    margin-top: 1.5rem;
  }
}

/* Case-study columns, round 2:
 * - headings clear the screenshot with real margin
 * - the giant headings size to the grid, so "WHAT WE" holds one line
 *   (an &nbsp; in the markup guarantees the pair never splits)
 * - the section bottom no longer lets the CTA touch the next-up band */
.collage_grid-2col {
  margin-top: 2.5rem;
}
.section_collage:has(.collage_grid-2col) {
  padding-bottom: 5.5rem;
}
@media (min-width: 768px) {
  .collage_grid-2col {
    container-type: inline-size;
  }
  .collage_grid-2col .heading-style-h5 {
    font-size: clamp(2.8rem, 8.2cqw, 8.5rem);
    line-height: 1.05;
  }
}

/* Case-study columns: clear air between the giant headings and their text. */
.collage_grid-2col .heading-style-h5 {
  margin-bottom: 1.25rem;
}

/* Nav right side: Get Started and MENU center on the same axis as the logo.
 * (A stray spacer inside the button wrapper pushed the pill up while the
 * heading-sized MENU text sat low.) */
.nav-right {
  align-items: center;
}
.nav-right_button-wrapper {
  display: flex;
  align-items: center;
}
.nav-right_button-wrapper .spacer-tiny {
  display: none;
}
/* Keep the button's own block layout (the Menu/Close swap depends on it) —
 * only its position centers on the bar axis. */
.menu-button {
  align-self: center;
}

/* --- Pricing page ------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.pricing-tier {
  border: 1px solid var(--border-color--border-secondary, rgba(0, 0, 0, 0.08));
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  background: var(--background-color--background-secondary, #fff);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.pricing-tier_price {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.pricing-tier_sticker {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-tier_note {
  font-size: 0.85rem;
  opacity: 0.7;
}
.pricing-tier_alt {
  font-size: 0.92rem;
  opacity: 0.75;
  margin: 0;
}
.pricing-tier_blurb {
  margin: 0;
}
.pricing-tier_meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.88rem;
  opacity: 0.75;
}
.pricing-tier_meta p {
  margin: 0;
}
.pricing-tier_examples {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color--border-secondary, rgba(0, 0, 0, 0.08));
}
.pricing-tier_examples-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.pricing-example {
  display: inline-block;
  margin-right: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}
.pricing-notes p {
  max-width: 620px;
  margin: 0 auto 0.6rem;
  text-align: center;
  opacity: 0.8;
}

/* --- Centered nav anchor + notch ----------------------------------------------
 * The anchor mark sits dead-center and juts below the bar through a V notch
 * (logo-through-the-bar, like the fox reference). The nav element carries
 * 26px of extra transparent depth; the clip-path draws bar + notch in one
 * shape, so the frosted material follows the V exactly. */
.nav_component {
  --nav-notch-depth: 26px;
  --nav-notch-halfwidth: 58px;
  padding-bottom: var(--nav-notch-depth);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--nav-notch-depth)),
    calc(50% + var(--nav-notch-halfwidth)) calc(100% - var(--nav-notch-depth)),
    50% 100%,
    calc(50% - var(--nav-notch-halfwidth)) calc(100% - var(--nav-notch-depth)),
    0 calc(100% - var(--nav-notch-depth))
  );
}
.nav-center-anchor {
  position: absolute;
  left: 50%;
  /* Bottom-anchored to .nav_wrapper (the positioned ancestor, which ends where
   * the bar's text row ends — above the notch padding). Negative value lets the
   * mark dip INTO the V while leaving clear air above the bar's lower edge. */
  bottom: -15px;
  transform: translateX(-50%);
  z-index: 2;
  display: block;
}
.nav-center-anchor img {
  display: block;
  height: 96px;
  width: auto;
}
@media (max-width: 767px) {
  .nav_component {
    --nav-notch-depth: 20px;
    --nav-notch-halfwidth: 44px;
  }
  .nav-center-anchor img {
    height: 72px;
  }
}
/* Text-only lockup left (the mark lives center now). */
.footer-theme-switch {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
}

/* Small screens: compact wordmark + smaller center anchor so they never touch. */
@media (max-width: 600px) {
  .brand-wordmark_name {
    font-size: 1.3rem;
  }
  .brand-wordmark_tag {
    font-size: 0.58rem;
    letter-spacing: 0.26em;
  }
  .nav_component {
    --nav-notch-depth: 16px;
    --nav-notch-halfwidth: 36px;
  }
  .nav-center-anchor img {
    height: 60px;
  }
  .nav-center-anchor {
    bottom: -8px;
  }
}

/* 3D anchor scrub: full-bleed on mobile — the padded gutters were cutting the
 * animation's edges into visible side bands. */
@media (max-width: 767px) {
  .scrub-intro_image-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/* Delight sticky panels: content clears the fixed nav + center anchor. */
.delight_component {
  padding-top: 7.5rem;
}

/* Footer pages column (the links that used to live in the blue band). */
.footer_pages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 2.5rem;
}
.footer_pages a {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  width: max-content;
}

/* Footer quick-links row wraps on small screens (the theme switch was
 * overflowing the viewport edge at 375). */
.footer_links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

/* Contact button stays visible on mobile (the reference hid it — but with the
 * menu gone it's the bar's only action). Compact so it clears the anchor. */
@media (max-width: 600px) {
  .button_component.is-nav {
    display: inline-block !important;
  }
  .nav_component .button.is-nav .button_text {
    font-size: 1.05rem;
  }
}

/* "Edit Effortlessly": the editable display heading clipped at phone widths. */
@media (max-width: 767px) {
  .heading-style-h1.is-text-editable {
    font-size: clamp(2rem, 9.5vw, 2.9rem) !important;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }
}

/* Contact page map embed. */
.map-embed-wrapper {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-color--border-secondary, rgba(0, 0, 0, 0.1));
}
.map-embed-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* Recent websites on touch screens: the screenshot pops up for the row that is
 * centered in the viewport while scrolling (hover doesn't exist there). */
@media (pointer: coarse), (max-width: 991px) {
  .home-tabs_link-video-wrapper {
    display: block !important;
    width: min(46vw, 260px);
    left: auto;
    right: 10px;
    top: 50%;
    opacity: 0;
    transform: translateY(-50%) scale(0.7);
    transition: opacity 300ms cubic-bezier(0.22, 1, 0.36, 1), transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 10px;
  }
  .home-tabs_link-block.is-peek .home-tabs_link-video-wrapper {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* --- Footer layout, made page-independent -------------------------------------
 * The reference positioned every footer cell through per-page `w-node-…` grid
 * rules that live in each page's own stylesheet. Pages whose CSS lacks those
 * rules fell back to auto-placement, so the same footer looked different from
 * page to page (the "squished / centred" rows). These rules own the layout
 * outright so every page renders identically. */
.footer_grid-wrapper {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem 3rem;
}
.footer_grid-wrapper.is-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem 3rem;
}
.footer_grid-wrapper.is-grid > .footer_grid-item {
  width: auto;
}
/* Bottom row: acknowledgement left, copyright + legal hard right, always. */
.footer_grid-wrapper.text-style-muted .footer_grid-item:first-child {
  flex: 1 1 320px;
  max-width: 640px;
}
.footer_grid-wrapper.text-style-muted .footer_grid-item.text-align-right {
  margin-left: auto;
  text-align: right;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .footer_grid-wrapper,
  .footer_grid-wrapper.text-style-muted .footer_grid-item.text-align-right {
    text-align: left;
  }
  .footer_grid-wrapper.text-style-muted .footer_grid-item.text-align-right {
    margin-left: 0;
    align-items: flex-start;
  }
}

/* Page-header display words (PRICING, CAPABILITIES, BLOG, client names) were
 * clipped on phones — the glyphs overflowed their clipping parent. Size them to
 * the viewport instead. */
@media (max-width: 767px) {
  .header_heading {
    font-size: clamp(2.4rem, 13.5vw, 4.6rem) !important;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }
}

/* Mobile nav: the wordmark and Contact were sized for desktop and dominated the
 * bar. Scale the whole lockup down on phones. */
@media (max-width: 600px) {
  .brand-wordmark_name {
    font-size: 1.02rem;
    letter-spacing: -0.01em;
  }
  .brand-wordmark_tag {
    font-size: 0.46rem;
    letter-spacing: 0.22em;
    margin-top: 3px;
  }
  .nav_component .button.is-nav .button_text {
    font-size: 0.82rem !important;
  }
  .nav_component .button.is-nav .button_icon {
    width: 0.82em;
    height: 0.82em;
  }
  .nav_wrapper {
    min-height: 56px;
  }
}

/* Touch hint inside the pinned delight panels (mobile only — desktop advertises
 * the same interactions through the emoji cursor). */
.delight-touch-hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 6;
}
.delight-touch-hint.is-on {
  opacity: 1;
}

/* Mobile nav: the bar's inner padding read as an empty band above the wordmark
 * (the frosted background is nearly transparent, so it looked like a gap between
 * the navbar and the top of the screen). Tighten it on phones. */
@media (max-width: 600px) {
  .nav_component .nav_wrapper {
    padding-top: 0.45rem !important;
    padding-bottom: 0.6rem !important;
    min-height: 48px;
  }
  /* Marquee label stacked above the names instead of overlapping them. */
  .home-hero_logo-marquee-subtitle-wrapper {
    position: static;
    margin-bottom: 0.4rem;
  }
}

/* Blog: long headings/URLs pushed past the viewport on phones. */
@media (max-width: 767px) {
  .blog_item-heading,
  .blog_item p,
  .blog-content_rich-text,
  .blog-content_rich-text :is(p, h1, h2, h3, h4, li, a, blockquote) {
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .blog-content_rich-text :is(img, iframe, pre, table) {
    max-width: 100%;
    height: auto;
  }
  .blog-content_rich-text pre {
    overflow-x: auto;
  }
}

/* The editable demo must own its touch gestures, or the pinned panel's scroll
 * handling eats the tap before the caret lands. */
.is-text-editable,
[contenteditable='true'] {
  touch-action: manipulation;
  -webkit-user-select: text;
  user-select: text;
}

/* Blog article body on phones: the rich-text headings kept their desktop size,
 * so a single long word ("Governance" at 68px = 437px) was wider than the 338px
 * column and got clipped. Split-text wraps each word in an inline-block, which
 * can't break mid-word — so the fix is the type size, not the wrapping. */
@media (max-width: 767px) {
  .blog-content_content .text-rich-text h2,
  .blog-content_content .w-richtext h2 {
    font-size: clamp(1.7rem, 7.6vw, 2.3rem);
    line-height: 1.12;
  }
  .blog-content_content .text-rich-text h3,
  .blog-content_content .w-richtext h3 {
    font-size: clamp(1.4rem, 6.2vw, 1.9rem);
    line-height: 1.16;
  }
  .blog-content_content .text-rich-text h4,
  .blog-content_content .w-richtext h4 {
    font-size: 1.2rem;
  }
  .blog-content_content .text-rich-text :is(p, li, blockquote) {
    overflow-wrap: anywhere;
  }
}

/* --- FAQ ---------------------------------------------------------------------- */
.section_faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq_head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq_list {
  display: grid;
  gap: 1.25rem;
}
.faq_item {
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
}
.faq_question {
  margin: 0 0 0.6rem;
  font-size: 1.12rem;
  line-height: 1.35;
}
.faq_answer {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}
@media (max-width: 767px) {
  .faq_item { padding: 1.25rem 1.1rem; }
  .faq_question { font-size: 1.02rem; }
}

/* --- iOS: no strip of page above the fixed navbar -----------------------------
 * The bar pins flush to the top of the viewport and nothing pads it down.
 *
 * An earlier attempt did the opposite — viewport-fit=cover plus
 * padding-top: env(safe-area-inset-top) so the bar's own background would fill
 * the status-bar strip. That is what CAUSED the gap Rinaldo screenshotted: the
 * inset pushed the bar ~60px down the screen and the scrolled page showed in
 * the band above it. Both are gone; Safari now insets the viewport itself and
 * paints the strip with theme-color, which Base.astro keeps equal to
 * --color-background. Don't reintroduce either without a device to test on. */
.nav_component {
  top: 0;
}
/* Belt-and-suspenders: a solid panel sitting behind the bar, pinned to the
 * viewport independently of .nav_component's own box, that extends far above
 * y=0. `top` and `height` both use the same viewport-height unit, so the
 * bottom edge always lands at exactly 0 no matter what value that unit
 * currently resolves to — Safari's dynamic toolbar, a rubber-band overscroll,
 * a rendering quirk on some other device. Whatever momentarily reveals space
 * above the bar reveals more of this panel, never the page. Not a substitute
 * for getting the real cause right — a second layer in case a case surfaces
 * this fix (and the theme-color one) doesn't cover. */
.nav-top-backfill {
  position: fixed;
  top: -100vh;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: var(--color-background, #0a1b2e);
  z-index: 999;
  pointer-events: none;
}



/* Outro heading reads WEBSITES THAT / RANK — two deliberate lines rather than
 * whatever the container width happens to produce. */
.supercharged-heading_line {
  display: block;
}
/* On phones the reference's right-alignment reads as an accident — the block
 * sits inside a full-width blue band with nothing to align against on the
 * right, so it just looks off-center. Center it and push the size up; the
 * clamp's 8rem ceiling was never reached at 12cqw on a narrow container. */
@media (max-width: 767px) {
  .supercharged-heading {
    text-align: center;
    font-size: clamp(3.2rem, 16cqw, 5.5rem) !important;
  }
}

/* The next-up band's own background block peeked above the white banner as a
 * small light sliver. Keep it strictly behind the banner. */
.footer_next-page_background {
  z-index: 0;
}
.footer_next-page {
  position: relative;
  z-index: 1;
}

/* Netlify Forms honeypot. Must be in the DOM and submittable (bots fill it), but
 * never visible or focusable for real users — display:none would let some bots
 * skip it, so it's positioned off-screen instead. */
.form_honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
