@font-face { font-family: 'Satoshi'; src: url('./fonts/satoshi-300.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('./fonts/satoshi-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('./fonts/satoshi-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('./fonts/satoshi-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* RUXLEY v3 — monochrome system over a bright film.
   Breakpoints (mobile-first): sm 640px · md 768px · lg 1024px */

*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: #ffffff;
  color: #000;
  font-family: 'Satoshi', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

:focus-visible { outline: 2px solid #000; outline-offset: 3px; }

.icon { flex: none; }

/* ============ background film — untinted, hero only sees it ============ */

.bg-video {
  position: fixed; top: 0; left: 0;
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.glass-defs { position: absolute; width: 0; height: 0; pointer-events: none; }

/* ============ hero — one composed screen ============ */

.hero {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  width: 100%; height: 100vh; height: 100dvh;
  color: #000;
  pointer-events: none;              /* interactive children opt back in */
}

/* vertical rules (≥768px) */
.rule { position: absolute; top: 0; bottom: 0; display: none; flex-direction: column; align-items: center; }
.rule--left  { left: 1.25rem; }
.rule--right { right: 1.25rem; }
.rule__seg { width: 1px; background: rgba(0, 0, 0, 0.2); }
.rule__seg--end { height: 15%; }
.rule__seg--mid { flex: 1 1 0%; }
.rule__plus { font-size: 0.75rem; line-height: 1; color: rgba(0, 0, 0, 0.4); padding: 0.25rem 0; }
@media (min-width: 768px) { .rule { display: flex; } }

/* nav */
.nav { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; }

.nav__item {
  display: inline-flex; align-items: center; gap: 0.625rem;
  color: #000; background: none; border: 0; font: inherit; text-decoration: none;
  cursor: pointer; pointer-events: auto; transition: opacity 300ms;
}
.nav__item:hover { opacity: 0.6; }
.nav__label { font-size: 0.875rem; line-height: 1.25rem; letter-spacing: 0.025em; }
.nav__label--menu { display: none; }
.nav__dot { width: 8px; height: 8px; border-radius: 9999px; background: #000; }

.nav__brand {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-size: 1rem; font-weight: 500; letter-spacing: 0.34em; text-indent: 0.34em;
  color: #000; text-decoration: none; pointer-events: auto; transition: opacity 300ms;
}
.nav__brand:hover { opacity: 0.6; }

@media (min-width: 640px) { .nav { padding: 1.25rem 1.5rem; } .nav__label--menu { display: inline; } }
@media (min-width: 768px) { .nav { padding: 1.5rem 3rem; } }

/* bottom row — copy left, card right */
.hero-bottom {
  position: relative; z-index: 2;
  margin-top: auto;
  display: flex; flex-direction: column; gap: 1.5rem;
  padding: 0 1.25rem 1.5rem;
}
@media (min-width: 640px) { .hero-bottom { padding: 0 1.5rem 2rem; } }
@media (min-width: 768px) {
  .hero-bottom {
    flex: 1; margin-top: 0;
    flex-direction: row; align-items: stretch; justify-content: space-between;
    gap: 3rem; padding: 2rem 3rem 3rem;
  }
  .lede { align-self: flex-end; }
  .card { align-self: flex-end; }
}

/* lede */
.lede { max-width: 26rem; }
.lede__kicker { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #000; margin-bottom: 0.9rem; }
.lede__title { font-size: 1.25rem; font-weight: 300; line-height: 1.3; letter-spacing: -0.02em; color: #000; }
.lede__body  { margin-top: 0.75rem; max-width: 320px; font-size: 0.8rem; line-height: 1.625; color: rgba(0, 0, 0, 0.6); }

@media (min-width: 640px)  { .lede__title { font-size: 1.5rem; }   .lede__body { font-size: 0.9rem; } }
@media (min-width: 768px)  { .lede__title { font-size: 1.75rem; }  .lede__body { margin-top: 1rem; } }
@media (min-width: 1024px) { .lede__title { font-size: 2rem; } }

/* chamfered button */
.chamfer {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  width: 220px; height: 44px; margin-top: 1.5rem; padding: 0 1.25rem;
  color: #000; text-decoration: none; pointer-events: auto; transition: opacity 300ms;
}
.chamfer:hover { opacity: 0.7; }
.chamfer__glass {
  position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.chamfer__outline { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.chamfer__label { position: relative; font-size: 0.75rem; letter-spacing: 0.025em; }
.chamfer .icon { position: relative; }

@media (min-width: 640px) {
  .chamfer { width: 260px; height: 48px; padding: 0 1.5rem; }
  .chamfer__label { font-size: 0.875rem; }
  .chamfer__glass { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-color: transparent; }
}
@media (min-width: 768px) { .chamfer { margin-top: 2rem; } }

.chamfer--light { color: #fff; }
.chamfer--center { margin-left: auto; margin-right: auto; }

/* ============ liquid-glass card ============ */

.card {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  width: 340px; max-width: 100%; height: 440px;
  padding: 2rem;
  border-radius: 48px;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(47, 47, 47, 0.15);
  pointer-events: auto;
  animation: fade-slide-up-card 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fade-slide-up-card {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

#dup-video-container { position: absolute; left: 0; top: 0; z-index: 0; overflow: hidden; pointer-events: none; }
#dup-image { position: absolute; inset: 0; width: 100%; height: 100%; filter: url(#liquid-glass-refraction); }

.card__frost {
  position: absolute; inset: 0; z-index: 1;
  border-radius: 48px; pointer-events: none;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.3),
              inset 0 -1px 2px rgba(0, 0, 0, 0.15);
  transition: background 400ms;
}

.card__head, .card__body, .card__wave { position: relative; z-index: 2; }

.card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
              padding-bottom: 0.75rem; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.card__title { font-size: 1rem; font-weight: 500; letter-spacing: -0.025em; }
.card__index { font-size: 0.75rem; color: rgba(0, 0, 0, 0.4); }
.card__body { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.finding__title { font-size: 0.875rem; font-weight: 600; letter-spacing: -0.025em; }
.finding__text { margin-top: 0.25rem; font-size: 0.75rem; line-height: 1.625; color: rgba(0, 0, 0, 0.5); }
.card__wave { display: block; width: 100%; height: auto; margin-top: 1.25rem; }

@media (min-width: 640px) { .card__title { font-size: 1.125rem; } }
@media (min-width: 768px) {
  .card__head { padding-bottom: 1rem; }
  .card__title { font-size: 1.25rem; }
  .card__body { gap: 1.25rem; margin-top: 1.25rem; }
  .finding__title { font-size: 1rem; }
  .finding__text { font-size: 0.875rem; margin-top: 0.375rem; }
  .card__wave { margin-top: 1.5rem; }
}

/* ============ the page below the film ============ */

.page { position: relative; z-index: 10; background: #ffffff; }

.wrap { max-width: 68rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .wrap { padding: 0 1.5rem; } }
@media (min-width: 768px) { .wrap { padding: 0 3rem; } }

.section { padding: 5rem 0; }
.section--ruled { border-top: 1px solid rgba(0, 0, 0, 0.1); }

.kicker { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(0, 0, 0, 0.45); margin-bottom: 1rem; }

.section__title { font-size: 1.5rem; font-weight: 300; line-height: 1.3; letter-spacing: -0.02em; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .section__title { font-size: 1.875rem; } }

/* problem */
.truths { display: grid; grid-template-columns: 1fr; }
.truth { padding: 1.5rem 0; border-top: 1px solid rgba(0, 0, 0, 0.1); }
.truth h3 { font-size: 1rem; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.truth p { font-size: 0.875rem; line-height: 1.625; color: rgba(0, 0, 0, 0.55); max-width: 34rem; }
.turn { margin-top: 2.5rem; font-size: 1.125rem; font-weight: 300; line-height: 1.45; letter-spacing: -0.01em; }
@media (min-width: 768px) {
  .truths { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
  .truth { padding: 1.75rem 0 0; }
  .turn { font-size: 1.25rem; }
}

/* services */
.levers { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.lever__kicker { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(0, 0, 0, 0.45); margin-bottom: 0.8rem; }
.lever h3 { font-size: 1.125rem; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 0.6rem; }
.lever > p { font-size: 0.875rem; line-height: 1.625; color: rgba(0, 0, 0, 0.55); margin-bottom: 1.1rem; }
.lever ul { list-style: none; }
.lever li { font-size: 0.8rem; padding: 0.55rem 0; border-top: 1px solid rgba(0, 0, 0, 0.1); color: rgba(0, 0, 0, 0.75); }
.lever__note { margin-top: 1rem; font-size: 0.75rem; line-height: 1.6; color: rgba(0, 0, 0, 0.45); }
@media (min-width: 768px) { .levers { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }

/* process */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.step { border-top: 1px solid rgba(0, 0, 0, 0.1); padding-top: 1.25rem; }
.step__num { font-size: 0.72rem; letter-spacing: 0.18em; color: rgba(0, 0, 0, 0.4); margin-bottom: 0.7rem; }
.step h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.4rem; }
.step p { font-size: 0.8rem; line-height: 1.6; color: rgba(0, 0, 0, 0.55); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }

/* pricing */
.section--ink { background: #0d1117; color: #fff; }
.section__title--ink { color: #fff; margin-bottom: 1rem; }
.ink-row { display: flex; flex-direction: column; gap: 2rem; }
.ink-sub { font-size: 0.875rem; line-height: 1.65; color: rgba(255, 255, 255, 0.65); max-width: 34rem; }
@media (min-width: 768px) {
  .ink-row { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; }
}

/* about */
.quote { font-size: 1.25rem; font-weight: 300; line-height: 1.5; letter-spacing: -0.01em; max-width: 42rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .quote { font-size: 1.5rem; } }

.text-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #000; text-decoration: none; border-bottom: 1px solid rgba(0, 0, 0, 0.3); padding-bottom: 0.2rem; transition: opacity 300ms; }
.text-link:hover { opacity: 0.6; }

/* contact */
.contact { text-align: center; }
.contact .kicker { margin-bottom: 1rem; }
.contact .section__title { margin-bottom: 1rem; }
.contact__sub { font-size: 0.875rem; line-height: 1.65; color: rgba(0, 0, 0, 0.55); max-width: 26rem; margin: 0 auto; }
.contact__mail { display: inline-block; margin-top: 1.75rem; font-size: 0.875rem; color: rgba(0, 0, 0, 0.6); text-decoration: none; transition: color 300ms; }
.contact__mail:hover { color: #000; }

/* footer */
.foot { border-top: 1px solid rgba(0, 0, 0, 0.1); padding: 2rem 0 2.5rem; }
.foot__row { display: flex; flex-direction: column; gap: 1.25rem; }
.foot__brand { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.34em; }
.foot__links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.foot__links a, .foot__legal a { font-size: 0.8rem; color: rgba(0, 0, 0, 0.55); text-decoration: none; transition: color 300ms; }
.foot__links a:hover, .foot__legal a:hover { color: #000; }
.foot__legal { display: flex; gap: 1.25rem; font-size: 0.8rem; color: rgba(0, 0, 0, 0.4); }
@media (min-width: 768px) {
  .foot__row { flex-direction: row; align-items: baseline; justify-content: space-between; }
}

/* ============ slide-in menu ============ */

.menu { position: fixed; inset: 0; z-index: 50; visibility: hidden; pointer-events: none;
        transition: visibility 0s linear 500ms; }
.menu.is-open { visibility: visible; pointer-events: auto; transition-delay: 0s; }

.menu__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4);
                  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
                  opacity: 0; transition: opacity 500ms; }
.menu.is-open .menu__backdrop { opacity: 1; }

.menu__panel { position: absolute; top: 0; left: 0; display: flex; flex-direction: column;
               width: 100%; height: 100%; padding: 1.5rem 2rem; background: #f5f4f0;
               transform: translateX(-100%);
               transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1); }
.menu.is-open .menu__panel { transform: translateX(0); }
@media (min-width: 640px) { .menu__panel { width: 380px; padding: 1.5rem 2.5rem; } }

.menu__close { display: inline-flex; align-items: center; gap: 0.625rem; align-self: flex-start;
               margin-bottom: 3rem; background: none; border: 0; font: inherit; font-size: 0.875rem;
               color: #000; cursor: pointer; transition: opacity 300ms; }
.menu__close:hover { opacity: 0.6; }

.menu__nav { display: flex; flex-direction: column; }
.menu__link { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0;
              border-bottom: 1px solid rgba(0, 0, 0, 0.1); color: #000; text-decoration: none;
              opacity: 0; transform: translateY(20px); transition: opacity 500ms, transform 500ms; }
.menu__linkText { font-size: 1.5rem; font-weight: 300; letter-spacing: -0.025em; transition: transform 300ms; }
.menu__link:hover .menu__linkText { transform: translateX(8px); }
.menu__arrow { opacity: 0; transform: translateX(8px); transition: opacity 300ms, transform 300ms; }
.menu__link:hover .menu__arrow { opacity: 1; transform: translateX(0); }
@media (min-width: 640px) { .menu__linkText { font-size: 1.875rem; } }

.menu.is-open .menu__link { opacity: 1; transform: translateY(0); }
.menu.is-open .menu__link:nth-child(1) { transition-delay: 150ms; }
.menu.is-open .menu__link:nth-child(2) { transition-delay: 225ms; }
.menu.is-open .menu__link:nth-child(3) { transition-delay: 300ms; }
.menu.is-open .menu__link:nth-child(4) { transition-delay: 375ms; }
.menu.is-open .menu__link:nth-child(5) { transition-delay: 450ms; }

.menu__foot { margin-top: auto; padding: 1.5rem 0 2rem; border-top: 1px solid rgba(0, 0, 0, 0.1);
              opacity: 0; transform: translateY(20px); transition: opacity 500ms, transform 500ms; }
.menu.is-open .menu__foot { opacity: 1; transform: translateY(0); transition-delay: 600ms; }
.menu__footLabel { display: block; margin-bottom: 0.75rem; font-size: 0.75rem; text-transform: uppercase;
                   letter-spacing: 0.025em; color: rgba(0, 0, 0, 0.4); }
.menu__mail { font-size: 0.875rem; color: rgba(0, 0, 0, 0.7); text-decoration: none; transition: color 300ms; }
.menu__mail:hover { color: #000; }

/* ============ reduced motion ============ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============ subpages ============ */

.subpage-head { background: #fff; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.subpage-head .nav { pointer-events: auto; }

.page-hero { padding: 4rem 0 3.5rem; }
.page-hero .kicker { margin-bottom: 1.1rem; }
.page-hero__title { font-size: 1.75rem; font-weight: 300; line-height: 1.25; letter-spacing: -0.02em; max-width: 24ch; }
.page-hero__sub { margin-top: 1rem; font-size: 0.95rem; line-height: 1.65; color: rgba(0, 0, 0, 0.55); max-width: 34rem; }
@media (min-width: 768px) { .page-hero { padding: 5.5rem 0 4rem; } .page-hero__title { font-size: 2.25rem; } }

.prose { max-width: 42rem; }
.prose p { font-size: 0.95rem; line-height: 1.75; color: rgba(0, 0, 0, 0.65); margin-bottom: 1.25rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: #000; font-weight: 500; }

.callout { border-left: 2px solid #000; padding: 0.4rem 0 0.4rem 1.5rem; margin: 2.25rem 0; }
.callout h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.5rem; }
.callout p { font-size: 0.95rem; line-height: 1.7; color: rgba(0, 0, 0, 0.6); }

/* definition rows (who we work with, what's included) */
.rows { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.row { display: grid; grid-template-columns: 1fr; gap: 0.35rem 3rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.row h3 { font-size: 0.95rem; font-weight: 500; }
.row p { font-size: 0.875rem; line-height: 1.6; color: rgba(0, 0, 0, 0.55); }
@media (min-width: 768px) { .row { grid-template-columns: 14rem 1fr; } }

/* pricing */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .price-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.price h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.35rem; }
.price__figure { font-size: 1.9rem; font-weight: 300; letter-spacing: -0.02em; margin: 0.6rem 0 0.3rem; }
.price__figure small { font-size: 0.9rem; color: rgba(0, 0, 0, 0.45); font-weight: 400; letter-spacing: 0; }
.price__meta { font-size: 0.8rem; color: rgba(0, 0, 0, 0.45); margin-bottom: 1rem; }
.price ul { list-style: none; }
.price li { font-size: 0.83rem; padding: 0.55rem 0; border-top: 1px solid rgba(0, 0, 0, 0.1); color: rgba(0, 0, 0, 0.7); }

.tiers { width: 100%; border-collapse: collapse; }
.tiers th { text-align: left; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(0, 0, 0, 0.45); padding: 0 1.5rem 0.7rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
.tiers td { font-size: 0.875rem; padding: 0.9rem 1.5rem 0.9rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.1); color: rgba(0, 0, 0, 0.7); vertical-align: top; }
.tiers td:first-child { color: #000; font-weight: 500; white-space: nowrap; }
.tiers .num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.table-scroll { overflow-x: auto; }

.faq { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.faq__item { padding: 1.4rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.faq__item h3 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.45rem; }
.faq__item p { font-size: 0.875rem; line-height: 1.65; color: rgba(0, 0, 0, 0.55); max-width: 38rem; }

/* six-step process */
.pstep { display: grid; grid-template-columns: 1fr; gap: 0.5rem 3rem; padding: 2.25rem 0; border-top: 1px solid rgba(0, 0, 0, 0.1); }
.pstep__num { font-size: 0.8rem; letter-spacing: 0.18em; color: rgba(0, 0, 0, 0.4); }
.pstep h3 { font-size: 1.15rem; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 0.6rem; }
.pstep p { font-size: 0.9rem; line-height: 1.7; color: rgba(0, 0, 0, 0.6); margin-bottom: 0.9rem; max-width: 38rem; }
.pstep p:last-child { margin-bottom: 0; }
@media (min-width: 768px) { .pstep { grid-template-columns: 8rem 1fr; } .pstep__num { padding-top: 0.35rem; } }

/* closing band on subpages */
.page-cta { background: #0d1117; color: #fff; }
.page-cta .wrap { padding-top: 4rem; padding-bottom: 4rem; text-align: center; }
.page-cta h2 { color: #fff; font-size: 1.5rem; font-weight: 300; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.page-cta p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.65); margin-bottom: 1.75rem; }
.page-cta .chamfer--light { margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .page-cta h2 { font-size: 1.875rem; } }

/* booking */
.calendly-wrap { max-width: 62rem; margin: 0 auto; }
.calendly-inline-widget { min-width: 320px; height: 700px; }
@media (max-width: 768px) { .calendly-inline-widget { height: 900px; } }

/* legal / utility pages */
.legal-updated { font-size: 0.78rem; color: rgba(0, 0, 0, 0.4); margin-top: 2.5rem; }

/* ============ fixes round: legibility, mobile, motion ============ */

/* hero services strip — the offer, readable at a glance */
.lede__services { display: flex; align-items: center; gap: 0.7rem; margin-top: 1rem; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em; }
.lede__services a { color: #000; text-decoration: none; pointer-events: auto; transition: opacity 300ms; }
.lede__services a:hover { opacity: 0.6; }
.lede__services span { color: rgba(0, 0, 0, 0.35); }

/* price anchors in the ink band */
.ink-prices { margin-top: 1.1rem; font-size: 0.9rem; font-weight: 500; color: #fff; letter-spacing: 0.01em; }

/* honest card footer line (replaced the decorative wave) */
.card__note { position: relative; z-index: 2; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(0, 0, 0, 0.1); font-size: 0.75rem; color: rgba(0, 0, 0, 0.45); }

/* tonal step so the below-fold rhythm breaks once */
.section--tint { background: #f6f7f8; }

/* small screens: frosted card, no canvas/filter — kills the blue stripe and the GPU cost */
@media (max-width: 639px) {
  .hero { height: auto; min-height: 100vh; min-height: 100dvh; }
  #dup-video-container { display: none; }
  .card { height: auto; border-radius: 28px; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
  .card__frost { border-radius: 28px; }
}

/* reduced motion: the film holds a still, the card is simple frost */
@media (prefers-reduced-motion: reduce) {
  #dup-video-container { display: none; }
  .card { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
}

/* ============ round-2 fixes ============ */

/* skip link */
.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: #000; color: #fff; padding: 0.6rem 1rem; font-size: 0.85rem; text-decoration: none; }
.skip:focus { left: 0; }

/* H1 emphasis beat */
.lede__title-em { font-weight: 500; }

/* lever deep-link landing room */
.lever { scroll-margin-top: 2rem; }

/* chamfer arrow nudge */
.chamfer .icon { transition: transform 300ms; }
.chamfer:hover .icon { transform: translateX(4px); }

/* scroll reveals — ui.js adds .rv only when motion is allowed */
.rv { opacity: 0; transform: translateY(14px); transition: opacity 550ms ease, transform 550ms ease; }
.rv.rv-in { opacity: 1; transform: none; }

/* ============ buyer-question additions ============ */

.lever__integrations {
  margin-top: 1rem; padding-top: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.78rem; line-height: 1.6; color: rgba(0, 0, 0, 0.55);
}
.lever__note a { color: #000; text-decoration: underline; text-underline-offset: 2px; }
.lever__note a:hover { opacity: 0.6; }

.contact__alt {
  margin-top: 1.75rem; font-size: 0.85rem; line-height: 1.6;
  color: rgba(0, 0, 0, 0.5); max-width: 30rem; margin-left: auto; margin-right: auto;
}
.contact__alt a { color: #000; text-decoration: underline; text-underline-offset: 2px; }
.contact__alt a:hover { opacity: 0.6; }

/* ============ proof video + case study ============ */

.lever__vid {
  display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.12); border-radius: 6px;
  margin-bottom: 1.4rem; background: #eef0f1;
}

.case { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.case__vid {
  display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.12); border-radius: 6px; background: #eef0f1;
}
.case__caption { margin-top: 0.7rem; font-size: 0.78rem; color: rgba(0, 0, 0, 0.45); }
.case__text p { font-size: 0.92rem; line-height: 1.7; color: rgba(0, 0, 0, 0.62); margin-bottom: 1rem; }
.case__text strong { color: #000; font-weight: 500; }
.case__text .text-link { margin-top: 0.5rem; }
@media (min-width: 900px) {
  .case { grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: start; }
}
.card__note a { color: rgba(0, 0, 0, 0.55); text-decoration: none; }
.card__note a:hover { color: #000; }

/* ============ work page ============ */
.case { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .case { grid-template-columns: 15rem 1fr; gap: 4rem; align-items: start; } }
.case__index { font-family: var(--mono, inherit); font-size: 0.72rem; letter-spacing: 0.18em; color: rgba(0,0,0,0.35); margin-bottom: 0.9rem; }
.case__name { font-size: 1.25rem; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 0.4rem; }
.case__role { font-size: 0.8rem; color: rgba(0,0,0,0.6); }
.case__where { font-size: 0.8rem; color: rgba(0,0,0,0.4); margin-bottom: 1rem; }
.case__lede { font-size: 1.05rem; font-weight: 300; line-height: 1.55; letter-spacing: -0.01em; color: #000; margin-bottom: 1.75rem; max-width: 34rem; }
.case__body p { font-size: 0.9rem; line-height: 1.7; color: rgba(0,0,0,0.62); margin-bottom: 1rem; max-width: 38rem; }
.case__body strong { color: #000; font-weight: 500; }
.case__pair { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.75rem; }
@media (min-width: 700px) { .case__pair { grid-template-columns: 1fr 1fr; } .case__pair--single { grid-template-columns: 1fr; max-width: 32rem; } }
.case__fig video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; border: 1px solid rgba(0,0,0,0.12); border-radius: 4px; background: #eef0f1; }
.case__fig figcaption { margin-top: 0.6rem; font-size: 0.75rem; color: rgba(0,0,0,0.42); }

/* ============ agent demo grid (square source video) ============ */
.demos { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .demos { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }
@media (min-width: 1100px) { .demos { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.demo video {
  display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.12); border-radius: 4px; background: #e9ebec;
}
.demo figcaption { margin-top: 0.7rem; font-size: 0.78rem; line-height: 1.55; color: rgba(0, 0, 0, 0.5); }
.demo figcaption strong { color: #000; font-weight: 500; }
