/* Websurfer marketing-site UI kit — layout helpers on top of tokens.
   Tokens come from ../../colors_and_type.css */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--color-neutral-darkest); background: #fff; -webkit-font-smoothing: antialiased; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; }
h4, h5, h6 { margin: 0; font-family: var(--font-serif); font-weight: 600; line-height: 1.25; letter-spacing: -0.005em; }
/* Hero headline keeps Grifter (grotesque) */
.hero h1 { font-family: var(--font-grotesque); font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---- layout primitives ---- */
.container { width: 100%; max-width: 80rem; margin-inline: auto; }
.section { padding: var(--section-pad-y) var(--section-pad-x); }
.center { text-align: center; }
.intro { max-width: 34rem; margin: 0 auto var(--space-intro, 5rem); }
.measure { max-width: 34rem; }

.eyebrow { font-weight: 600; font-size: var(--text-medium); margin: 0 0 1rem; }

/* ---- scheme backgrounds (kit copies; tokens drive children) ---- */
.scheme-1 { background: var(--color-white); --surface: var(--color-neutral-lightest); }
.scheme-2 { background: var(--color-neutral-lightest); --surface: var(--color-white); }
.scheme-3 { background: var(--color-jewel-lightest); --surface: var(--color-jewel-lighter); }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: var(--text-regular); font-weight: 500; border: 0; cursor: pointer;
  border-radius: var(--radius-button); padding: 0.75rem 1.5rem; white-space: nowrap;
  transition: all 0.2s ease-in-out; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: var(--text-small); }
.btn-primary { background: var(--color-jewel); color: #fff; box-shadow: var(--shadow-elevate); }
.btn-primary:hover { background: var(--color-jewel-dark); transform: translateY(-2px); box-shadow: var(--shadow-elevate-hover); }
.btn-secondary { background: var(--color-neutral-darkest-5); color: var(--color-neutral-darkest); box-shadow: var(--shadow-secondary); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: var(--color-neutral-darkest-15); }
.btn-link { background: transparent; color: var(--color-neutral-darkest); padding: 0.75rem 0.25rem; gap: 0.5rem; }
.btn-link:hover { color: var(--color-jewel); }
.btn-block { width: 100%; }
.btn svg { width: 1.125rem; height: 1.125rem; }

/* ---- card ---- */
.card { background: var(--surface); border: 1px solid var(--color-neutral-darkest-15); overflow: hidden; border-radius: var(--radius-card); }
.divider { height: 1px; width: 100%; background: var(--color-neutral-darkest-15); }

/* ---- input ---- */
.input { width: 100%; min-height: 2.75rem; padding: 0.625rem 0.875rem; font-family: var(--font-body);
  font-size: var(--text-regular); color: var(--color-neutral-darkest);
  border: 1px solid var(--color-neutral-darkest-5); background: var(--color-neutral-darkest-5);
  border-radius: var(--radius-input); transition: all 0.2s; }
.input::placeholder { color: var(--color-neutral-darkest-60); }
.input:hover { border-color: var(--color-neutral-darkest-15); background: var(--color-neutral-darkest-10); }
.input:focus { outline: none; border-color: var(--color-jewel); }

/* ---- placeholder image frame (Relume-style) ---- */
.ph { background: #ccced2; display: flex; align-items: center; justify-content: center; color: #fff; }
.ph svg { width: 22%; height: auto; opacity: 0.9; }
.ratio-video { aspect-ratio: 16/9; }
.ratio-square { aspect-ratio: 1/1; }

/* ---- icon helper ---- */
.ic { width: 1.5rem; height: 1.5rem; display: inline-flex; }
.ic-lg { width: 3rem; height: 3rem; }

/* ---- marquee (logo / testimonial rails) ---- */
.marquee { overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 3rem; width: max-content; animation: ws-marquee 30s linear infinite; }
@keyframes ws-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- nav ---- */
.nav-link { display: block; padding: 0.5rem 1rem; font-size: var(--text-regular); }
.nav-link:hover { color: var(--color-jewel); }

/* ---- responsive ---- */
@media (max-width: 1149px) {
  .lg-only { display: none !important; }
}
@media (min-width: 1150px) {
  .mobile-only { display: none !important; }
}
@media (max-width: 991px) {
  .grid-3 { grid-template-columns: 1fr !important; }
}
/* Tighten the centered desktop nav so all section links fit without crowding the logo/actions */
nav.lg-only .nav-link, nav.lg-only .nav-trigger { padding-left: 0.6rem; padding-right: 0.6rem; }

/* ============================================================
   VIDEO HERO (Squarespace-style)
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: #000; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }
/* iOS Safari overlays a tappable "play" button on inline videos when autoplay is
   blocked (e.g. Low Power Mode). Hide its native media controls so only the
   poster frame shows — no stray play button. */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-overlay-play-button { display: none !important; -webkit-appearance: none; }
video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: var(--hero-scrim-bg,
    linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.34) 30%, rgba(0,0,0,0.32) 58%, rgba(0,0,0,0.42) 80%, rgba(0,0,0,0.6) 91%, #000 100%));
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero h1 { color: #fff; font-size: clamp(2.75rem, 6.5vw, 5.25rem); line-height: 1.02; letter-spacing: -0.02em; text-wrap: balance; }
.hero .hero-sub { color: rgba(255,255,255,0.86); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; color: #fff;
  font-weight: 600; font-size: var(--text-small); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.4rem 0.85rem; border: 1px solid rgba(255,255,255,0.35); border-radius: 999px;
  backdrop-filter: blur(6px); background: rgba(255,255,255,0.08);
}
.btn-on-dark, .btn-glass { background: rgba(255,255,255,0.12); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4); backdrop-filter: blur(10px); }
.btn-on-dark:hover, .btn-glass:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--color-neutral-darkest); box-shadow: var(--shadow-secondary); }
.btn-white:hover { background: var(--color-neutral-lightest); transform: translateY(-2px); }
.scroll-cue { display: none; position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.7); animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---- scroll-aware navbar ---- */
/* Transparent state sits in-flow (absolute) over the hero so it scrolls AWAY
   with the hero content — no overlap with the heading. Only once we cross the
   threshold does it become a fixed white bar that drops in. */
.nav-overlay { position: absolute; top: 0; left: 0; right: 0; background: transparent; border-bottom: 1px solid transparent; transition: background .45s ease, border-color .45s ease, box-shadow .45s ease; }
.nav-overlay.nav-solid { position: fixed; background: var(--color-white); border-bottom-color: var(--color-neutral-darkest-10); box-shadow: 0 1px 3px rgba(13,13,13,0.04);
  animation: navDrop .45s cubic-bezier(.2,.7,.2,1); }
@keyframes navDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .nav-overlay.nav-solid { animation: none; } }
.nav-overlay .nav-link, .nav-overlay .nav-trigger { color: #fff; transition: color .45s ease; }
.nav-overlay.nav-solid .nav-link, .nav-overlay.nav-solid .nav-trigger { color: var(--color-neutral-darkest); }
.nav-overlay .nav-link:hover, .nav-overlay.nav-solid .nav-link:hover { color: var(--color-jewel); }

/* ---- anchor scrolling (single-page nav) ---- */
html { scroll-behavior: smooth; }
#top, #pipeline, #capabilities, #pricing, #testimonials,
#cap-website, #cap-reviews, #cap-followup, #cap-seo, #cap-marketing { scroll-margin-top: 5.5rem; }
/* Offset every nav-target section so its top clears the fixed navbar on anchor jumps */
#work, #pipeline, #capabilities, #why, #pricing, #process, #testimonials, #faq { scroll-margin-top: 5.5rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---- Features mega menu ---- */
.nav-mega-wrap { position: relative; }
.nav-mega { position: absolute; top: calc(100% + 0.55rem); left: 50%; transform: translateX(-50%) translateY(6px);
  width: 660px; max-width: 92vw; padding: 0.9rem; border-radius: 20px;
  background: var(--color-white); border: 1px solid var(--color-neutral-darkest-10);
  box-shadow: 0 28px 70px -22px rgba(13,13,13,0.30), 0 4px 14px -6px rgba(13,13,13,0.12);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, transform .2s ease; z-index: 50; }
/* invisible bridge across the gap so the pointer can travel from the trigger
   into the panel without crossing a dead zone that would close the menu */
.nav-mega::before { content: ""; position: absolute; left: 0; right: 0; top: -0.7rem; height: 0.7rem; }
.nav-mega.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem; }
.mega-item { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 0.95rem; border-radius: 13px; text-align: left;
  color: var(--color-neutral-darkest); transition: background .18s ease; }
.mega-item:hover { background: var(--color-neutral-lightest); color: var(--color-neutral-darkest); }
.mega-ico { flex: none; width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: var(--color-jewel-lightest); color: var(--color-jewel); border: 1px solid var(--color-jewel-lighter);
  transition: background .18s ease, color .18s ease, border-color .18s ease; }
.mega-ico svg { width: 20px; height: 20px; }
.mega-item:hover .mega-ico { background: var(--color-jewel); color: #fff; border-color: var(--color-jewel); }
.mega-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mega-title { font-size: 1rem; font-weight: 600; line-height: 1.2; }
.mega-desc { font-size: 0.82rem; line-height: 1.32; color: var(--color-neutral-dark); }
.nav-trigger .chev { transition: transform .2s ease; }
.nav-mega-wrap:hover .nav-trigger .chev { transform: rotate(180deg); }

/* mobile mega list */
.m-mega { display: grid; gap: 0.1rem; padding: 0.25rem 0 0.5rem; }
.m-mega .mega-item { padding: 0.6rem 0.4rem; }

/* ============================================================
   WORK CAROUSEL — fictitious business website mockups
   Dark section that continues seamlessly from the hero
   ============================================================ */
.showcase { position: relative; display: flow-root; background: #000; color: #fff; padding-bottom: 2rem; }
.showcase .eyebrow { color: var(--color-jewel-light); }
.showcase h2 { color: #fff; }
.showcase .showcase-sub { color: rgba(255,255,255,0.62); }
/* fade the black section back down into the light section that follows */
.showcase-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 220px; z-index: 1; background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 100%); pointer-events: none; }

/* showcase intro scroll-reveal + scroll-down arrow */
.showcase-intro .s-rise { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.showcase-intro .s-rise:nth-child(2) { transition-delay: .1s; }
.showcase-intro .s-rise:nth-child(3) { transition-delay: .22s; }
.showcase-intro .s-rise:nth-child(4) { transition-delay: .34s; }
.showcase-intro.in .s-rise { opacity: 1; transform: none; }
.scroll-down { margin: 2.25rem auto 0; padding: 6px; display: grid; place-items: center; cursor: pointer; color: #fff;
  background: none; border: 0; box-shadow: none; opacity: 0.85; transition: opacity .2s; animation: arrowBob 2.2s ease-in-out infinite; }
.scroll-down:hover { opacity: 1; }
.scroll-down svg { width: 26px; height: auto; display: block; }
@keyframes arrowBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@media (prefers-reduced-motion: reduce) {
  .showcase-intro .s-rise { opacity: 1; transform: none; transition: none; }
  .scroll-down { animation: none; }
}
.carousel-wrap { margin-top: -210px; position: relative; z-index: 3; }
.carousel-mask { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent); }
.carousel-track { display: flex; gap: 1.5rem; width: max-content; animation: carousel-scroll var(--arc-pace, 90s) linear infinite; padding: 110px 0 90px; will-change: transform; }
.carousel-wrap:hover .carousel-track { animation-play-state: paused; }
@keyframes carousel-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- full-bleed mini site (no browser chrome, 16:9) ---- */
.mini { width: 560px; aspect-ratio: 16 / 9; flex: none; border-radius: 16px; overflow: hidden; position: relative;
  container-type: inline-size;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35), 0 34px 70px -16px rgba(0,0,0,0.72);
  transform-origin: center center; backface-visibility: hidden; color: #fff; }
.m-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.m-scrim { position: absolute; inset: 0; }
.m-frame { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; }
/* All sizes in cqw (% of the card's own width, 560px design basis) so the mock
   site scales perfectly at any card size — phone carousel through desktop. */
.m-nav { display: flex; align-items: center; justify-content: space-between; padding: 3.21cqw 4.29cqw; }
.m-logo { font-family: var(--font-grotesque); font-weight: 800; font-size: 3.04cqw; letter-spacing: -0.01em; line-height: 1; }
.m-links { display: flex; gap: 2.86cqw; font-size: 1.96cqw; font-weight: 500; opacity: 0.82; }
.m-pill { font-size: 1.96cqw; font-weight: 600; padding: 1.25cqw 2.68cqw; border-radius: 999px; line-height: 1; white-space: nowrap;
  background: rgba(255,255,255,0.16); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4); backdrop-filter: blur(6px); }
.m-hero { padding: 0 5.36cqw 5.36cqw; margin-top: auto; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.m-hero.m-center { margin: auto; align-items: center; text-align: center; padding: 0 5.71cqw; }
.m-h { font-family: var(--font-grotesque); font-weight: 800; font-size: 7.14cqw; line-height: 0.96; letter-spacing: -0.015em; text-shadow: 0 1px 24px rgba(0,0,0,0.25); }
.m-hero.m-center .m-h { font-size: 8.21cqw; }
.m-eyebrow { font-size: 1.79cqw; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.92; margin-bottom: 2.14cqw; }
.m-sub { font-size: 2.14cqw; line-height: 1.45; opacity: 0.86; margin-top: 2.14cqw; }
.m-cta-row { display: flex; align-items: center; gap: 2.14cqw; margin-top: 3.21cqw; }
.m-btn { display: inline-flex; align-items: center; gap: 1.07cqw; font-size: 1.96cqw; font-weight: 600; padding: 1.79cqw 3.21cqw; border-radius: 999px; line-height: 1; white-space: nowrap;
  background: #fff; color: #14110e; }
.m-chip { display: inline-flex; align-items: center; gap: 0.9cqw; font-size: 1.79cqw; font-weight: 600; letter-spacing: 0.01em; padding: 1.25cqw 2.14cqw; border-radius: 999px; line-height: 1;
  background: rgba(255,255,255,0.14); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.32); backdrop-filter: blur(6px); white-space: nowrap; }

@media (max-width: 991px) {
  .carousel-wrap { margin-top: -130px; }
  .mini { width: 380px; }
}

/* ============================================================
   PIPELINE — dark product-reveal section + animated portal
   ============================================================ */
.pipeline { position: relative; background: linear-gradient(to bottom, #000 0%, #030805 9%, #06100b 26%, #06100b 100%); color: #fff; padding: 7rem 5% 7.5rem; overflow: hidden; }
.pipeline-glow { position: absolute; top: 3%; left: 50%; transform: translateX(-50%); width: 1100px; height: 760px; pointer-events: none; z-index: 0;
  background: radial-gradient(50% 50% at 50% 46%, rgba(14,83,52,0.55) 0%, rgba(14,83,52,0.16) 46%, rgba(6,16,11,0) 72%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 22%, #000 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 22%, #000 100%); }
.pipeline-topfade { position: absolute; top: 0; left: 0; right: 0; height: 220px; z-index: 0; pointer-events: none;
  background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.55) 42%, rgba(0,0,0,0) 100%); }
.pipeline-head { position: relative; z-index: 1; text-align: center; max-width: 62rem; margin: 0 auto; }
.pipeline-kicker { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; padding: 0.45rem 0.9rem; border-radius: 999px; background: rgba(255,255,255,0.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18); }
.pipeline-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4.4vw, 3.25rem); line-height: 1.05; letter-spacing: -0.01em; margin: 1.5rem 0 0; color: #fff; }
.pipeline-title .name { display: block; font-family: var(--font-grotesque); font-weight: 800; font-size: clamp(3.6rem, 10vw, 7.5rem); line-height: 0.86; letter-spacing: -0.03em; margin-top: 0.12em;
  background: linear-gradient(180deg, #ffffff 0%, #bfe8d3 120%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pipeline-sub { font-size: var(--text-medium); line-height: 1.55; color: rgba(255,255,255,0.68); max-width: 38rem; margin: 1.5rem auto 0; }

/* scroll-triggered reveal */
.pipeline-head .pipeline-kicker,
.pipeline-head .pipeline-title,
.pipeline-head .pipeline-sub {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.pipeline-head .pipeline-title { transition-delay: .12s; }
.pipeline-head .pipeline-sub { transition-delay: .32s; }
.pipeline-head .pipeline-title .name {
  display: block; opacity: 0; transform: translateY(40px) scale(.94);
  transition: opacity .85s ease .2s, transform 1s cubic-bezier(.2,.7,.2,1) .2s;
}
.pipeline-head.in .pipeline-kicker,
.pipeline-head.in .pipeline-title,
.pipeline-head.in .pipeline-sub,
.pipeline-head.in .pipeline-title .name { opacity: 1; transform: none; }

.portal-frame { opacity: 0; transform: translateY(48px) scale(.985);
  transition: opacity .85s ease .28s, transform 1s cubic-bezier(.2,.7,.2,1) .28s; }
.portal-frame.in { opacity: 1; transform: none; }
.pipeline-strip { opacity: 0; transform: translateY(20px); transition: opacity .7s ease .45s, transform .7s ease .45s; }
.pipeline-strip.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .pipeline-head .pipeline-kicker, .pipeline-head .pipeline-title, .pipeline-head .pipeline-sub,
  .pipeline-head .pipeline-title .name, .portal-frame, .pipeline-strip { opacity: 1; transform: none; transition: none; }
}

/* device */
.portal { position: relative; z-index: 1; width: 100%; max-width: 1140px; margin: 3.5rem auto 0; height: clamp(540px, 62vw, 660px);
  background: #fff; color: var(--color-neutral-darkest); border-radius: 18px; overflow: hidden; display: grid; grid-template-columns: 216px 1fr; text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4), 0 50px 90px -30px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.06);
  --pl-line: rgba(13,13,13,0.10); --pl-muted: #5d6b63; --pl-surface: #f5f7f5; --pl-accent: var(--color-jewel); }

/* ---- huly-style moving glow border (Websurfer cerulean + jewel) ---- */
@property --pl-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

.portal-frame { position: relative; z-index: 1; width: 100%; max-width: 1140px; margin: 3.5rem auto 0; border-radius: 18px; isolation: isolate; }
.portal-frame .portal { margin: 0; max-width: none; }

/* the comet gradient: a bright cerulean arc + an opposing mint-jewel arc that
   circle the frame; everything else transparent so two lights orbit the border */
.portal-frame::before,
.portal-frame::after {
  content: ""; position: absolute; border-radius: inherit; pointer-events: none;
  background: conic-gradient(from var(--pl-angle),
    transparent 0deg, transparent 28deg,
    #53a5c7 62deg, #8fe3ff 86deg, #4fb6dd 110deg,
    transparent 150deg, transparent 208deg,
    #2f8f5b 244deg, #bfe8d3 270deg, #46c98a 296deg,
    transparent 332deg, transparent 360deg);
}

/* soft outer bloom */
.portal-frame::before {
  inset: -10px; filter: blur(22px) saturate(1.3); opacity: 0; transform: scale(0.97);
  transition: opacity .9s ease .5s, transform 1s ease .5s;
}
.portal-frame.in::before { opacity: 1; transform: scale(1); }

/* crisp 2px traveling light ring (gradient masked to a border) */
.portal-frame::after {
  inset: -2px; padding: 2px; opacity: 0; filter: saturate(1.25) brightness(1.15);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: opacity .9s ease .5s;
}
.portal-frame.in::after { opacity: 1; }

/* spin both layers together once revealed */
.portal-frame.in::before,
.portal-frame.in::after { animation: plOrbit 6s linear infinite; }
@keyframes plOrbit { to { --pl-angle: 360deg; } }

@media (prefers-reduced-motion: reduce) {
  .portal-frame.in::before, .portal-frame.in::after { animation: none; }
}

/* sidebar */
.portal-side { background: #f7f9f7; border-right: 1px solid var(--pl-line); padding: 16px 12px; display: flex; flex-direction: column; gap: 3px; }
.portal-brand { display: flex; align-items: center; gap: 9px; padding: 4px 8px 14px; }
.portal-brand-mark { width: 26px; height: 26px; border-radius: 7px; background: var(--pl-accent); color: #fff; display: grid; place-items: center; flex: none; }
.portal-brand-mark svg { width: 15px; height: 15px; }
.portal-brand-name { font-family: var(--font-grotesque); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }
.portal-navitem { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; font-size: 13px; font-weight: 500; color: #41504a; cursor: pointer; border: 0; background: transparent; width: 100%; text-align: left; transition: background .15s, color .15s; }
.portal-navitem svg { width: 17px; height: 17px; opacity: 0.85; }
.portal-navitem:hover { background: rgba(13,13,13,0.04); }
.portal-navitem.active { background: var(--pl-accent); color: #fff; }
.portal-navitem.active svg { opacity: 1; }
.portal-navsep { height: 1px; background: var(--pl-line); margin: 9px 6px; }
.portal-side-foot { margin-top: auto; display: flex; align-items: center; gap: 9px; padding: 8px; border-radius: 8px; }
.portal-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg,#0e5334,#53a5c7); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; flex: none; }

/* main */
.portal-main { display: flex; flex-direction: column; min-width: 0; }
.portal-topbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--pl-line); flex: none; }
.portal-topbar h4 { font-family: var(--font-serif); font-weight: 600; font-size: 17px; }
.portal-search { display: flex; align-items: center; gap: 7px; background: var(--pl-surface); border: 1px solid var(--pl-line); border-radius: 8px; padding: 6px 12px; font-size: 12px; color: var(--pl-muted); width: 200px; }
.portal-search svg { width: 14px; height: 14px; }
.portal-stage { position: relative; flex: 1; overflow: hidden; background: #fcfdfc; }
.portal-screen { position: absolute; inset: 0; padding: 18px 20px; overflow: hidden; animation: screenIn 0.55s cubic-bezier(.4,0,.2,1); }
@keyframes screenIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* portal building blocks */
.pl-row { display: flex; gap: 12px; }
.pl-card { background: #fff; border: 1px solid var(--pl-line); border-radius: 11px; padding: 14px; }
.pl-h { font-family: var(--font-serif); font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.pl-label { font-size: 11px; color: var(--pl-muted); font-weight: 500; }
.pl-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 600; padding: 4px 9px; border-radius: 999px; background: var(--color-jewel-lightest); color: var(--color-jewel-dark); }
.pl-badge svg { width: 11px; height: 11px; }
.pl-stat-num { font-family: var(--font-serif); font-weight: 600; font-size: 26px; line-height: 1; margin-top: 8px; }
.pl-stat-ico { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; }
.pl-stat-ico svg { width: 16px; height: 16px; }
.pl-list-row { display: flex; align-items: center; gap: 11px; padding: 9px 0; border-top: 1px solid var(--pl-line); }
.pl-pill-time { font-size: 11px; font-weight: 700; color: var(--color-jewel-dark); background: var(--color-jewel-lightest); padding: 5px 8px; border-radius: 6px; flex: none; }
.pl-avatar-sm { width: 26px; height: 26px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 10px; font-weight: 700; color: #fff; }
.pl-tag { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 999px; background: var(--pl-surface); color: #41504a; border: 1px solid var(--pl-line); }
.pl-kanban { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; height: 100%; }
.pl-kcol { background: var(--pl-surface); border: 1px solid var(--pl-line); border-radius: 10px; padding: 9px; display: flex; flex-direction: column; gap: 7px; }
.pl-kcol-h { display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 700; color: #41504a; }
.pl-kcount { font-size: 10px; font-weight: 700; color: var(--pl-muted); background: #fff; border: 1px solid var(--pl-line); border-radius: 999px; padding: 1px 7px; }
.pl-kcard { background: #fff; border: 1px solid var(--pl-line); border-radius: 8px; padding: 9px; box-shadow: 0 1px 2px rgba(13,13,13,0.04); }
.pl-kname { font-size: 12px; font-weight: 600; }
.pl-kmeta { font-size: 10px; color: var(--pl-muted); margin-top: 2px; }
.pl-cal { display: grid; grid-template-columns: 38px repeat(5, 1fr); grid-auto-rows: 1fr; height: 100%; border: 1px solid var(--pl-line); border-radius: 10px; overflow: hidden; }
.pl-cal-cell { border-right: 1px solid var(--pl-line); border-bottom: 1px solid var(--pl-line); position: relative; }
.pl-cal-time { font-size: 9.5px; color: var(--pl-muted); padding: 3px 5px; border-right: 1px solid var(--pl-line); border-bottom: 1px solid var(--pl-line); }
.pl-cal-head { font-size: 10.5px; font-weight: 700; color: #41504a; padding: 6px 4px; text-align: center; border-right: 1px solid var(--pl-line); border-bottom: 1px solid var(--pl-line); background: var(--pl-surface); }
.pl-event { position: absolute; left: 3px; right: 3px; border-radius: 6px; padding: 4px 6px; font-size: 9.5px; font-weight: 600; color: #fff; overflow: hidden; line-height: 1.25; }
.pl-msg { max-width: 75%; padding: 8px 11px; border-radius: 13px; font-size: 12px; line-height: 1.4; }
.pl-msg.in { background: var(--pl-surface); border: 1px solid var(--pl-line); border-bottom-left-radius: 4px; align-self: flex-start; }
.pl-msg.out { background: var(--pl-accent); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.pl-auto-note { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--color-jewel-dark); background: var(--color-jewel-lightest); border-radius: 8px; padding: 8px 11px; }
.pl-auto-note svg { width: 14px; height: 14px; flex: none; }
.pl-stars { color: #e8a33d; letter-spacing: 1px; }
.pl-convo { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 9px; cursor: pointer; }
.pl-convo.active { background: var(--color-jewel-lightest); }

/* feature caption strip */
.pipeline-strip { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; max-width: 1000px; margin: 2.25rem auto 0; }
.pipeline-feat { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.6); padding: 0.5rem 0.95rem; border-radius: 999px; background: rgba(255,255,255,0.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10); cursor: pointer; transition: all .2s; }
.pipeline-feat svg { width: 15px; height: 15px; }
.pipeline-feat.active { color: #06100b; background: #bfe8d3; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4); }
.pipeline-feat:hover { color: #fff; }
.pipeline-feat.active:hover { color: #06100b; }

@media (max-width: 860px) {
  .portal { grid-template-columns: 60px 1fr; height: clamp(460px, 96vw, 560px); }
  .portal-brand-name, .portal-navitem span, .portal-side-foot div { display: none; }
  .portal-navitem { justify-content: center; padding: 9px 0; }
  .portal-search { display: none; }
  .pl-kanban { grid-template-columns: repeat(5, minmax(90px,1fr)); overflow-x: auto; }
}

/* ===== "Who we build for" representative avatar marquee ===== */
.bf-blk { background: var(--color-white); padding: 6rem 0 6.5rem; overflow: hidden; }
.bf-head { max-width: 52rem; margin: 0 auto 3rem; padding: 0 5%; text-align: center; }
.bf-eyebrow { font-family: var(--font-body); font-weight: 600; font-size: var(--text-medium); color: var(--color-jewel); }
.bf-title { font-family: var(--font-display); font-weight: 400; font-size: var(--text-h2); line-height: 1.1; margin: .75rem 0 1rem; letter-spacing: -0.015em; }
.bf-note { color: var(--color-neutral-dark); font-size: var(--text-medium); }
.bf-marquee { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.bf-track { display: flex; gap: 1.5rem; width: max-content; padding: .5rem .75rem; animation: bf-scroll 44s linear infinite; }
.bf-marquee:hover .bf-track { animation-play-state: paused; }
@keyframes bf-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.bf-card { flex: 0 0 22rem; box-sizing: border-box; background: var(--color-white); border: 1px solid var(--color-neutral-darkest-15); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.bf-card-top { display: flex; align-items: center; gap: .9rem; }
.bf-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex: none; }
.bf-meta { display: flex; flex-direction: column; gap: .1rem; }
.bf-name { font-weight: 600; font-size: var(--text-regular); }
.bf-trade { font-size: var(--text-small); color: var(--color-jewel); font-weight: 500; }
.bf-line { color: var(--color-neutral-darkest); font-size: var(--text-medium); line-height: 1.42; margin: 0; }
.bf-tag { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--text-tiny); color: var(--color-neutral-dark); margin-top: auto; }
.bf-tag i, .bf-tag svg { width: 14px; height: 14px; }
@media (prefers-reduced-motion: reduce) { .bf-track { animation: none; overflow-x: auto; } }

/* ===== Data-driven "eye-opener" stats ===== */
.stats-blk { background: var(--color-neutral-lightest); padding: 6rem 0; border-top: 1px solid var(--color-neutral-darkest-10); border-bottom: 1px solid var(--color-neutral-darkest-10); }
.stats-head { max-width: 62rem; margin: 0 auto 3.25rem; text-align: center; }
.stats-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4vw, 2.7rem); line-height: 1.12; margin: .75rem 0 1rem; letter-spacing: -0.015em; }
.stats-sub { color: var(--color-neutral-dark); font-size: var(--text-medium); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card { background: var(--color-white); border: 1px solid var(--color-neutral-darkest-15); padding: 2rem 1.5rem; }
.stat-big { font-family: var(--font-grotesque); font-weight: 800; font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1; letter-spacing: -0.02em; color: var(--color-jewel); }
.stat-label { font-weight: 600; font-size: var(--text-regular); margin: .85rem 0 .5rem; line-height: 1.3; }
.stat-foot { color: var(--color-neutral-dark); font-size: var(--text-small); line-height: 1.45; }
.stats-src { text-align: center; margin-top: 2.25rem; font-size: var(--text-tiny); color: var(--color-neutral-dark); }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr; } .bf-card { flex-basis: 18rem; } }

/* ===== Stats section — premium upgrade (icons + reveal + count-up) ===== */
.stat-card { transition: border-color .2s ease, box-shadow .25s ease; }
.stat-ico { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 11px; background: var(--color-jewel-lightest); color: var(--color-jewel); margin-bottom: 1.25rem; }
.stat-ico i, .stat-ico svg { width: 24px; height: 24px; }
.stat-card:hover { border-color: var(--color-jewel); box-shadow: 0 16px 38px rgba(13,13,13,0.09); }
.stat-big { min-height: 1em; }
/* staggered scroll-reveal (matches Pipeline / Capabilities motion) */
.stats-blk .stats-head > *, .stats-blk .stat-card { opacity: 0; }
.stats-blk.in .stats-head > * { animation: stat-rise .8s ease both; }
.stats-blk.in .stats-head > *:nth-child(2) { animation-delay: .12s; }
.stats-blk.in .stats-head > *:nth-child(3) { animation-delay: .26s; }
.stats-blk.in .stat-card { animation: stat-rise .8s ease both; }
.stats-blk.in .stat-card:nth-child(2) { animation-delay: .2s; }
.stats-blk.in .stat-card:nth-child(3) { animation-delay: .4s; }
.stats-blk.in .stat-card:nth-child(4) { animation-delay: .6s; }
@keyframes stat-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .stats-blk .stats-head > *, .stats-blk .stat-card { opacity: 1 !important; animation: none !important; }
}

/* ===== "Who we build for" header reveal + disclaimer ===== */
.bf-blk .bf-head > * { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.bf-blk .bf-head > *:nth-child(2) { transition-delay: .12s; }
.bf-blk.in .bf-head > * { opacity: 1; transform: none; }
.bf-disclaimer { text-align: center; margin: 2.75rem auto 0; max-width: 40rem; padding: 0 5%; font-size: var(--text-tiny); color: var(--color-neutral-dark); opacity: 0; transition: opacity .7s ease .2s; }
.bf-blk.in .bf-disclaimer { opacity: 1; }

/* ===== Hero content load-in (smooth from the very top) ===== */
.hero-inner .hero-eyebrow, .hero-inner h1, .hero-inner .hero-sub, .hero-inner #hero-cta {
  opacity: 0; transform: translateY(22px); animation: heroIn .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-inner h1 { animation-delay: .12s; }
.hero-inner .hero-sub { animation-delay: .26s; }
.hero-inner #hero-cta { animation-delay: .4s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .bf-blk .bf-head > *, .bf-disclaimer,
  .hero-inner .hero-eyebrow, .hero-inner h1, .hero-inner .hero-sub, .hero-inner #hero-cta {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

/* ===== "How it works" — 4-step process ===== */
.process { background: var(--color-white); padding: 6rem 0; border-top: 1px solid var(--color-neutral-darkest-10); }
.process-head { max-width: 42rem; margin: 0 auto 3.75rem; text-align: center; }
.process-head .eyebrow { color: var(--color-jewel); }
.process-title { font-family: var(--font-display); font-weight: 400; font-size: var(--text-h2); line-height: 1.1; letter-spacing: -0.015em; margin: .75rem 0 1rem; }
.process-sub { color: var(--color-neutral-dark); font-size: var(--text-medium); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
/* dashed connector running between the icon tiles (desktop) */
.process-steps::before { content: ""; position: absolute; top: 27px; left: 12.5%; right: 12.5%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-jewel) 0 5px, transparent 5px 11px); opacity: .28; z-index: 0; }
.pstep { position: relative; text-align: center; }
.pstep-ico { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 14px; background: var(--color-jewel-lightest); color: var(--color-jewel); box-shadow: 0 0 0 7px var(--color-neutral-lightest); }
.pstep-ico i, .pstep-ico svg { width: 26px; height: 26px; }
.pstep-num { display: block; margin: 1.25rem 0 .35rem; font-size: var(--text-small); font-weight: 600; color: var(--color-jewel); letter-spacing: .02em; }
.pstep-title { font-family: var(--font-serif); font-weight: 600; font-size: var(--text-large); line-height: 1.25; margin: 0 0 .5rem; }
.pstep-desc { color: var(--color-neutral-dark); font-size: var(--text-small); line-height: 1.5; max-width: 17rem; margin: 0 auto; }
.pstep-desc a { color: var(--color-jewel); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.pstep-desc a:hover { color: var(--color-jewel-dark); }
/* staggered scroll reveal */
.process-head > *, .process .pstep { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .95s cubic-bezier(.2,.7,.2,1); }
.process.in .process-head > *, .process.in .pstep { opacity: 1; transform: none; }
.process.in .process-head > *:nth-child(2) { transition-delay: .12s; }
.process.in .process-head > *:nth-child(3) { transition-delay: .26s; }
.process.in .pstep:nth-child(1) { transition-delay: .2s; }
.process.in .pstep:nth-child(2) { transition-delay: .44s; }
.process.in .pstep:nth-child(3) { transition-delay: .68s; }
.process.in .pstep:nth-child(4) { transition-delay: .92s; }
@media (max-width: 800px) { .process-steps { grid-template-columns: 1fr; gap: 2.5rem; max-width: 26rem; margin: 0 auto; } .process-steps::before { display: none; } }
@media (prefers-reduced-motion: reduce) { .process-head > *, .process .pstep { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   RESPONSIVE QA — viewport lock + mobile refinements
   ============================================================ */

/* Never allow horizontal page scroll from decorative overflow (card glows,
   marquees, etc.). overflow-x: clip avoids creating a scroll container, so it
   does not affect vertical scrolling or sticky positioning. */
html, body { overflow-x: clip; max-width: 100%; }

/* ---- Showcase carousel: tighter & flatter on phones (kills the black void).
   Mock-site content is sized in cqw, so it scales cleanly at this card width. -- */
@media (max-width: 640px) {
  :root { --arc-depth: 16px; --arc-tilt: 4; }
  .carousel-track { padding: 30px 0 36px; gap: 1rem; }
  .carousel-wrap { margin-top: -70px; }
  .mini { width: 270px; border-radius: 13px; }
  .showcase-fade { height: 110px; }
  .showcase { padding-bottom: 0; }
}

/* ---- Pipeline portal: JS scales the full dashboard to fit narrow screens,
   so every screen keeps its real proportions instead of breaking. ---- */
.portal { transform-origin: top left; }
/* On phones the scaled kanban columns are narrow; drop the tiny card avatars
   so names sit on one line inside their cards. */
@media (max-width: 640px) {
  .pl-kcard .pl-avatar-sm { display: none; }
  .pl-kcol { padding: 6px; }
  .pl-kcard { padding: 7px 6px; }
  .pl-kname { font-size: 10.5px; line-height: 1.2; }
}
/* The small scaled portal otherwise floats as a white box on near-black (the
   section's radial glow sits over the heading, above it). Replace the comet
   bloom with a soft ELLIPTICAL green pool behind the portal so it sits in light
   and blends — a box-shadow or rounded-rect glow follows the card edge and reads
   as a box, so this uses a radial (no rectangular character). Comet rim dimmed. */
@media (max-width: 640px) {
  .portal-frame::before {
    inset: -70px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(22,90,60,0.8), rgba(22,90,60,0.22) 55%, transparent 80%);
    filter: blur(30px); opacity: 1;
  }
  .portal-frame::after { inset: -1px; padding: 1.25px; opacity: .4; }
}

/* ---- Process + ROI ("the math") sections lacked side padding (their content
   ran to the screen edge on phones). Give the inner content breathing room. ---- */
@media (max-width: 768px) {
  .stats-blk, .process { padding-left: 6%; padding-right: 6%; }
}

/* Hero headline: keep it to two lines on phones ("Let's make your" /
   "website surfable") — the default floor size wraps to 3-4 lines on narrow
   screens. Scales with viewport so it stays two lines from ~320px up. */
@media (max-width: 540px) {
  .hero h1 { font-size: clamp(2rem, 8.7vw, 2.5rem); }
}

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq-blk { background: var(--color-white); padding: 6.5rem 5% 7.5rem; border-top: 1px solid var(--color-neutral-darkest-10); }
.faq-inner { max-width: 48rem; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 3rem; }
.faq-head .eyebrow { color: var(--color-jewel); margin-bottom: 0; }
.faq-title { font-family: var(--font-display); font-weight: 400; font-size: var(--text-h2); line-height: 1.1; letter-spacing: -0.015em; margin: .75rem 0 1rem; }
.faq-sub { color: var(--color-neutral-dark); font-size: var(--text-medium); }
.faq-list { border-top: 1px solid var(--color-neutral-darkest-10); }
.faq-item { border-bottom: 1px solid var(--color-neutral-darkest-10); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; text-align: left;
  background: none; border: 0; cursor: pointer; padding: 1.45rem 0.25rem; font-family: var(--font-body); font-size: 1.1rem; font-weight: 600;
  color: var(--color-neutral-darkest); transition: color .2s ease; }
.faq-q:hover { color: var(--color-jewel); }
.faq-icon { width: 1.3rem; height: 1.3rem; flex: none; color: var(--color-jewel); transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; min-height: 0; }
.faq-a p { margin: 0; padding: 0 2.5rem 1.5rem 0.25rem; color: var(--color-neutral-dark); font-size: var(--text-medium); line-height: 1.6; }

/* reveal */
.faq-head > *, .faq-item { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.faq-blk.in .faq-head > *, .faq-blk.in .faq-item { opacity: 1; transform: none; }
.faq-blk.in .faq-head > *:nth-child(2) { transition-delay: .08s; }
.faq-blk.in .faq-head > *:nth-child(3) { transition-delay: .16s; }
.faq-blk.in .faq-item:nth-child(2) { transition-delay: .05s; }
.faq-blk.in .faq-item:nth-child(3) { transition-delay: .1s; }
.faq-blk.in .faq-item:nth-child(4) { transition-delay: .15s; }
.faq-blk.in .faq-item:nth-child(5) { transition-delay: .2s; }
.faq-blk.in .faq-item:nth-child(6) { transition-delay: .25s; }
.faq-blk.in .faq-item:nth-child(7) { transition-delay: .3s; }
.faq-blk.in .faq-item:nth-child(8) { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) {
  .faq-head > *, .faq-item { opacity: 1 !important; transform: none !important; }
  .faq-a-wrap, .faq-icon { transition: none; }
}
@media (max-width: 540px) {
  .faq-blk { padding: 4.5rem 6% 5.5rem; }
  .faq-q { font-size: 1rem; gap: 1rem; }
  .faq-a p { padding-right: 1rem; }
}
