/* ==========================================================================
   Zyra World — RESPONSIVE (true viewport media queries)
   Generated from the old class-scoped mobile.css / responsive.css.
   Loaded after styles.css (and after feature.css / article.css on those pages).
     • <= 767px  → mobile band  (was html.view-mobile in mobile.css)
     • 768-1023  → tablet band  (was html.view-tablet in responsive.css)
     • >= 1024   → desktop base (styles.css)
   ========================================================================== */

/* Clip horizontal bleed (hero floor art, marquee, off-screen contact toast) that
   the old device-frame column hid via overflow-x:hidden. On body (not html) with
   `clip` so no scroll container is created and the sticky header keeps working. */
body { overflow-x: clip; }
/* the index feature bento breaks out of .wrap (full-bleed) and, on a real
   tablet-width viewport, spills ~20px past the edge; clip the section (no sticky
   child) so it reads edge-to-edge without a stray horizontal scrollbar. */
#feature { overflow-x: clip; }
/* the Plan compare mobile plan-switch is flex only at ≤767px (below); hide it
   everywhere else so the full table shows on tablet/desktop. */
.cmp-switch { display: none; }
/* Blog filter: the mobile "Select topic" dropdown trigger is built on every
   page load but only shown ≤767px; tablet/desktop hide it and render the facet
   panel inline (the JS keeps the panel visible there), matching the old sidebar. */
.bl-topic-trigger { display: none; }
/* Article: the mobile quick-nav TOC (cloned under the hero) shows only ≤767px;
   on tablet/desktop the sidebar TOC is the one in use. */
.toc-mobile { display: none; }
/* index: shorter hero sub copy shows only ≤767px (full copy shows above it) */
.hero-sub-m { display: none; }

@media (max-width: 767px) {
.header-actions { display: none; }
.nav-toggle { display: flex; position: relative; z-index: 61; }
.header-inner { height: 56px; }
.logo img { height: 30px; }
/* keep the logo visible in its top-left spot when the menu sheet is open (the
   sheet covers from top:0, so lift the logo above it like the close (X) button) */
.logo { position: relative; z-index: 61; }
.site-header { position: sticky; }
.main-nav {
  position: absolute; top: 0; left: 0; right: 0; bottom: auto; z-index: 60;
  margin: 0; 
  display: flex; flex-direction: column; gap: 0;
  padding: 64px 22px 22px;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(20,24,40,.12);
  opacity: 0; visibility: hidden; transform: translateY(-12px); pointer-events: none;
  transition: opacity .24s ease, transform .28s cubic-bezier(.33,1,.68,1),
              visibility 0s linear .3s;
}
.main-nav.open {
  /* re-assert the panel geometry here (specificity 0,2,0) so it beats the base
     styles.css `.main-nav.open{top:64px;padding:12px…}` — that rule otherwise
     out-weighs the plain `.main-nav` above and leaves an 8px gap under the
     56px header. top:0 + padding-top:64 makes the sheet cover from the very top
     (behind the header) with the first link clearing the close (X) row. */
  top: 0; left: 0; right: 0; padding: 64px 22px 22px;
  opacity: 1; visibility: visible; transform: none; pointer-events: auto;
  transition: opacity .24s ease, transform .3s cubic-bezier(.33,1,.68,1), visibility 0s;
}
.main-nav.open a { padding: 14px 2px; }   /* beat styles.css `.main-nav.open a{padding:10px 0}` */
.main-nav a {
  color: var(--ink-2); font-size: 16px; font-weight: 500; line-height: 1;
  padding: 14px 2px; border-bottom: 1px solid var(--border);
}
.main-nav a::after { display: none; }
.main-nav .nav-actions-mobile {
  display: flex; flex-direction: column; align-items: stretch;
  gap: 16px; margin-top: 20px;
}
.main-nav .lang-toggle { align-self: flex-start; }
.main-nav .lang { font-size: 13px; padding: 7px 16px; }
.main-nav .btn { width: 100%; height: 46px; font-size: 15px; }
.nav-backdrop {
  position: fixed; inset: 0; z-index: 49; background: rgba(20, 24, 40, .22);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .24s ease, visibility 0s linear .24s;
}
.nav-backdrop.show {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity .24s ease, visibility 0s;
}
@media (prefers-reduced-motion: reduce) {
  .main-nav, .nav-backdrop { transition: none; }
}
.nav-toggle span { transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] { position: relative; z-index: 61; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.hero { padding-top: 40px; min-height: 480px; }
.hero-tags { display: none; }
.hero-scene { opacity: .5;
  -webkit-mask-image: linear-gradient(transparent 2%, #000 40%, #000 84%, transparent);
          mask-image: linear-gradient(transparent 2%, #000 40%, #000 84%, transparent); }
.walker .wtag { display: none; }
.hero h1 { font-size: 27px; line-height: 38px; white-space: nowrap; text-align: center; }
.hero h1 mark, .hero h1 mark.hl { padding: 0 4px; border-radius: 6px; }
.hero-sub { font-size: 14px; line-height: 18px; margin-top: 16px; }
.hero-sub:not(.hero-sub-m) { display: none; }   /* hide the full desktop copy on phones */
.hero-sub-m { display: block; }                  /* show the short mobile copy */
.section-head h2 { font-size: 24px; }
.section-sub { font-size: 16px; }
h2.center { font-size: 26px; }
.hero-cta { flex-wrap: nowrap; justify-content: center; gap: 8px; margin-top: 24px; }
.hero-cta .btn { flex: 0 1 auto; min-width: 0; height: 32px; padding: 0 16px; border-radius: 6px; font-size: 14px; }
.section { padding: 44px 0; }
.section-head { flex-direction: column; gap: 8px; margin-top: 16px; }
#feature .bento {
  display: flex; flex-direction: column; gap: 16px;
  container-type: normal; margin-top: 24px;
}
#feature .bento-img { display: none; }
#feature .bento-hot {
  display: block !important;
  position: relative !important; inset: auto !important;
  width: 100% !important; height: auto !important;
  container-type: inline-size; overflow: hidden;
  border-radius: 18px; background: #fff;
  box-shadow: 0 0 0 1px rgba(20,24,40,.06), 0 6px 18px rgba(20,24,40,.06);
}
#feature .bh-office { aspect-ratio: 358 / 380; }
#feature .bh-chat { aspect-ratio: 358 / 400; }
#feature .bh-avatar { aspect-ratio: 358 / 250; overflow: hidden; }
#feature .bh-screen { aspect-ratio: 448 / 300; }
#feature .bh-builder { aspect-ratio: 358 / 185; }
#feature .bh-team { aspect-ratio: 448 / 320; }
#feature .b-title .b-l, #feature .av-title .av-l { white-space: pre; }
#feature .b-title, #feature .av-title { font-size: clamp(17px, 5.4cqw, 22px); }
#feature .b-desc, #feature .rtc-desc { font: 400 clamp(12px, 3.7cqw, 14px)/1.5 var(--font); }
#feature .bh-avatar { background: #fff !important; overflow: hidden !important;
  border-radius: 18px !important;
  box-shadow: 0 0 0 1px rgba(20,24,40,.06), 0 6px 18px rgba(20,24,40,.06) !important; }
#feature .bh-avatar::after { display: none !important; }
#feature .bh-avatar::before { display: none !important; }
#feature .bh-avatar .av-title { position: absolute !important; left: 5% !important; right: auto !important;
  top: 4% !important; bottom: auto !important; height: auto !important; background: transparent !important; }
#feature .bh-avatar .b-desc { top: 16%; height: auto; left: 5%; width: 90%; }
#feature .bh-avatar .av-mask { top: 42% !important; height: 54% !important; }
#feature .bh-avatar .av-item { width: 20%; }
#feature .bento-hot, #feature .bento-hot *, #feature .bento-hot *::before, #feature .bento-hot *::after { animation: none !important; }
#feature .bento-hot:hover { transform: none !important;
  box-shadow: 0 0 0 1px rgba(20,24,40,.06), 0 6px 18px rgba(20,24,40,.06) !important; }
#feature .bento-hot:hover::before { box-shadow: none !important; }
#feature .b-title::after, #feature .av-title::after { display: none !important; }
#feature .bh-team .tmx { top: 44% !important; }
#feature .bh-chat .rtc { position: absolute !important; inset: 0 !important; height: 100% !important; clip-path: none !important; }
#feature .bh-chat .rtc-cover { display: none !important; }
#feature .bh-chat .b-title { top: 4%; left: 4%; }
#feature .bh-chat .rtc-desc { top: 13%; left: 4%; width: 92%; bottom: auto; height: auto; background: transparent; }
#feature .bh-chat .rtc-panel {
  left: 5%; right: 5%; top: 43%; bottom: 0; height: auto;
  display: flex; flex-direction: column; justify-content: flex-start;
}
#feature .bh-chat .rtc-row { flex: 1 1 0; min-height: 0; }
#feature .bh-chat .rtc-icon {
  left: 1.5%; top: 37%; width: 12%; border-radius: 26%;
  opacity: 1 !important; transform: none !important;
}
#feature .bh-chat .rtc-badge { opacity: 1 !important; transform: scale(1) !important; }
#feature .bh-chat .rtc-row[data-new], #feature .bh-chat .rtc-row.act {
  background: #fff !important; z-index: 4;
  box-shadow: 0 6px 16px rgba(20,24,40,.12), 0 1px 3px rgba(20,24,40,.08) !important;
}
#feature .bh-chat .rtc-row[data-new] .rtc-old { display: none; }
#feature .bh-chat .rtc-row[data-new] .rtc-fresh { display: block; }
#feature .bh-chat .rtc-row[data-new] .rtc-unread { display: grid; }
#feature .bh-builder { aspect-ratio: 358 / 360; }
#feature .bh-builder .b-title { top: 4%; left: 4%; }
#feature .bh-builder .b-desc { top: 13%; left: 4%; width: 92%; height: auto; }
#feature .bh-builder .sbx {
  inset: 22% 0 0 3% !important; clip-path: none !important;
  background: url("../assets/sb-mock-mobile.png") right bottom / auto 100% no-repeat;
}
#feature .bh-builder .sbx > * { display: none !important; }
#feature .bh-builder .dec-active { display: none !important; }
#feature .bh-screen { aspect-ratio: 358 / 256; }
#feature .bh-screen .b-title { top: 5%; }
#feature .bh-screen .b-desc { top: 17%; }
#feature .bh-screen .ssx-win { left: 29%; top: 34%; width: 42%; height: 28%; }
#feature .bh-screen .ssx-av { overflow: visible !important; }
#feature .bh-screen .ssx-av-l { left: 18%;  top: 73.6%; width: 10.5%; height: 24%; }
#feature .bh-screen .ssx-av-r { left: 64.5%; top: 72.7%; width: 17.7%; height: 25%; }
#feature .bh-screen .ssx-dot-l { left: 40%; top: 64%; }
#feature .bh-screen .ssx-dot-r { left: 58%; top: 64%; }
#feature .bh-team .b-title { top: 4%; }
#feature .bh-team .b-desc { top: 16%; }
#feature .bh-office .b-title { top: 4%; }
#feature .bh-office .b-desc { top: 14%; height: auto; }
#feature .bh-office .vox { top: 0 !important; }
#feature .bh-office .vox-map {
  left: 50%; top: 33%; width: 46%; transform: translateX(-50%);
}
#feature .bh-office .vox-walker { display: none; }
.steps {
  display: flex; grid-template-columns: none; flex-flow: row nowrap;
  gap: 16px; margin-top: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  
  margin-inline: -20px; padding: 4px 20px 8px;
}
.steps::-webkit-scrollbar { display: none; }
.step-card { flex: 0 0 86%; scroll-snap-align: center; }
.step-card h3 { font-size: 18px; }
.step-card p { font-size: 14px; }
.step-card:hover { transform: none; }
.step-card:hover .step-illus { border-color: var(--border); box-shadow: none; }
#explore .wrap { display: flex; flex-direction: column; }
#explore .capsule { order: 1; }
#explore .section-head { order: 2; }
#explore .tab-preview { order: 3; margin-top: 24px; }
#explore .tabs { order: 4; grid-template-columns: 1fr; gap: 12px; margin-top: 16px; border-bottom: none; }
.tab { border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 20px; }
.tab-title { font-size: 17px; }
.tab-desc { font-size: 14px; }
.tab:not(.is-active) .tab-desc { display: none; }
#explore .cs-half { display: none; }
#explore .tab-preview { aspect-ratio: 680 / 545; }
.tab-bar { left: 12px; right: 12px; bottom: 0; border-radius: 0 0 var(--r-md) var(--r-md); }
.testi-card { flex: 0 0 300px; width: 300px; padding: 20px; }
.testi-row .marquee-track { gap: 16px; }
#testimonials .testi-row + .testi-row { display: none; }
.pricing-grid { display: block; grid-template-columns: none; margin-top: 32px; padding-bottom: 220px; }
.plan {
  position: sticky; padding: 28px 24px; border-radius: 16px;
  background: #fff; margin-bottom: 20px;
  box-shadow: 0 -1px 0 0 rgba(20,24,40,.05), 0 -12px 24px rgba(20,24,40,.08);
}
.plan-featured { margin-top: 0; padding-bottom: 28px; }
.pricing-grid .plan:nth-child(1) { top: 72px; }
.pricing-grid .plan:nth-child(2) { top: 86px; }
.pricing-grid .plan:nth-child(3) { top: 100px; }
.pricing-grid .plan:last-child { margin-bottom: 0; }
@supports (animation-timeline: view()) {
  .pricing-grid .plan {
    animation: planCover linear both;
    animation-timeline: view();
    animation-range: exit 0% exit 220px;
  }
  @keyframes planCover {
    to { transform: scale(.93); filter: brightness(.96); }
  }
}
.cta { grid-template-columns: 1fr; }
.cta-right { display: none; }
.cta-left { padding: 40px 22px; }
.cta-copy { text-align: center; }
.cta-copy h2 { font-size: 30px; }
.cta-copy p { font-size: 14px; margin-top: 14px; }
.cta-copy .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
.cta-copy .hero-cta .btn { width: 100%; }
.site-footer { padding-top: 48px; }
.footer-top { grid-template-columns: 1fr; }
.footer-cols { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
.footer-brand p { font-size: 14px; }
.footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
.article-main { padding: 24px 0 80px; }
.crumbs { margin-bottom: 24px; }
/* mobile: title/tag/author first, then the hero image below (was column-reverse
   which put the image on top, above the title) */
.art-hero { flex-direction: column; gap: 24px; margin-bottom: 32px; }
.toc-mobile { display: block; margin-bottom: 40px; }
/* the sidebar TOC is duplicated under the hero on mobile — hide the sidebar copy
   (its Share + CTA blocks stay, dropping below the article via .art-side order) */
.art-side .toc { display: none; }
.art-body { flex-direction: column; align-items: stretch; gap: 40px; margin-bottom: 56px; }
.art-side { width: auto; flex: 0 1 auto; position: static; top: auto; order: 2; }
.art-content { order: 1; }
.art-cards { grid-template-columns: 1fr; }
.bl-hero { padding: 40px 0 0; }
.bl-hero h1 { font-size: 32px; line-height: 1.15; }
.bl-hero p { font-size: 15px; margin-top: 14px; }
.bl-main { grid-template-columns: 1fr; gap: 28px; padding: 28px 0 32px; }
.bl-search input { height: 46px; font-size: 16px; }
.bl-facet { margin-top: 24px; }
.bl-default { gap: 40px; }
.bl-row-featured { grid-template-columns: 1fr; gap: 32px; }
.bl-stack { gap: 32px; }
.bl-row-3 { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
.bl-results { grid-template-columns: 1fr; gap: 40px; }
.bl-thumb { width: 100%; height: auto; }
.bl-featured .bl-thumb { height: auto; aspect-ratio: 16/10; }
.bl-sm .bl-thumb { height: auto; aspect-ratio: 16/10; }
.bl-row-3 .bl-thumb { height: auto; aspect-ratio: 16/10; }
.bl-results .bl-thumb { height: auto; aspect-ratio: 16/10; }
.bl-featured h3 { font-size: 20px; line-height: 28px; }
.bl-more { margin-top: 40px; }
.bl-more .btn { width: 100%; }
.bl-noresults { padding: 48px 4px; }
.bl-nr-pop { max-width: none; }
.ab-cell .capsule, .ab-team-head .capsule { align-self: flex-start; }
.ab-founder-copy .capsule { align-self: center; }
.ab-hero { padding: 36px 20px 28px; gap: 18px; }
.ab-hero h1 { font-size: 33px; line-height: 1.15; }
.ab-hero p { font-size: 14px; line-height: 1.5; }
.ab-wrap { gap: 48px; padding: 0 20px; }
.ab-grid { grid-template-columns: 1fr; }
.ab-cell { padding: 24px; gap: 14px; border-left: 0; }
.ab-cell:nth-child(2) { border-top: 1px solid var(--border); }
.ab-cell h2 { font-size: 24px; line-height: 1.25; }
.ab-cell p { font-size: 14px; line-height: 22px; }
.ab-journey-head h2 { font-size: 26px; }
.ab-journey-head p { font-size: 14px; }
.ab-tl, .ab-tl--rev { flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; gap: 20px; }
.ab-tl-media { width: 100%; }
.ab-tl-media img { width: 100%; max-width: 300px; height: auto; }
.ab-tl-body { max-width: 100%; }
.ab-tl-body h3 { font-size: 26px; line-height: 32px; }
.ab-tl-body p { font-size: 14px; }
.ab-founder { flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; gap: 28px; }
.ab-founder-copy { gap: 18px; max-width: 100%; }
.ab-founder-copy h2 { font-size: 24px; line-height: 1.3; max-width: 100%; }
.ab-founder-copy .q { max-width: 100%; }
.ab-founder-media { width: 100%; max-width: 340px; }
.ab-team-title { flex-direction: column; align-items: flex-start; gap: 12px; }
.ab-team-title h2 { font-size: 26px; line-height: 1.25; }
.ab-team-title p { font-size: 14px; max-width: 100%; }
.ab-team { grid-template-columns: 1fr; gap: 8px; }
/* the team grid carries 4 "Leo Weber / Role" placeholder cards (tm6–9) that pad
   the 3-column desktop grid; on the single mobile column they read as empty
   repeats — hide them so mobile shows only the 5 real members (matches the
   original -mobile page). Desktop/tablet keep the full grid. */
.ab-team .ab-member:has([data-i18n="about.tm.open.role"]) { display: none; }
.ab-member { padding: 16px 4px 28px; gap: 12px; }
.ab-member .m-name { font-size: 24px; line-height: 30px; margin-top: 4px; }
.ab-member .m-bio { font-size: 14px; line-height: 22px; }
.ab-cta { flex-direction: column; }
.ab-cta-copy { padding: 40px 22px; gap: 24px; }
.ab-cta-copy h2 { font-size: 32px; line-height: 1.15; }
.ab-cta-copy p { font-size: 14px; }
.ab-cta-actions { flex-direction: column; align-items: stretch; }
.ab-cta-actions .btn { width: 100%; }
.ab-cta-media { min-height: 260px; }
.ab-cta-media img { max-width: 100%; }
/* Aboutus: drop the pixel-office image below the CTA on phones */
.ab-cta--nomedia .ab-cta-media { display: none; }
.cu-band-inner { padding: 24px; }
.cu-cards { flex-direction: column; flex-wrap: nowrap; }
.cu-card { flex: 1 1 auto; }
.cu-mapsection { flex-direction: column; height: auto; }
.cu-map { width: 100%; flex: none; height: 360px; }
.cu-info { width: 100%; }
.cu-pick-cards { flex-direction: column; }
.cu-form { padding: 24px; }
.cu-frow { flex-direction: column; gap: 16px; }
.cu-toast { top: auto; bottom: 16px; right: 16px; left: 16px; width: auto; max-width: none; }
.lg-wrap { padding: 0 20px; }
.lg-head { padding: 28px 0; }
.lg-body { grid-template-columns: 1fr; gap: 32px; }
.lg-side { position: static; top: auto; max-height: none; }
.lg-content { gap: 56px; }
.lg-table { min-width: 0; font-size: 13px; }
.lg-table thead th { white-space: normal; }
.lg-table th, .lg-table td { padding: 10px 10px; }
.plan-hero-title { font-size: 30px; line-height: 1.15; }
.cmp-switch {
  display: flex; gap: 4px; margin-top: 28px; padding: 4px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill);
}
.cmp-tab {
  flex: 1; padding: 10px 6px; border: 0; border-radius: var(--r-pill);
  background: transparent; font-family: var(--font); font-size: 14px; font-weight: 500;
  color: var(--muted); cursor: pointer; transition: background .15s ease, color .15s ease;
}
.cmp-tab.is-active { background: #fff; color: var(--ink-2); box-shadow: 0 1px 3px rgba(20, 24, 40, .14); }
.cmp-scroll { overflow-x: hidden; border-radius: var(--r-lg); margin-top: 16px; }
.cmp { min-width: 0; font-size: 14px; }
.cmp { border-collapse: separate; border-spacing: 0; }
.cmp tbody tr { border-bottom: 0; }
.cmp tbody td { border-bottom: 1px solid var(--border); }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp-feat { display: table-cell; }
.cmp-feat .cmp-info { display: inline-block; margin-left: 8px; vertical-align: middle; }
.cmp th, .cmp td { padding: 13px 14px; }
.cmp thead th { position: static; top: auto; box-shadow: inset 0 -1px 0 var(--border); }
.cmp-corner { width: 56%; }
.cmp-plan { width: 44%; text-align: center; }
.cmp-plan-name { font-size: 17px; margin-bottom: 10px; text-align: center; }
.cmp-btn { font-size: 13px; padding: 9px 10px; }
.cmp-group td { font-size: 15px; padding-top: 20px; padding-bottom: 10px; }
.cmp .ck { font-size: 16px; }
.cmp .cmp-hl { background: transparent; }
.cmp thead th.cmp-featured, .cmp tbody td.cmp-featured { background: var(--surface); }
.cmp tbody td.cmp-hl { background: transparent; }
.cmp[data-show="free"] :is(th, td):nth-child(3), .cmp[data-show="free"] :is(th, td):nth-child(4), .cmp[data-show="pro"]  :is(th, td):nth-child(2), .cmp[data-show="pro"]  :is(th, td):nth-child(4), .cmp[data-show="ent"]  :is(th, td):nth-child(2), .cmp[data-show="ent"]  :is(th, td):nth-child(3) { display: none; }
.fx-hero { padding: 28px 0 36px; }
.fx-hero-scene { width: min(300px, 80%); height: auto; margin: 0 auto 8px; }
.fx-hero-copy { gap: 14px; }
.fx-hero-copy h1 { font-size: 28px; line-height: 1.2; }
.fx-hero-copy .fx-sub { font-size: 14px; }
.fx-hero .hero-cta { flex-wrap: nowrap; gap: 10px; margin-top: 4px; width: 100%; }
.fx-hero .hero-cta .btn { flex: 1 1 0; min-width: 0; padding: 0 16px; font-size: 14px; }
.fx-bubble, .fx-screenvid, .fx-retile { display: none !important; }
.fx-grid { grid-template-columns: 1fr; justify-content: stretch; gap: 24px; }
.fx-feature .fx-col-text { order: 1; }
.fx-feature .fx-col-media { order: 2; }
.fx-wm { font-size: 96px; top: -0.22em; left: -4px; }
.fx-feature.reverse .fx-wm { left: auto; right: -4px; }
.fx-feature:not(.reverse):not(.center) .fx-wm { left: auto; right: -4px; }
.fx-title { font-size: 26px; }
.fx-lead { font-size: 15px; }
.fx-acc { gap: 12px; }
.fx-acc-desc p { font-size: 15px; }
.fx-col-media, .fx-cards { max-width: 100%; }
.fx-acc-item .fx-cards { margin-top: 14px; width: 100%; }
/* §04 Avatar: single .fx-col-media image relocated into the open item on mobile */
.fx-acc-item .fx-col-media { margin-top: 14px; width: 100%; }
.fx-feature.center .fx-head { margin-bottom: 24px; }
.fx-feature.fx-mgmt .fx-head { text-align: left; max-width: none; margin: 0 0 24px; align-items: flex-start; }
.fx-feature.fx-mgmt .fx-title { text-align: left; }
.fx-feature.fx-mgmt .fx-wm { left: auto; right: -4px; }
.fx-share-wrap { max-width: 100%; }
.fx-member-row {
  display: flex; grid-template-columns: none; flex-flow: row nowrap;
  /* head mb is 24px on mobile → +24px = 48px total (more breathing room) */
  gap: 16px; margin-top: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  
  margin-inline: -20px; padding: 4px 20px 8px;
}
.fx-member-row::-webkit-scrollbar { display: none; }
.fx-member { flex: 0 0 82%; scroll-snap-align: center; }
#testimonials .fx-testi {
  display: block; grid-template-columns: none; overflow: hidden;
  margin-top: 24px; margin-inline: -20px; padding: 4px 0 10px; text-align: left;
}
#testimonials .fx-testi-track {
  display: flex; width: max-content;
  animation: scroll-x 30s linear infinite;   
}
#testimonials .fx-testi:hover .fx-testi-track { animation-play-state: paused; }
#testimonials .fx-testi-col { display: contents; }
#testimonials .fx-tcard { flex: 0 0 300px; margin: 0 16px 0 0; }
@media (prefers-reduced-motion: reduce) {
  #testimonials .fx-testi-track { animation: none; }
}
.mtg { padding: 22px 14px 46px; border-radius: 22px; }
.mtg .screen { aspect-ratio: 3/4; }
.mtg .app { inset: 38px 10px 10px; }
.mtg .app-body { flex-direction: column; }
.mtg .editor { width: 100%; height: 46%; border-right: 0; border-bottom: 1px solid var(--mtg-line); }
.mtg .prev { height: 54%; }
.mtg .code { font-size: 10px; line-height: 1.7; }
.mtg .code .g { width: 24px; padding-right: 8px; }
.mtg .prev-body { padding: 14px 15px; }
.mtg .rp h3 { font-size: 14px; }
.mtg .rp p { font-size: 9px; }
.mtg .present { font-size: 10.5px; padding: 5px 10px; max-width: 82%; text-align: center; left: 50%; }
.mtg .app-bar .u { font-size: 9.5px; }
.mtg .t2 { width: 29%; top: 7%; right: 4%; }
.mtg .tile.self { width: 29%; bottom: 20%; left: 4%; }
.mtg .tile .nm { font-size: 9px; padding: 3px 6px; }
.mtg .controls { gap: 5px; padding: 12px 8px; }
.mtg .cbtn { height: 40px; padding: 0 9px; gap: 0; }
.mtg .cbtn .chev { display: none; }
.mtg .cbtn svg { width: 18px; height: 18px; }
.mtg .cbtn.round { width: 40px; }
.mtg .bar { padding: 12px 10px; gap: 6px; }
.mtg .room { font-size: 12px; gap: 6px; white-space: nowrap; }
.mtg .room .count { font-size: 11px; padding: 4px 7px; gap: 5px; }
.mtg .room .count svg { width: 13px; height: 13px; }
.mtg .bar-icons { gap: 4px; }
.mtg .icobtn { width: 28px; height: 28px; }
.mtg .icobtn svg { width: 14px; height: 14px; }
.bl-topic { position: relative; margin-top: 16px; }
.bl-topic-trigger {
  width: 100%; height: 52px; display: flex; align-items: center; justify-content: space-between;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 0 16px; font-family: var(--font); font-size: 16px; color: var(--muted-2);
  cursor: pointer; text-align: left;
}
.bl-topic-trigger.has-val .bl-topic-label { color: var(--ink-2); }
.bl-topic-trigger svg { flex: none; color: var(--muted-2); transition: transform .2s ease; }
.bl-topic-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.bl-topic-panel {
  position: absolute; left: 0; right: 0; top: calc(100% + 10px); z-index: 40;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, .16);
  padding: 4px 22px; max-height: 70vh; overflow-y: auto;
}
.bl-topic-panel[hidden] { display: none; }
.bl-topic-panel .bl-facet { margin-top: 0; padding: 18px 0; }
.bl-topic-panel .bl-facet + .bl-facet { border-top: 1px solid var(--border); }
.bl-topic-panel .bl-facet-head {
  font-size: 16px; font-weight: 500; color: var(--ink-2); padding-bottom: 6px;
}
.bl-topic-panel .bl-cat { font-size: 17px; padding: 11px 0; color: var(--ink-2); }
.bl-topic-panel .bl-cat.on { color: var(--green); font-weight: 500; }
}

@media (min-width: 768px) and (max-width: 1023px) {
body {
  margin: 0 auto;
  background: var(--bg);
  overflow-x: hidden;
  box-shadow: 0 0 0 1px rgba(20, 24, 40, .05), 0 24px 70px rgba(20, 24, 40, .16);
}
body { max-width: 860px; }
.site-header { position: sticky; top: 0; }
.hero-scene {
  opacity: .55;
  -webkit-mask-image: linear-gradient(transparent 2%, #000 42%, #000 85%, transparent);
          mask-image: linear-gradient(transparent 2%, #000 42%, #000 85%, transparent);
}
.hero-floor { background: #e7e9ef; }
.feature-cards { grid-template-columns: 1fr 1fr; }
.bento {
  max-width: none;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}
.bento {
    width: calc(100% + 80px);
    margin-left: -40px;
    margin-right: -40px;
  }
.main-nav, .header-actions { display: flex; }
.nav-toggle { display: none; }
.header-inner { gap: 18px; }
.main-nav { gap: 20px; margin-left: 4px; }
.main-nav a { font-size: 14px; white-space: nowrap; }
.header-actions { gap: 10px; }
.header-actions .btn { height: 38px; padding: 0 14px; font-size: 14px; }
.hero { min-height: 600px; padding-top: 52px; }
.tag { display: none; }
.section { padding: 64px 0; }
.section-head { flex-direction: column; }
.logos .marquee-track img { height: 68px; }
.steps { grid-template-columns: repeat(3, 1fr); }
.tabs { grid-template-columns: repeat(3, 1fr); gap: 0; border-bottom: 1px solid var(--border); }
.tab { border: none; border-radius: 0; padding: 18px 20px 22px; }
.pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: start; }
.plan { padding: 22px; }
.plan-featured { margin-top: -12px; padding-bottom: 30px; }
.plan-head h3 { font-size: 22px; }
.plan-price .amount { font-size: 34px; }
.feat-list li { font-size: 14px; }
.cta { grid-template-columns: 1fr 1fr; }
.cta-left { padding: 56px 28px; }
.cta-copy h2 { font-size: 34px; }
.cta-copy p { font-size: 15px; }
.cta-right { min-height: 340px; }
.footer-top { grid-template-columns: 1.4fr 2fr; }
.footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
.cu-mapsection { flex-direction: column; height: auto; }
.cu-map { width: 100%; height: 360px; }
.cu-info { width: 100%; }
.cu-band-inner { padding: 32px; }
.cu-cards { flex-wrap: nowrap; gap: 12px; }
.cu-card { flex: 1 1 0; min-width: 0; padding: 16px; }
.cu-actions { flex-direction: column; align-items: stretch; gap: 8px; }
.cu-pill { width: 100%; height: auto; min-height: 32px; padding: 8px 12px; white-space: normal; }
.cu-or { text-align: center; }
.cu-pick-cards { flex-direction: column; }
.fx-grid { grid-template-columns: 3fr 4fr; gap: 28px; align-items: center; justify-content: stretch; }
.fx-feature.reverse .fx-grid { grid-template-columns: 4fr 3fr; }
.fx-feature.reverse .fx-col-media { order: 1; }
.fx-feature.reverse .fx-col-text { order: 2; }
.fx-col-media { justify-content: center; }
.fx-testi { grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: start; }
/* flatten the 3 column-groups into the grid so all cards flow row-major,
   then drop the 3 duplicate fillers (Sophia x2, Daniel x3) → 6 unique in a
   balanced 3+3 two-column layout (desktop 3-col + mobile marquee unaffected) */
.fx-testi-col { display: contents; }
.fx-testi-col:nth-child(1) .fx-tcard:nth-child(2),
.fx-testi-col:nth-child(2) .fx-tcard:nth-child(3),
.fx-testi-col:nth-child(3) .fx-tcard:nth-child(3) { display: none; }
.fx-hero-copy h1 { font-size: clamp(30px, 5vw, 46px); }
.fx-title { font-size: clamp(22px, 2.9vw, 32px); }
.bl-main { grid-template-columns: 1.5fr 4.5fr; gap: 24px; }
.bl-search input { height: 38px; font-size: 11px; padding: 0 8px 0 30px; }
.bl-search input::placeholder { font-size: 11px; }
.bl-search svg { top: 12px; left: 9px; width: 14px; height: 14px; }
.bl-facet { margin-top: 22px; }
.bl-facet-head { font-size: 12px; padding-bottom: 6px; }
.bl-cat { font-size: 12px; padding: 5px 0; }
.bl-more { margin-top: 40px; }
.bl-more .btn { height: 46px; padding: 0 32px; font-size: 14px; }
.bl-row-featured { grid-template-columns: 672fr 304fr; }
.bl-row-3 { grid-template-columns: repeat(2, 1fr); }
.bl-results { grid-template-columns: repeat(2, 1fr); }
.bl-featured .bl-thumb { height: auto; aspect-ratio: 672/464; }
.bl-sm .bl-thumb { height: auto; aspect-ratio: 304/190; }
.bl-row-3 .bl-thumb { height: auto; aspect-ratio: 16/10; }
}
