/* Reputeo landing — the movement of trust. */
:root {
  --landing-header-height: 74px;
  --landing-ink: #151817;
  --landing-muted: #69706d;
  --landing-soft: #f5f3ee;
  --landing-paper: #fbfaf7;
  --landing-line: rgba(28, 35, 32, .12);
  --landing-line-soft: rgba(28, 35, 32, .075);
  --landing-accent: #177d70;
  --landing-accent-deep: #0e5f57;
  --landing-accent-pale: #e5f2ee;
  --landing-warm: #d8b999;
  --landing-commerce: #f4f1eb;
  --landing-ease: cubic-bezier(.22, .8, .26, 1);
}

html { background: var(--landing-paper); }

body.landing-page {
  overflow-x: clip;
  background: var(--landing-paper);
  color: var(--landing-ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing-page a { color: inherit; text-decoration: none; }
.landing-page button { color: inherit; }
.landing-page main { overflow: clip; }
.landing-page :focus-visible {
  outline: 3px solid var(--landing-accent-deep);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px #fff;
}

.landing-wrap,
.landing-nav__inner,
.landing-footer__inner {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}

/* Navigation */
.landing-nav {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  height: var(--landing-header-height);
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 247, 0);
  transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.landing-nav.is-scrolled,
.landing-nav.menu-open {
  border-color: rgba(37, 44, 41, .09);
  background: rgba(251, 250, 247, .82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .65);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}

.landing-nav__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--landing-ink);
  font: 800 1.17rem/1 "Manrope", sans-serif;
  letter-spacing: -.072em;
}

.landing-brand > img { width: 29px; height: 29px; }
.landing-brand > span > span { color: var(--landing-accent); }

.landing-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #555d59;
  font-size: .82rem;
  font-weight: 600;
}

.landing-links > a:not(.landing-button) {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-block: 9px;
  transition: color 180ms ease;
}

.landing-links > a:not(.landing-button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--landing-ease);
}

.landing-links > a:not(.landing-button):hover { color: var(--landing-ink); }
.landing-links > a:not(.landing-button):hover::after { transform: scaleX(1); transform-origin: left; }
.landing-links .landing-login { margin-left: 6px; color: var(--landing-ink); }

.landing-menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--landing-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .68);
  cursor: pointer;
}

.landing-menu span,
.landing-menu::before,
.landing-menu::after {
  content: "";
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms var(--landing-ease), opacity 180ms ease;
}

.landing-menu[aria-expanded="true"] span { opacity: 0; }
.landing-menu[aria-expanded="true"]::before { transform: translateY(5.5px) rotate(45deg); }
.landing-menu[aria-expanded="true"]::after { transform: translateY(-5.5px) rotate(-45deg); }

/* Buttons */
.landing-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 19px;
  border: 1px solid var(--landing-ink);
  border-radius: 999px;
  background: var(--landing-ink);
  color: #fff !important;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: -.012em;
  box-shadow: 0 9px 25px rgba(20, 24, 22, .12);
  transition: transform 180ms var(--landing-ease), background 180ms ease, box-shadow 180ms ease;
}

.landing-button > span { transition: transform 180ms var(--landing-ease); }
.landing-button:hover { background: #2b302e; box-shadow: 0 13px 29px rgba(20, 24, 22, .16); transform: translateY(-2px); }
.landing-button:hover > span { transform: translateX(3px); }
.landing-button:active { transform: translateY(0) scale(.985); }
.landing-button--small { min-height: 44px; padding: 10px 16px; font-size: .78rem; }

.landing-button--ghost {
  border-color: var(--landing-line);
  background: rgba(255, 255, 255, .56);
  color: var(--landing-ink) !important;
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.landing-button--ghost:hover { border-color: rgba(21, 24, 23, .25); background: rgba(255, 255, 255, .9); box-shadow: none; }

/* Scroll narrative */
.trust-journey {
  position: relative;
  z-index: 1;
  background: var(--landing-paper);
}

.trust-journey__anchor {
  position: absolute;
  top: 26%;
  left: 0;
  width: 1px;
  height: 1px;
  scroll-margin-top: var(--landing-header-height);
}

.trust-journey.is-enhanced,
html.landing-motion-ready .trust-journey { height: 780svh; }

.trust-journey__sticky {
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(circle at 74% 62%, rgba(216, 185, 153, .09), transparent 31%),
    linear-gradient(145deg, #fff 0%, #fbfaf7 48%, #f7f6f2 100%);
}

.trust-journey.is-enhanced .trust-journey__sticky,
html.landing-motion-ready .trust-journey__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
}

.trust-atmosphere { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }

.trust-atmosphere__light {
  position: absolute;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .65;
  transform: translate3d(0, 0, 0);
}

.trust-atmosphere__light--one {
  top: -35vw;
  right: -8vw;
  background: radial-gradient(circle, rgba(255, 255, 255, .9) 0 20%, rgba(224, 206, 185, .2) 48%, transparent 70%);
}

.trust-atmosphere__light--two {
  bottom: -42vw;
  left: -19vw;
  background: radial-gradient(circle, rgba(222, 238, 233, .55), transparent 68%);
}

.trust-atmosphere__grain {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.10'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  pointer-events: none;
}

.trust-meta {
  position: absolute;
  z-index: 20;
  top: calc(var(--landing-header-height) + 20px);
  right: 3.2vw;
  left: 3.2vw;
  display: grid;
  grid-template-columns: 1fr minmax(120px, 230px) 58px;
  align-items: center;
  gap: 18px;
  color: rgba(21, 24, 23, .49);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .135em;
  text-transform: uppercase;
}

.trust-meta__progress { height: 1px; overflow: hidden; background: rgba(21, 24, 23, .13); }
.trust-meta__progress i { display: block; width: 100%; height: 100%; background: var(--landing-ink); transform: scaleX(0); transform-origin: left; }
.trust-meta__count { text-align: right; font-variant-numeric: tabular-nums; }

.trust-copy {
  position: absolute;
  z-index: 30;
  top: 23.5%;
  left: clamp(32px, 6vw, 108px);
  width: min(43vw, 650px);
  transform: none;
}

.trust-copy__act {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 30px, 0);
  transform-origin: left center;
}

.trust-copy__act.is-active { opacity: 1; visibility: visible; }

@media (min-width: 801px) {
  .trust-copy__act::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -34px -54px -48px -42px;
    border-radius: 48%;
    background: radial-gradient(ellipse at 35% 50%, rgba(251, 250, 247, .94) 0 31%, rgba(251, 250, 247, .72) 58%, rgba(251, 250, 247, 0) 82%);
    filter: blur(12px);
    pointer-events: none;
  }
}

.trust-copy__index,
.landing-kicker {
  margin: 0 0 20px;
  color: var(--landing-accent-deep);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .155em;
  text-transform: uppercase;
}

.trust-copy h1,
.trust-copy h2 {
  max-width: 640px;
  margin: 0;
  color: var(--landing-ink);
  font: 600 clamp(3.15rem, 5.45vw, 6rem)/.97 "Manrope", sans-serif;
  letter-spacing: -.078em;
  text-wrap: balance;
}

.trust-copy h2 { font-size: clamp(2.75rem, 4.65vw, 5.15rem); }
.trust-copy h1 em,
.trust-copy h2 em { color: var(--landing-accent-deep); font-style: normal; }

.trust-copy__lead {
  max-width: 540px;
  margin: 26px 0 0;
  color: #4f5653;
  font-size: clamp(.98rem, 1.28vw, 1.15rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.trust-copy__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-copy__note { max-width: 520px; margin: 16px 0 0; color: #515855; font-size: .68rem; line-height: 1.5; }

.trust-copy__detail {
  display: flex;
  max-width: 460px;
  align-items: center;
  gap: 14px;
  margin: 30px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--landing-line);
  color: #3f4643;
  font-size: .79rem;
  font-weight: 600;
}

.trust-copy__detail span { color: var(--landing-accent); font-size: .64rem; letter-spacing: .12em; }

.trust-stage { position: absolute; z-index: 10; inset: 0; contain: layout paint; pointer-events: none; }

.trust-orbit {
  position: absolute;
  top: 59%;
  left: 70%;
  width: min(46vw, 690px);
  aspect-ratio: 1;
  border: 1px solid rgba(21, 24, 23, .075);
  border-radius: 50%;
  opacity: var(--orbit-opacity, .34);
  transform: translate(-50%, -50%) scale(var(--orbit-scale, .78));
}

.trust-orbit::before,
.trust-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.trust-orbit::before { inset: 13%; border: 1px solid rgba(23, 125, 112, .08); }
.trust-orbit::after { inset: 49%; background: rgba(23, 125, 112, .32); box-shadow: 0 0 0 7px rgba(23, 125, 112, .06); }
.trust-orbit--inner { width: min(30vw, 440px); border-style: dashed; opacity: calc(var(--orbit-opacity, .34) * .7); transform: translate(-50%, -50%) scale(var(--orbit-inner-scale, .82)) rotate(var(--orbit-rotation, 0deg)); }

.trust-hands {
  position: absolute;
  inset: 0;
  opacity: var(--hands-opacity, .96);
  transition: opacity 320ms var(--landing-ease);
}
html.landing-motion-ready .trust-hands { opacity: 0; }
html.landing-motion-ready .trust-journey.is-media-ready .trust-hands { opacity: var(--hands-opacity, .96); }
.trust-journey.is-media-error .trust-hands { display: none; }
.trust-journey.is-visible .trust-hands { will-change: opacity; }

.trust-hand {
  position: absolute;
  top: 61%;
  left: 58%;
  width: clamp(1240px, 112vw, 1900px);
  max-width: none;
  height: auto;
  user-select: none;
  filter: drop-shadow(0 32px 28px rgba(57, 43, 31, .08));
  transform-origin: center;
  backface-visibility: hidden;
}

.trust-hand--left {
  clip-path: inset(0 50% 0 0);
  transform: translate3d(calc(-50% + var(--hand-left-x, -80px)), calc(-50% + var(--hand-y, 32px)), 0) scale(var(--hand-scale, 1.02)) rotate(var(--hand-left-r, -1deg));
}

.trust-hand--right {
  clip-path: inset(0 0 0 50%);
  transform: translate3d(calc(-50% + var(--hand-right-x, 80px)), calc(-50% + var(--hand-y, 32px)), 0) scale(var(--hand-scale, 1.02)) rotate(var(--hand-right-r, 1deg));
}

.trust-journey.is-visible .trust-hand { will-change: transform; }

.trust-lens {
  position: absolute;
  z-index: 8;
  top: 59%;
  left: 70%;
  display: grid;
  width: 154px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--lens-radius, 48% 52% 45% 55% / 55% 43% 57% 45%);
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, .96), rgba(255, 255, 255, .22) 27%, transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, .62), rgba(221, 238, 233, .26));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .48),
    inset -18px -20px 38px rgba(23, 125, 112, .08),
    0 28px 65px rgba(52, 62, 57, .12),
    0 3px 8px rgba(52, 62, 57, .06);
  opacity: var(--lens-opacity, .94);
  transform: translate(-50%, -50%) scale(var(--lens-scale, .72)) rotate(var(--lens-rotation, -5deg));
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transition: border-radius 620ms var(--landing-ease);
}

.trust-lens__shine { position: absolute; top: 13%; left: 18%; width: 42%; height: 16%; border-radius: 50%; background: rgba(255, 255, 255, .9); filter: blur(5px); transform: rotate(-25deg); }

.trust-lens__liquid {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 43% 57% 63% 37% / 47% 40% 60% 53%;
  background: radial-gradient(circle at 30% 28%, rgba(188, 228, 218, .72), rgba(23, 125, 112, .1) 65%, transparent 70%);
  opacity: .62;
}

.trust-journey.is-visible .trust-lens__liquid--one { animation: liquidTurn 9s linear infinite; }
.trust-journey.is-visible .trust-lens__liquid--two { width: 54%; opacity: .42; animation: liquidTurn 12s linear reverse infinite; }
.trust-lens > img { position: relative; z-index: 2; width: 31px; height: 31px; filter: drop-shadow(0 5px 10px rgba(23, 125, 112, .14)); }
.trust-lens > small { position: absolute; z-index: 2; right: 8px; bottom: 17px; left: 8px; color: rgba(21, 24, 23, .58); font-size: .47rem; font-weight: 700; letter-spacing: .07em; text-align: center; text-transform: uppercase; }

@keyframes liquidTurn { to { transform: rotate(1turn); } }

.trust-fragment {
  position: absolute;
  z-index: 6;
  width: 190px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 17px;
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 18px 45px rgba(39, 47, 43, .09), inset 0 1px 0 rgba(255, 255, 255, .8);
  opacity: 0;
  backdrop-filter: blur(15px) saturate(115%);
  -webkit-backdrop-filter: blur(15px) saturate(115%);
}

.trust-fragment > span { display: block; margin-bottom: 7px; color: #a97531; font-size: .58rem; letter-spacing: .06em; }
.trust-fragment > strong { display: block; color: #373d3a; font-size: .72rem; }
.trust-fragment > small { display: block; margin-top: 3px; color: #8b918e; font-size: .51rem; }
.trust-fragment--one { top: 28%; left: 57%; }
.trust-fragment--two { top: 39%; right: 4%; }
.trust-fragment--three { bottom: 13%; left: 56%; }

.trust-board {
  position: absolute;
  z-index: 12;
  top: 57%;
  left: 72%;
  width: min(42vw, 570px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 25px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 36px 90px rgba(43, 50, 47, .13), inset 0 1px 0 #fff;
  opacity: 0;
  transform: translate3d(-50%, calc(-50% + 28px), 0) scale(.94);
  backdrop-filter: blur(24px) saturate(122%);
  -webkit-backdrop-filter: blur(24px) saturate(122%);
}

.trust-board__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid var(--landing-line-soft);
  color: #838986;
  font-size: .51rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.trust-board__bar > span { display: flex; gap: 4px; }
.trust-board__bar > span i { width: 5px; height: 5px; border-radius: 50%; background: #d9dddb; }
.trust-board__bar > b { justify-self: end; color: var(--landing-accent-deep); font-size: .48rem; font-weight: 700; }

.trust-board__heading { display: flex; align-items: end; justify-content: space-between; padding: 23px 24px 15px; }
.trust-board__heading span { color: #252a28; font: 700 1.02rem/1.2 "Manrope", sans-serif; letter-spacing: -.045em; }
.trust-board__heading small { color: #8b918e; font-size: .52rem; }
.trust-signal-grid { display: grid; gap: 7px; padding: 0 17px 18px; }

.trust-signal {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--landing-line-soft);
  border-radius: 13px;
  background: rgba(255, 255, 255, .62);
}

.trust-signal__icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; background: var(--landing-accent-pale); color: var(--landing-accent-deep); font-size: .75rem; font-style: normal; }
.trust-signal span small,
.trust-signal span strong { display: block; }
.trust-signal span small { color: #929793; font-size: .47rem; }
.trust-signal span strong { margin-top: 2px; color: #373c39; font-size: .65rem; }
.trust-signal > b { padding: 5px 7px; border-radius: 999px; background: #f1f4f2; color: #616965; font-size: .44rem; font-weight: 700; }
.trust-signal:first-child > b { background: #e9f4ef; color: #166b54; }
.trust-signal:nth-child(2) > b { background: #faf1df; color: #8a641d; }

.trust-board--reply { width: min(43vw, 585px); }
.trust-reply__review { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; padding: 20px 22px 13px; }
.trust-reply__avatar { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: #eef1ef; color: #555d59; font-size: .58rem; font-weight: 800; }
.trust-reply__review small,
.trust-reply__review strong { display: block; }
.trust-reply__review small { margin-bottom: 3px; color: #969b98; font-size: .5rem; }
.trust-reply__review strong { color: #363c39; font-size: .68rem; font-weight: 600; }

.trust-reply__draft { position: relative; margin: 4px 19px 14px; padding: 17px; border: 1px solid var(--landing-line-soft); border-radius: 14px; background: rgba(246, 248, 246, .78); }
.trust-reply__draft > small { color: var(--landing-accent-deep); font-size: .5rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.trust-reply__draft p { margin: 9px 0 0; color: #4b524e; font-size: .64rem; line-height: 1.6; }
.trust-reply__caret { display: inline-block; width: 1px; height: 12px; margin-left: 2px; background: var(--landing-accent); vertical-align: -2px; animation: caretBlink .9s steps(1) infinite; animation-play-state: paused; }
.trust-journey.is-visible[data-chapter="4"] .trust-reply__caret { animation-play-state: running; }
@keyframes caretBlink { 50% { opacity: 0; } }

.trust-reply__control { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 19px 19px; color: #929793; font-size: .49rem; }
.trust-reply__control button { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 0; border-radius: 9px; background: var(--landing-ink); color: #fff; font-size: .5rem; font-weight: 700; }
.trust-reply__control button i { display: grid; width: 14px; height: 14px; place-items: center; border-radius: 50%; background: #fff; color: var(--landing-ink); font-size: .45rem; font-style: normal; }

.trust-board--request { width: min(45vw, 620px); }
.trust-request__title { padding: 22px 22px 17px; }
.trust-request__title small,
.trust-request__title strong { display: block; }
.trust-request__title small { color: var(--landing-accent-deep); font-size: .5rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.trust-request__title strong { margin-top: 5px; color: #2e3431; font: 700 1.05rem/1.2 "Manrope", sans-serif; letter-spacing: -.045em; }
.trust-request__flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 7px; padding: 0 18px; }
.trust-request__flow > div { min-width: 0; padding: 11px; border: 1px solid var(--landing-line-soft); border-radius: 12px; background: rgba(255, 255, 255, .58); }
.trust-request__flow > div i { display: block; margin-bottom: 13px; color: var(--landing-accent); font-size: .47rem; font-style: normal; font-weight: 800; }
.trust-request__flow span small,
.trust-request__flow span strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.trust-request__flow span small { color: #939895; font-size: .44rem; }
.trust-request__flow span strong { margin-top: 2px; color: #414744; font-size: .56rem; }
.trust-request__flow > b { color: #aeb3b0; font-size: .6rem; font-weight: 400; }
.trust-request__status { display: flex; align-items: center; gap: 10px; margin: 14px 18px 18px; padding: 10px 12px; border-radius: 12px; background: #edf6f2; }
.trust-request__status > span { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--landing-accent); color: #fff; font-size: .55rem; }
.trust-request__status p { margin: 0; }
.trust-request__status strong,
.trust-request__status small { display: block; }
.trust-request__status strong { color: #26534b; font-size: .56rem; }
.trust-request__status small { margin-top: 1px; color: #75908a; font-size: .45rem; }

.trust-resolution {
  position: absolute;
  z-index: 14;
  top: 58%;
  left: 71%;
  width: min(42vw, 570px);
  color: #303633;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -46%) scale(.94);
}

.trust-resolution__mark { display: grid; width: 82px; height: 82px; margin: 0 auto 23px; place-items: center; border: 1px solid rgba(255,255,255,.9); border-radius: 38% 62% 54% 46% / 44% 44% 56% 56%; background: rgba(255,255,255,.64); box-shadow: 0 22px 60px rgba(33,45,40,.12), inset 0 1px 0 #fff; backdrop-filter: blur(20px); }
.trust-resolution__mark img { width: 34px; height: 34px; }
.trust-resolution p { margin: 0; color: #737a76; font-size: .8rem; }
.trust-resolution strong { display: block; margin-top: 4px; font: 700 clamp(1.7rem, 2.8vw, 2.8rem)/1 "Manrope", sans-serif; letter-spacing: -.065em; }

.trust-scroll-cue {
  position: absolute;
  z-index: 25;
  bottom: 28px;
  left: clamp(32px, 6vw, 108px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(21,24,23,.48);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust-scroll-cue i { position: relative; width: 26px; height: 39px; border: 1px solid rgba(21,24,23,.18); border-radius: 999px; }
.trust-scroll-cue i::after { content: ""; position: absolute; top: 8px; left: 50%; width: 3px; height: 7px; border-radius: 3px; background: var(--landing-ink); transform: translateX(-50%); animation: scrollCue 1.8s ease-in-out infinite; animation-play-state: paused; }
.trust-journey.is-visible[data-chapter="1"] .trust-scroll-cue i::after { animation-play-state: running; }
@keyframes scrollCue { 0% { opacity: 0; transform: translate(-50%, -2px); } 35% { opacity: 1; } 80%, 100% { opacity: 0; transform: translate(-50%, 10px); } }

.trust-chapters {
  position: absolute;
  z-index: 30;
  right: 3.2vw;
  bottom: 28px;
  display: flex;
  gap: 7px;
}

.trust-chapters button { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.trust-chapters button span { width: 4px; height: 4px; border-radius: 99px; background: rgba(21,24,23,.24); transition: width 230ms var(--landing-ease), background 230ms ease; }
.trust-chapters button.is-active span { width: 17px; background: var(--landing-ink); }

/* Graceful non-animated and reduced-motion experience */
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) { padding: calc(var(--landing-header-height) + 80px) 0 80px; }
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-meta,
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-scroll-cue,
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-chapters { display: none; }
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-journey__sticky { min-height: auto; }
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-copy { position: relative; top: auto; left: auto; display: grid; width: min(1120px, calc(100% - 64px)); gap: 70px; margin: 0 auto; transform: none; }
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-copy__act { position: relative; top: auto; width: min(720px, 100%); opacity: 1; visibility: visible; transform: none; }
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-copy__act + .trust-copy__act { padding-top: 58px; border-top: 1px solid var(--landing-line); }
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-stage { position: relative; height: clamp(330px, 48vw, 600px); margin-top: 30px; }
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-stage .trust-board,
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-stage .trust-fragments,
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-stage .trust-resolution { display: none; }
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-hand { top: 50%; left: 50%; }
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-lens,
html:not(.landing-motion-ready) .trust-journey:not(.is-enhanced) .trust-orbit { top: 50%; left: 50%; }

/* Pricing */
.landing-pricing {
  position: relative;
  z-index: 3;
  padding: clamp(105px, 9vw, 135px) 0;
  border-top: 1px solid rgba(37, 46, 42, .1);
  scroll-margin-top: var(--landing-header-height);
  background: var(--landing-commerce);
}

.landing-pricing__layout { display: grid; grid-template-columns: 1fr minmax(450px, .86fr); align-items: center; gap: clamp(70px, 9vw, 150px); }
.landing-pricing__intro h2,
.landing-faq__intro h2,
.landing-final h2 { margin: 0; color: var(--landing-ink); font: 600 clamp(3rem, 5.25vw, 5.7rem)/.98 "Manrope", sans-serif; letter-spacing: -.078em; text-wrap: balance; }
.landing-pricing__intro > p:not(.landing-kicker) { max-width: 530px; margin: 27px 0 0; color: #626966; font-size: 1rem; line-height: 1.7; }
.landing-pricing__assurances { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.landing-pricing__assurances span { padding: 8px 11px; border: 1px solid rgba(33,41,37,.09); border-radius: 999px; background: rgba(255,255,255,.4); color: #5f6763; font-size: .63rem; font-weight: 700; }

.landing-plan {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(39, 49, 44, .14);
  border-radius: 21px;
  background: #fbfaf6;
  box-shadow: 0 24px 65px rgba(46, 53, 49, .085);
}

.landing-plan::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--landing-accent-deep); }
.landing-plan__top { position: relative; display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.landing-plan__top small,
.landing-plan__top h3 { display: block; }
.landing-plan__top small { color: var(--landing-accent-deep); font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.landing-plan__top h3 { margin: 5px 0 0; color: #333936; font: 700 1rem "Manrope", sans-serif; letter-spacing: -.04em; }
.landing-plan__top > span { padding: 7px 10px; border-radius: 999px; background: var(--landing-accent-pale); color: var(--landing-accent-deep); font-size: .61rem; font-weight: 800; }
.landing-plan__price { position: relative; margin: 30px 0 14px; font: 700 clamp(2.6rem, 4vw, 4.1rem)/1 "Manrope", sans-serif; letter-spacing: -.075em; }
.landing-plan__price span { color: #626966; font: 500 .72rem "DM Sans", sans-serif; letter-spacing: 0; }
.landing-plan__note { margin: 0; padding-bottom: 22px; border-bottom: 1px solid var(--landing-line); color: #616864; font-size: .73rem; line-height: 1.6; }
.landing-plan__note strong { color: #454b48; }
.landing-plan ul { display: grid; gap: 0; margin: 17px 0 25px; padding: 0; list-style: none; }
.landing-plan li { display: grid; grid-template-columns: 19px 1fr; gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--landing-line-soft); color: #555d59; font-size: .76rem; }
.landing-plan li::before { content: "✓"; color: var(--landing-accent); font-weight: 800; }
.landing-plan .landing-button { width: 100%; }
.landing-plan__foot { display: block; margin-top: 13px; color: #626966; font-size: .6rem; text-align: center; }

/* FAQ */
.landing-faq { padding: 145px 0; scroll-margin-top: var(--landing-header-height); background: #fff; }
.landing-faq__layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: clamp(60px, 9vw, 140px); }
.landing-faq__intro { position: sticky; top: calc(var(--landing-header-height) + 50px); }
.landing-faq__intro h2 { font-size: clamp(2.8rem, 4.6vw, 4.8rem); }
.landing-faq__intro > p:not(.landing-kicker) { max-width: 400px; margin: 25px 0 0; color: #646b67; font-size: .9rem; line-height: 1.65; }
.landing-faq__list { border-top: 1px solid rgba(27,34,31,.18); }
.landing-faq details { border-bottom: 1px solid rgba(27,34,31,.13); }
.landing-faq summary { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 22px; padding: 22px 2px; color: #343a37; font: 700 .94rem/1.4 "Manrope", sans-serif; letter-spacing: -.027em; list-style: none; cursor: pointer; }
.landing-faq summary::-webkit-details-marker { display: none; }
.landing-faq summary::after { content: "+"; display: grid; flex: 0 0 auto; width: 26px; height: 26px; place-items: center; border: 1px solid var(--landing-line); border-radius: 50%; color: var(--landing-accent-deep); font: 400 1rem "DM Sans", sans-serif; transition: transform 220ms var(--landing-ease), background 220ms ease; }
.landing-faq details[open] summary::after { background: var(--landing-accent-pale); transform: rotate(45deg); }
.landing-faq details p { max-width: 650px; margin: 0; padding: 0 46px 24px 2px; color: #626965; font-size: .82rem; line-height: 1.68; }

/* Final */
.landing-final { position: relative; display: flex; min-height: 82svh; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding: 120px 24px; background: linear-gradient(180deg, #f6f4ef, #fbfaf7); text-align: center; }
.landing-final::before,
.landing-final::after { content: ""; position: absolute; width: 52vw; aspect-ratio: 1; border: 1px solid rgba(23,125,112,.075); border-radius: 50%; }
.landing-final::before { left: -34vw; bottom: -28vw; box-shadow: 0 0 0 70px rgba(23,125,112,.018), 0 0 0 140px rgba(23,125,112,.012); }
.landing-final::after { top: -33vw; right: -35vw; }
.landing-final__orb { position: relative; z-index: 1; display: grid; width: 74px; height: 74px; margin-bottom: 30px; place-items: center; border: 1px solid #fff; border-radius: 43% 57% 50% 50% / 52% 44% 56% 48%; background: rgba(255,255,255,.68); box-shadow: 0 20px 55px rgba(39,48,44,.1), inset 0 1px 0 #fff; backdrop-filter: blur(20px); }
.landing-final__orb img { width: 32px; height: 32px; }
.landing-final .landing-kicker { position: relative; z-index: 1; }
.landing-final h2 { position: relative; z-index: 1; max-width: 920px; }
.landing-final h2 em { color: var(--landing-accent-deep); font-style: normal; }
.landing-final > p:not(.landing-kicker) { position: relative; z-index: 1; margin: 25px 0 30px; color: #626965; font-size: .94rem; }
.landing-final .landing-button { position: relative; z-index: 1; }

.landing-footer { padding: 31px 0; border-top: 1px solid var(--landing-line-soft); background: #fbfaf7; color: #626965; font-size: .7rem; }
.landing-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.landing-footer .landing-brand { font-size: 1rem; }
.landing-footer .landing-brand > img { width: 24px; height: 24px; }
.landing-footer__links { display: flex; align-items: center; gap: 22px; }
.landing-footer__links a,
.landing-footer__links button { display: inline-flex; min-height: 28px; align-items: center; padding: 2px; border: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; }
.landing-footer__links a:hover,
.landing-footer__links button:hover { color: var(--landing-ink); }
.landing-footer__identity { display: grid; justify-items: end; gap: 5px; text-align: right; }
.landing-footer__identity a { color: #47514d; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(71,81,77,.28); text-underline-offset: 4px; }
.landing-footer__identity a:hover { color: var(--landing-accent-deep); text-decoration-color: currentColor; }

@media (max-width: 1100px) {
  .trust-copy { left: 42px; width: 44vw; }
  .trust-hand { left: 61%; width: clamp(1140px, 125vw, 1650px); }
  .trust-lens,
  .trust-orbit { left: 72%; }
  .trust-board,
  .trust-resolution { left: 73%; width: 45vw; }
  .trust-copy h1 { font-size: clamp(3rem, 5.4vw, 4.8rem); }
  .trust-copy h2 { font-size: clamp(2.65rem, 4.8vw, 4.25rem); }
}

@media (max-width: 800px) {
  :root { --landing-header-height: 66px; }
  .landing-wrap,
  .landing-nav__inner,
  .landing-footer__inner { width: min(100% - 32px, 1220px); }
  .landing-menu { display: block; width: 44px; height: 44px; }
  .landing-links {
    position: absolute;
    top: var(--landing-header-height);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 16px;
    border-bottom: 1px solid var(--landing-line);
    background: rgba(251,250,247,.985);
    box-shadow: 0 18px 45px rgba(31,38,34,.1);
  }
  html.landing-menu-ready .landing-links {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.985);
    transform-origin: top center;
    transition: opacity 160ms ease, transform 220ms var(--landing-ease), visibility 0s linear 220ms;
  }
  html.landing-menu-ready .landing-links.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }
  .landing-nav.is-scrolled,
  .landing-nav.menu-open {
    background: rgba(251,250,247,.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .landing-links > a:not(.landing-button) { grid-column: 1 / -1; padding: 10px 9px; border-radius: 9px; }
  .landing-links > a:not(.landing-button)::after { display: none; }
  .landing-links > a:not(.landing-button):hover { background: rgba(23,125,112,.06); }
  .landing-links .landing-login { grid-column: auto; margin-left: 0; border: 1px solid var(--landing-line); text-align: center; }
  .landing-links .landing-button { width: 100%; }

  .trust-journey.is-enhanced,
  html.landing-motion-ready .trust-journey { height: 680svh; }
  .trust-journey.is-enhanced .trust-journey__sticky,
  html.landing-motion-ready .trust-journey__sticky { min-height: min(570px, 100svh); }
  .trust-meta { top: calc(var(--landing-header-height) + 13px); right: 18px; left: 18px; grid-template-columns: 1fr auto; }
  .trust-meta__label { display: none; }
  .trust-meta__progress { grid-column: 1; }
  .trust-meta__count { min-width: 54px; white-space: nowrap; }
  .trust-copy { top: 13.5%; left: 20px; width: calc(100% - 40px); transform: none; text-align: center; }
  .trust-copy__act { top: 0; transform-origin: center top; }
  .trust-copy__index { margin-bottom: 11px; }
  .trust-copy h1 { max-width: 630px; margin-inline: auto; font-size: clamp(2.65rem, 11vw, 4.5rem); line-height: .98; }
  .trust-copy h2 { max-width: 640px; margin-inline: auto; font-size: clamp(2.25rem, 9vw, 3.75rem); line-height: 1; }
  .trust-copy__lead { max-width: 590px; margin: 15px auto 0; font-size: clamp(.82rem, 2.7vw, 1rem); line-height: 1.5; }
  .trust-copy__actions { justify-content: center; margin-top: 18px; }
  .trust-copy__note { margin: 10px auto 0; font-size: .58rem; }
  .trust-copy__detail { justify-content: center; margin: 17px auto 0; padding-top: 11px; font-size: .67rem; }

  .trust-hand { top: 65%; left: 50%; width: clamp(1040px, 195vw, 1500px); filter: none; }
  .trust-lens { top: 65%; left: 50%; width: 132px; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .trust-atmosphere__grain { display: none; }
  .trust-orbit { top: 65%; left: 50%; width: min(86vw, 570px); }
  .trust-orbit--inner { width: min(59vw, 390px); }
  .trust-fragment { width: 150px; padding: 10px 11px; border-radius: 13px; }
  .trust-fragment--one { top: 48%; left: 5%; }
  .trust-fragment--two { top: 55%; right: 3%; }
  .trust-fragment--three { bottom: 6%; left: 9%; }
  .trust-fragment > strong { font-size: .61rem; }
  .trust-fragment > small { font-size: .45rem; }

  .trust-board { top: 68%; left: 50%; width: min(calc(100% - 30px), 570px); border-radius: 20px; background: rgba(255,255,255,.92); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .trust-fragment { background: rgba(255,255,255,.9); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .trust-board--reply,
  .trust-board--request { width: min(calc(100% - 30px), 590px); }
  .trust-resolution { top: 67%; left: 50%; width: calc(100% - 38px); }
  .trust-scroll-cue { bottom: 18px; left: 20px; }
  .trust-scroll-cue span { display: none; }
  .trust-scroll-cue i { width: 23px; height: 35px; }
  .trust-chapters { right: 18px; bottom: 19px; }

  .landing-pricing,
  .landing-faq { padding: 100px 0; }
  .landing-pricing__layout,
  .landing-faq__layout { grid-template-columns: 1fr; gap: 55px; }
  .landing-pricing__intro h2,
  .landing-faq__intro h2 { font-size: clamp(2.8rem, 10vw, 4.4rem); }
  .landing-pricing__assurances { margin-top: 25px; }
  .landing-plan { width: min(590px, 100%); }
  .landing-faq__intro { position: static; }
  .landing-faq__intro > p:not(.landing-kicker) { max-width: 560px; }
  .landing-final { min-height: 74svh; padding: 95px 20px; }
  .landing-final h2 { font-size: clamp(2.8rem, 10vw, 4.6rem); }
  .landing-footer__inner { flex-wrap: wrap; }
  .landing-footer__identity { justify-items: start; text-align: left; }
}

@media (max-width: 520px) {
  .landing-links { grid-template-columns: 1fr; }
  .landing-links .landing-login { grid-column: 1; }
  .landing-brand { font-size: 1.08rem; }
  .landing-button { min-height: 45px; padding: 10px 16px; }

  .trust-journey.is-enhanced,
  html.landing-motion-ready .trust-journey { height: 630svh; }
  .trust-copy { top: 12.8%; left: 15px; width: calc(100% - 30px); }
  .trust-copy h1 { font-size: clamp(2.35rem, 11.8vw, 3.45rem); }
  .trust-copy h2 { font-size: clamp(2.05rem, 10.3vw, 3.1rem); }
  .trust-copy__lead { font-size: .79rem; }
  .trust-copy__actions { gap: 7px; }
  .trust-copy__actions .landing-button { font-size: .73rem; }
  .trust-copy__note { max-width: 310px; }
  .trust-copy__detail { max-width: 335px; }
  .trust-hand { top: 66%; width: 230vw; }
  .trust-lens,
  .trust-orbit { top: 66%; }
  .trust-fragment { width: 129px; }
  .trust-fragment--one { top: 48%; left: 1%; }
  .trust-fragment--two { top: 56%; right: -2%; }
  .trust-fragment--three { bottom: 7%; left: 4%; }
  .trust-board { top: 69%; }
  .trust-board__heading { padding: 17px 16px 11px; }
  .trust-signal-grid { padding: 0 11px 12px; }
  .trust-signal { padding: 9px; }
  .trust-reply__review { padding: 15px 15px 9px; }
  .trust-reply__draft { margin: 3px 12px 10px; padding: 12px; }
  .trust-reply__control { padding: 0 12px 12px; }
  .trust-request__title { padding: 15px 14px 12px; }
  .trust-request__flow { gap: 4px; padding: 0 11px; }
  .trust-request__flow > div { padding: 8px; }
  .trust-request__flow > div i { margin-bottom: 9px; }
  .trust-request__status { margin: 10px 11px 11px; }
  .trust-resolution { top: 68%; }
  .trust-resolution__mark { width: 68px; height: 68px; margin-bottom: 17px; }
  .trust-resolution strong { font-size: 1.65rem; }

  .landing-pricing,
  .landing-faq { padding: 82px 0; }
  .landing-plan { padding: 25px 20px; border-radius: 23px; }
  .landing-plan__top { display: grid; }
  .landing-plan__top > span { justify-self: start; }
  .landing-plan__price { font-size: 2.75rem; }
  .landing-pricing__assurances span { font-size: .57rem; }
  .landing-faq summary { min-height: 68px; font-size: .86rem; }
  .landing-final { min-height: 70svh; }
  .landing-footer__inner { flex-direction: column; align-items: flex-start; }
  .landing-footer__links { flex-wrap: wrap; gap: 15px; }
  .landing-footer__links a,
  .landing-footer__links button { min-height: 40px; }
}

@media (max-width: 520px) and (max-height: 720px) and (orientation: portrait) {
  .trust-journey.is-enhanced,
  html.landing-motion-ready .trust-journey { height: 590svh; }
  .trust-meta { display: none; }
  .trust-copy { top: 11.5%; }
  .trust-copy__index { margin-bottom: 8px; font-size: .59rem; }
  .trust-copy h1 { font-size: clamp(2.05rem, 10.6vw, 2.75rem); }
  .trust-copy h2 { font-size: clamp(1.8rem, 9.2vw, 2.45rem); }
  .trust-copy__lead { margin-top: 11px; font-size: .76rem; line-height: 1.42; }
  .trust-copy__actions { margin-top: 12px; }
  .trust-copy__actions .landing-button { min-height: 44px; padding: 9px 13px; font-size: .7rem; }
  .trust-copy__actions .landing-button--ghost { display: none; }
  .trust-copy__note { margin-top: 8px; font-size: .62rem; }
  .trust-copy__detail { margin-top: 10px; padding-top: 8px; font-size: .64rem; }
  .trust-hand,
  .trust-lens,
  .trust-orbit { top: 69%; }
  .trust-board { top: 70%; }
  .trust-board__bar { padding-block: 8px; }
  .trust-board__heading { padding-top: 13px; }
  .trust-signal { padding-block: 7px; }
  .trust-resolution { top: 69%; }
  .trust-scroll-cue,
  .trust-chapters { bottom: 10px; }
}

@media (max-height: 620px) and (orientation: landscape) {
  .trust-journey.is-enhanced { height: auto; padding: calc(var(--landing-header-height) + 60px) 0 70px; }
  .trust-journey.is-enhanced .trust-journey__sticky { position: relative; height: auto; min-height: auto; overflow: visible; }
  .trust-journey.is-enhanced .trust-meta,
  .trust-journey.is-enhanced .trust-scroll-cue,
  .trust-journey.is-enhanced .trust-chapters { display: none; }
  .trust-journey.is-enhanced .trust-copy { position: relative; top: auto; left: auto; display: grid; width: min(1120px, calc(100% - 64px)); gap: 55px; margin: 0 auto; text-align: left; transform: none; }
  .trust-journey.is-enhanced .trust-copy__act { position: relative; top: auto; width: min(720px,100%); opacity: 1 !important; visibility: visible !important; transform: none !important; }
  .trust-journey.is-enhanced .trust-copy__act + .trust-copy__act { padding-top: 45px; border-top: 1px solid var(--landing-line); }
  .trust-journey.is-enhanced .trust-stage { position: relative; height: 470px; }
  .trust-journey.is-enhanced .trust-board,
  .trust-journey.is-enhanced .trust-fragments,
  .trust-journey.is-enhanced .trust-resolution { display: none; }
  .trust-journey.is-enhanced .trust-hand,
  .trust-journey.is-enhanced .trust-lens,
  .trust-journey.is-enhanced .trust-orbit { top: 50%; left: 50%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .trust-lens__liquid,
  .trust-reply__caret,
  .trust-scroll-cue i::after { animation: none !important; }
  .landing-button,
  .landing-links,
  .landing-menu span,
  .landing-menu::before,
  .landing-menu::after,
  .landing-links a,
  .landing-faq summary::after { transition: none !important; }
}
