/* Mr. Green Agency shared production stylesheet */
:root {
  --ink: #0a0d0b;
  --ink-soft: #111713;
  --ink-raised: #18201a;
  --paper: #f3f6f1;
  --white: #ffffff;
  --text: #172019;
  --muted: #5e6a61;
  --muted-dark: #aeb9b1;
  --green: #3be477;
  --green-dark: #087a3d;
  --green-soft: #dff8e8;
  --line: #dce4dd;
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(15, 31, 20, 0.1);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --page-gutter: 28px;
  --section-space: clamp(80px, 8vw, 120px);
  --header-height: 76px;
  --urgency-height: 66px;
  --font-display: "Manrope", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.has-urgency-bar {
  padding-bottom: calc(var(--urgency-height) + env(safe-area-inset-bottom));
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.65rem);
  font-weight: 800;
  line-height: 1.02;
}

h2 {
  max-width: 800px;
  font-size: clamp(2.15rem, 4.1vw, 3.75rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

::selection {
  background: var(--green);
  color: var(--ink);
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.scroll-progress {
  position: fixed;
  z-index: 1200;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, #18a954, var(--green), #a6ffbd);
  box-shadow: 0 0 14px rgba(59, 228, 119, 0.78);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header.is-scrolled,
.site-header.menu-visible,
.site-header--solid {
  border-color: var(--line-dark);
  background: rgba(10, 13, 11, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(59, 228, 119, 0.18));
}

.brand__name {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand__name strong {
  color: var(--green);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.language-link {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--green);
  box-shadow: 0 0 8px rgba(59, 228, 119, 0.8);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="true"],
.language-link:hover {
  color: var(--white);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-link {
  display: inline-flex;
  min-width: 36px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  border-radius: 2px;
  background: var(--white);
  transition: transform 160ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* Persistent application reminder */
.urgency-bar {
  position: fixed;
  z-index: 1150;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(59, 228, 119, 0.42);
  background: rgba(7, 11, 8, 0.95);
  box-shadow: 0 -14px 44px rgba(0, 0, 0, 0.32), 0 0 24px rgba(59, 228, 119, 0.08);
  color: var(--white);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.urgency-bar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  min-height: var(--urgency-height);
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.urgency-bar__copy {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.urgency-bar__copy > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.urgency-bar__copy strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.urgency-bar__copy small {
  margin-top: 2px;
  color: #839087;
  font-size: 0.67rem;
}

.urgency-bar__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(59, 228, 119, 0.12), 0 0 18px rgba(59, 228, 119, 0.7);
  animation: urgencyPulse 1.8s ease-in-out infinite alternate;
}

@keyframes urgencyPulse {
  from { opacity: 0.62; transform: scale(0.86); }
  to { opacity: 1; transform: scale(1); }
}

.urgency-bar__timer {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.urgency-bar__timer span {
  color: #8e9b92;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.urgency-bar__timer time {
  min-width: 88px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: right;
  text-shadow: 0 0 16px rgba(59, 228, 119, 0.28);
}

.urgency-bar__button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease;
}

.urgency-bar__button:hover {
  background: #58ef8e;
  transform: translateY(-2px);
}

/* Buttons and labels */
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(59, 228, 119, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: #58ef8e;
  border-color: #58ef8e;
  transform: translateY(-2px);
}

.hero .button:not(.button--ghost),
.contact__options a:hover {
  box-shadow: 0 0 0 1px rgba(59, 228, 119, 0.1), 0 0 34px rgba(59, 228, 119, 0.18);
}

.button--small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.8rem;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(59, 228, 119, 0.12);
}

.eyebrow--dark {
  color: var(--green-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.text-link span,
.button span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.button:hover span {
  transform: translate(2px, -2px);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.section-cta p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-cta .button {
  flex-shrink: 0;
}

.section-cta--dark {
  border-color: var(--line-dark);
}

.section-cta--dark p {
  color: var(--muted-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
  color: var(--white);
  animation: gridDrift 28s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 64px 64px, 64px 64px, 0 0; }
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.hero__wash {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 228, 119, 0.16), rgba(59, 228, 119, 0.02) 46%, transparent 68%);
  pointer-events: none;
  animation: neonOrbit 10s ease-in-out infinite alternate;
}

@keyframes neonOrbit {
  0% { opacity: 0.68; transform: translate3d(0, 0, 0) scale(0.92); }
  50% { opacity: 1; transform: translate3d(-70px, 60px, 0) scale(1.08); }
  100% { opacity: 0.76; transform: translate3d(35px, 110px, 0) scale(0.98); }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  min-height: 780px;
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 64px;
}

.hero__content h1 em {
  color: var(--green);
  font-style: normal;
  text-shadow: 0 0 28px rgba(59, 228, 119, 0.22);
}

.hero__content .eyebrow,
.hero__content h1,
.hero__lead,
.hero__content .button-row,
.hero__proof,
.hero-card {
  opacity: 0;
  animation: heroReveal 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__content .eyebrow { animation-delay: 80ms; }
.hero__content h1 { animation-delay: 150ms; }
.hero__lead { animation-delay: 230ms; }
.hero__content .button-row { animation-delay: 310ms; }
.hero__proof { animation-delay: 390ms; }
.hero-card { animation-delay: 310ms; }

@keyframes heroReveal {
  from { opacity: 0; transform: translate3d(0, 28px, 0); filter: blur(5px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}

.hero__lead {
  max-width: 720px;
  margin: 24px 0 28px;
  color: #c6d0c9;
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  line-height: 1.7;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  margin: 40px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.hero__proof li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding-right: 20px;
}

.hero__proof strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__proof span {
  color: #8f9a92;
  font-size: 0.75rem;
  line-height: 1.4;
}

.hero-card {
  position: relative;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  --pointer-x: 50%;
  --pointer-y: 35%;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 74px;
  height: 3px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(59, 228, 119, 0.82);
  animation: neonLine 3.6s ease-in-out infinite alternate;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(59, 228, 119, 0.15), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.hero-card:hover::after {
  opacity: 1;
}

@keyframes neonLine {
  from { width: 54px; opacity: 0.65; }
  to { width: 112px; opacity: 1; }
}

.hero-card__kicker {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  letter-spacing: -0.035em;
}

.hero-card ul {
  margin: 26px 0 20px;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #d8e1da;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card li span {
  color: var(--green);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.hero-card__note {
  color: #859188;
  font-size: 0.76rem;
}

/* Shared sections */
.section {
  padding: var(--section-space) 0;
}

.section--light {
  background: var(--paper);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: end;
  max-width: none;
}

.section-heading--split > p,
.section-heading--split .answer-lead {
  margin: 0;
}

.section-heading--on-dark > p:not(.eyebrow),
.section-heading--on-dark.section-heading--split > p {
  color: var(--muted-dark);
}

/* Overview */
.overview {
  background: var(--white);
}

.answer-lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.7;
}

.answer-lead strong {
  color: var(--text);
  font-weight: 700;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-grid > div {
  min-height: 184px;
  padding: 26px 24px 26px 0;
}

.fact-grid > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.fact-grid dt {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-grid dd {
  margin: 0;
  color: #3d4940;
  font-size: 0.92rem;
  line-height: 1.7;
}

.review-note {
  margin: 22px 0 0;
  color: #78847b;
  font-size: 0.76rem;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cbd5cc;
  border-left: 1px solid #cbd5cc;
}

.service-card {
  position: relative;
  min-height: 280px;
  padding: clamp(28px, 3vw, 38px);
  border-right: 1px solid #cbd5cc;
  border-bottom: 1px solid #cbd5cc;
  background: rgba(255, 255, 255, 0.42);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  --pointer-x: 50%;
  --pointer-y: 50%;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(59, 228, 119, 0.11), transparent 32%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__number {
  margin-bottom: 44px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card > p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Approach */
.approach {
  background:
    radial-gradient(circle at 12% 20%, rgba(59, 228, 119, 0.08), transparent 35%),
    var(--ink);
}

.approach__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(52px, 8vw, 108px);
  align-items: start;
}

.approach .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  margin-bottom: 0;
}

.principle-list {
  border-top: 1px solid var(--line-dark);
}

.principle-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.principle-list article:hover > span {
  text-shadow: 0 0 14px rgba(59, 228, 119, 0.9);
}

.principle-list article:hover h3 {
  color: var(--green);
}

.principle-list article > span {
  padding-top: 5px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.principle-list h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.principle-list p {
  color: var(--muted-dark);
  font-size: 0.91rem;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  counter-reset: none;
  list-style: none;
}

.process-grid li {
  min-height: 252px;
  padding: 28px 26px 24px 0;
  border-top: 1px solid var(--line);
}

.process-grid li + li {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.process-grid li > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
}

.process-grid li:hover > span {
  background: var(--green);
  box-shadow: 0 0 22px rgba(59, 228, 119, 0.3);
  color: var(--ink);
  transform: translateY(-3px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.process-grid h3 {
  margin-bottom: 14px;
}

.process-grid p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Results */
.results {
  background: var(--ink-soft);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.result-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  --pointer-x: 50%;
  --pointer-y: 50%;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.result-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(59, 228, 119, 0.13), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.result-card:hover {
  border-color: rgba(59, 228, 119, 0.42);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3), 0 0 26px rgba(59, 228, 119, 0.08);
  transform: translateY(-6px);
}

.result-card:hover::after {
  opacity: 1;
}

.result-card img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
  object-fit: contain;
}

.result-card figcaption {
  padding: 22px;
}

.result-card__label {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-card h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.result-card figcaption > p:last-child {
  color: var(--muted-dark);
  font-size: 0.8rem;
}

.evidence-note {
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(59, 228, 119, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(59, 228, 119, 0.055);
  color: #b9c7bd;
  font-size: 0.82rem;
}

.evidence-note strong {
  color: var(--white);
}

.creator-notes {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.creator-notes__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.creator-notes__eyebrow {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creator-notes__header h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.creator-notes__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.creator-notes__counter {
  min-width: 66px;
  color: #89958d;
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
  text-align: center;
}

.creator-notes__controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.creator-notes__controls button:hover:not(:disabled) {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.creator-notes__controls button:disabled {
  opacity: 0.3;
  cursor: default;
}

.vouch-track {
  display: flex;
  gap: 0;
  margin-top: 20px;
  padding-bottom: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(59, 228, 119, 0.5) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.vouch-track::-webkit-scrollbar {
  height: 4px;
}

.vouch-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.vouch-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(59, 228, 119, 0.55);
}

.vouch-card {
  flex: 0 0 min(760px, 78%);
  margin: 0;
  padding: 30px 46px 30px 0;
  border-right: 1px solid var(--line-dark);
  scroll-snap-align: start;
}

.vouch-card--story {
  flex-basis: min(820px, 84%);
}

.vouch-card--short {
  flex-basis: min(510px, 54%);
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
}

.vouch-card--short blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.vouch-card--compact {
  flex-basis: min(560px, 58%);
  padding-top: 42px;
}

.vouch-card--compact blockquote {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.75;
}

.vouch-card--memo {
  flex-basis: min(650px, 68%);
}

.vouch-card--memo blockquote {
  padding-left: 22px;
  border-left: 2px solid rgba(255, 255, 255, 0.22);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.7;
}

.vouch-card--accent blockquote {
  color: var(--green);
}

.vouch-card--accent figcaption strong {
  color: var(--green);
}

.vouch-card + .vouch-card {
  padding-left: 46px;
}

.vouch-card blockquote {
  max-width: 700px;
  margin: 0 0 24px;
  color: #edf3ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.65;
}

.vouch-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vouch-card figcaption strong {
  color: var(--white);
  font-size: 0.82rem;
}

.vouch-card figcaption span,
.creator-notes__privacy {
  color: #7f8d84;
  font-size: 0.72rem;
}

.creator-notes__privacy {
  margin-top: 8px;
}

/* Fit */
.fit__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(52px, 8vw, 108px);
}

.fit__grid .section-heading {
  margin-bottom: 0;
}

.fit-cards {
  display: grid;
  gap: 14px;
}

.fit-card {
  padding: 28px;
  border: 1px solid #cbd5cc;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
}

.fit-card--yes {
  border-color: #9edab3;
  background: #effaf3;
}

.fit-card--yes:hover {
  border-color: #5bcc82;
  box-shadow: 0 18px 54px rgba(21, 93, 48, 0.1);
}

.fit-card__label {
  margin-bottom: 20px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.fit-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 22px;
}

.fit-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9ca69e;
}

.fit-card--yes li::before {
  background: var(--green-dark);
}

/* FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(440px, 1.3fr);
  gap: clamp(52px, 8vw, 108px);
  align-items: start;
}

.faq__grid .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 2px;
  background: var(--green-dark);
  transition: transform 160ms ease;
}

.faq-list details[open] summary {
  color: var(--green-dark);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 48px 24px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 228, 119, 0.11), transparent 67%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  justify-content: center;
}

.contact h2 {
  max-width: 900px;
  margin-inline: auto;
}

.contact__inner > p:not(.eyebrow):not(.contact__fineprint) {
  max-width: 670px;
  margin: 22px auto 0;
  color: var(--muted-dark);
  font-size: 1.02rem;
}

.contact__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 520px;
  margin: 34px auto 0;
}

.contact__options a {
  position: relative;
  display: flex;
  min-height: 108px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
  --pointer-x: 50%;
  --pointer-y: 50%;
  overflow: hidden;
}

.contact__options a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(59, 228, 119, 0.18), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.contact__options a:hover {
  border-color: rgba(59, 228, 119, 0.5);
  background: rgba(59, 228, 119, 0.07);
  transform: translateY(-3px);
}

.contact__options a:hover::after {
  opacity: 1;
}

/* Scroll choreography is activated only when motion is allowed. */
.motion-enabled .motion-reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay, 0ms),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay, 0ms),
    filter 720ms ease var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-enabled .motion-reveal.motion-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-enabled .motion-reveal[data-motion="left"] {
  transform: translate3d(-34px, 0, 0);
}

.motion-enabled .motion-reveal[data-motion="right"] {
  transform: translate3d(34px, 0, 0);
}

.motion-enabled .motion-reveal.motion-visible[data-motion="left"],
.motion-enabled .motion-reveal.motion-visible[data-motion="right"] {
  transform: translate3d(0, 0, 0);
}

.contact__options span {
  margin-bottom: 7px;
  color: #8d9a91;
  font-size: 0.73rem;
}

.contact__options strong {
  color: var(--white);
  font-size: clamp(0.9rem, 1.8vw, 1.08rem);
  overflow-wrap: anywhere;
}

.contact__fineprint {
  margin-top: 20px;
  color: #68746c;
  font-size: 0.72rem;
}

/* Footer */
.site-footer {
  padding: 54px 0 26px;
  border-top: 1px solid var(--line-dark);
  background: #070908;
  color: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 44px;
  align-items: start;
  padding-bottom: 40px;
}

.footer__brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: #728078;
  font-size: 0.82rem;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.footer__nav a,
.footer__contact a {
  color: #9aa79f;
  font-size: 0.8rem;
  transition: color 160ms ease;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.footer__bottom p {
  max-width: 660px;
  color: #58635c;
  font-size: 0.68rem;
}

/* Legal pages */
.legal-page {
  padding: calc(var(--header-height) + 64px) 0 86px;
  background: var(--paper);
}

.legal-page .container {
  max-width: 820px;
}

.legal-page h1 {
  color: var(--text);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.legal-page__intro {
  margin: 22px 0 46px;
  color: var(--muted);
}

.legal-page article {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-page article + article {
  margin-top: 34px;
}

.legal-page article h2 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-page article p,
.legal-page article li {
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-page article a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 1050px) {
  .desktop-nav {
    gap: 14px;
  }

  .header__inner {
    gap: 14px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 34px;
  }

  .hero-card {
    padding: 28px;
  }

  .service-card {
    min-height: 264px;
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: 24px;
    --section-space: 72px;
    --header-height: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .header__actions > .button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.74rem;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    padding: 14px var(--page-gutter) 24px;
    border-top: 1px solid var(--line-dark);
    background: rgba(10, 13, 11, 0.98);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-dark);
    color: #dce4de;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
  }

  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 64px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero-card {
    max-width: 620px;
  }

  .section-heading--split,
  .approach__grid,
  .fit__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: start;
    gap: 34px;
  }

  .approach .section-heading,
  .faq__grid .section-heading {
    position: static;
  }

  .fact-grid,
  .service-grid,
  .process-grid,
  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact-grid > div {
    min-height: 170px;
  }

  .service-card {
    min-height: 250px;
  }

  .process-grid li {
    min-height: 224px;
  }

  .fact-grid > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .fact-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .process-grid li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer__contact {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 18px;
    --section-space: 60px;
    --header-height: 64px;
    --urgency-height: 70px;
    --radius: 18px;
    --radius-lg: 22px;
  }

  body {
    line-height: 1.6;
  }

  h1 {
    font-size: clamp(2.55rem, 11.7vw, 3.3rem);
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(1.9rem, 8.8vw, 2.65rem);
    line-height: 1.08;
  }

  h3 {
    line-height: 1.14;
  }

  .header__inner {
    gap: 8px;
  }

  .brand__name {
    display: none;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .header__actions {
    gap: 4px;
  }

  .language-link,
  .menu-button {
    min-width: 44px;
    min-height: 44px;
  }

  .urgency-bar__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 1px;
    padding-top: 7px;
    padding-bottom: calc(7px + env(safe-area-inset-bottom));
  }

  .urgency-bar__copy {
    grid-column: 1;
    grid-row: 1;
    gap: 8px;
  }

  .urgency-bar__copy strong {
    font-size: 0.75rem;
  }

  .urgency-bar__copy small,
  .urgency-bar__timer span {
    display: none;
  }

  .urgency-bar__timer time {
    min-width: 68px;
    font-size: 0.86rem;
    text-align: left;
  }

  .urgency-bar__timer {
    grid-column: 1;
    grid-row: 2;
  }

  .urgency-bar__button {
    grid-column: 2;
    grid-row: 1 / 3;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.7rem;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .button {
    min-height: 54px;
  }

  .header__actions > .button {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.7rem;
  }

  .eyebrow {
    gap: 9px;
    margin-bottom: 13px;
    font-size: 0.67rem;
  }

  .hero__wash {
    top: -150px;
    right: -300px;
  }

  .hero__grid {
    gap: 36px;
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: 52px;
  }

  .hero__lead {
    margin: 18px 0 24px;
    font-size: 1.01rem;
    line-height: 1.62;
  }

  .hero__proof {
    gap: 12px;
    margin-top: 32px;
    padding-top: 22px;
  }

  .hero__proof li {
    padding-right: 0;
  }

  .hero__proof strong {
    font-size: 1.38rem;
  }

  .hero__proof span {
    font-size: 0.68rem;
  }

  .hero-card {
    padding: 24px;
    border-radius: var(--radius);
  }

  .hero-card::before {
    left: 24px;
  }

  .hero-card h2 {
    font-size: 1.68rem;
  }

  .hero-card ul {
    margin: 22px 0 16px;
  }

  .hero-card li {
    gap: 12px;
    padding: 11px 0;
    font-size: 0.84rem;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .section-heading--split,
  .approach__grid,
  .fit__grid,
  .faq__grid {
    gap: 30px;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
    padding-top: 24px;
  }

  .section-cta .button {
    width: 100%;
  }

  .fact-grid,
  .service-grid,
  .process-grid,
  .result-grid,
  .contact__options,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .fact-grid > div,
  .fact-grid > div + div,
  .fact-grid > div:nth-child(3),
  .fact-grid > div:nth-child(4) {
    min-height: auto;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .fact-grid > div:first-child {
    border-top: 0;
  }

  .service-card {
    min-height: auto;
    padding: 26px 24px;
  }

  .service-card__number {
    margin-bottom: 28px;
  }

  .principle-list article {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .process-grid li,
  .process-grid li + li,
  .process-grid li:nth-child(3) {
    min-height: auto;
    padding: 24px 0 28px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-grid li > span {
    margin-bottom: 26px;
  }

  .result-grid {
    gap: 14px;
  }

  .result-card figcaption {
    padding: 20px;
  }

  .evidence-note {
    padding: 18px;
  }

  .creator-notes {
    margin-top: 44px;
    padding-top: 22px;
  }

  .creator-notes__header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .creator-notes__controls {
    width: 100%;
  }

  .creator-notes__counter {
    margin-right: auto;
    text-align: left;
  }

  .vouch-track {
    margin-top: 16px;
  }

  .vouch-card {
    flex-basis: calc(100% - 20px);
    min-height: auto;
    padding: 24px 20px 24px 0;
  }

  .vouch-card--story,
  .vouch-card--short,
  .vouch-card--compact,
  .vouch-card--memo {
    flex-basis: calc(100% - 20px);
  }

  .vouch-card + .vouch-card {
    padding-left: 20px;
  }

  .vouch-card--compact {
    padding-top: 24px;
  }

  .vouch-card blockquote,
  .vouch-card--compact blockquote,
  .vouch-card--memo blockquote {
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .vouch-card--short blockquote {
    font-size: 1.22rem;
    line-height: 1.35;
  }

  .vouch-card--memo blockquote {
    padding-left: 14px;
  }

  .fit-card {
    padding: 22px;
  }

  .faq-list summary {
    padding: 21px 42px 21px 0;
  }

  .faq-list details p {
    padding: 0 22px 22px 0;
  }

  .contact__options a {
    min-height: 96px;
    padding: 20px 22px;
  }

  .footer__top {
    gap: 30px;
    padding-bottom: 32px;
  }

  .footer__contact {
    grid-column: auto;
    flex-direction: column;
    gap: 10px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
  }

  .legal-page {
    padding: calc(var(--header-height) + 46px) 0 64px;
  }

  .legal-page__intro {
    margin: 18px 0 34px;
  }

  .legal-page article {
    padding-top: 26px;
  }

  .legal-page article + article {
    margin-top: 28px;
  }
}

@media (max-width: 420px) {
  :root {
    --page-gutter: 16px;
    --section-space: 56px;
  }

  h1 {
    font-size: clamp(2.45rem, 11.8vw, 3.05rem);
  }

  .hero__grid {
    padding-top: calc(var(--header-height) + 38px);
  }

  .urgency-bar__inner {
    column-gap: 8px;
  }

  .urgency-bar__dot {
    display: none;
  }

  .urgency-bar__timer time {
    min-width: 62px;
    font-size: 0.8rem;
  }

  .urgency-bar__button {
    padding-inline: 10px;
  }

  .hero__proof {
    gap: 9px;
  }

  .hero-card {
    padding: 22px 20px;
  }

  .creator-notes__header h3 {
    font-size: 1.42rem;
  }

  .vouch-card,
  .vouch-card--story,
  .vouch-card--short,
  .vouch-card--compact,
  .vouch-card--memo {
    flex-basis: calc(100% - 12px);
  }
}

@media (hover: none) {
  .button:hover,
  .service-card:hover,
  .result-card:hover,
  .fit-card--yes:hover,
  .contact__options a:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero {
    animation: none;
  }

  .hero__wash {
    animation: none;
  }

  .hero__content .eyebrow,
  .hero__content h1,
  .hero__lead,
  .hero__content .button-row,
  .hero__proof,
  .hero-card {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}
