:root {
  --dark: #11181d;
  --ink: #f8faf5;
  --text: #172127;
  --muted: #65706c;
  --yellow: #ffe14a;
  --teal: #28d0b5;
  --paper: #f4f6f0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--yellow);
  color: #161300;
  padding: 10px 14px;
  font-weight: 900;
}

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

.cursor-glow {
  position: fixed;
  z-index: 49;
  left: 0;
  top: 0;
  width: 190px;
  height: 190px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,225,74,.2), rgba(40,208,183,.08) 38%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .25s ease;
}

body.is-pointer-active .cursor-glow { opacity: 1; }

.scroll-progress {
  position: fixed;
  z-index: 50;
  top: 110px;
  right: 16px;
  width: 5px;
  height: 0%;
  max-height: calc(100vh - 140px);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(255,225,74,.48);
}

.scroll-progress::before {
  content: "";
  position: fixed;
  top: 110px;
  right: 16px;
  width: 5px;
  height: calc(100vh - 140px);
  border-radius: 999px;
  background: rgba(17,24,29,.16);
}

.nav {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  min-height: 68px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(17,24,29,.78);
  padding: 0 12px 0 18px;
  color: #fff;
  backdrop-filter: blur(18px);
  animation: navDrop .75s cubic-bezier(.2,.8,.2,1) both;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.nav.is-scrolled {
  background: rgba(17,24,29,.93);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 18px 58px rgba(0,0,0,.26);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 19px; }
.brand-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 6px rgba(255,225,74,.14), 0 0 22px rgba(255,225,74,.55); }
.nav nav { display: flex; gap: 24px; font-size: 14px; font-weight: 800; color: rgba(255,255,255,.78); }
.nav nav a {
  position: relative;
  padding: 8px 0;
}
.nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav nav a:hover::after,
.nav nav a.is-active::after {
  transform: scaleX(1);
}
.nav-cta, .primary, .secondary, .contact button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; border-radius: 8px; font-weight: 900;
}
.nav-cta, .primary, .contact button { background: var(--yellow); color: #161300; padding: 0 18px; border: 0; }
.primary { box-shadow: 0 16px 34px rgba(255,225,74,.22); }
.secondary { border: 1px solid rgba(255,255,255,.36); color: #fff; padding: 0 18px; background: rgba(17,24,29,.54); }
.primary:hover, .nav-cta:hover, .contact button:hover {
  background: #fff071;
}
.secondary:hover {
  border-color: rgba(255,225,74,.6);
  background: rgba(255,255,255,.12);
}

[data-magnetic] {
  transform: translate3d(var(--mag-x, 0), var(--mag-y, 0), 0);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  will-change: transform;
}

[data-magnetic]:hover {
  box-shadow: 0 18px 46px rgba(255,225,74,.22);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 78px) 92px;
  color: #fff;
}
.hero img, .hero-overlay { position: absolute; inset: 0; }
.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.04) saturate(1.12);
  transform: scale(1.06);
  will-change: transform;
  animation: heroBreath 11s ease-in-out infinite alternate;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17,24,29,.94) 0%, rgba(17,24,29,.78) 46%, rgba(17,24,29,.06) 100%),
    linear-gradient(0deg, rgba(17,24,29,.18), rgba(17,24,29,.18));
}
.hero-content { position: relative; z-index: 2; width: min(860px, 100%); }
.hero-content > * {
  opacity: 0;
  animation: riseIn .82s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .22s; }
.hero-content > *:nth-child(3) { animation-delay: .34s; }
.hero-content > *:nth-child(4) { animation-delay: .46s; }
.hero-content > *:nth-child(5) { animation-delay: .58s; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .eyebrow {
  display: inline-block;
  border: 1px solid rgba(255,225,74,.42);
  border-radius: 8px;
  background: rgba(17,24,29,.5);
  padding: 8px 10px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Space Grotesk", Inter, sans-serif; letter-spacing: 0; }
h1 { max-width: 830px; margin-bottom: 22px; color: #fff; font-size: clamp(46px, 6.7vw, 92px); line-height: .94; }
h1 span, .build-band h2, .build-band .eyebrow { color: var(--yellow); }
h1, h2, h3, .lead, .quick-paths strong, .build-list strong, .proof strong {
  transition: color .22s ease, transform .22s ease, text-shadow .22s ease;
}
h1:hover, .section-copy h2:hover, .scroll-lab-copy h2:hover {
  transform: translateX(8px);
  text-shadow: 0 0 28px rgba(255,225,74,.22);
}
h3:hover, .quick-paths strong:hover, .build-list strong:hover {
  color: #997d00;
  transform: translateX(5px);
}
.lead { max-width: 690px; margin-bottom: 30px; color: rgba(248,250,245,.88); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.micro-note {
  margin: -12px 0 22px;
  color: rgba(248,250,245,.68);
  font-size: 14px;
  font-weight: 800;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.proof { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; max-width: 650px; }
.proof span {
  min-height: 72px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px;
  background: rgba(17,24,29,.72); padding: 13px 14px; color: rgba(248,250,245,.72);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  animation: softPulse 3.6s ease-in-out infinite;
}
.proof span:nth-child(2) { animation-delay: .35s; }
.proof span:nth-child(3) { animation-delay: .7s; }
.proof span:hover { transform: translateY(-4px); border-color: rgba(255,225,74,.54); background: rgba(17,24,29,.86); }
.proof strong { display: block; margin-bottom: 3px; color: var(--yellow); font-size: 18px; }

.diagnosis-card {
  position: absolute; z-index: 3; right: clamp(20px, 6vw, 78px); bottom: 58px;
  width: min(390px, calc(100% - 40px)); border: 1px solid rgba(255,255,255,.18); border-radius: 8px;
  background: rgba(17,24,29,.86); color: var(--ink); box-shadow: 0 28px 70px rgba(0,0,0,.24); overflow: hidden;
  will-change: transform;
  animation: floatPanel 4.8s ease-in-out infinite;
}
.diag-head { display: flex; min-height: 64px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.14); padding: 0 18px; font-weight: 900; text-transform: uppercase; }
.diag-head strong { color: var(--yellow); font-family: "Space Grotesk", Inter, sans-serif; font-size: 34px; }
.diagnosis-card dl { margin: 0; }
.diagnosis-card div { display: grid; grid-template-columns: .42fr 1fr; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.12); padding: 16px 18px; }
.diagnosis-card div:last-child { border-bottom: 0; }
.diagnosis-card dt { color: var(--yellow); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.diagnosis-card dd { margin: 0; font-weight: 900; line-height: 1.25; }

.quick-paths, .trust-dock, .trust-metrics, .problem-finder, .pricing, .faq, .section, .build-band, .contact { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-transition {
  position: relative;
  height: 92px;
  overflow: hidden;
}

.section-transition.compact {
  height: 58px;
}

.section-transition::before,
.section-transition::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 40px));
  pointer-events: none;
}

.section-transition::before {
  inset-block: 0;
  border-left: 1px solid rgba(255,225,74,.22);
  border-right: 1px solid rgba(255,225,74,.08);
  background:
    linear-gradient(90deg, transparent, rgba(255,225,74,.08), transparent),
    repeating-linear-gradient(90deg, transparent 0 77px, rgba(17,24,29,.07) 78px, transparent 79px);
  opacity: .9;
}

.section-transition::after {
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,225,74,.9), rgba(40,208,183,.55), transparent);
  animation: transitionSweep 2.8s ease-in-out infinite;
}

.section-transition span {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 10px rgba(255,225,74,.12), 0 0 26px rgba(255,225,74,.45);
  transform: translate(-50%, -50%);
}

.transition-dark-to-light {
  margin-top: -1px;
  background: linear-gradient(180deg, #11181d 0%, rgba(244,246,240,0) 100%);
}

.transition-light-to-lab,
.transition-light-to-dark {
  background: linear-gradient(180deg, rgba(244,246,240,0) 0%, rgba(17,24,29,.08) 100%);
}

.transition-lab-to-light,
.transition-light-to-contact {
  background: linear-gradient(180deg, rgba(17,24,29,.08) 0%, rgba(244,246,240,0) 100%);
}
.quick-paths {
  position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px; margin-top: -34px;
}
.quick-paths a, .service-grid article, .steps article {
  border: 1px solid rgba(21,33,39,.12); border-radius: 8px; background: #fff; box-shadow: 0 22px 60px rgba(21,33,39,.1);
}
.quick-paths a { min-height: 138px; padding: 22px; transition: transform .18s ease, box-shadow .18s ease; }
.quick-paths a:hover { transform: translateY(-3px); box-shadow: 0 28px 72px rgba(21,33,39,.16); }
.quick-paths span, .service-grid span, .steps span {
  display: inline-block; width: fit-content; margin-bottom: 20px; border-radius: 8px;
  background: rgba(255,225,74,.72); color: #172127; padding: 6px 10px; font-size: 13px; font-weight: 900; text-transform: uppercase;
}
.quick-paths strong { display: block; max-width: 270px; font-family: "Space Grotesk", Inter, sans-serif; font-size: 24px; line-height: 1.08; }

.area-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(1160px, calc(100% - 40px));
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid rgba(21,33,39,.1);
  border-radius: 8px;
  background: #fff;
}

.area-strip span {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-right: 1px solid rgba(21,33,39,.08);
  color: #34413c;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.area-strip span:last-child { border-right: 0; }

.trust-dock {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.trust-dock article {
  min-height: 112px;
  border: 1px solid rgba(21,33,39,.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,225,74,.22), rgba(255,255,255,.92) 48%),
    #fff;
  padding: 20px;
  box-shadow: 0 22px 54px rgba(21,33,39,.09);
}

.trust-dock strong,
.trust-dock span {
  position: relative;
  z-index: 1;
  display: block;
}

.trust-dock strong {
  margin-bottom: 8px;
  color: #172127;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 20px;
  line-height: 1.1;
}

.trust-dock span {
  color: #59655f;
  line-height: 1.45;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(21,33,39,.1);
  border-radius: 8px;
  background: rgba(21,33,39,.1);
  box-shadow: 0 22px 58px rgba(21,33,39,.08);
}

.trust-metrics div {
  min-height: 156px;
  background: #fff;
  padding: 20px;
}

.trust-metrics span {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #11181d;
  color: var(--yellow);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.trust-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: #172127;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 20px;
  line-height: 1.1;
}

.trust-metrics p {
  margin: 0;
  color: #59655f;
  font-size: 14px;
  line-height: 1.45;
}

.area-strip span,
.eyebrow,
.lead,
.service-grid p,
.steps p,
.contact p,
.build-list span {
  transition: color .22s ease, transform .22s ease, opacity .22s ease;
}

.eyebrow:hover,
.lead:hover,
.service-grid p:hover,
.steps p:hover,
.contact p:hover,
.build-list span:hover {
  color: #9a7b00;
  transform: translateX(4px);
}

.scroll-lab {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: center;
  width: min(1160px, calc(100% - 40px));
  margin: 72px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: #11181d;
  color: #fff;
  padding: 64px;
}

.problem-finder {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, .92fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  padding: 86px 0 18px;
}

.finder-copy {
  align-self: center;
}

.finder-copy p:last-of-type {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.problem-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.problem-options button {
  min-height: 46px;
  border: 1px solid rgba(21,33,39,.14);
  border-radius: 8px;
  background: #fff;
  color: #172127;
  padding: 0 16px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(21,33,39,.08);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.problem-options button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,225,74,.82);
  box-shadow: 0 18px 40px rgba(21,33,39,.12);
}

.problem-options button.is-active {
  background: var(--yellow);
  border-color: rgba(21,33,39,.08);
  color: #161300;
}

.finder-result {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,225,74,.28), transparent 28%),
    linear-gradient(135deg, rgba(40,208,181,.12), transparent 45%),
    #11181d;
  color: var(--ink);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 32px 76px rgba(21,33,39,.18);
}

.finder-result::after {
  content: "";
  position: absolute;
  inset: auto -12% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,225,74,.9), transparent);
  animation: transitionSweep 2.6s ease-in-out infinite;
}

.finder-result.is-switching {
  animation: resultSwitch .34s cubic-bezier(.2,.8,.2,1);
}

.finder-result > span {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(255,225,74,.14);
  color: var(--yellow);
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.finder-result h3 {
  max-width: 560px;
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.finder-result p {
  max-width: 620px;
  color: rgba(248,250,245,.78);
  font-size: 18px;
  line-height: 1.65;
}

.finder-result dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 30px;
}

.finder-result dl div {
  min-height: 104px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  padding: 16px;
}

.finder-result dt {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.finder-result dd {
  margin: 0;
  color: rgba(248,250,245,.9);
  font-weight: 800;
  line-height: 1.35;
}

.finder-result a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--yellow);
  color: #161300;
  padding: 0 18px;
  font-weight: 900;
}

.scroll-lab-media,
.scroll-lab-shade {
  position: absolute;
  inset: 0;
}

.scroll-lab-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
  filter: brightness(.74) saturate(1.1);
  transform: scale(1.14);
  will-change: transform;
}

.scroll-lab-shade {
  background:
    radial-gradient(circle at 76% 42%, rgba(255,225,74,.2), transparent 28%),
    linear-gradient(90deg, rgba(17,24,29,.94), rgba(17,24,29,.62) 58%, rgba(17,24,29,.22));
}

.scroll-lab-copy {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
}

.scroll-lab-copy h2 {
  color: #fff;
}

.scroll-lab-copy p:last-child {
  max-width: 560px;
  color: rgba(248,250,245,.78);
  font-size: 19px;
  line-height: 1.65;
}

.floating-report {
  position: absolute;
  z-index: 3;
  right: 54px;
  bottom: 54px;
  width: min(330px, calc(100% - 40px));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(17,24,29,.82);
  padding: 22px;
  box-shadow: 0 28px 70px rgba(0,0,0,.26);
  will-change: transform;
  animation: floatPanel 5.2s ease-in-out infinite;
}

.floating-report span,
.floating-report strong {
  display: block;
}

.floating-report span {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-report strong {
  margin-bottom: 22px;
  font-size: 23px;
  line-height: 1.16;
}

.floating-report div {
  height: 9px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.floating-report div::before {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--yellow);
  transform-origin: left center;
  animation: scanBar 2.8s ease-in-out infinite;
}

.floating-report div:nth-of-type(1)::before { width: 86%; }
.floating-report div:nth-of-type(2)::before { width: 64%; background: var(--teal); }
.floating-report div:nth-of-type(3)::before { width: 48%; background: #f29d52; }

.section { padding: 104px 0; }
.section-copy { max-width: 760px; margin-bottom: 38px; }
.pricing .section-copy p:last-child,
.faq .section-copy p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
h2 { margin-bottom: 18px; color: var(--text); font-size: clamp(35px, 5vw, 62px); line-height: 1; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.service-grid article {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 26px;
}
h3 { margin-bottom: 12px; font-size: 23px; line-height: 1.15; }
.service-grid p, .steps p, .contact p { color: var(--muted); line-height: 1.65; }
.service-grid article > a {
  width: fit-content;
  margin-top: auto;
  border-bottom: 3px solid var(--yellow);
  color: var(--text);
  font-weight: 900;
  transition: transform .2s ease, color .2s ease;
}
.service-grid article > a:hover {
  color: #9a7b00;
  transform: translateX(5px);
}

.pricing {
  padding: 22px 0 102px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 295px;
  flex-direction: column;
  border: 1px solid rgba(21,33,39,.12);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 22px 58px rgba(21,33,39,.1);
}

.price-card.featured {
  border-color: rgba(255,225,74,.86);
  background:
    linear-gradient(145deg, rgba(255,225,74,.34), rgba(255,255,255,.94) 42%),
    #fff;
}

.price-card > span {
  width: fit-content;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(255,225,74,.72);
  color: #172127;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-bottom: 14px;
  color: #172127;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(25px, 2.8vw, 34px);
  line-height: 1;
}

.price-card p {
  color: var(--muted);
  line-height: 1.55;
}

.price-card a {
  width: fit-content;
  margin-top: auto;
  border-bottom: 3px solid var(--yellow);
  color: var(--text);
  font-weight: 900;
  transition: transform .2s ease, color .2s ease;
}

.price-card a:hover {
  color: #9a7b00;
  transform: translateX(5px);
}

.pricing-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: #59655f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.build-band {
  display: grid; grid-template-columns: minmax(0,.85fr) minmax(370px,.82fr); gap: clamp(28px,5vw,70px);
  align-items: center; padding: 72px clamp(22px,5vw,58px); border-radius: 8px;
  background: linear-gradient(90deg, rgba(255,225,74,.1), transparent 62%), #11181d; color: var(--ink);
}
.build-band p { color: rgba(248,250,245,.74); line-height: 1.65; }
.build-list { display: grid; gap: 12px; }
.build-list article { border: 1px solid rgba(248,250,245,.16); border-radius: 8px; background: rgba(255,255,255,.06); padding: 22px; }
.build-list strong, .build-list span { display: block; }
.build-list strong { margin-bottom: 7px; font-size: 20px; }
.build-list span { color: rgba(248,250,245,.72); line-height: 1.45; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.steps article { min-height: 250px; padding: 28px; }

.faq {
  padding: 0 0 82px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(21,33,39,.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(21,33,39,.08);
  overflow: hidden;
}

.faq summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  cursor: pointer;
  color: #172127;
  font-weight: 900;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #161300;
  font-weight: 900;
  transition: transform .2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin: -4px 22px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  display: grid; grid-template-columns: minmax(0,.8fr) minmax(380px,.74fr);
  gap: clamp(28px,5vw,70px); align-items: start; padding: 74px 0 98px;
}
.contact form { display: grid; gap: 14px; border: 1px solid rgba(21,33,39,.12); border-radius: 8px; background: #fff; padding: 22px; box-shadow: 0 24px 64px rgba(21,33,39,.12); }
.contact label { display: grid; gap: 8px; color: #243139; font-size: 14px; font-weight: 800; }
.contact input, .contact select, .contact textarea { width: 100%; border: 1px solid rgba(21,33,39,.16); border-radius: 8px; background: #f8faf7; color: #152127; font: inherit; font-size: 15px; outline: none; }
.contact input, .contact select { min-height: 48px; padding: 0 14px; }
.contact textarea { resize: vertical; padding: 13px 14px; }
.contact button { cursor: pointer; }
.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-color: rgba(255,225,74,.9);
  box-shadow: 0 0 0 4px rgba(255,225,74,.18);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.contact-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #11181d;
  color: #fff;
  padding: 0 16px;
  font-weight: 900;
}
.contact-actions a:first-child {
  background: var(--yellow);
  color: #161300;
}

.contact-checklist {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  min-height: 44px;
  border: 1px solid rgba(21,33,39,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.62);
  padding: 12px 14px 12px 42px;
  color: #34413c;
  font-weight: 850;
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255,225,74,.18);
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: #59655f;
  font-size: 13px;
  font-weight: 800;
}

.floating-call,
.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 18px;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(0,0,0,.2);
  transition: transform .2s ease, opacity .2s ease;
}
.floating-call {
  bottom: 18px;
  background: var(--yellow);
  color: #161300;
  padding: 0 18px;
}
.whatsapp-float {
  bottom: 78px;
  background: #11181d;
  color: #fff;
  padding: 0 16px;
}
.floating-call:hover,
.whatsapp-float:hover {
  transform: translateY(-3px);
}

.floating-call,
.whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

body.show-floating .floating-call,
body.show-floating .whatsapp-float {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.show-floating .floating-call:hover,
body.show-floating .whatsapp-float:hover {
  transform: translateY(-3px);
}

.mobile-action-bar {
  position: fixed;
  z-index: 42;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: none;
  grid-template-columns: 1.25fr .75fr;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(17,24,29,.86);
  padding: 8px;
  box-shadow: 0 18px 54px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-action-bar a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--yellow);
  color: #161300;
  font-weight: 900;
}

.mobile-action-bar a:last-child {
  background: #fff;
}

body.show-floating .mobile-action-bar {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-tilt] {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

[data-tilt]::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,225,74,.28), transparent 34%),
    linear-gradient(135deg, rgba(40,208,183,.08), transparent 42%);
  transition: opacity .22s ease;
}

[data-tilt]:hover::before {
  opacity: 1;
}

[data-tilt] h3,
[data-tilt] strong,
[data-tilt] p,
[data-tilt] span {
  position: relative;
  z-index: 1;
  transition: transform .22s ease, color .22s ease;
}

[data-tilt]:hover h3,
[data-tilt]:hover strong {
  transform: translateZ(18px);
}

[data-tilt]:hover p,
[data-tilt]:hover span {
  transform: translateZ(10px);
}

.reveal-block,
.quick-paths a,
.trust-dock article,
.trust-metrics div,
.price-card,
.faq details,
.service-grid article,
.steps article,
.build-list article {
  opacity: 0;
  transform: perspective(900px) translateY(42px) scale(.985) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1), box-shadow .18s ease;
}

.reveal-block.is-visible,
.quick-paths a.is-visible,
.trust-dock article.is-visible,
.trust-metrics div.is-visible,
.price-card.is-visible,
.faq details.is-visible,
.service-grid article.is-visible,
.steps article.is-visible,
.build-list article.is-visible {
  opacity: 1;
  transform: perspective(900px) translateY(var(--lift, 0)) scale(1) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

[data-tilt].is-tilting {
  --lift: -6px;
  box-shadow: 0 30px 78px rgba(21,33,39,.18);
}

@keyframes navDrop {
  from { opacity: 0; transform: translate(-50%, -18px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBreath {
  from { filter: brightness(1) saturate(1.08); }
  to { filter: brightness(1.12) saturate(1.18); }
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255,225,74,0); }
  50% { box-shadow: 0 0 28px rgba(255,225,74,.14); }
}

@keyframes floatPanel {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

@keyframes scanBar {
  0%, 100% { transform: scaleX(.72); }
  50% { transform: scaleX(1); }
}

@keyframes transitionSweep {
  0%, 100% { opacity: .34; transform: translate(-50%, -50%) scaleX(.72); }
  50% { opacity: 1; transform: translate(-50%, -50%) scaleX(1); }
}

@keyframes resultSwitch {
  0% { opacity: .72; transform: translateY(8px) scale(.99); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1040px) {
  .diagnosis-card { display: none; }
}
@media (max-width: 920px) {
  .nav nav { display: none; }
  .hero { min-height: auto; padding: 104px 18px 48px; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17,24,29,.96), rgba(17,24,29,.66)),
      linear-gradient(0deg, rgba(17,24,29,.22), rgba(17,24,29,.22));
  }
  h1 {
    max-width: 680px;
    font-size: clamp(44px, 10.5vw, 72px);
  }
  .lead {
    max-width: 560px;
    font-size: 18px;
  }
  .proof, .quick-paths, .trust-dock, .problem-finder, .price-grid, .service-grid, .build-band, .steps, .contact { grid-template-columns: 1fr; }
  .proof {
    max-width: 100%;
  }
  .proof span {
    min-height: 58px;
  }
  .quick-paths { margin-top: 18px; }
  .quick-paths a {
    min-height: 104px;
  }
  .quick-paths strong {
    font-size: 22px;
  }
  .area-strip {
    margin-top: 14px;
  }
  .trust-dock article {
    min-height: 0;
  }
  .trust-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-metrics div {
    min-height: 0;
  }
  .problem-finder {
    padding: 58px 0 0;
  }
  .finder-result {
    min-height: 0;
  }
  .finder-result dl {
    grid-template-columns: 1fr;
  }
  .section { padding: 68px 0; }
  .service-grid article,
  .price-card,
  .steps article {
    min-height: 0;
    padding: 22px;
  }
  .pricing {
    padding: 4px 0 68px;
  }
  .price-grid {
    gap: 12px;
  }
  .faq {
    padding-bottom: 62px;
  }
  .build-band { width: min(100% - 32px, 1160px); padding: 48px 22px; }
  .build-list article {
    padding: 20px;
  }
  .scroll-lab {
    min-height: 560px;
    padding: 44px 22px;
  }
  .scroll-lab-copy h2 {
    font-size: clamp(34px, 9vw, 52px);
  }
  .floating-report {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }
}
@media (max-width: 560px) {
  .scroll-progress {
    right: 8px;
    top: 84px;
    height: 0%;
    max-height: calc(100vh - 104px);
  }
  .scroll-progress::before {
    right: 8px;
    top: 84px;
    height: calc(100vh - 104px);
  }
  .cursor-glow {
    display: none;
  }
  .nav { top: 10px; width: calc(100% - 20px); min-height: 58px; padding: 0 12px; }
  .brand { min-width: 0; font-size: 15px; }
  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand-dot {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 5px rgba(255,225,74,.14);
  }
  .nav-cta { display: none; }
  .hero {
    padding: 92px 16px 40px;
  }
  .hero-content {
    width: min(calc(100svw - 32px), 358px);
    max-width: min(calc(100svw - 32px), 358px);
    min-width: 0;
  }
  .hero .eyebrow {
    font-size: 11px;
    line-height: 1.2;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(32px, 10.2vw, 40px);
    line-height: 1;
    overflow-wrap: normal;
  }
  .lead {
    width: min(100%, 358px);
    max-width: min(100%, 358px);
    font-size: 17px;
    line-height: 1.48;
    overflow-wrap: anywhere;
  }
  .actions { display: grid; width: 100%; }
  .primary, .secondary { width: 100%; }
  .proof {
    gap: 8px;
  }
  .proof span {
    min-height: 52px;
    padding: 11px 12px;
  }
  .quick-paths, .trust-dock, .trust-metrics, .problem-finder, .pricing, .faq, .section, .build-band, .contact, .area-strip, .scroll-lab {
    width: min(calc(100% - 32px), 358px);
  }
  .quick-paths a {
    min-height: 92px;
    padding: 18px;
  }
  .area-strip span {
    min-height: 46px;
    font-size: 12px;
  }
  .trust-dock article {
    padding: 18px;
  }
  .trust-dock strong {
    font-size: 18px;
  }
  .trust-metrics {
    grid-template-columns: 1fr;
  }
  .trust-metrics div {
    padding: 18px;
  }
  .problem-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .problem-options button {
    padding: 0 10px;
    font-size: 14px;
  }
  .finder-result {
    padding: 22px;
  }
  .finder-result h3 {
    font-size: 30px;
  }
  .finder-result p {
    font-size: 16px;
  }
  .section-transition {
    height: 54px;
  }
  .section-transition.compact {
    height: 38px;
  }
  .section-copy {
    margin-bottom: 24px;
  }
  h2 {
    font-size: clamp(32px, 10vw, 46px);
  }
  .scroll-lab {
    min-height: auto;
    padding: 34px 18px;
  }
  .floating-report {
    width: 100%;
  }
  .contact {
    padding: 56px 0 74px;
  }
  .faq summary {
    min-height: 58px;
    padding: 0 16px;
  }
  .faq details p {
    margin: -4px 16px 18px;
  }
  .contact form { padding: 18px; }
  .floating-call {
    display: none;
  }
  .whatsapp-float {
    display: none;
  }
  .mobile-action-bar {
    display: grid;
  }
}

@media (max-width: 760px) {
  .area-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-strip span:nth-child(2n) { border-right: 0; }
}

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

  .hero-media,
  .diagnosis-card,
  .reveal-block,
  .quick-paths a,
  .trust-dock article,
  .trust-metrics div,
  .price-card,
  .faq details,
  .service-grid article,
  .steps article,
  .build-list article {
    opacity: 1;
    transform: none !important;
  }
}
