:root {
  --bg: #070707;
  --surface: #101010;
  --surface-raised: #171717;
  --text: #f7f5f2;
  --muted: #aaa49e;
  --line: rgba(255, 255, 255, .13);
  --line-soft: rgba(255, 255, 255, .08);
  --accent: #ff6a00;
  --accent-bright: #ff8a00;
  --accent-ink: #1b0a00;
  --focus: #ffc18e;
  --container: 1180px;
  --radius: 10px;
  --font-title: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; scrollbar-color: var(--accent) var(--bg); }

body {
  min-width: 280px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .3;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .09) .55px, transparent .55px);
  background-size: 5px 5px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 80%);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }
.section-dark { background: var(--bg); color: var(--text); }

.skip-link {
  position: fixed;
  z-index: 20;
  top: -100px;
  left: 16px;
  padding: 11px 14px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-title);
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: var(--accent-bright); background: var(--accent-bright); }
.btn:active { transform: translateY(1px) scale(.985); }
.btn--small { min-height: 42px; padding-inline: 17px; font-size: .72rem; }
.btn--submit { width: 100%; grid-column: 1 / -1; padding: 10px 16px; border-radius: 7px; white-space: normal; text-align: center; }
.btn[disabled] { opacity: .68; cursor: wait; transform: none; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: .91rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.text-link:hover { color: var(--accent-bright); transform: translateX(2px); }
.text-link span { color: var(--accent); font-size: 1.25rem; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: var(--font-title);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow--orange { color: var(--accent-bright); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 20px 0 0;
  background:
    radial-gradient(circle at 84% 27%, rgba(255, 106, 0, .16), transparent 20%),
    radial-gradient(circle at 15% 84%, rgba(255, 106, 0, .08), transparent 22%),
    var(--bg);
}
.hero::after {
  position: absolute;
  right: -18vw;
  bottom: 2rem;
  width: min(56vw, 790px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 106, 0, .16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.hero__nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; width: 132px; align-items: center; text-decoration: none; }
.brand img { width: 100%; height: auto; mix-blend-mode: normal; }
.site-nav { display: flex; justify-self: end; gap: clamp(16px, 2.4vw, 30px); color: #c9c4bf; font-size: .82rem; font-weight: 700; }
.site-nav a { text-decoration: none; transition: color .2s ease; }
.site-nav a:hover { color: var(--accent-bright); }

.hero__main {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  padding: clamp(30px, 4vw, 52px) 0 clamp(38px, 5vw, 62px);
}
.hero__copy { max-width: 860px; text-align: center; }
.hero__copy h1 {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--font-title);
  font-size: clamp(3rem, 4.55vw, 4.45rem);
  font-weight: 900;
  letter-spacing: -.068em;
  line-height: .97;
  text-wrap: balance;
}
.hero__copy h1 em { color: var(--accent); font-style: normal; }
.hero__checklist { display: grid; max-width: 720px; gap: 11px; margin: 25px auto 0; padding: 0; list-style: none; text-align: left; }
.hero__checklist li { display: grid; grid-template-columns: 25px minmax(0, 1fr); gap: 10px; align-items: start; color: #e8e3de; font-size: .88rem; line-height: 1.5; }
.hero__checklist li > span { display: grid; width: 22px; height: 22px; margin-top: 1px; place-items: center; border: 1px solid rgba(255, 106, 0, .48); border-radius: 50%; color: var(--accent-bright); font-size: .72rem; font-weight: 900; }
.hero__procedures { max-width: 720px; margin: 21px auto 0; color: #f2a568; font-size: .78rem; font-weight: 800; letter-spacing: .035em; line-height: 1.55; text-transform: uppercase; }
.hero__actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 22px; margin-top: 24px; }
.proof-ticker {
  position: relative;
  z-index: 2;
  width: 104%;
  margin: 18px -2% 22px;
  overflow: hidden;
  border-block: 2px solid #1d0b00;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 30px rgba(255, 106, 0, .16);
  transform: rotate(-1.65deg);
  transform-origin: center;
}
.proof-ticker::before {
  position: absolute;
  z-index: 2;
  inset: 4px 0 auto;
  height: 1px;
  background: rgba(27, 10, 0, .22);
  content: "";
  pointer-events: none;
}
.proof-ticker__track { display: flex; width: max-content; animation: proof-flow 28s linear infinite; }
.proof-ticker__group { display: flex; min-width: 100vw; align-items: center; justify-content: space-around; gap: clamp(22px, 4vw, 66px); padding: 16px clamp(24px, 4vw, 62px); }
.proof-ticker__group span { display: inline-flex; align-items: baseline; gap: 7px; color: rgba(27, 10, 0, .7); font-size: .68rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; white-space: nowrap; }
.proof-ticker__group strong { color: var(--accent-ink); font-family: var(--font-title); font-size: 1.08rem; font-weight: 900; letter-spacing: -.04em; }
.proof-ticker__group i { width: 7px; height: 7px; flex: 0 0 auto; background: var(--accent-ink); transform: rotate(45deg); }
@keyframes proof-flow { to { transform: translateX(-50%); } }

.diagnosis { padding: clamp(78px, 10vw, 134px) 0; }
.diagnosis__inner { display: grid; grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr); gap: clamp(46px, 8vw, 120px); align-items: start; }
.diagnosis__inner > * { min-width: 0; }
.diagnosis__copy { position: sticky; top: 32px; }
.diagnosis__copy h2, .section-head h2, .method__intro h2, .human__copy h2, .faq__copy h2, .final-cta h2 { margin: 0; font-family: var(--font-title); font-size: clamp(2.2rem, 4.9vw, 4.75rem); font-weight: 900; letter-spacing: -.065em; line-height: .96; text-wrap: balance; }
.diagnosis__copy > p:not(.eyebrow) { max-width: 530px; margin: 24px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }

.capture-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding: clamp(22px, 3vw, 34px); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(135deg, #121212, #0d0d0d); }
.field { position: relative; display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { color: #eae6e1; font-size: .79rem; font-weight: 700; }
.field input, .field select { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 6px; background: #090909; color: var(--text); }
.field select { min-height: 54px; padding-right: 52px; appearance: none; border-color: rgba(255, 106, 0, .48); border-radius: 10px; background: #090909; cursor: pointer; }
.native-select--enhanced { position: absolute !important; width: 1px !important; height: 1px !important; min-height: 1px !important; margin: 0 !important; padding: 0 !important; overflow: hidden; opacity: 0; pointer-events: none; }
.custom-select { position: relative; width: 100%; }
.custom-select__trigger { display: flex; width: 100%; min-height: 54px; align-items: center; justify-content: space-between; gap: 14px; padding: 0 17px; border: 1px solid rgba(255, 106, 0, .56); border-radius: 10px; background: #090909; color: var(--text); text-align: left; cursor: pointer; transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.custom-select__trigger::after { width: 9px; height: 9px; flex: 0 0 auto; border-right: 2px solid var(--accent-bright); border-bottom: 2px solid var(--accent-bright); content: ""; transform: rotate(45deg) translate(-2px, 2px); transition: transform .2s ease; }
.custom-select__trigger:hover { border-color: var(--accent); background: #0d0b09; }
.custom-select.is-open .custom-select__trigger { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 106, 0, .16); }
.custom-select.is-open .custom-select__trigger::after { transform: rotate(225deg) translate(-2px, 2px); }
.custom-select__menu { position: absolute; z-index: 30; top: calc(100% + 7px); right: 0; left: 0; display: none; max-height: 270px; overflow-y: auto; padding: 6px; border: 1px solid rgba(255, 106, 0, .58); border-radius: 10px; background: #0b0b0b; box-shadow: 0 18px 40px rgba(0, 0, 0, .5); scrollbar-color: var(--accent) #0b0b0b; }
.custom-select.is-open .custom-select__menu { display: grid; }
.custom-select__option { width: 100%; min-height: 42px; padding: 9px 11px; border: 0; border-radius: 6px; background: transparent; color: #ded9d4; text-align: left; cursor: pointer; }
.custom-select__option:hover, .custom-select__option:focus-visible { background: rgba(255, 106, 0, .14); color: #fff; outline: none; }
.custom-select__option[aria-selected="true"] { background: var(--accent); color: var(--accent-ink); font-weight: 800; }
.custom-select__value.is-placeholder { color: #817b75; }
.field input::placeholder { color: #6f6a65; }
.field input:focus, .field select:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(255, 106, 0, .16); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid .custom-select__trigger { border-color: #ff9c79; }
.form-feedback, .form-note { grid-column: 1 / -1; margin: 0; color: #ffc8aa; font-size: .84rem; line-height: 1.5; }
.form-note { color: #8f8984; text-align: center; }

.testimonials { padding: clamp(78px, 10vw, 136px) 0; border-top: 1px solid var(--line-soft); }
.section-head { margin-bottom: 34px; }
.section-head--split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(250px, .55fr); gap: 40px; align-items: end; }
.section-head--split h2 { max-width: 760px; }
.section-head--split > p { max-width: 380px; margin: 0 0 4px; color: var(--muted); font-size: .94rem; line-height: 1.6; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.testimonial-card { min-width: 0; padding: 12px 12px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.testimonial-card[hidden] { display: none; }
.testimonial-player { position: relative; display: block; width: 100%; overflow: hidden; aspect-ratio: 9 / 16; padding: 0; border: 1px solid rgba(255, 106, 0, .46); border-radius: 7px; background: #090909; color: var(--text); cursor: pointer; }
.testimonial-player img, .testimonial-player iframe { display: block; width: 100%; height: 100%; border: 0; object-fit: cover; }
.testimonial-player img { filter: saturate(.78) contrast(1.04); transition: filter .3s ease, transform .4s ease; }
.testimonial-player:hover img { filter: saturate(1); transform: scale(1.025); }
.testimonial-player__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .42), transparent 32%, transparent 60%, rgba(0, 0, 0, .8)); }
.testimonial-player__play { position: absolute; top: 50%; left: 50%; display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-size: .9rem; padding-left: 3px; transform: translate(-50%, -50%); transition: transform .25s ease; }
.testimonial-player:hover .testimonial-player__play { transform: translate(-50%, -50%) scale(1.08); }
.testimonial-player__watch { position: absolute; right: 14px; bottom: 15px; left: 14px; font-size: .62rem; font-weight: 900; letter-spacing: .11em; text-align: center; text-transform: uppercase; }
.testimonial-card h3 { margin: 15px 2px 0; font-family: var(--font-title); font-size: clamp(1.12rem, 1.7vw, 1.42rem); line-height: 1.16; }
.testimonial-more { display: flex; min-height: 48px; margin: 28px auto 0; align-items: center; justify-content: center; gap: 10px; padding: 0 20px; border: 1px solid var(--line); border-radius: 6px; background: transparent; color: var(--text); font-weight: 800; cursor: pointer; }
.testimonial-more:hover { border-color: var(--accent); }
.testimonial-more span { color: var(--accent); font-size: 1.2rem; }

.method { padding: clamp(84px, 10vw, 140px) 0; border-top: 1px solid var(--line-soft); }
.method__intro { display: grid; grid-template-columns: minmax(155px, .35fr) minmax(0, 1.65fr); gap: clamp(30px, 6vw, 92px); align-items: start; }
.method__intro > .eyebrow { margin-top: 10px; }
.method__intro h2 { max-width: 650px; }
.method__intro div > p { max-width: 620px; margin: 23px 0 0; color: var(--muted); line-height: 1.65; }
.method__intro .method__meaning { margin-top: 0; margin-bottom: 16px; color: #ddd8d2; font-family: var(--font-title); font-size: .83rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.method__meaning strong { color: var(--accent-bright); }
.method-timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin-top: clamp(58px, 8vw, 96px); padding: 0; list-style: none; }
.method-timeline::before { position: absolute; top: 18px; right: 9%; left: 9%; height: 1px; background: linear-gradient(to right, var(--accent), rgba(255, 106, 0, .15)); content: ""; }
.method-timeline li { position: relative; padding-top: 49px; }
.method-timeline li::before { position: absolute; z-index: 1; top: 11px; left: 0; width: 15px; height: 15px; border: 3px solid var(--bg); border-radius: 50%; background: var(--bg); box-shadow: 0 0 0 1px rgba(255, 106, 0, .45); content: ""; transition: background-color .5s ease, box-shadow .5s ease; }
.method-timeline li.is-visible::before { background: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 0 22px rgba(255, 106, 0, .22); }
.method-timeline span { color: var(--accent-bright); font-family: var(--font-title); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.method-timeline h3 { margin: 16px 0 0; font-family: var(--font-title); font-size: 1.2rem; letter-spacing: -.03em; }
.method-timeline p { max-width: 180px; margin: 10px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.method-reveal { transition-duration: .8s; }
.method-timeline .method-step { transform: translateY(28px); transition-duration: .75s; }
.method-timeline .method-step:nth-child(2) { transition-delay: .08s; }
.method-timeline .method-step:nth-child(3) { transition-delay: .16s; }
.method-timeline .method-step:nth-child(4) { transition-delay: .24s; }
.method-timeline .method-step:nth-child(5) { transition-delay: .32s; }

.human { padding: clamp(82px, 11vw, 148px) 0; border-top: 1px solid var(--line-soft); }
.human__inner { display: grid; grid-template-columns: minmax(240px, 320px) minmax(0, 1fr); gap: clamp(44px, 8vw, 112px); align-items: center; }
.human__photo { position: relative; width: min(100%, 320px); height: 350px; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #111; }
.human__photo::after { position: absolute; inset: 0; background: linear-gradient(145deg, transparent 45%, rgba(255, 106, 0, .24)); content: ""; pointer-events: none; }
.human__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; filter: saturate(.82) contrast(1.06); }
.human__copy h2 { max-width: 680px; }
.human__copy > p:not(.eyebrow) { max-width: 580px; margin: 23px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.human__cta { margin-top: 29px; }

.about { padding: clamp(82px, 10vw, 134px) 0; border-top: 1px solid var(--line-soft); }
.about__positioning { max-width: 560px; margin: 18px 0 0; color: var(--accent-bright); font-family: var(--font-title); font-size: .8rem; font-weight: 900; letter-spacing: .08em; line-height: 1.45; text-transform: uppercase; }
.about__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 42px 0 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about__stats > div { display: flex; min-height: 116px; align-items: center; gap: 16px; padding: 22px; border-right: 1px solid var(--line); }
.about__stats > div:last-child { border-right: 0; }
.about__stats strong { color: var(--accent-bright); font-family: var(--font-title); font-size: clamp(2.25rem, 4vw, 3.6rem); letter-spacing: -.065em; }
.about__stats span { max-width: 110px; color: var(--muted); font-size: .78rem; line-height: 1.4; }
.office-gallery { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; scrollbar-color: var(--accent) transparent; }
.office-gallery figure { position: relative; flex: 0 0 calc((100% - 28px) / 3); aspect-ratio: 4 / 3; margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--surface); scroll-snap-align: start; }
.office-gallery img { width: 100%; height: 100%; object-fit: cover; }
.office-gallery figcaption { position: absolute; right: 9px; bottom: 9px; padding: 6px 8px; background: rgba(0, 0, 0, .74); font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.about__cta { display: flex; margin-top: 44px; padding-top: 26px; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid var(--line); }
.about__cta .eyebrow { margin-bottom: 8px; }
.about__cta h3 { margin: 0; font-family: var(--font-title); font-size: clamp(1.45rem, 2.7vw, 2.25rem); letter-spacing: -.045em; }

.faq { padding: clamp(82px, 10vw, 132px) 0; border-top: 1px solid var(--line-soft); }
.faq__inner { display: grid; grid-template-columns: minmax(240px, .68fr) minmax(0, 1.32fr); gap: clamp(48px, 8vw, 122px); align-items: start; }
.faq-list { display: grid; gap: 8px; }
.faq-item { overflow: hidden; border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button { display: flex; width: 100%; min-height: 72px; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 0; border: 0; background: transparent; color: var(--text); text-align: left; font-family: var(--font-title); font-weight: 800; cursor: pointer; }
.faq-item button::after { flex: 0 0 auto; color: var(--accent); font-size: 1.5rem; line-height: 1; content: "+"; }
.faq-item.is-open button::after { content: "−"; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { max-width: 680px; margin: 0; padding: 0 38px 22px 0; color: var(--muted); line-height: 1.65; }

.final-cta { padding: 0 0 clamp(74px, 9vw, 112px); border-top: 1px solid var(--line-soft); }
.final-cta__visual { position: relative; min-height: 490px; display: flex; align-items: center; overflow: hidden; margin-top: clamp(72px, 9vw, 112px); border: 1px solid rgba(255, 106, 0, .35); border-radius: var(--radius); background-image: linear-gradient(90deg, rgba(5, 5, 5, .98) 0%, rgba(5, 5, 5, .92) 38%, rgba(5, 5, 5, .45) 68%, rgba(5, 5, 5, .22) 100%), url("assets/visuals/cta-funil-banner.png"); background-position: center; background-size: cover; box-shadow: 0 30px 75px rgba(0, 0, 0, .35); }
.final-cta__visual::after { position: absolute; right: 0; bottom: 0; width: 42%; height: 70%; border-right: 1px solid rgba(255, 106, 0, .45); border-bottom: 1px solid rgba(255, 106, 0, .45); content: ""; opacity: .7; pointer-events: none; }
.final-cta__copy { position: relative; z-index: 1; width: min(630px, 100%); padding: clamp(35px, 6vw, 76px); }
.final-cta h2 { max-width: 580px; font-size: clamp(2.3rem, 5vw, 4.5rem); }
.final-cta__copy > p:not(.eyebrow) { max-width: 510px; margin: 23px 0 31px; color: #cbc6c1; line-height: 1.65; }

.footer { border-top: 1px solid var(--line); padding: 38px 0 26px; }
.footer__inner { display: grid; grid-template-columns: minmax(230px, .8fr) 1fr; gap: 42px; align-items: center; }
.footer__brand .footer__logo { display: block; width: 138px; height: 77px; object-fit: contain; object-position: center; background: transparent; mix-blend-mode: normal; }
.footer__brand p { max-width: 290px; margin: 12px 0 0; color: var(--muted); font-size: .83rem; line-height: 1.5; }
.footer__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 24px; color: #d5d0cb; font-size: .8rem; font-weight: 700; }
.footer__links a, .footer__bottom a { text-decoration: none; transition: color .2s ease; }
.footer__links a:hover, .footer__bottom a:hover { color: var(--accent-bright); }
.instagram-link { display: inline-flex; align-items: center; gap: 9px; color: var(--text); font-size: .81rem; font-weight: 800; text-decoration: none; }
.instagram-link svg { width: 21px; fill: none; stroke: var(--accent); stroke-width: 1.8; }
.footer__brand .instagram-link { margin-top: 15px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 35px; padding-top: 20px; border-top: 1px solid var(--line-soft); color: #817b75; font-size: .72rem; }
.footer__bottom a { color: #d8d3ce; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.2, .75, .3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

@media (max-width: 980px) {
  .site-nav { display: none; }
  .hero__nav { grid-template-columns: 1fr auto; }
  .hero__main { min-height: auto; grid-template-columns: 1fr; padding-top: 68px; }
  .hero__copy { max-width: 720px; }
  .diagnosis__inner, .human__inner, .faq__inner, .section-head--split, .method__intro { grid-template-columns: 1fr; }
  .diagnosis__copy { position: static; }
  .method__intro > .eyebrow { margin-top: 0; }
  .method-timeline { grid-template-columns: repeat(3, 1fr); row-gap: 42px; }
  .method-timeline::before { display: none; }
  .human__photo { width: min(100%, 310px); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .shell { width: min(var(--container), calc(100% - 32px)); }
  .hero { padding-top: 18px; }
  .hero__nav { gap: 12px; }
  .brand { width: 96px; justify-self: center; }
  .hero__nav .btn { display: none; }
  .hero__nav { grid-template-columns: 1fr; }
  .hero__main { padding-top: 48px; padding-bottom: 54px; }
  .hero__copy { text-align: left; }
  .hero__copy h1 { font-size: clamp(2.35rem, 10.7vw, 2.7rem); line-height: 1; }
  .hero__copy h1 { margin-inline: 0; }
  .hero__checklist { gap: 12px; margin: 23px 0 0; }
  .hero__checklist li { font-size: .82rem; }
  .hero__procedures { margin: 20px 0 0; font-size: .7rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr; align-items: stretch; gap: 17px; }
  .hero__actions .btn { width: 100%; }
  .text-link { justify-content: center; }
  .proof-ticker { width: 110%; margin: 10px -5% 18px; transform: rotate(-2.4deg); }
  .proof-ticker__group { min-width: max-content; gap: 22px; padding: 15px 24px; }
  .proof-ticker__group span { gap: 6px; font-size: .59rem; }
  .proof-ticker__group strong { font-size: .94rem; }
  .proof-ticker__group i { width: 6px; height: 6px; }
  .diagnosis, .testimonials, .method, .human, .about, .faq { padding-block: 72px; }
  .capture-form { grid-template-columns: 1fr; padding: 20px; }
  .field, .field--full { grid-column: 1; }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .testimonial-card { padding: 7px 7px 15px; }
  .testimonial-card h3 { margin-top: 11px; font-size: .92rem; }
  .testimonial-player__play { width: 44px; height: 44px; }
  .testimonial-player__watch { right: 7px; bottom: 10px; left: 7px; font-size: .51rem; }
  .testimonial-more { width: 100%; }
  .method__intro .method__meaning { font-size: clamp(.54rem, 2.65vw, .66rem); letter-spacing: .035em; white-space: nowrap; }
  .method__intro h2 { max-width: 11ch; font-size: clamp(1.75rem, 7.8vw, 2.08rem); line-height: 1; letter-spacing: -.055em; }
  .method-timeline { grid-template-columns: 1fr; gap: 0; margin-top: 50px; }
  .method-timeline li { min-height: 130px; padding: 10px 0 25px 48px; border-left: 1px solid rgba(255, 106, 0, .32); }
  .method-timeline li::before { top: 11px; left: -8px; }
  .method-timeline h3 { margin-top: 8px; }
  .method-timeline p { max-width: 280px; }
  .method-timeline .method-step { transition-delay: 0s; }
  .human__photo { width: min(100%, 260px); height: 280px; justify-self: center; }
  .human__cta { width: 100%; }
  .about__stats { grid-template-columns: 1fr; }
  .about__positioning { font-size: .7rem; letter-spacing: .055em; }
  .about__stats > div { min-height: 86px; padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .about__stats > div:last-child { border-bottom: 0; }
  .about__stats strong { min-width: 95px; font-size: 2.55rem; }
  .office-gallery figure { flex-basis: 82%; }
  .about__cta { align-items: stretch; flex-direction: column; }
  .about__cta .btn { width: 100%; }
  .faq-item button { min-height: 64px; font-size: .92rem; }
  .final-cta__visual { min-height: 520px; margin-top: 68px; align-items: flex-start; background-image: linear-gradient(180deg, rgba(5, 5, 5, .97) 0%, rgba(5, 5, 5, .9) 47%, rgba(5, 5, 5, .42) 100%), url("assets/visuals/cta-funil-banner.png"); background-position: 62% center; }
  .final-cta__copy { width: 100%; padding: 32px 24px; }
  .final-cta h2 { font-size: clamp(2rem, 10.2vw, 2.65rem); }
  .final-cta .btn { width: 100%; min-height: 56px; padding: 11px 14px; line-height: 1.25; text-align: center; white-space: normal; }
  .footer { padding-top: 34px; }
  .footer__inner { grid-template-columns: 1fr; gap: 27px; }
  .footer__links { justify-content: flex-start; gap: 11px 20px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 11px; margin-top: 29px; }
}

@media (max-width: 380px) {
  .hero__copy h1 { font-size: 2.3rem; }
  .final-cta__copy { padding-inline: 18px; }
  .final-cta .btn { font-size: .76rem; }
}
