@view-transition {
  navigation: auto;
}

:root {
  --scroll-progress: 0%;
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-scroll: 0px;
  --hero-light-x: 62%;
  --hero-light-y: 46%;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
  background: rgba(255, 254, 250, 0.12);
}

.scroll-progress span {
  display: block;
  width: var(--scroll-progress);
  height: 100%;
  background: var(--g3-copper);
  transform-origin: left center;
  transition: width 80ms linear;
}

.site-header {
  transition:
    min-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms ease,
    box-shadow 320ms ease;
}

body.is-scrolled .site-header {
  min-height: 64px;
  background: rgba(255, 254, 250, 0.88);
  box-shadow: 0 10px 36px rgba(42, 41, 37, 0.1);
}

.header-nav a.is-active {
  color: var(--g3-copper);
}

.header-nav a.is-active::after {
  transform: scaleX(1);
}

.section-indicator {
  position: fixed;
  z-index: 24;
  top: 50%;
  left: clamp(13px, 1.8vw, 30px);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(42, 41, 37, 0.52);
  pointer-events: none;
  transform: translateY(-50%);
  transition: color 300ms ease, opacity 300ms ease;
}

.section-indicator span,
.section-indicator strong {
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.section-indicator i {
  position: relative;
  width: 1px;
  height: 62px;
  overflow: hidden;
  background: rgba(42, 41, 37, 0.16);
}

.section-indicator i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--g3-copper);
  transform: translateY(calc(-100% + var(--section-local-progress, 0%)));
  transition: transform 120ms linear;
}

.hero {
  isolation: isolate;
  view-transition-name: hero;
}

.hero-image {
  transform:
    translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0)
    scale(1.055);
  transform-origin: 68% 48%;
  will-change: transform;
  transition: transform 180ms ease-out, filter 700ms ease;
}

.hero-overlay {
  overflow: hidden;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -24%;
  width: 18%;
  opacity: 0;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(28px);
  transform: skewX(-14deg);
  animation: hero-light 8s 2.2s ease-in-out infinite;
}

.hero-main > .eyebrow,
.hero-main > .hero-logo,
.hero-main > .hero-statement,
.hero-main > .hero-copy,
.hero-main > .hero-actions,
.hero-main > .hero-assurance {
  opacity: 0;
  transform: translateY(18px);
}

.is-loaded .hero-main > .eyebrow,
.is-loaded .hero-main > .hero-logo,
.is-loaded .hero-main > .hero-statement,
.is-loaded .hero-main > .hero-copy,
.is-loaded .hero-main > .hero-actions,
.is-loaded .hero-main > .hero-assurance {
  animation: hero-content-in 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.is-loaded .hero-main > .eyebrow { animation-delay: 180ms; }
.is-loaded .hero-main > .hero-logo { animation-delay: 270ms; }
.is-loaded .hero-main > .hero-statement { animation-delay: 380ms; }
.is-loaded .hero-main > .hero-copy { animation-delay: 480ms; }
.is-loaded .hero-main > .hero-actions { animation-delay: 580ms; }
.is-loaded .hero-main > .hero-assurance { animation-delay: 680ms; }

.hero-logo {
  filter: drop-shadow(0 10px 28px rgba(42, 41, 37, 0.08));
}

.hero-statement {
  text-wrap: balance;
}

.hero-scroll {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.hero-scroll::after {
  height: 58px;
  transform-origin: top;
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

.principle-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--g3-olive-dark);
  background: var(--g3-sage-light);
  border-bottom: 1px solid var(--g3-line);
}

.principle-ticker div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  min-height: 54px;
  padding-left: 30px;
  animation: ticker-run 30s linear infinite;
}

.principle-ticker span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.principle-ticker i {
  width: 4px;
  height: 4px;
  background: var(--g3-copper);
  transform: rotate(45deg);
}

.section {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.section-heading h2,
.section-gathering h2,
.final-cta h2 {
  text-wrap: balance;
}

.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

.section-heading .eyebrow,
.section-gathering > .container > .eyebrow,
.final-cta .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-heading .eyebrow::before,
.section-gathering > .container > .eyebrow::before,
.final-cta .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-image {
  position: relative;
  isolation: isolate;
}

.section-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: inherit;
  box-shadow: inset 0 0 90px rgba(42, 41, 37, 0.05);
}

.section-image img {
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 600ms ease;
}

.section-image:hover img {
  transform: scale(1.025);
  filter: saturate(0.82) contrast(1.01);
}

.outcome-grid article,
.feature-card,
.fit-grid article,
.decision-grid article,
.plan-card,
.steps article,
.voice-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 320ms ease;
  will-change: transform;
}

.outcome-grid article:hover,
.feature-card:hover,
.fit-grid article:hover,
.decision-grid article:hover,
.plan-card:hover,
.steps article:hover,
.voice-card:hover {
  --lift: -5px;
  border-color: rgba(166, 109, 77, 0.48);
  box-shadow: 0 18px 34px rgba(42, 41, 37, 0.1);
}

.outcome-grid article > *,
.feature-card > *,
.fit-grid article > *,
.decision-grid article > *,
.plan-card > *,
.steps article > *,
.voice-card > * {
  transform: translateZ(12px);
}

.research-gallery {
  cursor: grab;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
}

.research-gallery.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.research-gallery figure {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1086 / 1448;
  cursor: zoom-in;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease;
}

.research-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-gallery figure::before {
  content: "↗";
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--g3-olive-dark);
  background: rgba(255, 254, 250, 0.9);
  border: 1px solid rgba(42, 41, 37, 0.14);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.research-gallery figure:hover,
.research-gallery figure:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(234, 215, 201, 0.72);
}

.research-gallery figure:hover::before,
.research-gallery figure:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.research-lightbox {
  width: min(1040px, calc(100% - 48px));
  max-width: none;
  height: min(92svh, 980px);
  max-height: none;
  padding: 0;
  overflow: hidden;
  color: var(--g3-white);
  background: #1d1e1a;
  border: 1px solid rgba(255, 254, 250, 0.2);
  border-radius: 8px;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.5);
}

.research-lightbox::backdrop {
  background: rgba(18, 19, 16, 0.82);
  backdrop-filter: blur(14px) saturate(0.7);
}

body.lightbox-open {
  overflow: hidden;
}

.research-lightbox[open] {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  animation: lightbox-in 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.research-lightbox figure {
  display: grid;
  min-width: 0;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  padding: 28px 0 18px;
}

.research-lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.research-lightbox figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 12px 8px 0;
  color: rgba(255, 254, 250, 0.64);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.research-lightbox figcaption strong {
  color: var(--g3-copper-light);
  font-size: 11px;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  color: var(--g3-white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 254, 250, 0.2);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 300;
}

.lightbox-nav {
  width: 52px;
  height: 72px;
  justify-self: center;
  color: rgba(255, 254, 250, 0.72);
  font-size: 44px;
  font-weight: 200;
  transition: color 180ms ease, transform 180ms ease;
}

.lightbox-nav:hover {
  color: var(--g3-white);
  transform: scale(1.08);
}

.comparison-table {
  position: relative;
  overflow: auto;
  scrollbar-width: thin;
}

.comparison-row > div:nth-child(2) {
  position: relative;
}

.comparison-row > div:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--g3-copper);
  opacity: 0.5;
}

.plan-featured {
  position: relative;
  overflow: hidden;
}

.plan-featured::after {
  content: "";
  position: absolute;
  top: -48px;
  right: -34px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 254, 250, 0.12);
  transform: rotate(22deg);
}

.faq-list details {
  transition: background 220ms ease;
}

.faq-list details[open] {
  background: rgba(255, 254, 250, 0.56);
}

.sticky-cta {
  transition:
    opacity 300ms ease,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
}

.sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
}

.sticky-cta a {
  position: relative;
  overflow: hidden;
}

.sticky-cta a::before,
.button-primary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 24%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-18deg);
  transition: left 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-cta a:hover::before,
.button-primary:hover::before {
  left: 120%;
}

.button-primary {
  position: relative;
  overflow: hidden;
}

.loader {
  overflow: hidden;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loader::before {
  background: var(--g3-olive-dark);
  transform: translateX(-101%);
  transition: transform 700ms cubic-bezier(0.76, 0, 0.24, 1);
}

.is-loaded .loader::before {
  transform: translateX(101%);
}

@supports (animation-timeline: view()) {
  .section-image img {
    animation: image-breathe linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  .section-heading {
    animation: heading-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 42%;
  }
}

@keyframes hero-content-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-light {
  0%, 14% {
    left: -24%;
    opacity: 0;
  }
  30% {
    opacity: 0.42;
  }
  58%, 100% {
    left: 112%;
    opacity: 0;
  }
}

@keyframes scroll-pulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes ticker-run {
  to { transform: translateX(-50%); }
}

@keyframes lightbox-in {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes image-breathe {
  0% { transform: scale(1.04); }
  50% { transform: scale(1); }
  100% { transform: scale(1.04); }
}

@keyframes heading-drift {
  from { transform: translateY(22px); }
  to { transform: translateY(0); }
}

@media (hover: none), (pointer: coarse) {
  .outcome-grid article,
  .feature-card,
  .fit-grid article,
  .decision-grid article,
  .plan-card,
  .steps article,
  .voice-card {
    transform: none;
  }

  .research-gallery figure::before {
    opacity: 0.86;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .section-indicator {
    display: none;
  }
}

@media (max-width: 920px) {
  body.is-scrolled .site-header {
    min-height: 62px;
  }

  .hero-image {
    transform:
      translate3d(0, var(--hero-scroll), 0)
      scale(1.045);
  }

  .principle-ticker div {
    min-height: 48px;
  }

  .research-lightbox {
    width: calc(100% - 28px);
    height: min(92svh, 900px);
  }

  .research-lightbox[open] {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
  }

  .lightbox-nav {
    width: 42px;
    font-size: 36px;
  }
}

@media (max-width: 620px) {
  .scroll-progress {
    height: 2px;
  }

  .principle-ticker div {
    gap: 22px;
    padding-left: 22px;
    animation-duration: 24s;
  }

  .principle-ticker span {
    font-size: 8px;
  }

  .research-lightbox {
    width: calc(100% - 18px);
    height: 91svh;
  }

  .research-lightbox[open] {
    grid-template-columns: 1fr;
  }

  .research-lightbox figure {
    grid-column: 1;
    grid-row: 1;
    padding: 54px 14px 74px;
  }

  .research-lightbox figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-inline: 2px;
  }

  .lightbox-nav {
    position: absolute;
    z-index: 3;
    bottom: 14px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 254, 250, 0.18);
    border-radius: 50%;
  }

  .lightbox-prev { left: 14px; }
  .lightbox-next { right: 14px; }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress span,
  .site-header,
  .hero-image,
  .section-image img,
  .sticky-cta,
  .research-gallery,
  .research-gallery figure,
  .outcome-grid article,
  .feature-card,
  .fit-grid article,
  .decision-grid article,
  .plan-card,
  .steps article,
  .voice-card {
    transition: none !important;
  }

  .hero-overlay::after,
  .hero-scroll::after,
  .principle-ticker div,
  .is-loaded .hero-main > * {
    animation: none !important;
  }

  .hero-main > .eyebrow,
  .hero-main > .hero-logo,
  .hero-main > .hero-statement,
  .hero-main > .hero-copy,
  .hero-main > .hero-actions,
  .hero-main > .hero-assurance {
    opacity: 1;
    transform: none;
  }
}

/* Mobile layout guardrails */
@media (max-width: 620px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .container {
    width: calc(100% - 32px);
    max-width: none;
  }

  .site-header,
  body.is-scrolled .site-header {
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px;
    padding: 0 10px 0 14px;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
  }

  .brand img {
    width: min(124px, 38vw);
    max-width: 100%;
  }

  .header-cta {
    min-width: 72px;
    min-height: 38px;
    padding: 8px 9px;
    font-size: 9px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .mobile-menu {
    top: 62px;
    max-height: calc(100svh - 62px);
    padding: 14px 18px calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero-editorial {
    width: 100%;
    min-height: 560px;
    max-width: 100%;
  }

  .hero-editorial .hero-image {
    max-width: none;
  }

  .hero-brand-mark {
    width: min(190px, 56vw);
  }

  .hero-menu-left,
  .hero-meta-left {
    left: 22px;
  }

  .hero-menu-right {
    right: 22px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .section h2,
  h2,
  .final-cta h2 {
    max-width: 100%;
    font-size: clamp(22px, 7vw, 27px);
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .split,
  .feature-grid,
  .outcome-grid,
  .fit-grid,
  .decision-grid,
  .plan-grid,
  .steps,
  .voice-grid,
  .voice-featured,
  .permission-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .split,
  .feature-grid,
  .outcome-grid,
  .fit-grid,
  .decision-grid,
  .plan-grid,
  .steps,
  .voice-grid {
    gap: 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid div {
    min-width: 0;
    min-height: 104px;
    padding: 18px 10px;
  }

  .stats-grid strong {
    font-size: clamp(17px, 5.6vw, 23px);
    overflow-wrap: anywhere;
  }

  .section-image,
  .section-image-wide,
  .section-image-small {
    width: 100%;
    max-width: 100%;
    margin-bottom: 34px;
  }

  .section-image img,
  .section-image-wide img,
  .section-image-small img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .research-lead {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .research-gallery {
    grid-auto-columns: min(78vw, 294px);
    width: 100%;
    max-width: 100%;
    margin-top: 38px;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
  }

  .feature-card,
  .outcome-grid article,
  .fit-grid article,
  .decision-grid article,
  .plan-card,
  .steps article,
  .voice-card,
  .voice-featured {
    min-width: 0;
    min-height: auto;
    padding: 24px 20px;
  }

  .permission-grid span,
  .tag-row span {
    min-width: 0;
    white-space: normal;
  }

  .comparison-table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-row {
    min-width: 760px;
  }

  .comparison-row > div {
    min-width: 0;
    padding: 16px 12px;
    overflow-wrap: anywhere;
  }

  .plan-head {
    min-height: auto;
    padding-right: 0;
  }

  .price {
    font-size: clamp(32px, 11vw, 44px);
  }

  .cta-row,
  .hero-actions .cta-row,
  .final-cta .cta-row {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .cta-row .button,
  .hero-actions .button,
  .final-cta .button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 16px;
    white-space: normal;
    text-align: center;
  }

  .faq-list summary {
    min-height: 60px;
    padding: 18px 32px 18px 28px;
    overflow-wrap: anywhere;
  }

  .faq-list details p {
    padding: 0 32px 20px 28px;
  }

  .final-cta {
    padding: 76px 0 calc(116px + env(safe-area-inset-bottom));
  }

  .site-footer {
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .footer-inner,
  .footer-inner div {
    width: 100%;
    min-width: 0;
  }

  .sticky-cta {
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 8px;
    width: auto;
    max-width: none;
    gap: 8px;
    padding: 7px;
  }

  .sticky-cta-logo {
    width: 30px;
    height: 30px;
  }

  .sticky-cta div {
    min-width: 0;
    padding: 0;
  }

  .sticky-cta strong {
    font-size: 10px;
  }

  .sticky-cta span {
    display: block;
    max-width: 100%;
    font-size: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sticky-cta a {
    min-width: 68px;
    min-height: 40px;
    padding: 0 10px;
    font-size: 9px;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 24px);
  }

  .brand img {
    width: 108px;
  }

  .header-cta {
    min-width: 66px;
    padding-inline: 7px;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .hero-menu-left,
  .hero-meta-left {
    left: 18px;
  }

  .hero-menu-right {
    right: 18px;
  }

  .hero-menu a {
    font-size: 7px;
  }

  .conversion-strip-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .sticky-cta-logo {
    display: none;
  }
}

@media (max-height: 620px) and (max-width: 920px) {
  .hero-editorial {
    min-height: 520px;
  }

  .hero-brand-mark {
    top: 34px;
    width: min(176px, 48vw);
  }

  .hero-menu {
    top: 43%;
    gap: 24px;
  }

  .hero-meta {
    bottom: 48px;
  }

  .hero-editorial .hero-scroll {
    bottom: 22px;
  }
}

/* Readability and final content polish */
body {
  color: #292a26;
  font-size: 14px;
  line-height: 1.85;
}

.container {
  width: min(1040px, calc(100% - 72px));
}

.narrow {
  width: min(780px, 100%);
}

.section {
  padding: clamp(82px, 8vw, 124px) 0;
}

.section::after,
.voice-card::after,
.voice-featured::before {
  display: none;
}

.section-heading {
  max-width: 680px;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.section-heading h2,
.section h2,
h2 {
  color: #292a26;
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.45;
}

.section h3,
h3 {
  color: #30312c;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
}

.section p,
.section li {
  color: #55564f;
  font-size: 13px;
  line-height: 1.9;
}

.eyebrow {
  color: #87553d;
  font-size: 9px;
}

.statement {
  color: #292a26;
  font-size: clamp(18px, 2.2vw, 26px);
}

.section-research,
.section-proof,
.final-cta {
  color: #faf8f2;
}

.section-research h2,
.section-research h3,
.section-proof h2,
.section-proof h3,
.final-cta h2,
.final-cta h3 {
  color: #fffdf8;
}

.section-research p,
.section-research li,
.section-proof p,
.section-proof li,
.section-proof span,
.final-cta p,
.final-cta li {
  color: rgba(255, 253, 248, 0.88);
}

.section-research .eyebrow,
.section-proof .eyebrow,
.final-cta .eyebrow {
  color: #e2c5a7;
}

.plan-featured,
.plan-featured h2,
.plan-featured h3,
.plan-featured p,
.plan-featured li,
.plan-featured .price {
  color: #fffdf8;
}

.fit-muted,
.fit-muted h3,
.fit-muted li {
  color: #55564f;
}

.research-covers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(42px, 6vw, 72px);
}

.research-covers figure {
  min-width: 0;
  margin: 0;
}

.research-covers img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 253, 248, 0.18);
  box-shadow: 0 18px 36px rgba(10, 12, 10, 0.2);
}

.research-covers figcaption {
  margin-top: 12px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.voice-featured {
  grid-column: 1 / -1;
  display: block;
  color: #292a26;
  background: #fffefa;
}

.voice-featured .voice-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  box-shadow: none;
}

.voice-featured .voice-name,
.voice-featured .voice-head span,
.voice-featured .voice-body p {
  color: #41423c;
}

.voice-featured .voice-name {
  color: #59644f;
}

.voice-featured .voice-body {
  padding-top: 24px;
  columns: 2;
  column-gap: clamp(34px, 5vw, 62px);
}

.voice-featured .voice-body p {
  break-inside: avoid;
  margin: 0 0 18px;
}

.loader {
  color: #292a26;
  background: #f7f3eb;
}

.loader::before,
.loader::after {
  display: none;
}

.loader-inner {
  width: min(360px, calc(100% - 64px));
  gap: 18px;
}

.loader-inner .loader-kicker {
  color: #7b756a;
  font-family: inherit;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.loader-inner img {
  width: min(250px, 70vw);
}

.loader-inner p {
  margin: 0;
  color: #5e5b53;
  font-size: 11px;
  line-height: 1.6;
}

.loader-inner i {
  width: min(210px, 56vw);
  margin-top: 8px;
  background: rgba(41, 42, 38, 0.14);
}

.loader-inner i::after {
  background: #59644f;
}

@media (max-width: 920px) {
  .container {
    width: calc(100% - 48px);
  }

  .research-covers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body {
    font-size: 13px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .section {
    padding: 66px 0;
  }

  .section-heading h2,
  .section h2,
  h2,
  .final-cta h2 {
    font-size: clamp(21px, 6.7vw, 26px);
  }

  .section h3,
  h3 {
    font-size: 15px;
  }

  .section p,
  .section li {
    font-size: 12px;
    line-height: 1.85;
  }

  .research-covers {
    gap: 14px;
    margin-top: 38px;
  }

  .research-covers figcaption {
    margin-top: 8px;
    font-size: 8px;
  }

  .voice-featured .voice-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .voice-featured .voice-body {
    columns: 1;
    padding-top: 18px;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }

  .research-covers {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Full-screen editorial hero */
.site-header {
  transition:
    min-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms ease,
    box-shadow 320ms ease,
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body:not(.is-scrolled) .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
}

body.is-scrolled .site-header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body:not(.is-scrolled) .section-indicator,
body:not(.is-scrolled) .scroll-progress,
body:not(.is-scrolled) .sticky-cta {
  opacity: 0;
  pointer-events: none;
}

body:not(.is-scrolled) .sticky-cta {
  transform: translateY(20px);
}

.hero-editorial {
  position: relative;
  display: block;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #171915;
  border: 0;
}

.hero-editorial::before,
.hero-editorial::after {
  display: none;
}

.hero-editorial .hero-image {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: 66% 50%;
  opacity: 1;
  filter: saturate(0.58) contrast(1.04) brightness(0.58) sepia(0.08);
  transform:
    translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0)
    scale(1.035);
  transform-origin: 66% 50%;
}

.hero-editorial .hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background: rgba(17, 20, 17, 0.48);
  box-shadow:
    inset 0 0 180px rgba(8, 10, 8, 0.22),
    inset 0 -240px 180px rgba(7, 9, 7, 0.58);
}

.hero-editorial .hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 34% 42% at var(--hero-light-x) var(--hero-light-y),
    rgba(255, 239, 207, 0.2) 0%,
    rgba(255, 239, 207, 0.08) 42%,
    transparent 74%
  );
  mix-blend-mode: screen;
  opacity: 0.64;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.hero-editorial .hero-overlay::after {
  display: none;
}

.hero-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.hero-brand-mark {
  position: absolute;
  top: clamp(54px, 7.5vh, 92px);
  left: 50%;
  width: clamp(190px, 16vw, 250px);
  opacity: 0;
  transform: translate(-50%, -8px);
}

.hero-brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.88;
  filter: brightness(0) invert(1);
}

.hero-menu {
  position: absolute;
  top: 46%;
  display: grid;
  gap: clamp(42px, 6vh, 68px);
  width: min(150px, 18vw);
  opacity: 0;
  transform: translateY(10px);
}

.hero-menu-left {
  left: clamp(58px, 12vw, 230px);
  justify-items: start;
}

.hero-menu-right {
  right: clamp(58px, 12vw, 230px);
  justify-items: end;
  text-align: right;
}

.hero-menu a {
  position: relative;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(8px, 0.62vw, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 240ms ease;
}

.hero-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-menu a:hover,
.hero-menu a:focus-visible {
  color: #fff;
}

.hero-menu a:hover::after,
.hero-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-meta {
  position: absolute;
  bottom: clamp(52px, 7vh, 82px);
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  opacity: 0;
}

.hero-meta-left {
  left: clamp(46px, 12vw, 230px);
}

.hero-meta-right {
  right: clamp(46px, 12vw, 230px);
  justify-items: end;
}

.hero-editorial .hero-scroll {
  position: absolute;
  z-index: 4;
  right: auto;
  bottom: clamp(34px, 4.8vh, 62px);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0;
  transform: translateX(-50%);
}

.hero-editorial .hero-scroll::after {
  display: none;
}

.hero-editorial .hero-scroll i {
  position: relative;
  display: block;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.hero-editorial .hero-scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.86);
  transform: translateX(-72%);
  animation: editorial-scroll-line 3.6s ease-in-out infinite;
}

.is-loaded .hero-brand-mark {
  animation: editorial-brand-in 1.2s 220ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.is-loaded .hero-menu,
.is-loaded .hero-meta,
.is-loaded .hero-editorial .hero-scroll {
  animation: editorial-detail-in 1s 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.is-loaded .hero-menu-right,
.is-loaded .hero-meta-right {
  animation-delay: 760ms;
}

@keyframes editorial-brand-in {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes editorial-detail-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes editorial-scroll-line {
  0%, 100% { transform: translateX(-78%); }
  55% { transform: translateX(78%); }
}

@media (max-width: 920px) {
  .hero-editorial {
    min-height: 600px;
  }

  .hero-editorial .hero-image {
    inset: -2%;
    width: 104%;
    height: 104%;
    object-position: 70% 50%;
    transform: translate3d(0, var(--hero-scroll), 0) scale(1.035);
  }

  .hero-brand-mark {
    top: clamp(48px, 8vh, 76px);
    width: min(210px, 56vw);
  }

  .hero-menu {
    top: 46%;
    width: auto;
    gap: clamp(38px, 6vh, 56px);
  }

  .hero-menu-left {
    left: clamp(24px, 7vw, 58px);
  }

  .hero-menu-right {
    right: clamp(24px, 7vw, 58px);
  }

  .hero-menu a {
    font-size: 8px;
  }

  .hero-meta-left {
    left: clamp(24px, 7vw, 58px);
  }

  .hero-meta-right {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero-editorial {
    height: 100svh;
    min-height: 560px;
    padding: 0;
  }

  .hero-editorial .hero-image {
    inset: -2%;
    width: 104%;
    height: 104%;
    object-position: 71% 50%;
    filter: saturate(0.62) contrast(1.06) brightness(0.54) sepia(0.08);
  }

  .hero-editorial .hero-overlay {
    inset: 0;
    background: rgba(15, 18, 15, 0.4);
    box-shadow:
      inset 0 0 100px rgba(8, 10, 8, 0.24),
      inset 0 -180px 140px rgba(7, 9, 7, 0.68);
  }

  .hero-brand-mark {
    top: 8vh;
    width: min(200px, 58vw);
  }

  .hero-menu {
    top: 46%;
    gap: clamp(36px, 6vh, 54px);
  }

  .hero-menu-left,
  .hero-meta-left {
    left: 28px;
  }

  .hero-menu-right {
    right: 28px;
  }

  .hero-meta {
    bottom: 9vh;
    font-size: 7px;
  }

  .hero-editorial .hero-scroll {
    bottom: 4vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand-mark,
  .hero-menu,
  .hero-meta,
  .hero-editorial .hero-scroll {
    opacity: 1;
    animation: none !important;
  }

  .hero-brand-mark {
    transform: translate(-50%, 0);
  }

  .hero-menu,
  .hero-meta {
    transform: none;
  }

  .hero-editorial .hero-scroll i::after {
    transform: none;
    animation: none;
  }
}

@media (max-width: 620px) {
  .hero-brand-mark {
    width: min(190px, 56vw);
  }

  .hero-menu-left,
  .hero-meta-left {
    left: 22px;
  }

  .hero-menu-right {
    right: 22px;
  }
}

@media (max-width: 360px) {
  .hero-menu-left,
  .hero-meta-left {
    left: 18px;
  }

  .hero-menu-right {
    right: 18px;
  }

  .hero-menu a {
    font-size: 7px;
  }
}

@media (max-height: 620px) and (max-width: 920px) {
  .hero-editorial {
    min-height: 520px;
  }

  .hero-brand-mark {
    top: 34px;
    width: min(176px, 48vw);
  }

  .hero-menu {
    top: 43%;
    gap: 24px;
  }

  .hero-meta {
    bottom: 48px;
  }

  .hero-editorial .hero-scroll {
    bottom: 22px;
  }
}

/* Section repairs and compact information rhythm */
.section-gathering > .container.narrow {
  box-sizing: border-box;
  width: min(820px, calc(100% - 72px));
  max-width: calc(100% - 72px);
  margin-inline: auto;
}

.section-gathering > .container.narrow > * {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.section-gathering h2,
.section-gathering > .container > p,
.section-gathering .statement,
.section-gathering .eyebrow {
  margin-right: 0;
  margin-left: 0;
  overflow-wrap: anywhere;
}

.section-research .research-metrics {
  display: grid;
  overflow: hidden;
  background: rgba(18, 24, 18, 0.28);
  border: 1px solid rgba(255, 253, 248, 0.24);
  box-shadow: none;
}

.section-research .research-metrics > div {
  min-height: 82px;
  padding: 17px 20px;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
}

.section-research .research-metrics > div:last-child {
  border-bottom: 0;
}

.section-research .research-metrics strong {
  color: #fffdf8;
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 600;
  line-height: 1.25;
}

.section-research .research-metrics span {
  color: rgba(255, 253, 248, 0.76);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
}

.section-lowbarrier .permission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.section-lowbarrier .permission-grid span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  min-height: 66px;
  padding: 13px 15px;
  color: #465044;
  background: #eef1e8;
  border: 1px solid #cbd2c5;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
}

.section-lowbarrier .permission-grid span::before {
  content: "\2713";
  flex: 0 0 auto;
  margin-right: 9px;
  color: #87553d;
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 620px) {
  .section-gathering > .container.narrow {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }

  .section-research .research-metrics > div {
    min-height: 0;
    padding: 15px 17px;
  }

  .section-research .research-metrics strong {
    font-size: 19px;
  }

  .section-lowbarrier .permission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .section-lowbarrier .permission-grid span {
    min-height: 60px;
    padding: 11px 12px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .section-gathering > .container.narrow {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  .section-lowbarrier .permission-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-lowbarrier .permission-grid span {
    min-height: 52px;
  }
}

@media (hover: none) {
  .hero-editorial .hero-overlay::before {
    animation: hero-ambient-drift 11s ease-in-out infinite alternate;
  }
}

@keyframes hero-ambient-drift {
  from {
    transform: translate3d(-3%, -1%, 0) scale(1.04);
  }
  to {
    transform: translate3d(4%, 2%, 0) scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-editorial .hero-overlay::before {
    opacity: 0.28;
    animation: none;
  }
}

/* Explicit contrast pairs for dark information sections */
.section-research .research-cta {
  background: rgba(14, 20, 15, 0.42);
  border-color: rgba(255, 253, 248, 0.24);
  box-shadow: none;
}

.section-research .research-cta p {
  color: rgba(255, 253, 248, 0.9);
}

.section-research .research-cta .button-primary {
  color: #3e493c;
  background: #fffdf8;
  border-color: #fffdf8;
}

.section-proof {
  color: #fffdf8;
  background: #465044 !important;
}

.section-proof h2,
.section-proof h3,
.section-proof strong,
.section-proof .eyebrow {
  color: #fffdf8;
}

.section-proof p,
.section-proof span {
  color: rgba(255, 253, 248, 0.78);
}

.section-proof .stats-grid {
  border-color: rgba(255, 253, 248, 0.24);
}

.section-proof .stats-grid > div {
  background: rgba(255, 253, 248, 0.035);
  border-color: rgba(255, 253, 248, 0.2);
}

.section-proof .stats-grid strong {
  color: #fffdf8;
}

.section-proof .stats-grid span {
  color: rgba(255, 253, 248, 0.74);
}

.section-decision .decision-label {
  color: #fffdf8;
  background: #465044;
  border: 1px solid #465044;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

/* Editorial community snapshot */
.conversion-strip {
  position: relative;
  color: #252822;
  background: #f4f2ec;
  border-top: 1px solid #dedbd2;
  border-bottom: 1px solid #d8d5cc;
}

.conversion-strip::before {
  display: none;
}

.conversion-strip-shell {
  padding: 30px 0 38px;
}

.conversion-strip-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 21px;
}

.conversion-strip-head p {
  margin: 0;
}

.conversion-strip-kicker {
  color: #8b5a41;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.conversion-strip-title {
  margin-top: 5px !important;
  color: #292c27;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.conversion-strip-updated {
  flex: 0 0 auto;
  color: #777971;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.conversion-strip-updated time {
  margin-left: 7px;
  color: #4f544c;
  font-variant-numeric: tabular-nums;
}

.conversion-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #c9c7bf;
  border-bottom: 1px solid #c9c7bf;
  border-left: 0;
}

.conversion-strip-inner > .community-metric {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 148px;
  gap: 0;
  padding: 22px clamp(20px, 2.5vw, 32px) 24px;
  background: transparent;
  border: 0;
  border-left: 1px solid #d2d0c8;
}

.conversion-strip-inner > .community-metric:first-child {
  border-left: 0;
}

.conversion-strip .metric-index {
  margin-bottom: 21px;
  color: #9b684d;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

.conversion-strip .metric-value {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 4px;
  color: #292c27;
  font-size: inherit;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.conversion-strip .metric-number {
  color: #292c27;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.conversion-strip .metric-prefix,
.conversion-strip .metric-unit {
  color: #555a52;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.conversion-strip .metric-label {
  margin: 12px 0 0;
  color: #656961;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.65;
}

.conversion-strip .metric-label small {
  color: #898b84;
  font-size: 8px;
  font-weight: 500;
  white-space: nowrap;
}

.price .price-number {
  color: inherit;
  font: inherit;
}

@media (max-width: 920px) {
  .conversion-strip-shell {
    padding: 28px 0 34px;
  }

  .conversion-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-strip-inner > .community-metric {
    min-height: 138px;
  }

  .conversion-strip-inner > .community-metric:nth-child(odd) {
    border-left: 0;
  }

  .conversion-strip-inner > .community-metric:nth-child(n + 3) {
    border-top: 1px solid #d2d0c8;
  }
}

@media (max-width: 620px) {
  .conversion-strip-shell {
    width: calc(100% - 40px);
    padding: 25px 0 30px;
  }

  .conversion-strip-head {
    gap: 16px;
    padding-bottom: 17px;
  }

  .conversion-strip-kicker {
    font-size: 7px;
  }

  .conversion-strip-title {
    font-size: 11px;
  }

  .conversion-strip-updated {
    font-size: 7px;
  }

  .conversion-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-strip-inner > .community-metric {
    min-height: 124px;
    padding: 17px 13px 18px;
  }

  .conversion-strip .metric-index {
    margin-bottom: 17px;
    font-size: 7px;
  }

  .conversion-strip .metric-number {
    font-size: 27px;
  }

  .conversion-strip .metric-prefix,
  .conversion-strip .metric-unit,
  .conversion-strip .metric-label {
    font-size: 9px;
  }

  .conversion-strip .metric-label small {
    display: block;
    margin-top: 2px;
    font-size: 7px;
  }
}

@media (max-width: 360px) {
  .conversion-strip-shell {
    width: calc(100% - 32px);
  }

  .conversion-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-strip .metric-number {
    font-size: 24px;
  }

  .conversion-strip .metric-value {
    gap: 3px;
  }
}

/* Quiet interaction layer */
.magnetic-target {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  translate: var(--magnetic-x) var(--magnetic-y);
  transition:
    translate 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease;
  will-change: translate;
}

.section-heading {
  position: relative;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 0;
  width: 42px;
  height: 1px;
  background: #9b684d;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 720ms 160ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms 160ms ease;
}

.section-heading.is-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.section-research .section-heading::after,
.section-proof .section-heading::after {
  background: #e2c5a7;
}

.community-metric::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -1px;
  left: 22px;
  height: 2px;
  background: #9b684d;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.community-metric:hover::after {
  transform: scaleX(1);
}

.research-covers figure {
  --cover-rx: 0deg;
  --cover-ry: 0deg;
  --cover-light-x: 50%;
  --cover-light-y: 42%;
  position: relative;
  perspective: 1100px;
}

.research-covers figure img {
  position: relative;
  z-index: 1;
  backface-visibility: hidden;
  transform: perspective(1100px) rotateX(var(--cover-rx)) rotateY(var(--cover-ry)) scale(1.006);
  transform-origin: center;
  transition:
    transform 180ms ease-out,
    box-shadow 320ms ease;
  will-change: transform;
}

.research-covers figure::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: radial-gradient(
    circle at var(--cover-light-x) var(--cover-light-y),
    rgba(255, 246, 224, 0.32),
    transparent 38%
  );
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: perspective(1100px) rotateX(var(--cover-rx)) rotateY(var(--cover-ry)) scale(1.006);
  transition:
    transform 180ms ease-out,
    opacity 260ms ease;
}

.research-covers figure:hover::after {
  opacity: 0.9;
}

.research-covers figcaption {
  position: relative;
  z-index: 3;
  transition: color 220ms ease;
}

.research-covers figure:hover figcaption {
  color: rgba(255, 253, 248, 0.96);
}

body.is-dark-context .section-indicator {
  color: rgba(255, 253, 248, 0.62);
}

body.is-dark-context .section-indicator i {
  background: rgba(255, 253, 248, 0.2);
}

body.is-dark-context .section-indicator i::after {
  background: #e2c5a7;
}

@supports (animation-timeline: view()) {
  .section-image img {
    animation: section-image-pan linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  @keyframes section-image-pan {
    from {
      scale: 1.035;
      translate: 0 -1.4%;
    }
    to {
      scale: 1.035;
      translate: 0 1.4%;
    }
  }
}

@media (hover: none), (pointer: coarse) {
  .magnetic-target {
    translate: 0 0;
  }

  .community-metric::after,
  .research-covers figure::after {
    display: none;
  }

  .research-covers figure img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .magnetic-target {
    translate: 0 0 !important;
    transition: none !important;
  }

  .section-heading::after {
    opacity: 1;
    transform: scaleX(1);
    transition: none;
  }

  .research-covers figure img,
  .research-covers figure::after {
    transform: none;
    transition: none;
  }

  .section-image img {
    animation: none !important;
    scale: 1;
    translate: 0 0;
  }
}

/* Content alignment for updated plans and voices */
.decision-grid article,
.plan-card {
  display: flex;
  flex-direction: column;
}

.decision-grid article > a,
.plan-card > .button {
  margin-top: auto;
}

.section-voices .voices-note {
  max-width: 720px;
  margin: 34px auto 0;
  padding-top: 20px;
  color: #696b64;
  border-top: 1px solid rgba(70, 80, 68, 0.2);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 620px) {
  .section-voices .voices-note {
    margin-top: 26px;
    padding-inline: 8px;
    font-size: 9px;
  }
}

/* Logo-build loader */
.loader-logo-build {
  position: relative;
  width: min(250px, 70vw);
  aspect-ratio: 10 / 3;
  overflow: hidden;
}

.loader {
  transition: opacity 420ms ease, visibility 420ms ease;
}

.loader-inner .loader-logo-build img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loader-logo-ghost {
  opacity: 0.12;
  filter: grayscale(1) contrast(0.72);
}

.loader-logo-fill {
  clip-path: inset(0 100% 0 0);
  animation: loader-logo-build 820ms 80ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.loader-inner .loader-logo-scan {
  position: absolute;
  z-index: 2;
  top: 7%;
  bottom: 7%;
  left: 0;
  width: 1px;
  background: rgba(166, 109, 77, 0.9);
  box-shadow: 0 0 18px rgba(166, 109, 77, 0.38);
  opacity: 0;
  transform: translateX(0);
  animation: loader-logo-scan 820ms 80ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes loader-logo-build {
  to { clip-path: inset(0 0 0 0); }
}

@keyframes loader-logo-scan {
  0% { opacity: 0; transform: translateX(0); }
  8%, 86% { opacity: 1; }
  100% { opacity: 0; transform: translateX(calc(min(250px, 70vw) - 1px)); }
}

/* Lighter, controllable hero slideshow */
.hero-slides {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #242820;
}

.hero-editorial .hero-slide {
  z-index: 0;
  opacity: 0;
  filter: saturate(0.72) contrast(1.02) brightness(0.76) sepia(0.04);
  transition: opacity 1.25s cubic-bezier(0.4, 0, 0.2, 1), filter 700ms ease;
}

.hero-editorial .hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  animation: hero-frame-breathe 8s ease-out both;
}

.hero-editorial .hero-slide:nth-child(2) {
  object-position: 50% 50%;
}

.hero-editorial .hero-slide:nth-child(3) {
  object-position: 58% 50%;
  filter: saturate(0.78) contrast(1.02) brightness(1.04) sepia(0.03);
}

.hero-editorial .hero-overlay {
  background: rgba(15, 18, 15, 0.31);
  box-shadow:
    inset 0 0 150px rgba(8, 10, 8, 0.14),
    inset 0 -220px 170px rgba(7, 9, 7, 0.5);
}

.hero-slide-controls {
  position: absolute;
  z-index: 5;
  right: clamp(46px, 12vw, 230px);
  bottom: clamp(98px, 12vh, 132px);
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
}

.is-loaded .hero-slide-controls {
  animation: editorial-detail-in 1s 880ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-slide-button,
.hero-slide-toggle {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 28px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero-slide-button > span {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.hero-slide-button > span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-slide-button.is-active > span::after {
  animation: hero-slide-progress 6.4s linear forwards;
}

.hero-slide-controls.is-paused .hero-slide-button.is-active > span::after {
  animation-play-state: paused;
}

.hero-slide-toggle {
  position: relative;
  width: 28px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.hero-slide-toggle:hover,
.hero-slide-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-slide-toggle > span,
.hero-slide-toggle > span::after {
  display: block;
  width: 1px;
  height: 7px;
  background: currentColor;
}

.hero-slide-toggle > span {
  position: relative;
  transform: translateX(-2px);
}

.hero-slide-toggle > span::after {
  content: "";
  position: absolute;
  left: 4px;
}

.hero-slide-toggle.is-paused > span {
  width: 0;
  height: 0;
  background: transparent;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  transform: translateX(1px);
}

.hero-slide-toggle.is-paused > span::after {
  display: none;
}

@keyframes hero-slide-progress {
  to { transform: scaleX(1); }
}

@keyframes hero-frame-breathe {
  from { scale: 1; }
  to { scale: 1.015; }
}

/* Actual community interface */
.section.section-inside {
  position: relative;
  overflow: hidden;
  color: #fffdf8;
  background: #465044 !important;
}

.section-inside::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 248, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.section-inside .container {
  position: relative;
  z-index: 1;
}

.section-inside-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-inside .section-heading::after {
  display: none;
}

.section-inside .eyebrow {
  color: #e2c5a7;
}

.section-inside h2,
.section-inside .inside-tab-copy strong {
  color: #fffdf8;
}

.section-inside-heading > p:last-child {
  max-width: 610px;
  margin: 20px auto 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 12px;
}

.inside-explorer {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: center;
  max-width: 1020px;
  margin: clamp(56px, 7vw, 90px) auto 0;
}

.inside-tabs {
  border-top: 1px solid rgba(255, 253, 248, 0.22);
}

.inside-tab {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 22px;
  gap: 17px;
  align-items: start;
  width: 100%;
  min-height: 148px;
  padding: 28px 20px 26px 4px;
  color: rgba(255, 253, 248, 0.78);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: color 280ms ease, background-color 280ms ease, padding 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.inside-tab::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 2px;
  background: #e2c5a7;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.inside-tab:hover,
.inside-tab:focus-visible,
.inside-tab.is-active {
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.055);
  padding-left: 18px;
}

.inside-tab.is-active::before {
  transform: scaleY(1);
}

.inside-index {
  padding-top: 4px;
  color: #e2c5a7;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.inside-tab-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.inside-tab-copy strong {
  color: currentColor;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.35;
}

.inside-tab-copy small {
  color: rgba(255, 253, 248, 0.74);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.8;
}

.inside-tab-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.inside-tab-title em {
  padding: 4px 7px;
  color: #343b32;
  background: #e2c5a7;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.inside-arrow {
  color: #e2c5a7;
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.inside-tab.is-active .inside-arrow {
  opacity: 1;
  transform: translateX(0);
}

.inside-device-stage {
  display: grid;
  justify-items: center;
  min-width: 0;
}

.inside-device {
  position: relative;
  width: min(338px, 100%);
  padding: 10px 9px 9px;
  overflow: hidden;
  background: #161814;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 30px;
  box-shadow:
    0 38px 70px rgba(16, 19, 15, 0.36),
    0 0 0 7px rgba(255, 253, 248, 0.045);
}

.inside-device::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.inside-device-bar {
  position: relative;
  z-index: 2;
  display: grid;
  height: 23px;
  place-items: center;
}

.inside-device-bar span {
  display: block;
  width: 48px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.inside-screen {
  position: relative;
  aspect-ratio: 720 / 1558;
  overflow: hidden;
  background: #fff;
  border-radius: 19px;
  animation: inside-screen-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.inside-screen[hidden] {
  display: none;
}

.inside-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inside-caption {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.56);
  font-size: 8px;
  line-height: 1.6;
}

.inside-caption span {
  color: #e2c5a7;
  font-size: 7px;
  font-weight: 800;
}

@keyframes inside-screen-in {
  from { opacity: 0; transform: translateY(8px) scale(0.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 920px) {
  .hero-slide-controls {
    right: clamp(24px, 7vw, 58px);
  }

  .inside-explorer {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.68fr);
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .inside-explorer {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .inside-tab {
    min-height: 0;
    padding-block: 22px;
  }

  .inside-device {
    width: min(316px, calc(100% - 28px));
  }
}

@media (max-width: 620px) {
  .hero-editorial .hero-slide {
    object-position: 64% 50%;
    filter: saturate(0.74) contrast(1.04) brightness(0.7) sepia(0.04);
  }

  .hero-editorial .hero-slide:nth-child(2) {
    object-position: 52% 50%;
  }

  .hero-editorial .hero-slide:nth-child(3) {
    object-position: 58% 50%;
    filter: saturate(0.8) contrast(1.04) brightness(0.92) sepia(0.03);
  }

  .hero-editorial .hero-overlay {
    background: rgba(14, 17, 14, 0.3);
    box-shadow:
      inset 0 0 90px rgba(8, 10, 8, 0.16),
      inset 0 -170px 130px rgba(7, 9, 7, 0.58);
  }

  .hero-slide-controls {
    right: 22px;
    bottom: 8.5vh;
    gap: 9px;
  }

  .hero-slide-button {
    width: 24px;
  }

  .hero-slide-toggle {
    width: 26px;
    height: 26px;
  }

  .section-inside-heading {
    text-align: left;
  }

  .section-inside-heading > p:last-child {
    margin-left: 0;
    font-size: 10px;
  }

  .inside-explorer {
    margin-top: 42px;
  }

  .inside-tab {
    grid-template-columns: 24px minmax(0, 1fr) 18px;
    gap: 11px;
    padding: 19px 8px 19px 3px;
  }

  .inside-tab:hover,
  .inside-tab:focus-visible,
  .inside-tab.is-active {
    padding-left: 11px;
  }

  .inside-tab-copy strong {
    font-size: 15px;
  }

  .inside-tab-copy small {
    font-size: 9px;
    line-height: 1.75;
  }

  .inside-caption {
    width: min(316px, calc(100% - 28px));
    font-size: 7px;
  }
}

@media (max-height: 620px) and (max-width: 920px) {
  .hero-slide-controls {
    bottom: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-logo-fill {
    clip-path: none;
    animation: none;
  }

  .loader-logo-scan {
    display: none;
  }

  .hero-editorial .hero-slide,
  .hero-editorial .hero-slide.is-active,
  .inside-screen {
    animation: none;
    transition: none;
  }

  .hero-slide-button.is-active > span::after {
    transform: scaleX(1);
    animation: none;
  }

  .hero-slide-controls {
    opacity: 1;
    animation: none;
  }
}

/* Service model: keep the signal, remove the noise */
.section-service-model {
  position: relative;
  overflow: hidden;
  background: #f1efe8;
}

.section-service-model::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(70, 80, 68, 0.22);
}

.service-model-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(52px, 9vw, 130px);
  align-items: end;
}

.service-model-intro .section-heading {
  margin: 0;
}

.service-model-intro > p {
  max-width: 520px;
  margin: 0 0 3px;
  color: #62665e;
  font-size: 12px;
  line-height: 2;
}

.service-model {
  margin-top: clamp(56px, 7vw, 88px);
  border-top: 1px solid rgba(42, 41, 37, 0.36);
}

.service-model-head,
.service-model-row {
  display: grid;
  grid-template-columns:
    minmax(136px, 0.72fr)
    minmax(0, 1fr)
    minmax(0, 1fr)
    minmax(0, 1.38fr);
}

.service-model-head {
  min-height: 48px;
  color: #777970;
  border-bottom: 1px solid rgba(42, 41, 37, 0.24);
}

.service-model-head span {
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-left: 1px solid rgba(42, 41, 37, 0.14);
  font-size: 7px;
  font-weight: 800;
  line-height: 1;
}

.service-model-head span:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-model-head span:last-child {
  color: rgba(255, 253, 248, 0.72);
  background: #465044;
  border-left-color: #465044;
}

.service-model-row {
  position: relative;
  min-height: 218px;
  color: #343630;
  background: transparent;
  border-bottom: 1px solid rgba(42, 41, 37, 0.24);
  transition:
    opacity 800ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 320ms ease;
}

.service-model-row::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: #a66d4d;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-model-row:hover {
  background: rgba(255, 253, 248, 0.42);
}

.service-model-row:hover::before {
  transform: scaleX(1);
}

.service-model-source,
.service-model-cell {
  min-width: 0;
  padding: clamp(28px, 3.2vw, 42px) clamp(18px, 2.2vw, 30px);
}

.service-model-source {
  padding-left: 0;
}

.service-model-source span,
.service-model-cell > span {
  display: block;
  margin-bottom: 24px;
  color: #888a81;
  font-size: 7px;
  font-weight: 800;
  line-height: 1;
}

.service-model-source h3 {
  margin: 0;
  color: #292a26;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.45;
}

.service-model-cell {
  border-left: 1px solid rgba(42, 41, 37, 0.14);
}

.service-model-cell p {
  margin: 0;
  color: #555850;
  font-size: 11px;
  line-height: 1.9;
}

.model-take > span {
  color: #59644f;
}

.model-remove {
  background: rgba(166, 109, 77, 0.035);
}

.model-remove > span {
  color: #9b684d;
}

.model-remove > span::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  margin-left: 8px;
  vertical-align: middle;
  background: currentColor;
  opacity: 0.55;
}

.model-design {
  color: #fffdf8;
  background: #465044;
  border-left-color: rgba(255, 253, 248, 0.12);
  transition: background-color 320ms ease;
}

.service-model-row:hover .model-design {
  background: #3f493d;
}

.model-design > span {
  color: #e2c5a7;
}

.model-design p,
.model-design p strong {
  color: rgba(255, 253, 248, 0.8);
}

.model-design p strong {
  font-weight: 700;
}

.service-model-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 108px;
  border-bottom: 1px solid rgba(42, 41, 37, 0.24);
}

.service-model-summary p {
  margin: 0;
  color: #31342e;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 600;
  line-height: 1.55;
}

.service-model-summary a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  color: #465044;
  font-size: 9px;
  font-weight: 800;
}

.service-model-summary a span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fffdf8;
  background: #465044;
  border-radius: 50%;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-model-summary a:hover span,
.service-model-summary a:focus-visible span {
  transform: translateX(4px);
}

@media (max-width: 920px) {
  .service-model-intro {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.82fr);
    gap: 44px;
  }

  .service-model-head {
    display: none;
  }

  .service-model-row {
    grid-template-columns: 140px minmax(0, 1fr);
    min-height: 0;
  }

  .service-model-source {
    grid-row: 1 / 4;
    padding-top: 30px;
  }

  .service-model-cell {
    padding: 24px 26px;
    border-bottom: 1px solid rgba(42, 41, 37, 0.12);
  }

  .service-model-cell:last-child {
    border-bottom: 0;
  }

  .service-model-source span,
  .service-model-cell > span {
    margin-bottom: 13px;
  }
}

@media (max-width: 620px) {
  .service-model-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .service-model-intro > p {
    font-size: 10px;
    line-height: 1.9;
  }

  .service-model {
    margin-top: 42px;
  }

  .service-model-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-model-source {
    grid-row: auto;
    padding: 24px 0 18px;
    border-bottom: 1px solid rgba(42, 41, 37, 0.14);
  }

  .service-model-source span {
    margin-bottom: 10px;
  }

  .service-model-source h3 {
    font-size: 18px;
  }

  .service-model-source h3 br {
    display: none;
  }

  .service-model-cell {
    padding: 20px 16px;
    border-left: 0;
  }

  .service-model-cell p {
    font-size: 10px;
    line-height: 1.85;
  }

  .model-design {
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .service-model-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 28px 0;
  }

  .service-model-summary p {
    font-size: 15px;
  }

  .service-model-summary a {
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-model-row::before,
  .service-model-summary a span {
    transition: none;
  }
}

/* Quiet first-step cue in the hero */
.hero-gentle-guide {
  position: absolute;
  z-index: 4;
  top: clamp(156px, 21vh, 220px);
  left: 50%;
  display: grid;
  justify-items: center;
  width: min(340px, calc(100% - 64px));
  color: #fff;
  opacity: 0;
  text-align: center;
  text-shadow: 0 1px 18px rgba(7, 9, 7, 0.3);
  transform: translate(-50%, 8px);
}

.hero-gentle-guide p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-gentle-guide a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 5px 0 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

.hero-gentle-guide a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
  transform: scaleX(0.36);
  transform-origin: left center;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), background-color 240ms ease;
}

.hero-gentle-guide a span {
  color: #e2c5a7;
  font-size: 12px;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-gentle-guide a:hover::after,
.hero-gentle-guide a:focus-visible::after {
  background: rgba(255, 255, 255, 0.88);
  transform: scaleX(1);
}

.hero-gentle-guide a:hover span,
.hero-gentle-guide a:focus-visible span {
  transform: translateX(4px);
}

.is-loaded .hero-gentle-guide {
  animation: editorial-guide-in 1s 440ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes editorial-guide-in {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 620px) {
  .hero-gentle-guide {
    top: clamp(126px, 21vh, 170px);
    width: calc(100% - 72px);
  }

  .hero-gentle-guide p {
    font-size: 8px;
  }

  .hero-gentle-guide a {
    margin-top: 10px;
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-gentle-guide {
    opacity: 1;
    transform: translate(-50%, 0);
    animation: none;
  }

  .hero-gentle-guide a::after,
  .hero-gentle-guide a span {
    transition: none;
  }
}

/* Footer legal links */
.site-footer .footer-inner div a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 0;
  color: rgba(255, 254, 250, 0.66);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 220ms ease;
}

.site-footer .footer-inner div a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: #e2c5a7;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer .footer-inner div a:hover,
.site-footer .footer-inner div a:focus-visible {
  color: #fffefa;
}

.site-footer .footer-inner div a:hover::after,
.site-footer .footer-inner div a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

@media (max-width: 620px) {
  .site-footer .footer-inner div {
    gap: 12px 20px;
  }

  .site-footer .footer-inner div a {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer .footer-inner div a,
  .site-footer .footer-inner div a::after {
    transition: none;
  }
}
