:root {
  --deep: #031225;
  --navy: #071f3f;
  --slate: #123b69;
  --blue: #087de8;
  --cyan: #12c7ee;
  --yellow: #f7bd20;
  --warm: #f7f8f6;
  --mist: #e9eef3;
  --ink: #142132;
  --muted: #607084;
  --line: rgba(141, 183, 221, 0.25);
  --pad: clamp(1.1rem, 4.8vw, 5.5rem);
  --story-progress: 0;
  --s1: 1;
  --s2: 0;
  --s3: 0;
  --s4: 0;
  --s5: 0;
  --s6: 0;
  --s7: 0;
  --s8: 0;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--deep);
  color: #f7fbff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: 18px;
  line-height: 1.55;
}
button,
input,
select,
textarea {
  font: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
a {
  color: inherit;
}
:focus-visible {
  outline: 3px solid #3ad5ff;
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.7rem 1rem;
  background: white;
  color: var(--navy);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(7, 31, 63, 0.14);
  background: rgba(247, 248, 246, 0.94);
  color: var(--navy);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(3, 18, 37, 0.08);
}
.brand {
  width: 150px;
  height: 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
}
.brand img {
  width: 145px;
  height: auto;
  display: block;
}
.program-label {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  color: #526a83;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.site-header nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #24384e;
  font-size: 0.72rem;
  font-weight: 780;
  text-decoration: none;
}
.site-header nav a:hover {
  color: var(--blue);
}
.site-header .nav-cta {
  padding: 0 1rem;
  border: 1px solid #075eb7;
  background: #075eb7;
  color: white;
}
.site-header .nav-cta:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.story {
  position: relative;
  isolation: isolate;
  background: var(--deep);
  color: #f7fbff;
}
.story-stage {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  width: 100%;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  background: linear-gradient(145deg, #020b18, #061a32 54%, #071624);
}
.js .story.is-active .story-stage {
  position: fixed;
  top: 0;
}
.js .story.is-after .story-stage {
  top: auto;
  bottom: 0;
}
.story-stage::after {
  content: "";
  position: absolute;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(3, 18, 37, 0.98) 0 7%,
    rgba(3, 18, 37, 0.84) 31%,
    rgba(3, 18, 37, 0.16) 58%,
    rgba(3, 18, 37, 0.05)
  );
}
.stage-glow {
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(8, 125, 232, 0.24),
      transparent 32%
    ),
    radial-gradient(
      circle at 55% 110%,
      rgba(18, 199, 238, 0.12),
      transparent 47%
    );
  filter: blur(14px);
}
.stage-grid {
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: -33%;
  height: 80%;
  background-image:
    linear-gradient(rgba(120, 173, 218, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 173, 218, 0.1) 1px, transparent 1px);
  background-size: 7% 12%;
  transform: perspective(700px) rotateX(66deg);
  transform-origin: top;
}
.scene-deck {
  position: absolute;
  inset: 0;
  perspective: 1100px;
}
.motion-scene {
  position: absolute;
  z-index: 3;
  left: 57%;
  top: 50%;
  width: min(42vw, 650px);
  height: min(66vh, 620px);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.scene-1 {
  opacity: 1;
}
.js .scene-1 {
  opacity: var(--s1);
  transform: translate(-50%, -50%) scale(calc(0.9 + var(--s1) * 0.1));
}
.js .scene-2 {
  opacity: var(--s2);
  transform: translate(-50%, -50%) scale(calc(0.9 + var(--s2) * 0.1));
}
.js .scene-3 {
  opacity: var(--s3);
  transform: translate(-50%, -50%) scale(calc(0.9 + var(--s3) * 0.1));
}
.js .scene-4 {
  opacity: var(--s4);
  transform: translate(-50%, -50%) scale(calc(0.9 + var(--s4) * 0.1));
}
.js .scene-5 {
  opacity: var(--s5);
  transform: translate(-50%, -50%) scale(calc(0.9 + var(--s5) * 0.1));
}
.js .scene-6 {
  opacity: var(--s6);
  transform: translate(-50%, -50%) scale(calc(0.9 + var(--s6) * 0.1));
}
.js .scene-7 {
  opacity: var(--s7);
  transform: translate(-50%, -50%) scale(calc(0.9 + var(--s7) * 0.1));
}
.js .scene-8 {
  opacity: var(--s8);
  transform: translate(-50%, -50%) scale(calc(0.9 + var(--s8) * 0.1));
}

/* Scene 1: traffic enters, attribution is missing. */
.source {
  position: absolute;
  left: 1%;
  width: 122px;
  padding: 0.65rem 0.75rem;
  border: 1px solid #497aa4;
  background: rgba(7, 31, 63, 0.86);
  color: #c8e5ff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.23);
}
.source-ads {
  top: 17%;
}
.source-search {
  top: 43%;
}
.source-referral {
  top: 69%;
}
.source-line {
  position: absolute;
  left: 20%;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, #31c7ff, rgba(49, 199, 255, 0.1));
  transform-origin: left;
  transform: scaleX(calc(0.28 + var(--s1) * 0.72));
}
.line-one {
  top: 22%;
  transform: rotate(20deg) scaleX(calc(0.28 + var(--s1) * 0.72));
}
.line-two {
  top: 48%;
}
.line-three {
  top: 74%;
  transform: rotate(-20deg) scaleX(calc(0.28 + var(--s1) * 0.72));
}
.lost-meter {
  position: absolute;
  right: 1%;
  top: 21%;
  bottom: 21%;
  width: 43%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 12px solid #253f57;
  background: linear-gradient(145deg, #0b2845, #061526);
  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.45),
    inset 0 0 45px rgba(8, 125, 232, 0.12);
}
.lost-meter::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(130, 186, 232, 0.3);
}
.lost-meter span,
.lost-meter small {
  color: #8fb4d2;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-align: center;
}
.lost-meter strong {
  color: transparent;
  -webkit-text-stroke: 2px #36c7ff;
  font-size: clamp(7rem, 14vw, 12rem);
  line-height: 0.68;
  text-shadow: 0 0 38px rgba(18, 199, 238, 0.24);
}
.lost-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 7px rgba(18, 199, 238, 0.12),
    0 0 26px var(--cyan);
}
.dot-one {
  left: calc(48% + var(--s1) * 4%);
  top: 36%;
}
.dot-two {
  left: calc(51% + var(--s1) * 3%);
  top: 52%;
}
.dot-three {
  left: calc(47% + var(--s1) * 5%);
  top: 67%;
}

/* Scene 2: a frustrated person tries to use a poor phone page. */
.bad-phone {
  position: absolute;
  right: 7%;
  top: 7%;
  width: 42%;
  height: 79%;
  border: 8px solid #7597ae;
  border-radius: 28px;
  background: #ebf1f3;
  color: var(--ink);
  transform: rotate(calc(-4deg + var(--s2) * 4deg));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.phone-speaker {
  position: absolute;
  z-index: 3;
  left: 38%;
  right: 38%;
  top: 2%;
  height: 5px;
  border-radius: 8px;
  background: #60798b;
}
.tiny-page {
  position: absolute;
  inset: 9% 6% 18%;
  padding: 6%;
  border: 1px solid #bac6cd;
  background: white;
}
.tiny-page::before {
  content: "DOOR SERVICE";
  display: block;
  margin-bottom: 18%;
  color: #1b3450;
  font-size: 0.38rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.tiny-page i {
  display: block;
  width: 82%;
  height: 5px;
  margin: 12px 0;
  background: #cbd3d8;
}
.tiny-page i:nth-child(2) {
  width: 55%;
}
.tiny-page button {
  position: absolute;
  right: 7%;
  bottom: 8%;
  min-width: 0;
  min-height: 0;
  padding: 3px 6px;
  border: 0;
  background: #748697;
  color: white;
  font-size: 5px;
}
.load-wheel {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 48px;
  height: 48px;
  border: 5px solid #c9d3db;
  border-top-color: #d56155;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(calc(var(--s2) * 280deg));
}
.bad-phone > span {
  position: absolute;
  bottom: 5%;
  padding: 0.2rem 0.35rem;
  background: #d45d52;
  color: white;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.bad-phone > span:first-of-type {
  left: 7%;
}
.bad-phone > span:last-of-type {
  right: 7%;
}
.stick-person {
  position: absolute;
  left: 2%;
  bottom: 3%;
  width: 47%;
  height: 76%;
}
.stick-person i {
  position: absolute;
  display: block;
  background: #cde7fa;
  box-shadow: 0 0 16px rgba(89, 180, 245, 0.18);
}
.stick-person .head {
  left: 39%;
  top: 4%;
  width: 70px;
  height: 70px;
  border: 7px solid #cde7fa;
  border-radius: 50%;
  background: #071b30;
}
.stick-person .head::before,
.stick-person .head::after {
  content: "";
  position: absolute;
  top: 23px;
  width: 8px;
  height: 4px;
  background: #cde7fa;
  transform: rotate(18deg);
}
.stick-person .head::before {
  left: 13px;
}
.stick-person .head::after {
  right: 13px;
  transform: rotate(-18deg);
}
.stick-person .body {
  left: 50%;
  top: 25%;
  width: 8px;
  height: 40%;
  transform: translateX(-50%) rotate(calc(-3deg + var(--s2) * -5deg));
  transform-origin: top;
}
.stick-person .arm {
  top: 33%;
  width: 41%;
  height: 7px;
  transform-origin: 0 50%;
}
.stick-person .arm-left {
  left: 50%;
  transform: rotate(calc(151deg + var(--s2) * 15deg));
}
.stick-person .arm-right {
  left: 50%;
  transform: rotate(calc(27deg - var(--s2) * 15deg));
}
.stick-person .leg {
  left: 50%;
  top: 63%;
  width: 42%;
  height: 8px;
  transform-origin: 0 50%;
}
.stick-person .leg-left {
  transform: rotate(115deg);
}
.stick-person .leg-right {
  transform: rotate(64deg);
}
.stress {
  position: absolute;
  color: #ff806b;
  font-size: 1.8rem;
  font-style: normal;
  transform: scale(var(--s2));
}
.stress-one {
  left: 22%;
  top: 3%;
}
.stress-two {
  left: 73%;
  top: 9%;
}
.stress-three {
  left: 10%;
  top: 22%;
}
.exit-tag {
  position: absolute;
  left: 11%;
  bottom: 1%;
  padding: 0.45rem 0.8rem;
  border: 1px solid #d5685b;
  color: #ff9a89;
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  transform: translateX(calc((1 - var(--s2)) * -30px));
}

/* Scene 3: dated and copycat sites. */
.browser {
  position: absolute;
  padding: 38px 22px 20px;
  border: 1px solid #607d94;
  background: #edf1f3;
  color: #172737;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}
.browser header {
  position: absolute;
  inset: 0 0 auto;
  height: 27px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 10px;
  background: #29445a;
}
.browser header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9eb2c0;
}
.browser span {
  display: block;
  height: 7px;
  margin-top: 14px;
  background: #c7d0d5;
}
.browser-old {
  z-index: 3;
  left: 3%;
  top: 9%;
  width: 58%;
  height: 55%;
  transform: translateX(calc((1 - var(--s3)) * -35px)) rotate(-4deg);
  font-family: "Times New Roman", serif;
}
.browser-old strong {
  display: block;
  padding: 10px;
  background: #353d8d;
  color: #f2df35;
  font-size: 1rem;
  text-align: center;
}
.browser-old small {
  position: absolute;
  right: 8%;
  bottom: 8%;
  color: #9a2f2f;
  font-size: 0.55rem;
}
.browser-copy {
  width: 48%;
  height: 47%;
  background: #f5f7f9;
}
.browser-copy b {
  display: block;
  padding: 12% 4%;
  color: #264969;
  text-align: center;
}
.browser-copy button {
  margin-top: 11%;
  border: 0;
  padding: 0.4rem 0.7rem;
  border-radius: 18px;
  background: #2a78bb;
  color: white;
  font-size: 0.48rem;
}
.copy-one {
  z-index: 4;
  right: 4%;
  top: 21%;
  transform: translateX(calc((1 - var(--s3)) * 38px)) rotate(3deg);
}
.copy-two {
  z-index: 2;
  right: 13%;
  bottom: 5%;
  transform: translateY(calc((1 - var(--s3)) * 35px)) rotate(-2deg);
  filter: brightness(0.82);
}
.same-stamp {
  position: absolute;
  z-index: 8;
  left: 25%;
  bottom: 3%;
  padding: 0.8rem 1.1rem;
  border: 5px solid #f2b424;
  color: #f2c448;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  transform: rotate(-8deg) scale(var(--s3));
}

/* Scene 4: event map and formula. */
.tracking-map {
  position: absolute;
  inset: 8% 2% 5%;
}
.track-node {
  position: absolute;
  z-index: 3;
  width: 150px;
  min-height: 86px;
  display: grid;
  place-content: center;
  gap: 0.35rem;
  border: 1px solid #547b9d;
  background: rgba(7, 31, 63, 0.92);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.track-node span {
  color: #d5ebff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.track-node b {
  color: #69cfff;
  font-size: 0.48rem;
  letter-spacing: 0.12em;
}
.node-visit {
  left: 2%;
  top: 38%;
}
.node-call {
  left: 39%;
  top: 5%;
}
.node-form {
  left: 39%;
  bottom: 5%;
}
.node-rate {
  right: 0;
  top: 35%;
  width: 200px;
  min-height: 112px;
  border-color: #24bde2;
  box-shadow: 0 0 70px rgba(18, 199, 238, 0.16);
}
.track-path {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, #1388e8, #31d6f3);
  transform-origin: left;
}
.path-a {
  left: 25%;
  top: 48%;
  width: 22%;
  transform: rotate(-34deg) scaleX(var(--s4));
}
.path-b {
  left: 25%;
  top: 50%;
  width: 22%;
  transform: rotate(34deg) scaleX(var(--s4));
}
.path-c {
  left: 61%;
  top: 50%;
  width: 22%;
  transform: scaleX(var(--s4));
}
.ga-badge {
  position: absolute;
  z-index: 6;
  left: 3%;
  top: 2%;
  width: 112px;
  height: 112px;
  display: grid;
  place-content: center;
  border: 1px solid #347aaf;
  border-radius: 50%;
  background: #082a4d;
  text-align: center;
  box-shadow:
    0 0 0 8px rgba(8, 125, 232, 0.09),
    0 0 42px rgba(8, 125, 232, 0.22);
  transform: rotate(calc((1 - var(--s4)) * -20deg));
}
.ga-badge small,
.ga-badge span {
  font-size: 0.42rem;
  letter-spacing: 0.12em;
  color: #8fb7d8;
}
.ga-badge strong {
  color: #4ecfff;
  font-size: 1.65rem;
  line-height: 1.1;
}

/* Scene 5: a phone-first site is assembled over 14 days. */
.build-phone {
  position: absolute;
  left: 29%;
  top: 3%;
  width: 43%;
  height: 79%;
  border: 9px solid #7897ab;
  border-radius: 28px;
  background: #f8fafb;
  color: var(--ink);
  overflow: hidden;
  transform: translateY(calc((1 - var(--s5)) * 35px));
  box-shadow: 0 32px 95px rgba(0, 0, 0, 0.5);
}
.build-top {
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  background: #fff;
}
.build-top i {
  width: 27%;
  height: 8px;
  background: #0d4478;
}
.build-top b {
  width: 18%;
  height: 11px;
  background: #087de8;
}
.build-hero {
  height: 48%;
  padding: 12% 8%;
  background: linear-gradient(145deg, #082443, #0b5288);
  color: white;
}
.build-hero span {
  display: block;
  width: 28%;
  height: 4px;
  margin-bottom: 10%;
  background: #30c7ef;
}
.build-hero strong {
  display: block;
  font-size: clamp(0.8rem, 1.8vw, 1.35rem);
  line-height: 1.05;
}
.build-hero button {
  margin-top: 13%;
  min-height: 32px;
  border: 0;
  padding: 0 0.7rem;
  background: #f5bd27;
  color: #10233a;
  font-size: 0.45rem;
  font-weight: 900;
}
.build-routes {
  height: 38%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  padding: 9% 7%;
}
.build-routes i {
  border: 1px solid #c2ced8;
  background: linear-gradient(#e9eef2 0 32%, white 32%);
  transform: translateY(calc((1 - var(--s5)) * 22px));
}
.build-routes i:nth-child(2) {
  transform: translateY(calc((1 - var(--s5)) * 34px));
}
.build-routes i:nth-child(3) {
  transform: translateY(calc((1 - var(--s5)) * 46px));
}
.build-line {
  position: absolute;
  left: 5%;
  right: 4%;
  bottom: 2%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #aed4f3;
  font-size: 0.55rem;
  font-weight: 900;
}
.build-line i {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #168fec, #27cee9);
  transform-origin: left;
  transform: scaleX(var(--s5));
}
.build-stamp {
  position: absolute;
  right: 1%;
  top: 23%;
  padding: 0.7rem 0.9rem;
  border: 4px solid #3dccba;
  color: #69e1cf;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  transform: rotate(7deg) scale(var(--s5));
}

/* Scene 6: urgent and planned buyers take separate paths. */
.visitor-node {
  position: absolute;
  left: 4%;
  top: 42%;
  width: 112px;
  height: 112px;
  display: grid;
  place-content: center;
  border: 1px solid #4f88b5;
  border-radius: 50%;
  background: #09294a;
  color: #d7edff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  box-shadow: 0 0 40px rgba(8, 125, 232, 0.18);
}
.route-line {
  position: absolute;
  z-index: -1;
  left: 21%;
  width: 23%;
  height: 2px;
  background: linear-gradient(90deg, #168fec, #34d5ef);
  transform-origin: left;
}
.urgent-line {
  top: 47%;
  transform: rotate(-32deg) scaleX(var(--s6));
}
.planned-line {
  top: 50%;
  transform: rotate(32deg) scaleX(var(--s6));
}
.intent-card {
  position: absolute;
  left: 42%;
  width: 47%;
  min-height: 140px;
  padding: 1.15rem;
  border: 1px solid #4d7699;
  background: rgba(7, 31, 63, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  transform: translateX(calc((1 - var(--s6)) * 35px));
}
.intent-card small {
  color: #79a7ca;
  font-size: 0.49rem;
  letter-spacing: 0.13em;
}
.intent-card strong {
  display: block;
  margin: 0.5rem 0 1rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.intent-card span {
  display: inline-block;
  padding: 0.38rem 0.55rem;
  background: #0d78d6;
  color: white;
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.urgent-card {
  top: 8%;
  border-left: 5px solid #f3bb26;
}
.urgent-card span {
  background: #f3bb26;
  color: #142132;
}
.planned-card {
  bottom: 8%;
  border-left: 5px solid #24c9df;
}
.route-result {
  position: absolute;
  right: 1%;
  padding: 0.3rem 0.45rem;
  color: #77dcf1;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.result-call {
  top: 27%;
}
.result-form {
  bottom: 27%;
}

/* Scene 7: old and new sites use the same rate formula. */
.test-window {
  position: absolute;
  top: 15%;
  width: 42%;
  height: 58%;
  padding: 2rem 1.3rem;
  border: 1px solid #567993;
  background: linear-gradient(145deg, #102d47, #061829);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.38);
  text-align: center;
}
.old-window {
  left: 3%;
  transform: translateX(calc((1 - var(--s7)) * -30px));
}
.new-window {
  right: 3%;
  transform: translateX(calc((1 - var(--s7)) * 30px));
  border-color: #2fbddf;
}
.test-window small {
  color: #83a8c5;
  font-size: 0.5rem;
  letter-spacing: 0.14em;
}
.test-window strong {
  display: block;
  margin: 0.65rem 0 2.3rem;
  color: #e2f2ff;
  font-size: 1.3rem;
}
.rate-formula {
  padding: 1.1rem 0.5rem;
  border-top: 1px solid #4d6f88;
  border-bottom: 1px solid #4d6f88;
  color: #9ed6ff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.rate-formula i {
  color: #5d7b92;
  font-style: normal;
}
.measure-beam {
  position: absolute;
  z-index: 5;
  left: 4%;
  right: 4%;
  top: calc(20% + var(--s7) * 44%);
  height: 2px;
  background: #39d4ed;
  box-shadow: 0 0 20px #25bde3;
}
.measure-beam span {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  padding: 0.2rem 0.5rem;
  background: #07213b;
  color: #84def0;
  font-size: 0.45rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.day-counter {
  position: absolute;
  left: 50%;
  bottom: 1%;
  transform: translateX(-50%);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.day-counter strong {
  color: transparent;
  -webkit-text-stroke: 1px #55cdf2;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.8;
}
.day-counter span {
  color: #8bb0cc;
  font-size: 0.5rem;
  letter-spacing: 0.14em;
}

/* Scene 8: domain control stays with the client; the outcome branches. */
.domain-control {
  position: absolute;
  left: 50%;
  top: 7%;
  width: 54%;
  padding: 1.3rem;
  transform: translateX(-50%);
  border: 1px solid #55a1d7;
  background: #092b4e;
  text-align: center;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}
.domain-control small,
.domain-control span {
  color: #8cb8d8;
  font-size: 0.49rem;
  letter-spacing: 0.13em;
}
.domain-control strong {
  display: block;
  margin: 0.5rem 0;
  color: white;
  font-size: 1.5rem;
}
.choice-rail {
  position: absolute;
  left: 50%;
  top: 31%;
  bottom: 31%;
  width: 2px;
  background: #4f7b9d;
}
.choice-rail::before,
.choice-rail::after {
  content: "";
  position: absolute;
  top: 99%;
  width: 230px;
  height: 2px;
  background: #4f7b9d;
  transform-origin: left;
}
.choice-rail::before {
  transform: rotate(151deg) scaleX(var(--s8));
}
.choice-rail::after {
  transform: rotate(29deg) scaleX(var(--s8));
}
.choice-rail b {
  position: absolute;
  left: -8px;
  top: calc(var(--s8) * 86%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #39d3eb;
  box-shadow:
    0 0 0 8px rgba(57, 211, 235, 0.12),
    0 0 24px #39d3eb;
}
.choice {
  position: absolute;
  bottom: 13%;
  width: 43%;
  min-height: 112px;
  padding: 1.2rem;
  border: 1px solid #526f86;
  background: rgba(7, 27, 47, 0.94);
  transform: translateY(calc((1 - var(--s8)) * 30px));
}
.choice-keep {
  left: 2%;
  border-top: 5px solid #49ccb0;
}
.choice-restore {
  right: 2%;
  border-top: 5px solid #7fa4c0;
}
.choice span {
  color: #7fa5c1;
  font-size: 0.48rem;
  letter-spacing: 0.13em;
}
.choice strong {
  display: block;
  margin-top: 0.5rem;
  color: #e5f3ff;
  font-size: 0.8rem;
}
.zero-stamp {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0.9rem;
  border: 5px solid #f2bb28;
  color: #f4ca59;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-7deg) scale(var(--s8));
}

.story-progress {
  position: absolute;
  z-index: 40;
  left: var(--pad);
  bottom: 1.45rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #7f9bb1;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.story-progress > i {
  position: relative;
  width: 92px;
  height: 1px;
  overflow: hidden;
  background: #39556b;
}
.story-progress > i b {
  position: absolute;
  inset: 0;
  background: #27bce8;
  transform: scaleX(var(--story-progress));
  transform-origin: left;
}
.skip-story {
  position: absolute;
  z-index: 41;
  right: var(--pad);
  bottom: 1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #8da8bc;
  font-size: 0.6rem;
  font-weight: 750;
}
.story-timeline {
  position: relative;
  z-index: 50;
}
.story-beat {
  min-height: 100svh;
  min-height: max(100svh, 700px);
  display: flex;
  align-items: center;
  padding: 8.5rem var(--pad) 6rem;
  pointer-events: none;
}
.beat-copy {
  width: min(42vw, 650px);
  pointer-events: auto;
}
.eyebrow,
.chapter {
  margin-bottom: 1rem;
  color: #6bc9ff;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.beat-copy h1 {
  max-width: 700px;
  margin-bottom: 1.35rem;
  font-size: clamp(2.7rem, 4.8vw, 5.1rem);
}
.beat-copy h2 {
  max-width: 620px;
  margin-bottom: 1.3rem;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
}
.beat-copy > p:not(.eyebrow):not(.chapter):not(.conditions) {
  max-width: 620px;
  color: #c0d0df;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.7rem;
  padding: 0.85rem 1.05rem;
  border: 1px solid #55baf5;
  background: #075fae;
  color: white;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.button:hover {
  border-color: #4fd3f2;
  background: #0a5ca6;
}
.button span {
  font-size: 1rem;
}
.button-light {
  border-color: #85cfff;
  background: #f4f8fb;
  color: #09284a;
}
.button-light:hover {
  background: #dbeeff;
  color: #09284a;
}
.conditions {
  max-width: 650px;
  margin-top: 1.2rem;
  color: #8ea7ba;
  font-size: 0.7rem;
  line-height: 1.5;
}
.conditions strong {
  color: #d7e8f5;
}

.light-section {
  background: var(--warm);
  color: var(--ink);
}
.section-heading {
  max-width: 760px;
}
.section-heading h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 5.8vw, 6.2rem);
}
.section-heading > p:last-child {
  max-width: 680px;
  color: #506174;
  font-size: 1.08rem;
}
.eyebrow.dark {
  color: #086dbf;
}
.niche-section {
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: #bdcad4;
  border: 1px solid #bdcad4;
}
.niche-grid article {
  min-height: 290px;
  padding: clamp(1.4rem, 3vw, 2.8rem);
  background: white;
}
.niche-grid span {
  color: #0873c8;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}
.niche-grid h3 {
  margin: 3.4rem 0 1rem;
  font-size: 2rem;
}
.niche-grid p {
  color: #57697b;
  font-size: 0.96rem;
}

.offer-section {
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  background: linear-gradient(145deg, #05172d, #082747);
}
.section-heading.inverse > p:last-child {
  color: #b6c9d9;
}
.offer-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  border: 1px solid #315372;
  background: #315372;
}
.offer-steps article {
  min-height: 245px;
  padding: 2rem;
  background: rgba(5, 25, 47, 0.94);
}
.offer-steps span {
  color: #59c6f5;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.offer-steps h3 {
  margin: 3rem 0 1rem;
  font-size: 1.6rem;
}
.offer-steps p {
  color: #a9bfd0;
  font-size: 0.94rem;
}
.guarantee-card {
  max-width: 1080px;
  margin: 5rem auto 0;
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid #4daadd;
  background: #f4f7f8;
  color: var(--ink);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22);
}
.guarantee-card h3 {
  margin-bottom: 1.5rem;
  color: #09294a;
  font-size: clamp(2rem, 4vw, 4.1rem);
}
.guarantee-card .eyebrow {
  color: #075fae;
}
.guarantee-card > p:last-child {
  color: #5b6c7c;
  font-size: 0.85rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
}
.faq-section .section-heading h2 {
  position: sticky;
  top: 115px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}
.faq-list {
  border-top: 1px solid #bdc9d2;
}
.faq-list details {
  border-bottom: 1px solid #bdc9d2;
}
.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.2rem;
  cursor: pointer;
  color: #17283a;
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  color: #0876cf;
  font-size: 1.5rem;
  font-weight: 400;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  max-width: 700px;
  padding: 0 2.2rem 1.5rem 0;
  color: #596a79;
}

.review-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  background: #e8eef2;
  color: var(--ink);
}
.review-copy h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}
.review-copy > p {
  color: #526476;
}
.review-copy ul {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #bbc8d2;
}
.review-copy li {
  padding: 1rem 0 1rem 1.7rem;
  border-bottom: 1px solid #bbc8d2;
  position: relative;
  font-size: 0.9rem;
}
.review-copy li::before {
  content: "↘";
  position: absolute;
  left: 0;
  color: #0874cb;
  font-weight: 900;
}
.booking-option {
  display: grid;
  justify-items: start;
  gap: 0.35rem;
  margin: 2rem 0;
  color: #26394c !important;
  font-size: 0.82rem;
  font-weight: 750;
}
.booking-option .button {
  margin-top: 0;
}
.form-setup {
  padding: 1rem;
  border-left: 4px solid #b66b20;
  background: #fff4df;
  color: #6a4822 !important;
  font-size: 0.82rem;
}
.lead-form {
  padding: clamp(1.4rem, 4vw, 3.5rem);
  background: white;
  box-shadow: 0 28px 80px rgba(15, 40, 62, 0.13);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  margin-bottom: 1.15rem;
}
.field label {
  display: block;
  margin-bottom: 0.35rem;
  color: #26394c;
  font-size: 0.75rem;
  font-weight: 800;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #9baebb;
  border-radius: 0;
  padding: 0.7rem 0.8rem;
  background: #fbfcfc;
  color: #17283a;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field small {
  display: block;
  margin-top: 0.3rem;
  color: #596b7a;
  font-size: 0.68rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #0878d5;
  outline: 3px solid rgba(8, 120, 213, 0.15);
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
}
.turnstile-slot {
  min-height: 68px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.turnstile-slot p {
  margin: 0;
  color: #596b7a;
  font-size: 0.72rem;
}
.form-status {
  margin: 0 0 1rem;
  padding: 0.75rem;
  border: 1px solid #95aabb;
  background: #f0f4f6;
  color: #273b4f;
  font-size: 0.78rem;
}
.submit-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}
.submit-button:disabled {
  cursor: not-allowed;
  background: #8795a1;
  color: #eef1f3;
}
.form-privacy {
  margin: 0.9rem 0 0;
  color: #596b77;
  font-size: 0.68rem;
}

.site-footer {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem var(--pad);
  border-top: 1px solid #284158;
  background: #020b18;
}
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-brand strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.footer-brand span {
  margin-top: 0.3rem;
  color: #849db1;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}
.site-footer p {
  margin: 0;
  color: #a4b7c6;
  font-size: 0.72rem;
}
.site-footer a:hover {
  color: white;
}
.mobile-action {
  display: none;
}

.legal-page {
  min-height: 100svh;
  background: var(--warm);
  color: var(--ink);
}
.legal-main {
  width: min(860px, calc(100% - 2.2rem));
  margin: 0 auto;
  padding: 10rem 0 7rem;
}
.legal-main h1 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 8vw, 6.5rem);
}
.legal-main h2 {
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}
.legal-main p {
  max-width: 760px;
  color: #526476;
}
.legal-main .button {
  color: white;
}
.legal-alert {
  padding: 1.1rem;
  border-left: 4px solid #b66b20;
  background: #fff0d5;
  color: #674621 !important;
}
.short-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5rem;
}

@media (max-width: 1100px) {
  .program-label {
    display: none;
  }
  .motion-scene {
    left: 66%;
    width: min(51vw, 600px);
  }
  .beat-copy {
    width: min(47vw, 590px);
  }
  .story-stage::after {
    background: linear-gradient(
      90deg,
      rgba(3, 18, 37, 0.98),
      rgba(3, 18, 37, 0.78) 39%,
      rgba(3, 18, 37, 0.05) 72%
    );
  }
  .offer-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 68px;
  }
  body {
    font-size: 17px;
    padding-bottom: 64px;
  }
  .site-header {
    height: 68px;
    padding: 0 1rem;
  }
  .brand {
    width: 112px;
    height: 62px;
  }
  .brand img {
    width: 110px;
  }
  .site-header nav > a:not(.nav-cta) {
    display: none;
  }
  .site-header .nav-cta {
    min-height: 44px;
    padding: 0 0.75rem;
    font-size: 0.64rem;
  }
  .story-stage {
    height: 100svh;
    min-height: 650px;
  }
  .story-stage::after {
    background: linear-gradient(
      180deg,
      rgba(3, 18, 37, 0.04) 0 37%,
      rgba(3, 18, 37, 0.74) 51%,
      rgba(3, 18, 37, 0.99) 72%
    );
  }
  .stage-grid {
    bottom: 19%;
    height: 48%;
    opacity: 0.55;
  }
  .motion-scene {
    left: 50%;
    top: 28%;
    width: min(94vw, 540px);
    height: min(43svh, 370px);
    transform: translate(-50%, -50%) scale(0.86);
  }
  .js .motion-scene {
    transform: translate(-50%, -50%) scale(calc(0.84 + var(--s1, 0) * 0.06));
  }
  .js .scene-2 {
    transform: translate(-50%, -50%) scale(calc(0.84 + var(--s2) * 0.06));
  }
  .js .scene-3 {
    transform: translate(-50%, -50%) scale(calc(0.84 + var(--s3) * 0.06));
  }
  .js .scene-4 {
    transform: translate(-50%, -50%) scale(calc(0.84 + var(--s4) * 0.06));
  }
  .js .scene-5 {
    transform: translate(-50%, -50%) scale(calc(0.84 + var(--s5) * 0.06));
  }
  .js .scene-6 {
    transform: translate(-50%, -50%) scale(calc(0.84 + var(--s6) * 0.06));
  }
  .js .scene-7 {
    transform: translate(-50%, -50%) scale(calc(0.84 + var(--s7) * 0.06));
  }
  .js .scene-8 {
    transform: translate(-50%, -50%) scale(calc(0.84 + var(--s8) * 0.06));
  }
  .source {
    width: 92px;
    padding: 0.45rem;
    font-size: 0.48rem;
  }
  .lost-meter {
    width: 42%;
    right: 2%;
    border-width: 7px;
  }
  .lost-meter strong {
    font-size: 6rem;
  }
  .bad-phone {
    right: 6%;
    width: 39%;
    border-width: 6px;
    border-radius: 20px;
  }
  .stick-person {
    left: 5%;
    width: 43%;
  }
  .stick-person .head {
    width: 52px;
    height: 52px;
    border-width: 5px;
  }
  .stick-person .head::before,
  .stick-person .head::after {
    top: 17px;
  }
  .exit-tag {
    bottom: -2%;
    font-size: 0.45rem;
  }
  .browser {
    padding: 29px 14px 14px;
  }
  .same-stamp {
    font-size: 0.72rem;
  }
  .track-node {
    width: 105px;
    min-height: 70px;
  }
  .node-rate {
    width: 145px;
  }
  .track-node span {
    font-size: 0.5rem;
  }
  .track-node b {
    font-size: 0.38rem;
  }
  .ga-badge {
    width: 82px;
    height: 82px;
  }
  .ga-badge strong {
    font-size: 1.2rem;
  }
  .build-phone {
    left: 31%;
    width: 39%;
    border-width: 6px;
    border-radius: 19px;
  }
  .build-stamp {
    font-size: 0.55rem;
  }
  .visitor-node {
    width: 82px;
    height: 82px;
    font-size: 0.48rem;
  }
  .intent-card {
    min-height: 105px;
    padding: 0.75rem;
  }
  .intent-card strong {
    margin: 0.3rem 0 0.5rem;
    font-size: 0.75rem;
  }
  .intent-card span {
    font-size: 0.4rem;
  }
  .test-window {
    padding: 1.1rem 0.7rem;
  }
  .test-window strong {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .rate-formula {
    font-size: 0.55rem;
  }
  .domain-control {
    padding: 0.75rem;
  }
  .domain-control strong {
    font-size: 1rem;
  }
  .choice {
    min-height: 84px;
    padding: 0.75rem;
  }
  .choice strong {
    font-size: 0.58rem;
  }
  .zero-stamp {
    font-size: 0.55rem;
  }
  .story-progress,
  .skip-story {
    display: none;
  }
  .story-beat {
    min-height: max(100svh, 760px);
    align-items: flex-end;
    padding: 48svh 1.1rem 6.5rem;
  }
  .hero-beat {
    min-height: max(112svh, 900px);
  }
  .beat-copy {
    width: 100%;
    max-width: 620px;
  }
  .beat-copy h1 {
    margin-bottom: 0.85rem;
    font-size: clamp(2.05rem, 10.3vw, 3.2rem);
  }
  .beat-copy h2 {
    margin-bottom: 0.85rem;
    font-size: clamp(2rem, 10vw, 3.1rem);
  }
  .beat-copy > p:not(.eyebrow):not(.chapter):not(.conditions) {
    font-size: 0.96rem;
    line-height: 1.45;
  }
  .eyebrow,
  .chapter {
    margin-bottom: 0.6rem;
    font-size: 0.57rem;
  }
  .conditions {
    margin-top: 0.8rem;
    font-size: 0.61rem;
  }
  .button {
    min-height: 50px;
    margin-top: 0.35rem;
    padding: 0.7rem 0.85rem;
  }
  .section-heading h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .niche-section,
  .offer-section,
  .faq-section,
  .review-section {
    padding: 5.5rem 1.1rem;
  }
  .niche-grid,
  .offer-steps {
    grid-template-columns: 1fr;
  }
  .niche-grid {
    margin-top: 2.5rem;
  }
  .niche-grid article {
    min-height: 220px;
  }
  .niche-grid h3 {
    margin-top: 2.4rem;
  }
  .offer-steps {
    margin-top: 2.5rem;
  }
  .offer-steps article {
    min-height: 205px;
  }
  .guarantee-card {
    margin-top: 3rem;
    padding: 1.5rem;
  }
  .faq-section {
    display: block;
  }
  .faq-section .section-heading h2 {
    position: static;
    margin-bottom: 2.5rem;
  }
  .review-section {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lead-form {
    padding: 1.2rem;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 1.1rem;
  }
  .mobile-action {
    position: fixed;
    z-index: 90;
    inset: auto 0 0;
    display: block;
    padding: 0.55rem 0.7rem;
    border-top: 1px solid #284b69;
    background: rgba(3, 18, 37, 0.96);
    backdrop-filter: blur(12px);
  }
  .mobile-action a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.85rem;
    background: #0878d5;
    color: white;
    font-size: 0.72rem;
    font-weight: 850;
    text-decoration: none;
  }
  .mobile-action.is-hidden {
    transform: translateY(110%);
  }
}

@media (max-width: 380px) {
  .site-header .nav-cta {
    max-width: 150px;
    text-align: center;
    line-height: 1.15;
  }
  .story-beat {
    min-height: max(108svh, 800px);
  }
  .hero-beat {
    min-height: max(125svh, 960px);
  }
  .beat-copy h1 {
    font-size: 1.95rem;
  }
  .beat-copy h2 {
    font-size: 1.9rem;
  }
}

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

body.motion-lite .story {
  background: #031225;
}
body.motion-lite .story-stage {
  display: none;
}
body.motion-lite .story-timeline {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) var(--pad);
}
body.motion-lite .story-beat,
body.motion-lite .hero-beat {
  min-height: 0;
  align-items: flex-start;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid #29435a;
  pointer-events: auto;
}
body.motion-lite .beat-copy {
  width: min(100%, 820px);
}
body.motion-lite .beat-copy h1,
body.motion-lite .beat-copy h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

@media print {
  .site-header,
  .story-stage,
  .mobile-action {
    display: none;
  }
  body {
    padding: 0;
    background: white;
    color: black;
  }
  .story-beat {
    min-height: 0;
    padding: 2rem;
  }
  .beat-copy {
    width: 100%;
  }
  .beat-copy > p,
  .conditions {
    color: #333 !important;
  }
}

/* Multi-page information architecture and shared conversion components. */
.desktop-nav {
  margin-left: auto;
  gap: clamp(0.7rem, 1.25vw, 1.25rem) !important;
}
.desktop-nav a {
  white-space: nowrap;
}
.mobile-nav {
  display: none;
}
.inner-main {
  padding-top: 78px;
  background: var(--warm);
  color: var(--ink);
}
.section-shell {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  background: var(--warm);
  color: var(--ink);
}
.breadcrumbs {
  padding: 1.2rem var(--pad);
  border-bottom: 1px solid #d5dfe6;
  background: #edf2f5;
  color: #52687b;
  font-size: 0.72rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
  color: #8ba0b0;
}
.breadcrumbs a:hover {
  color: #076fca;
}
.inner-hero {
  min-height: min(760px, calc(100svh - 78px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(7rem, 12vw, 11rem) var(--pad);
  background:
    radial-gradient(
      circle at 83% 28%,
      rgba(18, 199, 238, 0.14),
      transparent 24rem
    ),
    linear-gradient(145deg, #020b18, #072542 70%, #082138);
  color: #f7fbff;
}
.inner-hero h1 {
  width: min(100%, 1050px);
  margin-bottom: 1.5rem;
  font-size: clamp(3.1rem, 7.5vw, 8.5rem);
}
.inner-hero .lead {
  max-width: 850px;
  color: #c6d8e6;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
}
.inner-hero .fine-print {
  max-width: 820px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}
.button-row .button {
  margin-top: 0;
}
.button-ghost {
  border-color: rgba(168, 210, 240, 0.56);
  background: transparent;
  color: #eef8ff;
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}
.button-dark {
  border-color: #173c5c;
  background: #0b2947;
}
.text-link,
.card-link {
  color: #075fae;
  font-weight: 800;
  text-underline-offset: 0.22rem;
}
.fine-print {
  font-size: 0.76rem;
  line-height: 1.55;
}
.fine-print.light {
  margin-top: 1.4rem;
  color: #9db4c6;
}
.system-number {
  width: 3.1rem;
  height: 3.1rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #1d7cc4;
  color: #096ab7;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.detail-grid,
.terms-grid,
.package-fit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: start;
}
.detail-grid h2,
.terms-grid h2,
.care-preview h2,
.scope-note h2,
.package-fit h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
}
.detail-grid p,
.terms-grid p,
.care-preview p,
.package-fit p,
.scope-note p {
  color: #526476;
}
.check-list,
.fit-card ul,
.terms-grid ul,
.package-card ul,
.hero-points {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li,
.fit-card li,
.terms-grid li,
.package-card li,
.hero-points li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.65rem;
  border-bottom: 1px solid #cfdae2;
}
.check-list li::before,
.fit-card li::before,
.terms-grid li::before,
.package-card li::before,
.hero-points li::before {
  content: "↘";
  position: absolute;
  left: 0;
  color: #0877cf;
  font-weight: 900;
}
.fit-card {
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid #bfcdd7;
  background: white;
  box-shadow: 0 25px 70px rgba(13, 42, 68, 0.09);
}
.included-section,
.process-section,
.bonus-section,
.outcome-section,
.related-section,
.comparison {
  border-top: 1px solid #cfdae2;
}
.included-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid #c7d4dc;
  background: #c7d4dc;
}
.included-grid article,
.outcome-grid article {
  min-height: 205px;
  padding: clamp(1.3rem, 3vw, 2.3rem);
  background: white;
}
.included-grid span,
.outcome-grid span,
.bonus-grid > article > span {
  color: #0872c7;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.included-grid p {
  margin-top: 3rem;
  color: #293d50;
  font-weight: 750;
}
.outcome-grid h3 {
  margin: 3rem 0 0.8rem;
  font-size: 1.7rem;
}
.outcome-grid p {
  color: #586a7a;
  font-size: 0.92rem;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 3rem 0 0;
  padding: 0;
  border: 1px solid #31506d;
  background: #31506d;
  color: white;
  list-style: none;
}
.process-grid li {
  min-height: 250px;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  background: #082641;
}
.process-grid span {
  display: block;
  margin-bottom: 3.5rem;
  color: #61cdf3;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.process-grid strong {
  display: block;
  margin-bottom: 0.9rem;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.35rem;
}
.process-grid p {
  color: #aec4d4;
  font-size: 0.88rem;
}
.conditions-note {
  margin-top: 1.5rem;
  padding: 1.4rem;
  border-left: 4px solid #0876cf;
  background: #e6f0f7;
  color: #40576a;
  font-size: 0.85rem;
}
.package-fit {
  border-top: 1px solid #cfdae2;
  border-bottom: 1px solid #cfdae2;
}
.package-fit h2 a {
  color: #075fae;
}
.package-fit dl {
  margin: 0;
}
.package-fit dl > div {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #cfdae2;
}
.package-fit dt {
  color: #344b5e;
  font-weight: 800;
}
.package-fit dd {
  margin: 0;
  color: #526b7f;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.related-grid a {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #c4d1da;
  background: white;
  color: #14314d;
  text-decoration: none;
}
.related-grid a:hover {
  border-color: #0876cf;
  box-shadow: 0 18px 40px rgba(16, 54, 86, 0.1);
}
.related-grid span {
  color: #5c6e7e;
  font-size: 0.85rem;
}
.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  background: #e8eef2;
  color: var(--ink);
}
.contact-copy h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}
.contact-copy > p:not(.eyebrow):not(.form-setup) {
  color: #526476;
}
.contact-copy .button {
  margin: 1rem 0 2rem;
}
.directory-tools {
  width: min(100%, 760px);
  margin-bottom: 5rem;
}
.directory-tools label {
  display: block;
  margin-bottom: 0.7rem;
  color: #1b354c;
  font-weight: 850;
}
.directory-tools input {
  width: 100%;
  min-height: 58px;
  padding: 0.9rem 1rem;
  border: 2px solid #7992a5;
  background: white;
  color: #17283a;
}
.directory-tools p {
  margin-top: 0.65rem;
  color: #5a6e7e;
  font-size: 0.78rem;
}
.directory-system {
  margin-top: 6rem;
  scroll-margin-top: 95px;
}
.directory-system[hidden],
.service-card[hidden] {
  display: none;
}
.system-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 780px);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2.3rem;
}
.system-intro h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}
.system-intro h2 a {
  text-decoration: none;
}
.system-intro p {
  color: #536779;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 2.8vw, 2.2rem);
  border: 1px solid #c3d0d9;
  background: white;
}
.service-kicker {
  color: #0871c4;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  line-height: 1.05;
}
.service-card h3 a {
  text-decoration: none;
}
.service-card > p:not(.service-kicker),
.service-card details {
  color: #5c6d7d;
  font-size: 0.86rem;
}
.service-card details {
  margin: 0.5rem 0 1.2rem;
}
.service-card summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: #25425b;
  cursor: pointer;
  font-weight: 800;
}
.service-card ul {
  padding-left: 1.2rem;
}
.service-card .card-link {
  margin-top: auto;
}
.system-hero .system-number {
  margin-bottom: 2rem;
  border-color: #59c3ec;
  color: #69d6fa;
}
.outcome {
  max-width: 820px;
  margin: 1.5rem 0 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid #2fc8eb;
  background: rgba(16, 57, 91, 0.58);
  color: #c9dce8 !important;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.bonus-grid article {
  min-height: 290px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid #c5d2da;
  background: white;
}
.bonus-grid h3 {
  margin: 3rem 0 1rem;
  font-size: 1.7rem;
}
.bonus-grid p {
  color: #576a7b;
  font-size: 0.9rem;
}
.guarantee {
  background: linear-gradient(145deg, #04172c, #0a3155);
  color: white;
}
.guarantee-title {
  max-width: 900px;
}
.guarantee h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 6vw, 6.5rem);
}
.guarantee-title > p:last-child {
  max-width: 760px;
  color: #bad0df;
}
.guarantee-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 3rem 0 1.5rem;
  border: 1px solid #416581;
  background: #416581;
}
.guarantee-options article {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: #082641;
}
.guarantee-options span {
  color: #65d0f5;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.guarantee-options h3 {
  margin: 3rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
}
.guarantee-options p,
.guarantee > .fine-print {
  color: #afc6d6;
}
.care-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border-top: 1px solid #c8d4dd;
  border-bottom: 1px solid #c8d4dd;
}
.care-preview > div {
  max-width: 800px;
}
.care-preview .button {
  flex: 0 0 auto;
}
.final-cta {
  padding: clamp(6rem, 12vw, 12rem) var(--pad);
  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(18, 199, 238, 0.18),
      transparent 25rem
    ),
    #031225;
}
.final-cta h2 {
  max-width: 1050px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 7vw, 7.7rem);
}
.final-cta > p:not(.eyebrow) {
  max-width: 700px;
  color: #b8cbda;
}
.package-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.package-card {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  border: 1px solid #becdd7;
  background: white;
}
.package-card.featured {
  border: 2px solid #0878d5;
  background: #082641;
  color: white;
  box-shadow: 0 28px 80px rgba(4, 36, 64, 0.2);
}
.package-number {
  color: #0a73c8;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.package-card h2 {
  margin: 3rem 0 1.3rem;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}
.package-card > p:not(.service-kicker),
.package-card li {
  color: #546779;
  font-size: 0.88rem;
}
.package-card.featured > p,
.package-card.featured li {
  border-color: #35526d;
  color: #bdd0df;
}
.package-card .button {
  width: 100%;
  margin-top: auto;
}
.table-wrap {
  max-width: 100%;
  margin-top: 3rem;
  overflow-x: auto;
  border: 1px solid #b9c8d2;
  background: white;
}
.comparison table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
  color: #22384c;
  font-size: 0.82rem;
}
.comparison caption {
  padding: 1rem;
  text-align: left;
  font-weight: 850;
}
.comparison th,
.comparison td {
  width: 23%;
  padding: 1rem;
  border: 1px solid #d0dbe2;
  text-align: left;
  vertical-align: top;
}
.comparison th:first-child {
  position: sticky;
  z-index: 2;
  left: 0;
  width: 31%;
  background: #f1f5f7;
}
.comparison thead th {
  top: 0;
  background: #0a2946;
  color: white;
}
.comparison thead th:first-child {
  z-index: 3;
  background: #061b30;
}
.status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 800;
}
.status-on {
  background: #dff3ea;
  color: #155b42;
}
.status-add {
  background: #e4effa;
  color: #174f7e;
}
.status-off {
  background: #edf0f2;
  color: #65727b;
}
.table-help {
  color: #607181;
  font-size: 0.75rem;
}
.scope-note {
  border-top: 1px solid #cbd6de;
}
.scope-note p {
  max-width: 900px;
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 0.7fr));
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}
.footer-lead > p {
  max-width: 420px;
  margin: 1.2rem 0;
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.site-footer nav strong {
  margin-bottom: 0.45rem;
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-footer nav a {
  color: #a4b7c6;
  font-size: 0.73rem;
  text-decoration: none;
}
.site-footer .text-link {
  color: #66c7f6;
}
.hero-points {
  max-width: 760px;
  color: #bfd2df;
}
.hero-points li {
  border-color: #2d4d67;
}

@media (max-width: 1240px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-nav {
    position: relative;
    display: block;
    margin-left: auto;
  }
  .mobile-nav summary {
    min-width: 72px;
    min-height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid #7490a7;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 850;
    list-style: none;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav[open] nav {
    position: fixed;
    z-index: 120;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 0.7rem var(--pad) 1.2rem;
    border-bottom: 1px solid #b9c9d4;
    background: #f7f8f6;
    box-shadow: 0 20px 40px rgba(3, 18, 37, 0.16);
  }
  .mobile-nav nav a {
    min-height: 47px;
    border-bottom: 1px solid #d7e0e6;
  }
  .mobile-nav nav .nav-cta {
    justify-content: center;
    margin-top: 0.7rem;
    border-bottom: 0;
  }
  .service-grid,
  .bonus-grid,
  .package-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .package-card {
    min-height: 650px;
  }
  .site-footer {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
  .site-footer nav:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .inner-main {
    padding-top: 68px;
  }
  .mobile-nav[open] nav {
    inset: 68px 0 auto;
  }
  .site-header nav > a:not(.nav-cta) {
    display: flex;
  }
  .inner-hero {
    min-height: auto;
    padding: 6.5rem 1.1rem;
  }
  .inner-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.9rem);
  }
  .section-shell,
  .contact-panel,
  .final-cta {
    padding: 5rem 1.1rem;
  }
  .breadcrumbs {
    padding: 1rem 1.1rem;
  }
  .detail-grid,
  .terms-grid,
  .package-fit,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .included-grid,
  .outcome-grid,
  .service-grid,
  .bonus-grid,
  .package-cards,
  .related-grid,
  .process-grid,
  .guarantee-options {
    grid-template-columns: 1fr;
  }
  .included-grid article,
  .outcome-grid article,
  .process-grid li,
  .bonus-grid article {
    min-height: 180px;
  }
  .included-grid p,
  .outcome-grid h3,
  .process-grid span,
  .bonus-grid h3,
  .guarantee-options h3 {
    margin-top: 2rem;
    margin-bottom: 0.7rem;
  }
  .process-grid span {
    margin-top: 0;
  }
  .service-card {
    min-height: 330px;
  }
  .system-intro {
    grid-template-columns: 1fr;
  }
  .directory-system {
    margin-top: 4.5rem;
  }
  .button-row {
    width: 100%;
    flex-direction: column;
  }
  .button-row .button {
    width: 100%;
  }
  .care-preview {
    align-items: flex-start;
    flex-direction: column;
  }
  .care-preview .button {
    width: 100%;
  }
  .package-card {
    min-height: 0;
  }
  .table-wrap {
    margin-right: -1.1rem;
  }
  .site-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer-lead {
    grid-column: 1 / -1;
  }
  .site-footer nav:last-child {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .site-footer {
    grid-template-columns: 1fr;
  }
  .site-footer nav:last-child {
    grid-column: auto;
  }
  .comparison table {
    min-width: 790px;
    font-size: 0.75rem;
  }
  .comparison th,
  .comparison td {
    padding: 0.75rem;
  }
}

/* Homepage: broad positioning, featured website offer and service systems. */
.home-main {
  padding-top: 78px;
  background: var(--warm);
  color: var(--ink);
}
.home-hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(18, 199, 238, 0.17),
      transparent 26rem
    ),
    linear-gradient(145deg, #020b18, #062441 67%, #08243b);
  color: white;
}
.home-hero h1 {
  max-width: 1050px;
  margin-bottom: 1.7rem;
  font-size: clamp(3.4rem, 7vw, 7.8rem);
}
.home-hero h1 span {
  display: block;
  color: #87d8fb;
}
.home-hero .hero-copy > p:not(.eyebrow):not(.hero-trust) {
  max-width: 780px;
  color: #c0d2e0;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}
.hero-trust {
  margin-top: 2rem;
  padding-left: 1rem;
  border-left: 3px solid #35c5e8;
  color: #a8c2d4;
  font-size: 0.78rem;
  font-weight: 750;
}
.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 900px;
}
.dock-frame {
  position: relative;
  width: min(38vw, 480px);
  aspect-ratio: 0.88;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  border: clamp(10px, 1.4vw, 18px) solid #4b6b84;
  border-bottom-color: #738a99;
  background: repeating-linear-gradient(
    0deg,
    #dfe7eb 0 13%,
    #aebdc6 13.5% 14%,
    #dfe7eb 14.5% 27%
  );
  color: #092a48;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.45);
  transform: rotateY(-8deg) rotateX(2deg);
}
.dock-frame::before,
.dock-frame::after {
  content: "";
  position: absolute;
  top: -11%;
  width: 20%;
  height: 10%;
  border: 6px solid #45637a;
  border-bottom: 0;
}
.dock-frame::before {
  left: 8%;
}
.dock-frame::after {
  right: 8%;
}
.dock-frame > i {
  position: absolute;
  left: -8%;
  right: -8%;
  height: 4px;
  background: #526f84;
}
.dock-frame > i:nth-child(1) {
  top: 25%;
}
.dock-frame > i:nth-child(2) {
  top: 50%;
}
.dock-frame > i:nth-child(3) {
  top: 75%;
}
.dock-frame strong,
.dock-frame span {
  position: relative;
  z-index: 2;
  padding: 0.7rem;
  background: rgba(239, 245, 247, 0.91);
  text-align: center;
}
.dock-frame strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2rem, 4.2vw, 4.8rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}
.dock-frame span {
  color: #175580;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.front-door-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
}
.offer-copy h2 {
  max-width: 850px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 6.6vw, 7rem);
}
.offer-copy > p {
  max-width: 720px;
  color: #536677;
}
.offer-copy .offer-promise {
  color: #18354e;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 760;
}
.overview-steps {
  border-top: 1px solid #aebfcb;
}
.overview-steps article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 90px;
  border-bottom: 1px solid #aebfcb;
}
.overview-steps article span {
  color: #0873c8;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.overview-steps article strong {
  color: #20384d;
}
.overview-steps > p {
  margin: 1.4rem 0 0;
  color: #5a6d7c;
  font-size: 0.8rem;
}
.home-systems .section-heading,
.home-packages .section-heading {
  margin-bottom: 3.5rem;
}
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.systems-grid article {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid #bfced8;
  background: white;
}
.systems-grid h3 {
  margin: 3rem 0 1rem;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}
.systems-grid h3 a {
  text-decoration: none;
}
.systems-grid > article > p {
  color: #596c7d;
  font-size: 0.9rem;
}
.systems-grid ul {
  margin: 1rem 0 2rem;
  padding: 0;
  color: #40566a;
  font-size: 0.78rem;
  list-style: none;
}
.systems-grid li {
  padding: 0.45rem 0;
  border-bottom: 1px solid #d5dee4;
}
.systems-grid .card-link {
  margin-top: auto;
}
.home-system-actions {
  margin-top: 2rem;
}
.home-packages {
  border-top: 1px solid #c4d1da;
}
.home-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.home-package-grid article {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid #c1ced7;
  background: white;
}
.home-package-grid article.featured {
  border: 2px solid #1185da;
  background: #082641;
  color: white;
  box-shadow: 0 24px 70px rgba(3, 31, 55, 0.2);
}
.home-package-grid h3 {
  margin: 3rem 0 1.2rem;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}
.home-package-grid article > p:not(.service-kicker) {
  color: #596b7b;
}
.home-package-grid article.featured > p:not(.service-kicker) {
  color: #b9cddd;
}
.home-package-grid article.featured .service-kicker,
.package-card.featured .service-kicker {
  color: #6dd1fa;
}
.home-package-grid .button {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .home-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  }
  .hero-visual {
    min-height: 420px;
  }
  .dock-frame {
    width: min(34vw, 390px);
  }
  .systems-grid,
  .home-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-package-grid article:first-child {
    grid-column: 1 / -1;
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .home-main {
    padding-top: 68px;
  }
  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 6rem 1.1rem 4rem;
  }
  .home-hero h1 {
    font-size: clamp(3rem, 14.5vw, 5rem);
  }
  .hero-visual {
    min-height: 360px;
  }
  .dock-frame {
    width: min(82vw, 380px);
  }
  .front-door-overview {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .systems-grid,
  .home-package-grid {
    grid-template-columns: 1fr;
  }
  .systems-grid article {
    min-height: 470px;
  }
  .home-package-grid article,
  .home-package-grid article:first-child {
    min-height: 430px;
    grid-column: auto;
  }
}
