@font-face {
  font-family: Inter;
  src: url("./assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("./assets/fonts/barlow-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("./assets/fonts/barlow-condensed-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
:root {
  --paper: #fff;
  --ink: #151613;
  --accent: #dfff00;
  --muted: #595b54;
  --rule: #c6c7c1;
  --gutter: clamp(24px, 3.72vw, 64px);
  --display: Barlow, "Arial Narrow", sans-serif;
  --body: Inter, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--accent);
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #587000;
  outline-offset: 6px;
}
.dark :focus-visible {
  outline-color: var(--accent);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  width: 22px;
  height: 22px;
  flex: none;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
}
h2 {
  font-size: clamp(56px, 6.6vw, 108px);
}
h3 {
  font-size: clamp(48px, 4.6vw, 74px);
}
h4 {
  font-size: 15px;
  font-weight: 600;
}
[hidden] {
  display: none !important;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wrap {
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section-space {
  padding-top: 120px;
  padding-bottom: 120px;
}
.dark {
  background: var(--ink);
  color: var(--paper);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 12px 18px;
  background: var(--accent);
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.header {
  height: 100px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--paper);
  position: relative;
  z-index: 20;
  max-width: 1680px;
  margin: auto;
}
.wordmark {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}
.wordmark span {
  color: inherit;
}
.desktop-nav {
  display: flex;
  gap: 40px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 15px;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--ink);
  transition: right 0.2s;
}
.desktop-nav a:hover:after {
  right: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 21px 30px;
  min-height: 62px;
  background: var(--ink);
  color: var(--paper);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  border: 1px solid var(--ink);
  transition:
    background 0.2s,
    color 0.2s;
  white-space: normal;
  text-align: left;
}
.button svg {
  transition: transform 0.2s;
}
.button:hover {
  background: var(--accent);
  color: var(--ink);
}
.button:hover svg,
.text-link:hover svg {
  transform: translate(2px, -2px);
}
.header-cta {
  padding: 16px 24px;
  min-height: 54px;
  font-size: 15px;
}
.menu-toggle {
  display: none;
}
.hero {
  padding-top: 120px;
}
.hero h1 {
  font-family: var(--body);
  font-size: clamp(70px, 10.9vw, 174px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.01;
  margin-left: -0.035em;
}
.hero-line {
  display: block;
  width: fit-content;
}
.hero mark {
  display: inline-block;
  color: var(--ink);
  background: var(--accent);
  padding: 0 0.045em 0.04em 0.015em;
  line-height: 0.98;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-top: 48px;
  align-items: flex-start;
}
.hero-bottom > p {
  font-size: clamp(18px, 1.6vw, 24px);
  max-width: 660px;
  letter-spacing: -0.015em;
  line-height: 1.5;
}
.hero-action {
  flex: none;
  padding-top: 5px;
}
.hero-action .button {
  font-weight: 600;
  font-size: 20px;
  min-width: 420px;
}
.hero-action > span {
  display: block;
  font-size: 14px;
  margin-top: 12px;
}
.hero-foot {
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  margin-top: 60px;
  font-size: 14px;
}
.hero-foot a {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-foot svg {
  width: 18px;
  height: 18px;
}
.hero-foot a:hover {
  color: #637600;
}
.work {
  padding: 100px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-bottom: 72px;
}
.section-note {
  font-size: 13px;
  white-space: nowrap;
  color: #c6c7c1;
}
.project {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(40px, 5vw, 86px);
  align-items: center;
  margin-bottom: 112px;
}
.project-reverse {
  grid-template-columns: 1fr 1.7fr;
}
.project-reverse .project-visual {
  grid-column: 2;
  grid-row: 1;
}
.project-reverse .project-copy {
  grid-column: 1;
  grid-row: 1;
}
.project-visual {
  display: block;
  overflow: hidden;
  padding: 30px 30px 0;
  border-radius: 4px;
  align-self: start;
}
.visual-dse {
  background: #f6deda;
  color: #151613;
}
.visual-rca {
  background: #d7cab5;
  color: #151613;
}
.visual-alpha {
  background: #c7cbe4;
  color: #151613;
}
.project-visual img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  transition: transform 0.55s ease;
}
.project-visual:hover img {
  transform: translateY(-4px);
}
.image-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0;
  font-size: 12px;
  letter-spacing: 0.01em;
}
.image-caption svg {
  width: 18px;
  height: 18px;
}
.project-copy {
  padding: 8px 0;
}
.project-category {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-weight: 500;
  margin-bottom: 12px;
}
.project-copy h3 {
  margin-bottom: 21px;
}
.project-copy > p:not(.project-category) {
  color: #cccec6;
  font-size: 18px;
  line-height: 1.5;
  max-width: 390px;
}
.project-journey {
  border-top: 1px solid #585b51;
  padding-top: 22px;
  margin-top: 27px;
}
.project-journey p {
  font-size: 13px;
  color: #bec1b5;
  margin-top: 9px;
  line-height: 1.7;
}
.project-journey p span {
  color: var(--accent);
  padding: 0 2px;
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker {
  display: none;
}
summary svg {
  transition: transform 0.25s;
}
details[open] > summary svg {
  transform: rotate(45deg);
}
.project-details {
  margin-top: 30px;
}
.project-details summary {
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 6px;
  width: fit-content;
}
.project-details summary svg {
  width: 16px;
  height: 16px;
}
.project-detail-body {
  padding-top: 24px;
  font-size: 14px;
  color: #cccec6;
}
.project-detail-body h4 {
  color: white;
  margin-bottom: 8px;
}
.project-detail-body p {
  margin-bottom: 20px;
  line-height: 1.65;
}
.detail-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  margin-top: 25px;
}
.detail-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #717665;
  padding-bottom: 4px;
  color: var(--accent);
  font-size: 13px;
}
.detail-links svg {
  width: 16px;
  height: 16px;
}
.work-index > p {
  font-size: 12px;
  color: #b0b3a7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.work-index > a {
  display: grid;
  grid-template-columns: 1fr 220px 24px;
  gap: 30px;
  align-items: center;
  border-top: 1px solid #4b4e44;
  padding: 26px 0;
  transition: color 0.2s;
}
.work-index > a > span:first-child {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -0.02em;
}
.work-index > a > span:nth-child(2) {
  font-size: 13px;
  color: #b0b3a7;
}
.work-index > a:hover {
  color: var(--accent);
}
.system-head {
  margin-bottom: 56px;
}
.system-head h2 {
  max-width: 1150px;
}
.system-head > p {
  font-size: 17px;
  line-height: 1.5;
  margin: 28px 0 0 auto;
  width: fit-content;
}
.system-steps > li {
  display: grid;
  grid-template-columns: 10% 51% 1fr;
  gap: 20px;
  align-items: start;
  border-top: 1px solid var(--rule);
  padding: 32px 0;
}
.step-number {
  font-weight: 600;
  font-size: 20px;
  padding-top: 8px;
}
.system-steps h3 {
  font-size: clamp(36px, 3.55vw, 57px);
}
.system-steps p {
  font-size: 16px;
  line-height: 1.6;
  padding-top: 7px;
  max-width: 415px;
}
.journey-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--paper);
  padding: 27px 8%;
  margin-top: 32px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 700;
}
.journey-strip svg {
  color: var(--accent);
  width: 42px;
  height: 42px;
}
.system-cta {
  margin-top: 32px;
}
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7%;
  border-top: 1px solid var(--rule);
}
.portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 30%;
}
.portrait figcaption {
  font-size: 12px;
  margin-top: 13px;
  color: var(--muted);
}
.about-copy h2 {
  font-size: clamp(48px, 5.1vw, 82px);
  line-height: 1.03;
  margin-bottom: 30px;
}
.about-copy > p {
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}
.principles {
  border-top: 1px solid var(--ink);
  margin-top: 40px;
  padding-top: 27px;
  font-size: 18px;
}
.principles li + li {
  margin-top: 9px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  margin-top: 42px;
}
.text-link svg {
  transition: transform 0.2s;
}
.faq {
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8%;
}
.faq h2 {
  font-size: clamp(48px, 4.4vw, 70px);
  line-height: 1.05;
}
.faq-list details {
  border-top: 1px solid var(--ink);
}
.faq-list summary {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  padding: 25px 0;
}
.faq-list summary svg {
  width: 22px;
  height: 22px;
}
.faq-list details > p {
  font-size: 16px;
  line-height: 1.75;
  max-width: 600px;
  padding: 0 45px 28px 0;
  color: var(--muted);
}
.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.inline-link:hover {
  color: var(--ink);
}
.contact {
  background: var(--accent);
  padding-top: 100px;
}
.contact h2 {
  font-size: clamp(80px, 10.8vw, 170px);
  letter-spacing: -0.025em;
  line-height: 0.96;
  max-width: 1100px;
}
.contact-bottom {
  margin: 40px 0 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.contact-bottom p {
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.5;
  letter-spacing: -0.025em;
}
.contact .button:hover {
  background: white;
}
.footer {
  border-top: 1px solid var(--ink);
  padding: 32px 0;
  display: flex;
  gap: 40px;
  align-items: center;
}
.footer .wordmark {
  font-size: 36px;
}
.footer > span {
  margin-left: auto;
  font-size: 13px;
}
.back-top {
  display: flex;
  padding: 10px;
}
.back-top svg {
  transform: rotate(180deg);
  width: 28px;
  height: 28px;
}
@media (prefers-reduced-motion: no-preference) {
  [data-reveal-ready] {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.65s,
      transform 0.65s;
  }
  [data-reveal-ready].is-visible {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1680px) {
  .header {
    height: 110px;
  }
  .hero {
    padding-top: 100px;
  }
}
@media (max-width: 1100px) {
  .header {
    gap: 28px;
    height: 88px;
  }
  .desktop-nav {
    gap: 25px;
  }
  .hero {
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 10.8vw;
  }
  .hero-bottom {
    gap: 30px;
  }
  .hero-action .button {
    font-size: 15px;
    padding: 20px;
    min-width: 0;
  }
  .hero-bottom > p {
    font-size: 18px;
    max-width: 460px;
  }
  .project {
    gap: 40px;
    grid-template-columns: 1.4fr 1fr;
  }
  .project-reverse {
    grid-template-columns: 1fr 1.4fr;
  }
  .project-visual {
    padding: 20px 20px 0;
  }
  .project-copy > p:not(.project-category) {
    font-size: 16px;
  }
  .project-journey {
    margin-top: 20px;
  }
  .project-details {
    margin-top: 22px;
  }
  .about {
    gap: 6%;
  }
  .section-space {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .about-copy h2 {
    font-size: 60px;
  }
  .principles {
    font-size: 16px;
  }
  .system-steps > li {
    grid-template-columns: 7% 49% 1fr;
  }
  .system-steps p {
    font-size: 14px;
  }
  .work {
    padding-top: 80px;
  }
  .section-head {
    margin-bottom: 55px;
  }
}
@media (max-width: 760px) {
  :root {
    --gutter: 24px;
  }
  html {
    scroll-padding-top: 30px;
  }
  .header {
    height: 84px;
    gap: 20px;
  }
  .wordmark {
    font-size: 40px;
  }
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
    padding: 12px 15px;
    min-height: 44px;
    font-size: 13px;
    gap: 12px;
  }
  .header-cta svg {
    width: 17px;
    height: 17px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border: 0;
    background: transparent;
    font-size: 12px;
    min-height: 44px;
  }
  .menu-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] svg {
    transform: rotate(45deg);
  }
  .mobile-nav {
    position: absolute;
    top: 83px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--ink);
    padding: 20px var(--gutter) 32px;
    box-shadow: 0 18px 30px #00000012;
  }
  .mobile-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-family: var(--display);
    font-size: 34px;
    border-top: 1px solid var(--rule);
  }
  .mobile-nav a span {
    font: 12px var(--body);
  }
  .hero {
    padding-top: 55px;
  }
  .hero h1 {
    font-size: 11.2vw;
    letter-spacing: -0.04em;
    line-height: 1.08;
  }
  .hero-bottom {
    margin-top: 34px;
    flex-direction: column;
    gap: 25px;
  }
  .hero-bottom > p {
    max-width: 520px;
    font-size: 17px;
    letter-spacing: -0.025em;
  }
  .hero-action {
    padding: 0;
  }
  .hero-action .button {
    font-size: 15px;
    min-width: 0;
    padding: 19px 22px;
    min-height: 58px;
    gap: 20px;
  }
  .hero-action > span {
    font-size: 12px;
    margin-top: 10px;
  }
  .hero-foot {
    margin-top: 48px;
    padding: 19px 0;
    font-size: 12px;
  }
  .hero-foot > span {
    font-size: 10px;
    align-self: center;
  }
  .section-space {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .work {
    padding: 66px 0;
  }
  .section-head {
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 38px;
  }
  .section-head h2 {
    font-size: 52px;
  }
  .section-note {
    font-size: 10px;
    padding-top: 10px;
  }
  .project,
  .project-reverse {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-bottom: 70px;
  }
  .project-reverse .project-visual,
  .project-reverse .project-copy {
    grid-column: auto;
    grid-row: auto;
  }
  .project-copy {
    padding: 0;
  }
  .project-copy h3 {
    font-size: 48px;
    margin-bottom: 15px;
  }
  .project-category {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .project-copy > p:not(.project-category) {
    font-size: 16px;
    max-width: 520px;
  }
  .project-journey {
    margin-top: 20px;
    padding-top: 18px;
  }
  .project-details {
    margin-top: 22px;
  }
  .project-details summary {
    font-size: 14px;
  }
  .project-visual {
    padding: 19px 19px 0;
  }
  .image-caption {
    font-size: 10px;
    padding: 14px 0;
  }
  .project-detail-body {
    max-width: 550px;
  }
  .work-index > a {
    grid-template-columns: 1fr 130px 18px;
    gap: 15px;
    padding: 20px 0;
  }
  .work-index > a > span:first-child {
    font-size: 28px;
  }
  .work-index > a > span:nth-child(2) {
    font-size: 11px;
  }
  .work-index svg {
    width: 18px;
    height: 18px;
  }
  .system-head h2 {
    font-size: 54px;
  }
  .system-head > p {
    margin: 25px 0 0;
    font-size: 15px;
  }
  .system-head {
    margin-bottom: 35px;
  }
  .system-steps > li {
    grid-template-columns: 30px 1fr;
    gap: 10px 20px;
    padding: 24px 0;
  }
  .system-steps h3 {
    font-size: 36px;
  }
  .step-number {
    font-size: 14px;
    padding-top: 7px;
  }
  .system-steps p {
    grid-column: 2;
    font-size: 15px;
    max-width: 500px;
    padding: 0;
  }
  .journey-strip {
    padding: 21px 20px;
    gap: 10px;
    font-size: 26px;
  }
  .journey-strip svg {
    width: 22px;
    height: 22px;
  }
  .system-cta {
    font-size: 15px;
    gap: 15px;
    padding: 18px 22px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .portrait {
    max-width: 490px;
  }
  .portrait img {
    aspect-ratio: 4/4.4;
  }
  .about-copy h2 {
    font-size: 56px;
    max-width: 570px;
    margin-bottom: 25px;
  }
  .about-copy > p {
    font-size: 19px;
    max-width: 600px;
  }
  .principles {
    margin-top: 30px;
    padding-top: 22px;
    font-size: 16px;
  }
  .text-link {
    margin-top: 30px;
    font-size: 16px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq h2 {
    font-size: 50px;
  }
  .faq h2 br {
    display: none;
  }
  .faq-list summary {
    font-size: 27px;
    padding: 23px 0;
  }
  .faq-list details > p {
    font-size: 15px;
    padding-right: 15px;
  }
  .contact {
    padding-top: 72px;
  }
  .contact h2 {
    font-size: 13.5vw;
    letter-spacing: -0.02em;
  }
  .contact-bottom {
    margin: 30px 0 50px;
    gap: 25px;
  }
  .contact-bottom p {
    font-size: 17px;
  }
  .contact .button {
    font-size: 15px;
    padding: 18px 24px;
  }
  .footer {
    gap: 24px;
    padding: 25px 0;
  }
  .footer .wordmark {
    font-size: 31px;
  }
  .footer > span {
    font-size: 11px;
  }
  .back-top {
    padding: 5px;
  }
  .back-top svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 390px) {
  :root {
    --gutter: 20px;
  }
  .header {
    gap: 14px;
  }
  .wordmark {
    font-size: 34px;
  }
  .header-cta {
    padding: 10px 11px;
    font-size: 12px;
    gap: 8px;
  }
  .menu-toggle {
    gap: 5px;
    font-size: 11px;
  }
  .hero {
    padding-top: 38px;
  }
  .hero h1 {
    font-size: 11.2vw;
  }
  .hero-bottom > p {
    font-size: 16px;
  }
  .desktop-break {
    display: none;
  }
  .hero-foot > span {
    max-width: 120px;
    text-align: right;
    line-height: 1.5;
  }
  .section-head h2 {
    font-size: 46px;
  }
  .section-note {
    max-width: 65px;
    white-space: normal;
    text-align: right;
  }
  .work-index > a {
    grid-template-columns: 1fr 85px 18px;
    gap: 10px;
  }
  .work-index > a > span:first-child {
    font-size: 24px;
  }
  .work-index > a > span:nth-child(2) {
    font-size: 10px;
  }
  .journey-strip {
    padding: 19px 14px;
    font-size: 22px;
    gap: 6px;
  }
  .journey-strip svg {
    width: 17px;
    height: 17px;
  }
  .system-head h2 {
    font-size: 45px;
  }
  .system-steps h3 {
    font-size: 32px;
  }
  .system-steps > li {
    column-gap: 12px;
  }
  .about-copy h2 {
    font-size: 48px;
  }
  .faq-list summary {
    font-size: 25px;
  }
  .footer {
    gap: 12px;
  }
  .footer .wordmark {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal-ready] {
    opacity: 1;
    transform: none;
  }
}
@media print {
  .header,
  .hero-action,
  .button,
  .menu-toggle,
  .back-top,
  .detail-links {
    display: none !important;
  }
  .dark,
  .contact {
    background: white;
    color: black;
  }
  .project-copy > p,
  .project-journey p,
  .project-category,
  .project-detail-body,
  .project-detail-body h4 {
    color: black;
  }
  .project-details > div {
    display: block;
  }
  .project {
    break-inside: avoid;
  }
  .hero {
    padding-top: 0;
  }
  .hero h1 {
    font-size: 64px;
  }
  [data-reveal-ready] {
    opacity: 1;
    transform: none;
  }
}

summary .minus {
  display: none;
}
details[open] > summary svg {
  transform: none;
}
details[open] > summary svg use:first-child {
  display: none;
}
details[open] > summary .minus {
  display: block;
}

.no-script-nav {
  display: flex;
  gap: 24px;
  padding: 15px var(--gutter);
  border-block: 1px solid var(--rule);
  font-size: 14px;
}

/* Keep the primary action in view on everyday laptop displays. */
@media (min-width: 761px) and (max-height: 850px) {
  .header {
    height: 82px;
  }
  .hero {
    padding-top: 42px;
  }
  .hero h1 {
    font-size: min(9.4vw, 18vh);
  }
  .hero-bottom {
    margin-top: 32px;
  }
  .hero-foot {
    margin-top: 36px;
    padding-block: 16px;
  }
}

/* Works: a scroll-selected roster and sticky plate, adapted from MASSIF Guides. */
.work {
  --work-ease: cubic-bezier(0.16, 1, 0.3, 1);
  padding: clamp(64px, 7vw, 110px) 0;
}
.works-slate {
  border-top: 1px solid #55584e;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(36px, 5vw, 76px);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.11em;
  color: #b8bbaf;
}
.works-slate > span:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
}
.works-slate i {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}
.works-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 82px);
  align-items: start;
}
.works-list-column {
  min-width: 0;
}
.works-heading {
  font-family: var(--display);
  font-size: clamp(56px, 5.7vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  font-weight: 800;
}
.works-heading > span {
  display: block;
}
.works-heading em {
  color: var(--accent);
  font-style: normal;
}
.works-intro {
  font-size: 14px;
  line-height: 1.6;
  color: #b8bbaf;
  max-width: 380px;
  margin: 22px 0 36px;
}
.works-roster {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #3e4137;
}
.work-row {
  border-bottom: 1px solid #3e4137;
  scroll-margin-top: 120px;
}
.work-selector {
  background: none;
  border: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  gap: 8px 14px;
  position: relative;
  padding: clamp(34px, 5.2vh, 56px) 0;
  text-align: left;
  align-items: baseline;
  transition:
    padding-left 0.55s var(--work-ease),
    color 0.55s var(--work-ease);
  color: #969a8e;
}
.work-selector::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: translateY(-50%) rotate(45deg) scale(0);
  transition: transform 0.5s var(--work-ease);
}
.work-number {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: #aeb493;
}
.work-name {
  font-family: var(--display);
  font-size: clamp(38px, 3.7vw, 66px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 700;
}
.work-sector {
  grid-column: 2;
  font-size: 10px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: #9da18f;
}
.work-row-arrow {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  color: var(--accent);
  font-size: 24px;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition:
    opacity 0.55s var(--work-ease),
    transform 0.55s var(--work-ease);
}
.work-selector:hover {
  color: #f0f2e9;
}
.work-row.is-active .work-selector {
  padding-left: 22px;
  color: white;
}
.work-row.is-active .work-selector::before {
  transform: translateY(-50%) rotate(45deg) scale(1);
}
.work-row.is-active .work-number {
  color: var(--accent);
}
.work-row.is-active .work-row-arrow {
  opacity: 1;
  transform: none;
}
.works-scroll-hint {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  color: #a0a593;
  margin-top: 26px;
}
.works-scroll-hint > span {
  color: var(--accent);
  font-size: 20px;
}
.works-enhanced .works-plate {
  position: sticky;
  top: 11vh;
}
.works-stack {
  position: relative;
}
.works-enhanced .works-stack {
  height: max(550px, 76vh);
  max-height: 840px;
}
.work-panel {
  border: 1px solid #484c3e;
  background: #1d1f19;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.works-enhanced .works-stack > .work-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.65s var(--work-ease),
    visibility 0.65s;
}
.works-enhanced .works-stack > .work-panel.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.work-frame-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 20px;
  border-bottom: 1px solid #484c3e;
  color: #d1d5c5;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.work-frame-top > span:last-child {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.work-capture {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: #cdd0bf;
  padding: clamp(15px, 2vw, 34px);
}
.work-capture img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  box-shadow: 0 14px 28px #1114;
  transition: transform 0.65s var(--work-ease);
}
.work-capture:hover img {
  transform: scale(1.035);
}
#work-panel-dse .work-capture {
  background: #d5dabf;
}
#work-panel-rca .work-capture {
  background: #c8c0ac;
}
#work-panel-alpha .work-capture {
  background: #c5cadb;
}
.work-capture-label {
  position: absolute;
  right: 14px;
  bottom: 12px;
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--ink);
  color: white;
  font-size: 10px;
  padding: 8px 12px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s,
    transform 0.35s var(--work-ease);
}
.work-capture:hover .work-capture-label,
.work-capture:focus-visible .work-capture-label {
  opacity: 1;
  transform: none;
}
.work-caption {
  flex: none;
  padding: clamp(20px, 2vw, 32px);
  transition:
    transform 0.55s var(--work-ease),
    opacity 0.55s var(--work-ease);
}
.works-enhanced .works-stack > .work-panel:not(.is-active) .work-caption {
  opacity: 0;
  transform: translateY(10px);
}
.work-caption-label {
  color: var(--accent);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.work-caption h3 {
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1;
  margin-bottom: 10px;
}
.work-description {
  font-size: 13px;
  line-height: 1.6;
  color: #cbd0c0;
  max-width: 440px;
}
.work-route {
  font-size: 10px;
  line-height: 1.8;
  color: #b4baa5;
  border-top: 1px solid #454a39;
  padding-top: 14px;
  margin-top: 16px;
}
.work-route span {
  color: var(--accent);
  padding-inline: 2px;
}
.work-story-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 0;
  margin-top: 10px;
  background: none;
  border: 0;
  color: var(--accent);
  font-size: 12px;
}
.work-story-link span {
  font-size: 24px;
  transition: transform 0.3s var(--work-ease);
}
.work-story-link:hover span {
  transform: translate(3px, -3px);
}
.work-index {
  margin-top: clamp(70px, 9vw, 140px);
}
.work-dialog {
  width: min(900px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  padding: 0;
  border: 1px solid #666b56;
  color: white;
  background: var(--ink);
  overscroll-behavior: contain;
}
.work-dialog::backdrop {
  background: #080a08d9;
  backdrop-filter: blur(8px);
}
.work-dialog[open] {
  animation: work-dialog-enter 0.35s var(--work-ease);
}
.work-dialog-bar {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: var(--ink);
  border-bottom: 1px solid #424638;
  font-size: 11px;
}
.work-dialog-bar button {
  background: none;
  border: 0;
  color: var(--accent);
  padding: 4px 0 4px 16px;
}
.work-dialog-bar button span {
  margin-left: 14px;
  font-size: 22px;
}
.work-dialog-content {
  padding: clamp(24px, 4vw, 48px);
}
.work-dialog-content h2 {
  font-size: clamp(44px, 6vw, 72px);
  margin-bottom: 26px;
}
.work-dialog-content img {
  width: 100%;
  margin-bottom: 8px;
}
.work-dialog .project-detail-body {
  max-width: none;
  font-size: 16px;
}
.work-dialog .detail-links {
  flex-flow: row wrap;
  justify-content: space-between;
}
body.work-dialog-open {
  overflow: hidden;
}
@keyframes work-dialog-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 901px) and (max-height: 760px) {
  .works-enhanced .works-stack {
    height: 80vh;
    min-height: 450px;
  }
  .works-enhanced .works-plate {
    top: 8vh;
  }
  .work-caption {
    padding: 18px 24px;
  }
  .work-caption h3 {
    font-size: 34px;
  }
  .work-route {
    margin-top: 10px;
    padding-top: 10px;
  }
  .work-story-link {
    margin-top: 4px;
    padding-top: 8px;
  }
  .work-capture {
    padding: 18px 24px;
  }
}
@media (max-width: 900px) {
  .works-grid {
    display: block;
  }
  .works-heading {
    font-size: clamp(56px, 9vw, 84px);
  }
  .works-slate > span:nth-child(2) {
    display: none;
  }
  .works-slate {
    font-size: 9px;
  }
  .works-intro {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .works-scroll-hint,
  .works-enhanced .works-plate {
    display: none;
  }
  .work-name {
    font-size: clamp(34px, 7vw, 52px);
  }
  .work-selector {
    padding: 26px 0;
    grid-template-columns: 25px 1fr 22px;
    column-gap: 10px;
  }
  .work-row.is-active .work-selector {
    padding-left: 16px;
  }
  .work-row > .work-panel {
    margin-bottom: 24px;
    animation: work-dialog-enter 0.55s var(--work-ease);
  }
  .work-row > .work-panel[hidden] {
    display: none;
  }
  .work-capture {
    padding: 18px;
    flex: none;
  }
  .work-caption {
    padding: 22px;
  }
  .work-caption h3 {
    font-size: 36px;
  }
  .work-caption-label {
    font-size: 8px;
  }
  .work-frame-top {
    padding: 12px 16px;
    font-size: 9px;
  }
  .work-description {
    font-size: 13px;
  }
  .work-dialog .detail-links {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  .work *,
  .work *::before {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  .works-grid {
    display: block;
  }
  .works-roster,
  .works-scroll-hint {
    display: none;
  }
  .works-enhanced .works-plate {
    position: static;
    display: block;
  }
  .works-enhanced .works-stack {
    height: auto;
    max-height: none;
  }
  .works-enhanced .works-stack > .work-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    margin-bottom: 24px;
    break-inside: avoid;
  }
}
/* Every project shares one screenshot treatment. */
.work-capture {
  padding: 0;
  background: #141610 !important;
}
.work-capture img {
  box-shadow: none;
}
.work-caption h3 {
  font-size: clamp(30px, 2.8vw, 44px);
}
@media (max-width: 900px) {
  .work-capture {
    padding: 0;
  }
}
#work {
  scroll-margin-top: -100px;
}
@media (min-width: 901px) and (max-height: 760px) {
  .work {
    padding-top: 64px;
  }
  .works-slate {
    margin-bottom: 32px;
  }
}
.works-roster {
  overflow-anchor: none;
}
/* Masked title lines resolve in sequence as the section enters. */
.works-heading > span {
  overflow: hidden;
  padding-bottom: 0.06em;
}
.work-title-line {
  display: block;
}
@media (prefers-reduced-motion: no-preference) {
  .works-heading[data-reveal-ready] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .works-heading[data-reveal-ready] .work-title-line {
    transform: translateY(110%);
    transition: transform 1s var(--work-ease);
  }
  .works-heading[data-reveal-ready] > span:nth-child(2) .work-title-line {
    transition-delay: 0.12s;
  }
  .works-heading.is-visible .work-title-line {
    transform: none;
  }
}

/* Conversion journey. Same editorial palette, a different pace for each section. */
#main {
  position: relative;
  z-index: 2;
  background: var(--paper);
}
.header {
  position: relative;
  z-index: 3;
  background: var(--paper);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Reversible lead-loss story, with a complete normal-flow baseline. */
.lead-loss {
  background: #f1f2ed;
  padding: 0 0 clamp(64px, 6vw, 96px);
}
.loss-stage {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: 8%;
  padding-block: clamp(64px, 7vw, 110px);
}
.loss-intro {
  min-width: 0;
}
.loss-intro h2 {
  font-size: clamp(52px, 5.15vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.028em;
}
.loss-type-word {
  display: inline-block;
  white-space: nowrap;
}
.loss-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  isolation: isolate;
}
.loss-highlight::before {
  content: "";
  position: absolute;
  inset: auto -0.025em 0.015em;
  height: 0.23em;
  z-index: -1;
  background: var(--accent);
  transform: scaleX(var(--loss-highlight, 1));
  transform-origin: left;
}
.loss-type-enhanced .loss-type-char {
  color: #c3c8b9;
}
.loss-type-enhanced .loss-type-char.is-typed {
  color: var(--ink);
}
.loss-intro-copy {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--muted);
  margin-top: 30px;
  max-width: 390px;
}
.loss-intro .text-link {
  font-size: 13px;
  margin-top: 34px;
}
.loss-chapters {
  display: none;
}
.loss-points {
  display: grid;
  gap: 24px;
  min-width: 0;
}
.loss-point {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
  padding: clamp(28px, 3vw, 46px);
  border: 1px solid #c9cebe;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 25px 55px -45px #30362570;
}
.loss-point:nth-child(2) {
  background: #e8ecdf;
}
.loss-point:nth-child(3) {
  background: var(--accent);
  border-color: #c4d781;
}
.loss-number {
  font-size: 11px;
  line-height: 38px;
  font-variant-numeric: tabular-nums;
}
.loss-point h3 {
  font-size: clamp(32px, 2.65vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.loss-point > div > p {
  font-size: 16px;
  color: #545c4a;
  line-height: 1.65;
  max-width: 550px;
}
.loss-scenario {
  background: #e9ece3;
  padding: 20px 22px;
  margin-top: 25px;
  border-left: 2px solid #b1b99d;
}
.loss-point:nth-child(2) .loss-scenario,
.loss-point:nth-child(3) .loss-scenario {
  background: #ffffff70;
}
.scenario-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5c6552;
}
.loss-scenario > p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  margin: 8px 0 14px;
}
.scenario-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #5a6250;
}
.scenario-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7b845f;
}
.loss-solution {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #a2ab902f;
}
.loss-solution > span {
  font-size: 9px;
  color: #555e47;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.loss-solution p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 7px;
}
.loss-stack-enhanced .loss-story {
  height: calc(var(--loss-screen) + var(--loss-travel));
}
.loss-stack-enhanced .loss-stage {
  position: sticky;
  top: 0;
  height: var(--loss-screen);
  align-items: center;
  padding-block: 48px;
  overflow: clip;
}
.loss-stack-enhanced .loss-points {
  grid-template: 1fr / 1fr;
  gap: 0;
  isolation: isolate;
}
.loss-stack-enhanced .loss-point {
  grid-area: 1 / 1;
  align-self: stretch;
  transform-origin: 50% 0;
  will-change: transform;
  backface-visibility: hidden;
}
.loss-stack-enhanced .loss-point::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #26301a;
  opacity: var(--loss-shade, 0);
  pointer-events: none;
}
.loss-stack-enhanced .loss-chapters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
}
.loss-chapters span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 10px;
  border: 1px solid #c8cebd;
  border-radius: 50%;
  color: #616a54;
}
.loss-chapters .is-current {
  color: var(--accent);
  background: var(--ink);
  border-color: var(--ink);
}
.loss-chapters i {
  height: 1px;
  width: 28px;
  background: #c8cebd;
}
.loss-resolution {
  margin-top: 38px;
  padding-top: 40px;
  border-top: 1px solid #aeb2a6;
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 56px;
  gap: 7%;
  align-items: end;
}
.loss-resolution > span {
  font-size: 13px;
  align-self: start;
  padding-top: 5px;
}
.loss-resolution > p {
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.loss-resolution strong {
  font-weight: 600;
  box-shadow: inset 0 -0.28em 0 var(--accent);
}
.loss-resolution > a {
  width: 56px;
  height: 56px;
  background: var(--ink);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--work-ease);
}
.loss-resolution > a:hover {
  transform: translate(3px, -3px);
}
.testimonials {
  position: relative;
  padding: clamp(64px, 7vw, 112px) 0 0;
  overflow: clip;
}
.testimonial-layout {
  position: relative;
  z-index: 1;
}
.testimonial-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.testimonial-top h2 {
  font-size: clamp(48px, 4vw, 64px);
  line-height: 1;
}
.testimonial-top h2 span {
  color: #9ea591;
}
.testimonial-kicker {
  font-size: 12px;
  color: #b7beab;
}
.testimonial-stage {
  display: grid;
  grid-template-columns: 0.24fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 510px;
  padding: 58px 0;
  touch-action: pan-y;
}
.testimonial-mark {
  font-family: var(--display);
  font-size: clamp(170px, 24vw, 350px);
  line-height: 0.65;
  color: var(--accent);
  align-self: start;
  padding-top: 24px;
  transform: translateY(var(--quote-drift, 0px));
}
.testimonial-content {
  max-width: 1020px;
}
.testimonial-quote {
  font-size: clamp(28px, 3vw, 49px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.035em;
  text-wrap: pretty;
}
.testimonial-credit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}
.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #777f69;
  color: var(--accent);
  border-radius: 50%;
  font-size: 12px;
}
[data-testimonial-name] {
  font-size: 14px;
  font-weight: 600;
}
[data-testimonial-company] {
  font-size: 11px;
  color: #a6af96;
  margin-top: 4px;
}
.testimonial-bottom {
  border-top: 1px solid #535a45;
  padding: 24px 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.testimonial-bottom > p {
  font-size: 11px;
  color: #a6af96;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-controls[hidden] {
  display: none;
}
[data-testimonial-count] {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: #c1c8b1;
  margin-right: 12px;
}
.testimonial-controls button {
  border: 1px solid #737b62;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: none;
  font-size: 22px;
  transition:
    background 0.25s,
    color 0.25s;
}
.testimonial-controls button:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.testimonial-work-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--accent);
}
.testimonial-selectors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #535a45;
}
.testimonial-selectors button {
  position: relative;
  min-height: 96px;
  padding: 18px 12px;
  background: none;
  border: 0;
  border-right: 1px solid #373c2e;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 32px);
  color: #929b80;
  transition:
    color 0.3s,
    background 0.3s;
}
.testimonial-selectors button::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--work-ease);
}
.testimonial-selectors button[aria-pressed="true"] {
  color: var(--accent);
  background: #ffffff04;
}
.testimonial-selectors button[aria-pressed="true"]::before {
  transform: scaleX(1);
}
.testimonial-selectors button:hover {
  color: white;
}
.why-webnext {
  background: white;
}
.why-sticky {
  padding-top: 100px;
  padding-bottom: 100px;
}
.why-top,
.why-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.why-top h2 {
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.why-top > span,
.why-bottom > span {
  font-size: 11px;
  color: var(--muted);
}
.why-statement {
  font-size: clamp(32px, 4.35vw, 70px);
  line-height: 1.2;
  letter-spacing: -0.05em;
  font-weight: 600;
  margin: 58px 0;
  max-width: 1340px;
}
.scroll-word {
  display: inline-block;
  white-space: nowrap;
}
.why-bottom > a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}
.why-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}
.scroll-copy-enhanced .why-webnext {
  height: 190vh;
}
.scroll-copy-enhanced .why-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 64px;
}
.scroll-copy-enhanced .why-top,
.scroll-copy-enhanced .why-bottom {
  width: 100%;
}
.scroll-copy-enhanced .scroll-char {
  color: #d5d8cf;
}
.scroll-copy-enhanced .scroll-char.is-typed {
  color: var(--ink);
}
.scroll-copy-enhanced .scroll-char.is-cursor {
  box-shadow: inset -2px 0 0 #789300;
}
.packages {
  /* Match the rendered clay scene's canvas, including its warmer lime. */
  background: #dff619;
  padding: clamp(74px, 9vw, 140px) 0;
}
.packages-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 5%;
  align-items: end;
}
.packages-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 26px;
}
.packages h2 {
  font-size: clamp(68px, 7.8vw, 128px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.packages h2 span {
  display: inline-block;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 5px;
}
.packages-copy > p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 450px;
  margin-top: 28px;
}
.packages .button {
  width: 100%;
  max-width: 430px;
  justify-content: space-between;
  font-size: 16px;
}
.packages-note {
  display: block;
  font-size: 11px;
  margin-top: 16px;
}
.faq {
  padding-bottom: 130px;
  border-top: 0;
}
.footer-reveal-space {
  display: none;
}
.reveal-footer {
  background: #151613;
  padding: 54px 0 24px;
  overflow: clip;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.footer-top h2 {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.045em;
}
.footer-whatsapp {
  background: var(--accent);
  color: var(--ink);
  font-size: 14px;
  min-width: 270px;
}
.footer-whatsapp:hover {
  background: white;
  color: var(--ink);
}
.footer-brand {
  display: block;
  font-size: clamp(80px, 19.4vw, 320px);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 1.2;
  padding: 35px 0 30px;
  color: #fff;
  transform-origin: bottom;
}
.footer-brand span {
  color: var(--accent);
}
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid #626956;
  font-size: 10px;
  color: #aeb6a0;
}
.footer-base nav {
  display: flex;
  gap: 24px;
  color: white;
}
.footer-base a:hover {
  color: var(--accent);
}
.footer-enhanced .footer-reveal-space {
  display: block;
  height: var(--footer-height);
}
.footer-enhanced .reveal-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
@media (max-width: 900px) {
  .testimonial-stage {
    min-height: 440px;
    grid-template-columns: 70px 1fr;
    gap: 18px;
  }
  .testimonial-mark {
    font-size: 180px;
  }
  .testimonial-bottom > p {
    display: none;
  }
  .testimonial-kicker {
    max-width: 140px;
    text-align: right;
  }
  .testimonial-selectors button {
    min-height: 80px;
    font-size: 23px;
  }
  .why-statement {
    font-size: clamp(32px, 5.5vw, 48px);
  }
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .packages-copy > p {
    max-width: 520px;
  }
  .footer-base {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .testimonial-top h2 {
    font-size: 44px;
  }
  .testimonial-kicker {
    font-size: 10px;
    max-width: 125px;
  }
  .testimonial-stage {
    display: block;
    min-height: 520px;
    padding: 30px 0 40px;
  }
  .testimonial-mark {
    display: block;
    height: 75px;
    font-size: 150px;
    padding-top: 22px;
  }
  .testimonial-quote {
    font-size: 29px;
    line-height: 1.3;
  }
  .testimonial-credit {
    margin-top: 28px;
    gap: 14px;
  }
  .testimonial-bottom {
    gap: 14px;
    padding-block: 20px 28px;
  }
  .testimonial-work-link {
    font-size: 10px;
    gap: 5px;
    max-width: 150px;
  }
  .testimonial-work-link svg {
    width: 18px;
  }
  .testimonial-controls {
    gap: 8px;
  }
  [data-testimonial-count] {
    margin-right: 4px;
    font-size: 10px;
  }
  .testimonial-controls button {
    width: 42px;
    height: 42px;
  }
  .testimonial-selectors {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #626956 #151613;
  }
  .testimonial-selectors button {
    flex: 0 0 135px;
    min-height: 74px;
    font-size: 24px;
  }
  .why-sticky {
    padding-block: 70px;
  }
  .why-top {
    gap: 15px;
  }
  .why-top h2 {
    font-size: 12px;
  }
  .why-top > span {
    font-size: 10px;
  }
  .why-statement {
    font-size: clamp(27px, 7.7vw, 43px);
    line-height: 1.27;
    margin-block: 36px;
    letter-spacing: -0.045em;
  }
  .why-bottom > span {
    font-size: 9px;
    max-width: 130px;
  }
  .why-bottom > a {
    font-size: 10px;
    gap: 5px;
  }
  .scroll-copy-enhanced .why-webnext {
    height: 180vh;
  }
  .scroll-copy-enhanced .why-sticky {
    padding-block: 34px;
  }
  .packages h2 {
    font-size: 66px;
  }
  .packages-copy > p {
    font-size: 15px;
  }
  .packages .button {
    font-size: 14px;
    padding: 22px;
    min-width: 0;
  }
  .faq {
    padding-bottom: 80px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .footer-top h2 {
    font-size: 29px;
  }
  .footer-whatsapp {
    min-width: 0;
    padding: 18px 22px;
    font-size: 13px;
  }
  .footer-brand {
    font-size: 19vw;
    padding-block: 36px;
  }
  .footer-base {
    font-size: 9px;
    gap: 20px;
  }
  .footer-base > span:first-child {
    flex-basis: 100%;
  }
  .footer-base nav {
    gap: 14px;
  }
  .reveal-footer {
    padding-top: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-mark {
    transform: none;
  }
  .scroll-copy-enhanced .why-webnext {
    height: auto;
  }
  .scroll-copy-enhanced .why-sticky {
    position: static;
    min-height: 0;
  }
  .scroll-copy-enhanced .scroll-char {
    color: var(--ink);
    box-shadow: none;
  }
  .footer-enhanced .reveal-footer {
    position: static;
  }
  .footer-enhanced .footer-reveal-space {
    display: none;
  }
}
@media print {
  #main {
    position: static;
  }
  .why-webnext,
  .scroll-copy-enhanced .why-webnext {
    height: auto;
  }
  .scroll-copy-enhanced .why-sticky {
    position: static;
    min-height: 0;
  }
  .scroll-copy-enhanced .scroll-char {
    color: black;
  }
  .footer-enhanced .reveal-footer {
    position: static;
  }
  .footer-reveal-space {
    display: none !important;
  }
}

/* Hero motion: editorial type with a recurring, deadpan customer. */
.hero {
  --hero-pointer-x: 0px;
  --hero-pointer-y: 0px;
  --hero-pointer-turn: 0deg;
  --hero-shift: 0px;
}
.hero-heading-stage {
  position: relative;
}
.hero-line {
  overflow: clip;
  padding: 0.045em 0.08em 0.095em;
  margin: -0.045em -0.08em -0.095em;
}
.hero-line-text {
  display: block;
}
.hero mark {
  position: relative;
  isolation: isolate;
  background: transparent;
}
.hero mark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform-origin: left center;
}
.hero-meme {
  position: absolute;
  width: clamp(180px, 18vw, 280px);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-meme-plane {
  display: grid;
  transform: translate3d(
    calc(var(--hero-pointer-x) * -0.75),
    calc(var(--hero-pointer-y) * -0.75 - var(--hero-shift) * 0.4),
    0
  );
}
.hero-meme-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-waiting-dots {
  display: flex;
  gap: 3px;
  flex: none;
}
.hero-waiting-dots i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}
.hero-meme-art {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  contain: paint;
}
.hero-meme-caption {
  text-align: center;
  padding-top: 4px;
}
.hero-meme-status {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meme-caption p {
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.hero-foot-motion {
  display: flex;
  align-items: center;
  gap: 22px;
}
.hero-motion-toggle {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-block: -8px;
  padding: 0;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s;
}
.hero-motion-toggle[hidden] {
  display: none;
}
.hero-motion-toggle:hover {
  background: var(--accent);
}
.hero-motion-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.motion-play-icon,
.hero-motion-toggle[aria-pressed="true"] .motion-pause-icon {
  display: none;
}
.hero-motion-toggle[aria-pressed="true"] .motion-play-icon {
  display: block;
}
@media (min-width: 1001px) {
  .hero h1 {
    font-size: clamp(70px, 9.2vw, 158px);
  }
}
@media (min-width: 1001px) and (max-height: 850px) {
  .hero h1 {
    font-size: min(9.4vw, 18vh);
  }
  .hero-meme {
    width: min(18vw, 30vh, 250px);
  }
  .hero-foot {
    margin-top: 24px;
  }
}
@media (max-width: 1000px) {
  .hero-heading-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 164px;
    align-items: center;
    gap: 24px;
  }
  .hero h1 {
    font-size: 8.5vw;
  }
  .hero-meme {
    position: static;
    width: 100%;
    transform: none;
  }
  .hero-meme-label {
    font-size: 8px;
    gap: 5px;
  }
  .hero-meme-caption p {
    font-size: 24px;
  }
}
@media (max-width: 760px) {
  .hero-heading-stage {
    display: block;
  }
  .hero h1 {
    font-size: 11.2vw;
  }
  .hero-meme {
    max-width: 380px;
    margin: 24px auto 0;
  }
  .hero-meme-plane {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 8px 20px;
    transform: none;
  }
  .hero-meme-art {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .hero-meme-label {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    justify-content: flex-start;
    max-width: 170px;
    font-size: 9px;
  }
  .hero-meme-caption {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    padding: 0;
    text-align: left;
  }
  .hero-meme-status {
    font-size: 8px;
    margin-bottom: 8px;
  }
  .hero-meme-caption p {
    font-size: 29px;
  }
  .hero-bottom {
    margin-top: 25px;
    gap: 22px;
  }
  .hero-foot {
    gap: 12px;
    align-items: center;
    margin-top: 32px;
  }
  .hero-foot-motion {
    gap: 14px;
  }
  .hero-disciplines {
    display: none;
  }
  .hero-motion-toggle {
    width: 32px;
    height: 32px;
    margin-block: -6px;
  }
}
@media (max-width: 400px) {
  .hero-meme {
    margin-top: 18px;
  }
  .hero-meme-plane {
    grid-template-columns: 105px minmax(0, 1fr);
    column-gap: 16px;
  }
  .hero-meme-caption p {
    font-size: 26px;
  }
}
@media (max-width: 760px) and (max-height: 700px) {
  .hero {
    padding-top: 26px;
  }
  .hero-meme-plane {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 5px 16px;
  }
  .hero-meme-label {
    max-width: none;
    font-size: 8px;
  }
  .hero-meme-caption p {
    font-size: 23px;
  }
  .hero-meme-status {
    margin-bottom: 5px;
  }
  .hero-bottom {
    margin-top: 18px;
    gap: 18px;
  }
  .hero-foot {
    margin-top: 24px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-intro .hero-line-text {
    animation: hero-type-arrive 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero-intro .hero-line:nth-child(2) .hero-line-text {
    animation-delay: 0.12s;
  }
  .hero-intro .hero-line:nth-child(3) .hero-line-text {
    animation-delay: 0.24s;
  }
  .hero-intro mark::before {
    animation: hero-marker-arrive 1s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero-intro .hero-bottom,
  .hero-intro .hero-meme {
    animation: hero-detail-arrive 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero-line:nth-child(2) {
    transform: translateX(calc(var(--hero-shift) * -0.7));
  }
  .hero-line:nth-child(3) {
    transform: translateX(calc(var(--hero-shift) * 0.8));
  }
  .hero mark::before {
    translate: var(--hero-pointer-x) var(--hero-pointer-y);
    rotate: var(--hero-pointer-turn);
  }
  .hero-action .button {
    overflow: hidden;
  }
  .hero-action .button:is(:hover, :focus-visible) svg {
    animation: hero-arrow-arrive 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes hero-type-arrive {
    from {
      transform: translate3d(0, 115%, 0) rotate(1.5deg);
    }
    to {
      transform: translate3d(0, 0, 0) rotate(0deg);
    }
  }
  @keyframes hero-marker-arrive {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }
  @keyframes hero-detail-arrive {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes hero-arrow-arrive {
    0% {
      transform: translate(0, 0);
      opacity: 1;
    }
    35% {
      transform: translate(18px, -18px);
      opacity: 0;
    }
    36% {
      transform: translate(-18px, 18px);
      opacity: 0;
    }
    100% {
      transform: translate(0, 0);
      opacity: 1;
    }
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero[data-motion="running"] .hero-waiting-dots i {
    animation: hero-waiting 1.5s steps(2, end) infinite;
  }
  .hero[data-motion="running"] .hero-waiting-dots i:nth-child(2) {
    animation-delay: 0.2s;
  }
  .hero[data-motion="running"] .hero-waiting-dots i:nth-child(3) {
    animation-delay: 0.4s;
  }
  @keyframes hero-waiting {
    0%,
    80%,
    100% {
      opacity: 0.3;
    }
    40% {
      opacity: 1;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-meme-plane {
    transform: none;
  }
}
@media print {
  .hero-meme,
  .hero-foot-motion {
    display: none;
  }
}

/* Keep the entire pinned scene readable before enabling it. */
@media (min-width: 901px) and (max-height: 760px) {
  .loss-intro h2 {
    font-size: clamp(48px, 5vw, 72px);
  }
  .loss-point {
    padding: 28px;
  }
  .loss-point h3 {
    font-size: 34px;
    margin-bottom: 16px;
  }
  .loss-point > div > p {
    font-size: 14px;
  }
  .loss-scenario {
    padding: 16px 18px;
    margin-top: 20px;
  }
  .loss-scenario > p {
    font-size: 15px;
  }
  .loss-solution {
    margin-top: 20px;
    padding-top: 14px;
  }
  .loss-solution p {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .loss-stage {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .loss-intro h2 {
    font-size: clamp(44px, 7vw, 64px);
  }
  .loss-title-break {
    display: none;
  }
  .loss-intro-copy {
    margin-top: 18px;
    font-size: 15px;
  }
  .loss-intro .text-link {
    margin-top: 20px;
  }
  .loss-stack-enhanced .loss-stage {
    align-content: center;
    gap: 30px;
    padding-block: 32px;
  }
  .loss-stack-enhanced .loss-chapters {
    display: none;
  }
  .loss-resolution {
    grid-template-columns: 1fr 56px;
    gap: 24px;
  }
  .loss-resolution > span {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .loss-stage {
    padding-block: 56px;
    gap: 30px;
  }
  .loss-intro h2 {
    font-size: 42px;
    line-height: 1.04;
  }
  .loss-intro-copy {
    font-size: 13px;
    line-height: 1.55;
    margin-top: 16px;
  }
  .loss-intro .text-link {
    font-size: 12px;
    margin-top: 16px;
  }
  .loss-point {
    padding: 23px 20px;
    grid-template-columns: 18px 1fr;
    gap: 12px;
  }
  .loss-number {
    font-size: 10px;
    line-height: 31px;
  }
  .loss-point h3 {
    font-size: 29px;
    margin-bottom: 15px;
  }
  .loss-point > div > p {
    font-size: 13px;
    line-height: 1.6;
  }
  .loss-scenario {
    padding: 15px;
    margin-top: 18px;
  }
  .loss-scenario > p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .scenario-label {
    font-size: 8px;
    letter-spacing: 0.07em;
  }
  .scenario-status {
    font-size: 9px;
  }
  .loss-solution {
    margin-top: 18px;
    padding-top: 14px;
  }
  .loss-solution p {
    font-size: 13px;
    line-height: 1.45;
  }
  .loss-stack-enhanced .loss-stage {
    padding-block: 24px;
    gap: 30px;
  }
  .loss-resolution {
    margin-top: 20px;
    padding-top: 30px;
  }
  .loss-resolution > p {
    font-size: 25px;
  }
  .loss-resolution > a {
    width: 48px;
    height: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .loss-type-enhanced .loss-type-char {
    color: var(--ink);
  }
  .loss-highlight::before {
    transform: none;
  }
  .loss-stack-enhanced .loss-story {
    height: auto;
  }
  .loss-stack-enhanced .loss-stage {
    position: static;
    height: auto;
    overflow: visible;
    align-items: start;
  }
  .loss-stack-enhanced .loss-points {
    grid-template: none;
    gap: 24px;
  }
  .loss-stack-enhanced .loss-point {
    grid-area: auto;
    transform: none !important;
  }
  .loss-point::after,
  .loss-stack-enhanced .loss-chapters {
    display: none;
  }
}
@media print {
  .loss-stack-enhanced .loss-story {
    height: auto;
  }
  .loss-stack-enhanced .loss-stage {
    position: static;
    height: auto;
    overflow: visible;
  }
  .loss-stack-enhanced .loss-points {
    display: block;
  }
  .loss-stack-enhanced .loss-point {
    transform: none !important;
    margin-bottom: 24px;
  }
  .loss-point::after,
  .loss-chapters {
    display: none !important;
  }
  .loss-type-enhanced .loss-type-char {
    color: var(--ink);
  }
  .loss-highlight::before {
    transform: none;
  }
}

/* Unframed character scenes: the section remains the visual canvas. */
.character-media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 16 / 9;
  -webkit-mask-image:
    linear-gradient(transparent, #000 5%, #000 95%, transparent),
    linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(transparent, #000 5%, #000 95%, transparent),
    linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-composite: intersect;
}
.character-poster,
.character-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.character-video {
  opacity: 0;
}
.character-scene[data-video-active] .character-video {
  opacity: 1;
}
.character-scene[data-video-active] .character-poster {
  opacity: 0;
}
.hero-meme-art.character-media {
  aspect-ratio: 2 / 3;
}
.loss-character {
  max-width: 320px;
  margin-top: 24px;
}
.loss-character figcaption,
.packages-character figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 5px;
}
.loss-character figcaption p {
  max-width: 225px;
  font-size: 12px;
  line-height: 1.5;
  color: #545c4a;
}
.character-motion-toggle {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid #8f957e70;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.character-motion-toggle[hidden] {
  display: none;
}
.character-motion-toggle:hover {
  background: #ffffff60;
}
.character-motion-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.character-motion-toggle[aria-pressed="true"] .motion-pause-icon {
  display: none;
}
.character-motion-toggle[aria-pressed="true"] .motion-play-icon {
  display: block;
}
.packages-character {
  min-width: 0;
  width: min(100%, 380px);
  justify-self: center;
  align-self: center;
  margin-bottom: 3px;
}
.packages-character .character-media {
  aspect-ratio: 1 / 1;
}
.packages-character .character-poster,
.packages-character .character-video {
  width: 164%;
  height: 92%;
  top: 4%;
  max-width: none;
  left: -55%;
  right: auto;
  object-fit: contain;
}
.packages-character figcaption {
  max-width: 320px;
  margin-inline: auto;
}
.packages-character figcaption p {
  font-family: var(--display);
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 24px;
  }
  .packages h2 {
    font-size: clamp(56px, 8vw, 80px);
  }
  .packages-character {
    margin-bottom: 10px;
  }
  .packages-character figcaption p {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
  .packages h2 {
    font-size: clamp(58px, 13vw, 76px);
  }
  .packages-character {
    width: 190px;
    justify-self: end;
    margin: 0;
  }
  .packages-character figcaption {
    gap: 10px;
  }
  .packages-character figcaption p {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .character-scene[data-video-active] .character-video {
    opacity: 0;
  }
  .character-scene[data-video-active] .character-poster {
    opacity: 1;
  }
  .character-motion-toggle,
  .hero-motion-toggle {
    display: none;
  }
}
@media print {
  .loss-character,
  .packages-character {
    display: none;
  }
}

/* The same character story stays visible on a phone. The measured lead-loss
   controller uses normal flow whenever the full intro and card cannot fit. */
@media (max-width: 900px) {
  .loss-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 46%);
    column-gap: 18px;
    align-items: start;
  }
  .loss-intro h2,
  .loss-intro-copy {
    grid-column: 1 / -1;
  }
  .loss-intro-copy {
    margin-bottom: 20px;
  }
  .loss-intro .text-link {
    grid-column: 1;
    grid-row: 3;
    align-self: center;
    justify-self: start;
    margin-top: 0;
  }
  .loss-intro .loss-chapters {
    display: none;
  }
  .loss-character {
    display: block;
    grid-column: 2;
    grid-row: 3;
    width: 100%;
    max-width: 300px;
    margin: 0;
    justify-self: end;
  }
  .loss-character figcaption {
    align-items: flex-start;
    gap: 8px;
    margin-top: 2px;
  }
  .loss-character figcaption p {
    font-size: 11px;
    line-height: 1.4;
  }
  .character-motion-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .hero-motion-toggle {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 600px) {
  .loss-intro {
    column-gap: 12px;
  }
  .loss-character figcaption p {
    font-size: 10px;
  }
  .packages {
    padding-block: 64px 36px;
    background: #dff627;
  }
  .packages-grid {
    gap: 6px;
  }
  .packages-character {
    width: min(100%, 230px);
    justify-self: center;
    margin: 0;
  }
  .packages-character .character-media {
    aspect-ratio: 9 / 16;
    max-height: none;
    width: min(100%, 185px);
    margin-inline: auto;
  }
  .packages-character .character-poster,
  .packages-character .character-video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .packages-character figcaption {
    justify-content: center;
    gap: 14px;
    margin-top: -6px;
  }
  .packages-character figcaption p {
    font-size: 27px;
  }
}
@media print {
  .loss-character,
  .packages-character {
    display: none;
  }
}
