/* ── KCB Mortgage Landing · LIME POSTER — acts: interlude, ratecut, stats, journey, elig, countdown, final ── */

section { padding: clamp(5rem, 12vh, 9rem) clamp(1.2rem, 5vw, 4.5rem); position: relative; }
.section-light { background: var(--lime); color: var(--navy-deep); }

/* ── act 2 · fly-through interlude ── */
.interlude { height: 100svh; padding: 0; display: grid; place-items: center; }
.cap {
  grid-area: 1 / 1; text-align: center; opacity: 0;
  font-weight: 900; font-size: clamp(2.2rem, 6.5vw, 5.6rem); text-transform: uppercase;
  padding: .2em .55em; border: 4px solid var(--navy);
  background: var(--lime); color: var(--navy); box-shadow: 10px 10px 0 var(--navy);
  rotate: -2deg;
}
.cap#cap2 { background: var(--navy); color: #fff; box-shadow: 10px 10px 0 rgba(0, 32, 58, .35); rotate: 2deg; }
.cap em { font-style: normal; color: var(--gold); }

/* ── act 3 · rate reveal ── */
.ratecut {
  min-height: 100svh; background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.rc-stage { position: relative; width: 100%; height: clamp(9rem, 26vw, 19rem); margin-top: 1rem; }
.rc-old, .rc-new {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-weight: 900; line-height: 1; white-space: nowrap;
}
.rc-old { font-size: clamp(4rem, 14vw, 12rem); color: #51718e; text-decoration: line-through; text-decoration-color: var(--gold); text-decoration-thickness: .06em; }
.rc-new { font-size: clamp(4.6rem, 17vw, 15rem); color: var(--lime); text-shadow: .055em .055em 0 #00182b; }
.rc-sub { max-width: 560px; font-size: clamp(.95rem, 1.4vw, 1.15rem); color: rgba(255, 255, 255, .9); }
.rc-sub strong { color: var(--gold); }

/* ── act 4 · stats 2×2 (oversized poster blocks) ── */
.stats { padding-inline: clamp(1.2rem, 3vw, 3rem); }
.stats .st { margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.8rem, 3.5vw, 3rem); max-width: 1360px; margin-inline: auto;
}
.stat-cell {
  border: 4px solid var(--navy); padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.6rem, 3.5vw, 3.2rem);
  min-height: clamp(320px, 46vh, 480px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; background: var(--paper); box-shadow: 13px 13px 0 var(--navy);
  transition: rotate .25s ease, box-shadow .25s ease, translate .25s ease;
}
.stat-cell:nth-child(1) { rotate: -1.2deg; }
.stat-cell:nth-child(2) { rotate: .9deg; }
.stat-cell:nth-child(3) { rotate: .7deg; }
.stat-cell:nth-child(4) { rotate: -1deg; }
.stat-cell:hover { rotate: 0deg; translate: -4px -4px; box-shadow: 18px 18px 0 var(--navy); }
.stat-big { font-weight: 900; font-size: clamp(4.2rem, 10.5vw, 9rem); line-height: 1; color: var(--navy); display: block; }
.stat-big i { font-style: normal; font-size: .42em; color: #5d8c00; padding-left: .08em; }
.stat-big .stat-pre { padding-right: .15em; padding-left: 0; }
.stat-cell h3 { font-size: clamp(1.05rem, 1.5vw, 1.35rem); font-weight: 800; color: var(--navy); margin: 1.3rem 0 .8rem; }
.stat-cell p { font-size: clamp(1rem, 1.25vw, 1.15rem); color: rgba(0, 32, 58, .85); max-width: 38ch; margin-inline: auto; }

/* ── act 5 · journey timeline ── */
.journey { background: var(--navy); }
.journey .st { color: #fff; }
.tl { position: relative; max-width: 880px; margin: clamp(3rem, 7vh, 4.5rem) auto 0; }
.tl-line { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 4px; height: 100%; color: var(--lime); opacity: .9; }
.steps { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vh, 3.2rem) clamp(2.6rem, 6vw, 4.5rem); }
.step { background: var(--navy); border: 3px solid var(--lime); padding: 1.7rem 1.5rem; box-shadow: 8px 8px 0 rgba(0, 0, 0, .3); }
.step:nth-child(odd) { grid-column: 1; text-align: right; }
.step:nth-child(even) { grid-column: 2; text-align: left; transform: translateY(45%); }
.step-n { font-weight: 900; color: var(--gold); padding-right: .35em; }
.step h3 { font-size: 1.3rem; font-weight: 900; text-transform: uppercase; margin: 0 0 .5rem; color: var(--lime); }
.step p { font-size: .92rem; color: rgba(255, 255, 255, .88); }
.step strong { color: var(--gold); }

/* ── act 6 · eligibility ── */
.elig .st { margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.elig-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.6rem, 3vw, 2rem); max-width: 900px; margin-inline: auto; }
.elig-card {
  border: 3px solid var(--navy); padding: 1.9rem 1.7rem;
  background: var(--paper); text-align: center; box-shadow: 9px 9px 0 var(--navy);
  transition: rotate .25s ease, box-shadow .25s ease, translate .25s ease;
}
.elig-card:nth-child(1) { rotate: .8deg; }
.elig-card:nth-child(2) { rotate: -1deg; }
.elig-card:nth-child(3) { rotate: -.7deg; }
.elig-card:nth-child(4) { rotate: 1.1deg; }
.elig-card:hover { rotate: 0deg; translate: -3px -3px; box-shadow: 13px 13px 0 var(--navy); }
.elig-tag { display: inline-block; font-size: .8rem; font-weight: 800; color: var(--lime); background: var(--navy); padding: .35rem .8rem; margin-top: 1.1rem; }
.elig-card h3 { font-size: 1.4rem; font-weight: 900; text-transform: uppercase; margin: 0 0 .5rem; color: var(--navy); }
.elig-card p { font-size: .92rem; color: rgba(0, 32, 58, .85); }

/* ── act 7 · countdown ── */
.countdown-sec { background: var(--navy); color: #fff; text-align: center; }
.countdown-sec .st { color: #fff; }
.countdown-sec .lede { margin-top: 1.4rem; color: rgba(255, 255, 255, .9); }
.countdown-sec .lede strong { color: var(--gold); }
.count-grid { display: flex; justify-content: center; align-items: stretch; gap: clamp(.8rem, 2vw, 1.6rem); margin-top: 3.2rem; flex-wrap: wrap; }
.count-cell {
  background: var(--lime); border: 3px solid var(--navy); box-shadow: 8px 8px 0 rgba(0, 0, 0, .35);
  padding: clamp(1rem, 2.5vw, 1.8rem) clamp(1rem, 3vw, 2.2rem); min-width: clamp(82px, 18vw, 150px);
}
.count-num { font-weight: 900; font-size: clamp(2.4rem, 7vw, 5rem); line-height: 1; display: block; color: var(--navy); }
.count-lab { font-size: .85rem; color: var(--navy); font-weight: 800; display: block; margin-top: .5rem; }
.count-sep { font-weight: 900; font-size: clamp(1.8rem, 5vw, 3.4rem); display: flex; align-items: center; color: rgba(255, 255, 255, .55); }

/* ── act 8 · final cta ── */
.final { background: var(--lime); text-align: center; padding-top: clamp(6rem, 16vh, 11rem); }
.knock { font-size: clamp(4rem, 17vw, 15rem); color: var(--navy); text-transform: uppercase; line-height: .9; text-shadow: .05em .05em 0 #fff; }
.final .lede { margin-top: 1.6rem; color: rgba(0, 32, 58, .9); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.4rem, 3vw, 2rem); max-width: 980px; margin: 3.4rem auto 0; }
.contact-tile {
  border: 3px solid var(--navy); padding: 2.1rem 1.6rem;
  display: flex; flex-direction: column; gap: .7rem; align-items: center;
  background: var(--paper); box-shadow: 9px 9px 0 var(--navy);
  transition: translate .25s ease, box-shadow .25s ease;
}
.contact-tile:hover { translate: -3px -3px; box-shadow: 13px 13px 0 var(--navy); }
.tile-k { font-size: .85rem; font-weight: 800; color: #5d8c00; }
.tile-v { font-weight: 800; font-size: 1.25rem; color: var(--navy); line-height: 1.35; }

/* ── footer ── */
.foot { background: var(--navy); border-top: 4px solid var(--navy-deep); padding: 3rem clamp(1.2rem, 5vw, 4.5rem) 3.5rem; font-size: .76rem; color: rgba(255, 255, 255, .65); line-height: 1.8; text-align: center; }
.foot p { max-width: 880px; margin-inline: auto; }
.foot-mini { margin-top: 1rem; opacity: .6; }
.foot-logo { height: 32px; width: auto; margin: 0 auto 1.5rem; border: 2px solid #fff; box-shadow: 4px 4px 0 rgba(0, 0, 0, .4); }

/* ── responsive ── */
@media (max-width: 760px) {
  .nav-logo-img { height: 56px; }
  .nav-divider, .nav-sub { display: none; }
  .stats-grid, .elig-grid { grid-template-columns: 1fr; }
  .stat-cell { min-height: 0; padding: 2.4rem 1.5rem; box-shadow: 9px 9px 0 var(--navy); }
  .stat-big { font-size: clamp(3.6rem, 19vw, 5.2rem); }
  .tl-line { display: none; }
  .steps { grid-template-columns: 1fr; }
  .step:nth-child(odd), .step:nth-child(even) { grid-column: 1; text-align: center; transform: none; }
  .count-sep { display: none; }
  .count-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 340px; margin: 3.2rem auto 0; }
  .badge { width: 88px; top: 5.2rem; right: .9rem; box-shadow: 5px 5px 0 rgba(0, 32, 58, .4); }
}
@media (max-width: 480px) {
  .badge { display: none; }
}

/* ── reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .cue-line { animation: none; }
  .marquee-inner { transform: none !important; }
  * { transition-duration: .01ms !important; }
}
body.reduced .interlude { height: auto; padding: 5rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
body.reduced .cap { opacity: 1; position: relative; grid-area: auto; }
body.reduced .rc-old { display: none; }
body.reduced .rc-stage { height: auto; }
body.reduced .rc-new { position: relative; inset: auto; }
