/* ShoSoft · clay-redesign v5
   Ground system measured from clay.com: near-white page, tinted content
   panels 1280px/48px, floating white nav bar with 36px gutters + 24px
   bottom corners, 12px-radius buttons, hairline column guides.
   One typeface site-wide: Onest. Hero is a brand canvas, no video. */

/* ---------- tokens ---------- */
:root {
  --page: #FEFDFB;
  --panel: #F4F3F0;
  --card: #FFFFFF;
  --line: #E7E5E1;
  --guide: rgba(17, 16, 19, 0.06);
  --ink: #111013;
  --ink-72: rgba(17, 16, 19, 0.72);
  --ink-55: rgba(17, 16, 19, 0.55);

  /* ShoSoft logo palette */
  --amber: #A16A00;
  --blue: #1D6FC0;
  --teal: #0E7C8A;
  --purple: #6C41C8;
  --magenta: #C22A72;
  --rose: #D34A78;
  --coral: #E0523F;
  --green: #1A7F4E;
  --plum: #300020;

  /* card tints */
  --t-amber: #F8ECD2;
  --t-sky: #E2EEF9;
  --t-lav: #ECE6F9;
  --t-rose: #F9E3EE;

  --r-panel: 48px;
  --r-card: 24px;
  --r-btn: 12px;
  --nav-h: 59px;
  --gutter: 36px;
  --content-w: 1280px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Onest", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
i, em { font-style: normal; }

::selection { background: #FFC107; color: var(--ink); }

/* ---------- type ---------- */
h1 {
  font-size: clamp(42px, 5.8vw, 84px);
  font-weight: 600;
  line-height: 1.01;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
h2 {
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.h-center { text-align: center; }
.h-sub {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-55);
  max-width: 560px;
  margin: 18px auto 0;
}
.mono-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-55);
}

/* ---------- buttons (Clay: 12px radius, not pills) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  padding: 8px 16px;
  border-radius: var(--r-btn);
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { font-size: 18px; padding: 11px 20px; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; }
.btn-soft { background: #F3F2ED; color: var(--ink); }
.btn-soft:hover { background: #ECEAE4; }
.btn-white { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.btn-amber { background: #FFC107; color: var(--ink); }
.btn-amber:hover { filter: brightness(1.04); }
.btn-accent { background: var(--bc, var(--ink)); color: #fff; }
.btn-accent:hover { filter: brightness(1.08); }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-center { justify-content: center; }

/* ---------- nav · Clay geometry ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0 var(--gutter);
}
.nav-inner {
  position: relative;
  transform: translateY(-110%);
}
body.loaded .nav-inner {
  transform: none;
  transition: transform 0.7s var(--ease) 0.05s;
}
.nav-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  height: var(--nav-h);
  padding: 0 10px 0 24px;
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 10px rgba(17, 16, 19, 0.06);
  transition: box-shadow 0.3s var(--ease);
}
.nav.expanded .nav-row { box-shadow: none; }
.nav-brand { display: flex; align-items: center; gap: 9px; margin-right: 18px; }
.nav-brand img { width: 28px; height: 28px; }
.nav-name { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s var(--ease);
}
.nav-link:hover, .nav-link.open { background: #F3F2ED; }
.nav-link[data-panel]::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--ink-55);
  border-bottom: 1.5px solid var(--ink-55);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease);
}
.nav-link.open::after { transform: rotate(225deg) translateY(-1px); }

.nav-ctas { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-login { font-size: 16px; font-weight: 400; padding: 8px 12px; border-radius: 10px; }
.nav-login:hover { background: #F3F2ED; }

/* dropdown sheet: hugs its content, slides out from under the bar,
   morphs width + height between panels */
.navdrop {
  position: absolute;
  top: calc(100% - 24px);
  left: 0;
  z-index: 1;
  height: 0;
  width: 480px;
  max-width: calc(100vw - 2 * var(--gutter));
  overflow: hidden;
  background: #fff;
  border-radius: 0 24px 24px 24px;
  box-shadow: 0 34px 80px -12px rgba(17, 16, 19, 0.22);
  transition: height 0.5s var(--ease), width 0.5s var(--ease);
}
.npanel {
  position: absolute;
  top: 0; left: 0;
  width: max-content;
  max-width: calc(100vw - 2 * var(--gutter));
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 46px 28px 26px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
}
.npanel.active { opacity: 1; transform: none; pointer-events: auto; }
.ncols { display: flex; gap: 48px; align-items: stretch; }
.ncol { display: flex; flex-direction: column; }
.npanel[data-panel="product"] .ncol .pitem { flex: 1; min-height: 46px; }
.menu-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 10px;
}
.menu-label-gap { margin-top: 18px; }

/* staggered rise when a panel becomes active */
.npanel.active .ncol, .npanel.active .npreview {
  animation: navIn 0.55s var(--ease) both;
}
.npanel.active > *:nth-child(1) { animation-delay: 0.04s; }
.npanel.active > *:nth-child(2) { animation-delay: 0.1s; }
.npanel.active .ncol:nth-child(2) { animation-delay: 0.1s; }
.npanel.active .ncol:nth-child(3) { animation-delay: 0.16s; }
@keyframes navIn {
  from { opacity: 0; transform: translateY(12px); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

/* product rows with icon chips */
.pitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: 11px;
  transition: background 0.18s var(--ease);
}
.pitem:hover { background: #F3F2ED; }
.ic {
  width: 32px; height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--icbg, #F3F2ED);
  color: var(--ic, var(--ink));
  transition: transform 0.25s var(--ease);
}
.ic svg { width: 18px; height: 18px; }
.pitem:hover .ic { transform: scale(1.08); }
.pi-t { display: flex; flex-direction: column; min-width: 0; }
.pi-t strong { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; }
.pi-t em { font-size: 12.5px; font-weight: 400; color: var(--ink-55); white-space: nowrap; }
.nitem {
  font-size: 15px;
  font-weight: 500;
  padding: 7px 10px;
  margin: 0 -10px;
  border-radius: 9px;
  white-space: nowrap;
  transition: background 0.18s var(--ease);
}
.nitem:hover { background: #F3F2ED; }

/* live product preview pane */
.npreview {
  width: 560px;
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pv-frame {
  position: relative;
  display: grid;
  align-content: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.pv-frame .ui-embed {
  grid-area: 1 / 1;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.pv-frame .ui-embed.on { opacity: 1; }

.nav-burger { display: none; flex-direction: column; gap: 4px; padding: 10px; margin-left: auto; }
.nav-burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }

/* mobile sheet */
.m-nav { display: none; }

/* ---------- hairline column guides ---------- */
.guided { position: relative; }
.guided::before, .guided::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--guide);
  z-index: 0;
}
.guided::before { left: max(var(--gutter), calc(50% - var(--content-w) / 2)); }
.guided::after { right: max(var(--gutter), calc(50% - var(--content-w) / 2)); }
.guided > * { position: relative; z-index: 1; }

/* ---------- hero · brand canvas ---------- */
.hero { padding: 0 24px; }
.hero-panel {
  position: relative;
  max-width: 1600px;
  margin: calc(var(--nav-h) + 14px) auto 0;
  border-radius: var(--r-panel);
  background:
    radial-gradient(1000px 560px at 88% -6%, rgba(211, 74, 120, 0.16), transparent 62%),
    radial-gradient(880px 520px at 4% 8%, rgba(108, 65, 200, 0.13), transparent 60%),
    radial-gradient(760px 460px at 72% 78%, rgba(14, 124, 138, 0.10), transparent 62%),
    radial-gradient(1100px 640px at 30% 104%, rgba(255, 193, 7, 0.20), transparent 65%),
    #FBF8F1;
}
.hero-decor {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}
.ring {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(17, 16, 19, 0.07);
  border-radius: 50%;
}
.ring-1 { width: 1180px; height: 1180px; top: 420px; transform: translateX(-50%); }
.ring-2 { width: 1640px; height: 1640px; top: 340px; transform: translateX(-50%); }

.hero-inner {
  position: relative;
  text-align: center;
  padding: clamp(64px, 9vh, 108px) 24px 0;
  max-width: 1240px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  box-shadow: 0 1px 3px rgba(17, 16, 19, 0.08);
  margin-bottom: 26px;
}
.hero-eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FFC107;
}
.hero h1 { max-width: 1080px; margin: 0 auto; }
.hero-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-72);
  max-width: 54ch;
  margin: 22px auto 0;
}
.hero .cta-row { margin-top: 28px; }
.micro { font-size: 13px; font-weight: 500; color: var(--ink-55); margin-top: 14px; }

.hero-stage {
  position: relative;
  max-width: 1060px;
  margin: clamp(40px, 6vh, 64px) auto -190px;
  z-index: 2;
}
.stage-move { position: relative; will-change: transform; }
.app-window {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(17, 16, 19, 0.09);
  box-shadow: 0 48px 100px -24px rgba(48, 0, 32, 0.32), 0 2px 6px rgba(17, 16, 19, 0.08);
  overflow: hidden;
}
.float-card {
  position: absolute;
  left: -30px;
  bottom: -26px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px -12px rgba(17, 16, 19, 0.28);
  padding: 16px 20px;
  transform: rotate(-2deg);
  z-index: 3;
}
.fi-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
}
.fi-line { font-size: 15px; font-weight: 600; margin-top: 4px; }
.fi-rsvp { font-size: 12.5px; font-weight: 500; color: var(--ink-55); margin-top: 8px; }

/* notification toasts, pinned to the window's top right corner */
.hero-toasts {
  position: absolute;
  top: -30px;
  right: -34px;
  z-index: 3;
  display: grid;
}
.toast {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 18px 12px 14px;
  box-shadow: 0 20px 50px -14px rgba(48, 0, 32, 0.3);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}
.toast.on { opacity: 1; transform: none; }
.tdot { width: 9px; height: 9px; border-radius: 50%; flex: none; box-shadow: 0 0 0 4px rgba(17, 16, 19, 0.05); }
.toast strong { display: block; font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; }
.toast em { display: block; font-size: 11.5px; font-weight: 500; color: var(--ink-55); margin-top: 2px; }

/* ---------- load-in choreography ---------- */
.load { opacity: 0; transform: translateY(26px); filter: blur(8px); }
body.loaded .load {
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease), filter 0.75s var(--ease);
}
body.loaded .load-0 { transition-delay: 0.1s; }
body.loaded .load-1 { transition-delay: 0.18s; }
body.loaded .load-2 { transition-delay: 0.52s; }
body.loaded .load-3 { transition-delay: 0.66s; }
body.loaded .load-4 { transition-delay: 0.8s; }

/* hero word cascade */
.hero h1 .wq { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero h1 .w {
  display: inline-block;
  transform: translateY(108%);
  opacity: 0;
  filter: blur(6px);
}
body.loaded .hero h1 .w {
  transform: none;
  opacity: 1;
  filter: blur(0);
  transition: transform 0.8s var(--ease), opacity 0.65s var(--ease), filter 0.65s var(--ease);
  transition-delay: calc(0.2s + var(--wi) * 0.05s);
}

/* ---------- trust ---------- */
.trust { padding: 240px 24px 8px; }
.trust-panel {
  max-width: var(--content-w);
  margin: 0 auto;
  background: var(--panel);
  border-radius: var(--r-panel);
  padding: 64px 48px 56px;
}
.trust-line {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink-55);
  max-width: 780px;
  margin: 0 auto 42px;
}
.trust-line strong { color: var(--ink); font-weight: 600; }

/* logos-only marquee */
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee 36s linear infinite;
  padding: 4px 36px;
}
.marquee-track img {
  height: 30px;
  width: auto;
  opacity: 0.55;
  filter: brightness(0);
  transition: opacity 0.3s, filter 0.3s;
}
.marquee-track img:hover { opacity: 1; filter: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- features · stacking tinted panels ---------- */
.features { padding: 110px 24px 96px; }
.features-head { max-width: 900px; margin: 0 auto 56px; }
.stack {
  max-width: var(--content-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.feat {
  position: sticky;
  top: calc(var(--nav-h) + 22px + var(--i) * 12px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
  border-radius: var(--r-panel);
  padding: 60px;
  transform-origin: top center;
  will-change: transform;
}
.feat-amber { background: var(--t-amber); }
.feat-sky { background: var(--t-sky); }
.feat-lav { background: var(--t-lav); }
.feat-rose { background: var(--t-rose); }

.feat h3 {
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 18px 0 16px;
}
.feat h3 em { color: var(--pcd, var(--ink)); }
.feat-amber h3 { --pcd: #A16A00; }
.feat-sky h3 { --pcd: #1D6FC0; }
.feat-lav h3 { --pcd: #6C41C8; }
.feat-rose h3 { --pcd: #C22A72; }
.feat-body { font-size: 16px; font-weight: 500; line-height: 1.62; color: var(--ink-72); max-width: 46ch; }
.feat-proof {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-55);
  margin: 18px 0 24px;
}
.feat-proof img { width: 18px; height: 18px; border-radius: 5px; }
.feat-shot { min-width: 0; }
.feat-copy { min-width: 0; }
.feat-shot .ui-embed {
  border-radius: 14px;
  border: 1px solid rgba(17, 16, 19, 0.1);
  box-shadow: 0 26px 60px -18px rgba(17, 16, 19, 0.28);
}

/* pill eyebrow with echo pills */
.pillbrow {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  margin-left: 28px;
}
.pillbrow span {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--pc, var(--ink));
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.55);
}
.pillbrow::before, .pillbrow::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  border: 1px solid var(--pc, var(--ink));
  border-radius: 999px;
  width: 26px;
}
.pillbrow::before { left: -14px; opacity: 0.3; }
.pillbrow::after { left: -28px; opacity: 0.13; }

/* ---------- live app embeds ---------- */
.ui-embed {
  position: relative;
  overflow: hidden;
  min-width: 0;
  contain: content;
  background: #fff;
}
.ui-embed iframe {
  width: 1512px;
  height: 851px;
  border: 0;
  transform-origin: top left;
  pointer-events: none;
  display: block;
}

/* ---------- results · Apollo layout ---------- */
.results { padding: 20px 24px 0; }
.results-inner {
  max-width: var(--content-w);
  margin: 0 auto;
  background: var(--panel);
  border-radius: var(--r-panel) var(--r-panel) 0 0;
  padding: 72px 72px 60px;
}
.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.5fr);
  gap: 48px;
  align-items: end;
  margin-top: 26px;
}
.results blockquote p {
  font-size: clamp(26px, 2.9vw, 40px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--plum);
  text-wrap: balance;
}
.results-attrib { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.results-attrib img { height: 30px; width: auto; opacity: 0.6; filter: brightness(0); }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.stat {
  background: var(--card);
  border-radius: var(--r-card);
  padding: 26px 28px 22px;
  box-shadow: 0 1px 2px rgba(17, 16, 19, 0.05);
}
.stat-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-55);
  min-height: 42px;
}
.stat-top img { height: 20px; width: auto; opacity: 0.5; filter: brightness(0); }
.stat-num {
  font-size: clamp(44px, 4.6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--plum);
  margin: 18px 0 14px;
  font-variant-numeric: tabular-nums;
}
.stat-num i { font-size: 0.42em; font-weight: 500; margin: 0 4px; color: var(--ink-55); }
.stat-src { font-size: 11.5px; font-weight: 500; letter-spacing: 0.03em; color: var(--ink-55); }
.stat-ph { border: 1.5px dashed rgba(17, 16, 19, 0.22); box-shadow: none; background: rgba(255, 255, 255, 0.55); }
.stat-ph .stat-num { color: rgba(48, 0, 32, 0.34); }

.results-wedge {
  max-width: var(--content-w);
  margin: 0 auto;
  height: 92px;
  background: var(--panel);
  clip-path: polygon(0 0, 100% 0, 100% 18%, 54% 100%, 0 24%);
}

/* ---------- community bento ---------- */
.community { padding: 110px 24px 60px; }
.bento {
  max-width: var(--content-w);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.bcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.bcard:hover { transform: translateY(-4px); box-shadow: 0 22px 48px -18px rgba(17, 16, 19, 0.18); }
.bcard-tall { grid-row: span 2; }
.bcard-wide { grid-column: span 2; flex-direction: row; }
.bcard-wide .bcard-body { flex: 1.1; }
.bcard-wide .bcard-media { flex: 1; }
.bcard-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.bcard-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c, var(--ink-55));
}
.bcard h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.2; }
.bcard-sub { font-size: 14.5px; font-weight: 500; color: var(--ink-55); }
.bcard-media { overflow: hidden; }
.bcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.bcard:hover .bcard-media img { transform: scale(1.04); }
.bcard-photo .bcard-media { aspect-ratio: 16 / 9.4; }
.ulink {
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
  padding-top: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.ulink i { display: inline-block; transition: transform 0.3s var(--ease); }
.bcard:hover .ulink i { transform: translateX(4px); }

/* Run of Show blob art */
.blob-art {
  position: relative;
  min-height: 300px;
  background: var(--plum);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.blob { position: absolute; border-radius: 50%; filter: blur(30px); opacity: 0.75; }
.blob-1 { width: 220px; height: 220px; background: #C22A72; top: -50px; left: -40px; }
.blob-2 { width: 190px; height: 190px; background: #6C41C8; bottom: -40px; right: -30px; }
.blob-3 { width: 130px; height: 130px; background: #FFC107; bottom: 30px; left: 30px; opacity: 0.5; }
.blob-word {
  position: relative;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.02;
  color: #FEFDFB;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---------- FAQ ---------- */
.faq { padding: 80px 24px 110px; }
.faq-grid {
  max-width: var(--content-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}
.faq-head { position: sticky; top: calc(var(--nav-h) + 40px); }
.faq-head h2 { max-width: 9ch; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 22px 2px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; width: 14px; height: 14px; flex: none; }
.faq-x::before, .faq-x::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 14px; height: 1.6px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}
.faq-x::after { transform: rotate(90deg); }
details[open] .faq-x::after { transform: rotate(0deg); }
.faq-list details p {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.62;
  color: var(--ink-72);
  padding: 0 40px 24px 2px;
  max-width: 62ch;
}

/* ---------- final CTA ---------- */
.final { padding: 0 24px 26px; }
.final-panel {
  position: relative;
  max-width: var(--content-w);
  margin: 0 auto;
  border-radius: var(--r-panel);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FEFDFB;
}
.final-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final-scrim { position: absolute; inset: 0; background: rgba(20, 8, 20, 0.62); }
.final-copy { position: relative; padding: 80px 24px; }
.final-copy p { font-size: 17px; font-weight: 500; max-width: 52ch; margin: 20px auto 30px; opacity: 0.9; }

/* ---------- footer ---------- */
.footer { padding: 0 24px 24px; }
.footer-sheet {
  max-width: var(--content-w);
  margin: 0 auto;
  background: var(--panel);
  border-radius: var(--r-panel);
  padding: 60px 60px 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p { font-size: 14px; font-weight: 500; color: var(--ink-55); max-width: 30ch; margin-top: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 2px; }
.footer-col a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-72);
  padding: 5px 0;
  width: fit-content;
}
.footer-col a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-55);
}

/* ---------- scroll reveals · blur-to-sharp rise ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(10px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease), filter 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal-d1 { transition-delay: 0.09s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.27s; }

/* split headings: the container stays put, the words cascade */
.reveal[data-split], .reveal:has([data-split]) { opacity: 1; transform: none; filter: none; }
[data-split] .wq { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.1em; margin-bottom: -0.1em; }
[data-split] .w {
  display: inline-block;
  transform: translateY(112%);
  opacity: 0;
  filter: blur(5px);
}
[data-split].in .w, .in [data-split] .w {
  transform: none;
  opacity: 1;
  filter: blur(0);
  transition: transform 0.75s var(--ease), opacity 0.6s var(--ease), filter 0.6s var(--ease);
  transition-delay: calc(var(--wi) * 0.045s);
}

@media (prefers-reduced-motion: reduce) {
  .load, .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .nav-inner { transform: none !important; }
  [data-split] .w { opacity: 1 !important; transform: none !important; filter: none !important; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1360px) {
  :root { --gutter: 24px; }
}

@media (max-width: 1120px) {
  .nav-links, .nav-ctas, .navdrop { display: none; }
  .nav-burger { display: flex; }
  .m-nav.mobile-open {
    display: flex;
    position: fixed;
    inset: calc(var(--nav-h) + 8px) var(--gutter) auto;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: 0 30px 70px rgba(17, 16, 19, 0.2);
    padding: 14px;
    max-height: calc(100svh - var(--nav-h) - 32px);
    overflow: auto;
  }
  .m-nav summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 10px;
    border-radius: 10px;
    cursor: pointer;
  }
  .m-nav summary::-webkit-details-marker { display: none; }
  .m-nav summary::after {
    content: "";
    width: 7px; height: 7px;
    border-right: 1.5px solid var(--ink-55);
    border-bottom: 1.5px solid var(--ink-55);
    transform: rotate(45deg);
    transition: transform 0.25s var(--ease);
  }
  .m-nav details[open] summary::after { transform: rotate(225deg); }
  .m-nav details a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-72);
    padding: 8px 10px 8px 22px;
  }
  .m-link { font-size: 17px; font-weight: 500; padding: 12px 10px; }
  .m-ctas { padding: 12px 10px 6px; }
  .m-ctas .btn { flex: 1; }
  .guided::before, .guided::after { display: none; }
  .hero-toasts { display: none; }
  .hero-stage { margin-bottom: -120px; }
  .trust { padding-top: 170px; }
}

@media (max-width: 900px) {
  .feat { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; position: relative; top: auto; }
  .feat-body { max-width: none; }
  .results-inner { padding: 48px 28px 40px; }
  .results-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-row { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bcard-tall { grid-row: auto; }
  .bcard-wide { grid-column: auto; flex-direction: column; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-head { position: static; }
  .faq-head h2 { max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-sheet { padding: 44px 28px 26px; }
  .float-card { display: none; }
}

@media (max-width: 560px) {
  .hero { padding: 0 16px; }
  .hero-panel { border-radius: 30px; margin-top: calc(var(--nav-h) + 8px); }
  .hero-inner { padding: 48px 16px 0; }
  .hero-sub { font-size: 16px; }
  .btn-lg { font-size: 16px; padding: 10px 16px; }
  .hero-stage { margin-bottom: -70px; }
  .trust { padding: 110px 16px 8px; }
  .trust-panel { padding: 44px 20px 40px; border-radius: 30px; }
  .marquee-track { gap: 44px; }
  .marquee-track img { height: 24px; }
  .features { padding: 70px 16px 60px; }
  .results { padding: 12px 16px 0; }
  .community { padding: 70px 16px 40px; }
  .faq { padding: 56px 16px 70px; }
  .final { padding: 0 16px 18px; }
  .footer { padding: 0 16px 16px; }
  .final-panel, .footer-sheet, .results-inner, .feat { border-radius: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 44px; }
}
