:root {
  --green: #00783A;
  --green-hover: #048a44;
  --ink: #0a0a0a;
  --body: #56564f;
  --muted: #8a8a82;
  --cream: #F7F5EF;
  --forest: #2C3317;
  --mint: #57C98A;
  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: #ffffff;
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

/* ===== Shared button ===== */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 12px 28px -10px rgba(0, 120, 58, 0.95);
}

.btn-green:hover {
  transform: translateY(-2px);
  background: var(--green-hover);
  box-shadow: 0 18px 34px -10px rgba(0, 120, 58, 1);
}

/* ===== Nav links ===== */
.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: #3a3a35;
  transition: color .2s ease;
}

.nav-link:hover {
  color: var(--green);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 8px 20px -10px rgba(0, 120, 58, 0.9);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--green-hover);
  box-shadow: 0 14px 26px -10px rgba(0, 120, 58, 1);
}

/* ===== Footer links ===== */
.footer-link {
  text-decoration: none;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  transition: color .2s ease;
}

.footer-link:hover {
  color: var(--green);
}

/* ===== Download page ===== */
.download-page {
  min-height: 100vh;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 2px;
  display: inline-block;
}

.download-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 132px) clamp(20px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}

.download-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.download-hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: .98;
  letter-spacing: -0.04em;
}

.download-hero p {
  margin: 0;
  max-width: 54ch;
  color: var(--body);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.62;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  min-width: 198px;
  min-height: 62px;
  border: 0;
  border-radius: 18px;
  padding: 12px 18px;
  background: var(--ink);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 34px -22px rgba(10, 10, 10, 0.75);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  background: #1a1a17;
  box-shadow: 0 24px 40px -22px rgba(10, 10, 10, 0.9);
}

.store-badge small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.1;
  opacity: .78;
}

.store-badge__icon {
  width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}

.store-badge--play {
  background: var(--forest);
}

.store-badge--play:hover {
  background: #38411e;
}

.download-note {
  font-size: 14px !important;
  color: var(--muted) !important;
}

.download-hero__visual {
  display: flex;
  justify-content: center;
}

.download-values {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px) clamp(72px, 9vw, 128px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.download-values article {
  background: var(--cream);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 34px);
}

.download-values span {
  display: block;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.download-values h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.download-values p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

.waitlist-modal[hidden] {
  display: none;
}

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.waitlist-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.waitlist-modal__panel {
  position: relative;
  width: min(100%, 480px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 42px);
  box-shadow: 0 34px 88px -36px rgba(10, 10, 10, 0.65);
}

.waitlist-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.waitlist-modal h2 {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.025em;
}

.waitlist-modal p {
  margin: 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.6;
}

.waitlist-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-form label {
  font-weight: 700;
  color: var(--ink);
}

.waitlist-form input {
  width: 100%;
  border: 1px solid #d9d8cf;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.waitlist-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 120, 58, 0.12);
}

.waitlist-form .btn-green {
  justify-content: center;
  border: 0;
  padding: 15px 22px;
  font-size: 16px;
  cursor: pointer;
}

.waitlist-modal__success {
  margin-top: 18px !important;
  color: var(--green) !important;
  font-weight: 700;
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  min-width: 0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 38px -28px rgba(10, 10, 10, 0.45);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), box-shadow .24s ease, border-color .24s ease;
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 18px -12px rgba(10, 10, 10, 0.8);
  background: #e8e6de;
  flex-shrink: 0;
}

.testimonial-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.testimonial-card span {
  display: block;
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
}

/* ===== Final CTA pulse + footer waves ===== */
.cta-pulse-dot {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  box-shadow: 0 0 0 20px rgba(87, 201, 138, 0.16);
  animation: ctaPulse 3.8s ease-out infinite;
}

.start-footer-waves {
  position: relative;
  height: clamp(128px, 16vw, 214px);
  margin-top: -1px;
  margin-bottom: -3px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 18%, rgba(87, 201, 138, 0.08) 50%, var(--ink) 100%);
}

.start-footer-waves::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  z-index: 0;
  height: 34px;
  background: var(--ink);
  pointer-events: none;
}

.start-footer-waves__svg {
  position: absolute;
  inset: -1px 0 -10px;
  z-index: 1;
  display: block;
  width: 100%;
  height: calc(100% + 11px);
  transform: translateZ(0);
}

.start-footer-waves__path {
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: center bottom;
  will-change: transform;
}

.start-footer-waves__path--back {
  fill: var(--mint);
  opacity: 0.45;
  animation: startFooterWaveBack 34s ease-in-out infinite alternate;
}

.start-footer-waves__path--mid {
  fill: var(--green);
  opacity: 0.82;
  animation: startFooterWaveMid 42s ease-in-out infinite alternate-reverse;
}

.start-footer-waves__path--front {
  fill: var(--ink);
  animation: startFooterWaveFront 50s ease-in-out infinite alternate;
}

.start-typewriter {
  --start-typewriter-width: 33ch;
  display: inline-block;
  width: 0;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

[data-reveal].revealed .start-typewriter {
  animation: startTypewriter 1.65s steps(33) .28s forwards;
}

@keyframes startFooterWaveBack {
  0% {
    transform: translate3d(-46px, 6px, 0) scaleX(1.04);
  }

  50% {
    transform: translate3d(28px, -4px, 0) scaleX(1.01);
  }

  100% {
    transform: translate3d(58px, 4px, 0) scaleX(1.035);
  }
}

@keyframes startFooterWaveMid {
  0% {
    transform: translate3d(42px, 4px, 0) scaleX(1.03);
  }

  50% {
    transform: translate3d(-24px, -5px, 0) scaleX(1.015);
  }

  100% {
    transform: translate3d(-54px, 3px, 0) scaleX(1.04);
  }
}

@keyframes startFooterWaveFront {
  0% {
    transform: translate3d(-34px, 3px, 0) scaleX(1.025);
  }

  50% {
    transform: translate3d(20px, -4px, 0) scaleX(1.01);
  }

  100% {
    transform: translate3d(48px, 2px, 0) scaleX(1.035);
  }
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(87, 201, 138, 0.38), 0 0 0 20px rgba(87, 201, 138, 0.14);
  }

  70% {
    box-shadow: 0 0 0 68px rgba(87, 201, 138, 0), 0 0 0 128px rgba(87, 201, 138, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(87, 201, 138, 0), 0 0 0 20px rgba(87, 201, 138, 0.14);
  }
}

@keyframes startTypewriter {
  from {
    width: 0;
  }

  to {
    width: var(--start-typewriter-width);
  }
}

/* ===== Phone mockup ===== */
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 304px;
  aspect-ratio: 71.5 / 149.6;
  display: flex;
  background: linear-gradient(145deg, #1a1a17 0%, #050505 42%, #11110f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 56px;
  padding: 9px;
  box-shadow: 0 34px 70px -24px rgba(0, 0, 0, 0.48), inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.08);
  user-select: none;
  -webkit-user-select: none;
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  background: #030303;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), inset 0 -1px 1px rgba(0, 0, 0, 0.9);
  z-index: 6;
}

.phone-notch::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(80, 94, 112, 0.62), rgba(3, 3, 3, 0.95) 68%);
}

.phone-screen {
  position: relative;
  background: #ffffff;
  border-radius: 47px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 56px 18px 14px;
  border-bottom: 1px solid #efeee9;
  background: #ffffff;
}

.phone-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--green);
  background-image: url("assets/logo-small-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0;
  overflow: hidden;
}

.phone-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.phone-name strong {
  font-size: 15px;
  color: var(--ink);
  font-family: var(--font-body);
}

.phone-name span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-body);
}

.phone-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px;
  background: var(--cream);
  overflow: hidden;
}

/* ===== Chat bubbles ===== */
.bubble {
  max-width: 82%;
  font-size: 13.5px;
  line-height: 1.5;
  padding: 10px 13px;
  font-family: var(--font-body);
}

.bubble--atty {
  background: #ffffff;
  color: #1a1a17;
  border-radius: 16px 16px 16px 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  align-self: flex-start;
}

.bubble--user {
  background: var(--green);
  color: #ffffff;
  font-weight: 500;
  border-radius: 16px 16px 5px 16px;
  align-self: flex-end;
}

.listing-card {
  position: relative;
  width: 100%;
  aspect-ratio: 686 / 926;
  flex: 0 0 auto;
  border-radius: 22px;
  overflow: hidden;
  align-self: stretch;
  background-image: linear-gradient(180deg, rgba(10, 10, 10, 0.58) 0%, rgba(10, 10, 10, 0.06) 42%, rgba(10, 10, 10, 0.72) 100%), url("assets/listing-austin-home.png");
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 34px -24px rgba(10, 10, 10, 0.58);
  color: #ffffff;
  font-family: var(--font-body);
}

.listing-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px 16px 16px;
}

.listing-card__heart-feedback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.45);
  filter: drop-shadow(0 8px 18px rgba(10, 10, 10, 0.38));
}

.listing-card__heart-feedback svg {
  width: 88px;
  height: 88px;
  fill: currentColor;
}

.listing-card.is-heart-pulsing .listing-card__heart-feedback {
  animation: listingHeartPulse 1.2s cubic-bezier(.2, .85, .32, 1) forwards;
}

.listing-card h4 {
  max-width: 100%;
  margin: 0;
  color: #ffffff;
  font-size: 16.5px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.listing-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 4px 10px 5px;
  border-radius: 999px;
  background: #12B978;
  color: #ffffff;
  font-size: 13.5px;
  line-height: 1;
  font-weight: 800;
}

.listing-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.listing-card__footer strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.listing-card__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.listing-card__action {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .16s ease, color .16s ease;
}

.listing-card__action:hover,
.listing-card__action:focus-visible {
  transform: scale(1.08);
  outline: none;
}

.listing-card__action:active {
  transform: scale(0.94);
}

.listing-card__action svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 2px rgba(10, 10, 10, 0.42));
}

.listing-card__action--heart.is-liked {
  color: #FF5A7A;
}

.listing-card__action--heart.is-liked svg {
  fill: currentColor;
}

.tour-scheduler-widget {
  width: 100%;
  margin-top: 2px;
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
  color: #1a1a17;
  border: 1px solid rgba(10, 10, 10, 0.06);
  box-shadow: 0 18px 34px -26px rgba(10, 10, 10, 0.45), 0 1px 2px rgba(10, 10, 10, 0.04);
  font-family: var(--font-body);
}

.tour-scheduler-widget__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tour-scheduler-widget__head span {
  color: rgba(26, 26, 23, 0.48);
  font-size: 11px;
  font-weight: 800;
}

.tour-scheduler-widget__head strong {
  color: #1a1a17;
  font-size: 12px;
  font-weight: 800;
}

.tour-scheduler-widget__slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
}

.tour-slot {
  min-width: 0;
  min-height: 58px;
  padding: 9px 5px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 16px;
  background: var(--cream);
  color: #1a1a17;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.tour-slot:hover,
.tour-slot:focus-visible {
  border-color: rgba(0, 120, 58, 0.38);
  box-shadow: 0 10px 18px -18px rgba(0, 120, 58, 0.65);
  outline: none;
}

.tour-slot:active {
  transform: scale(0.98);
}

.tour-slot span {
  display: block;
  color: rgba(26, 26, 23, 0.52);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.tour-slot strong {
  display: block;
  margin-top: 7px;
  color: inherit;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.tour-slot--selected {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 22px -16px rgba(0, 120, 58, 0.9);
  transform: translateY(-1px);
}

.tour-slot--selected span {
  color: rgba(255, 255, 255, 0.72);
}

.tour-scheduler-widget__agent {
  margin-top: 10px;
  padding: 9px 11px;
  border-radius: 16px;
  background: rgba(0, 120, 58, 0.08);
  transition: background .18s ease;
}

.tour-scheduler-widget.is-scheduled .tour-scheduler-widget__agent {
  background: rgba(0, 120, 58, 0.12);
}

.tour-scheduler-widget__agent span {
  color: rgba(26, 26, 23, 0.48);
  font-size: 11px;
  font-weight: 800;
}

.tour-scheduler-widget__agent strong {
  display: block;
  margin-top: 3px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.calendar-notification {
  position: absolute;
  top: 52px;
  left: 14px;
  right: 14px;
  z-index: 14;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 19px;
  background: rgba(44, 51, 23, 0.94);
  border: 1px solid rgba(87, 201, 138, 0.32);
  box-shadow: 0 20px 36px -16px rgba(10, 10, 10, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-family: var(--font-body);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-26px) scale(0.96);
}

.calendar-notification.is-visible {
  animation: calendarNotificationInOut 3.45s cubic-bezier(.18, 1.12, .32, 1) forwards;
}

.calendar-notification__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint);
  color: var(--forest);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.calendar-notification__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calendar-notification__copy span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}

.calendar-notification__copy strong {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
}

.calendar-notification__copy em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.15;
  font-style: normal;
  font-weight: 700;
}

.calendar-notification__copy em strong {
  color: var(--mint);
  font-size: inherit;
}

.bubble--advisor {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  align-self: flex-start;
}

.advisor-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
}

.advisor-msg {
  background: var(--forest);
  color: #ffffff;
  font-size: 13.5px;
  line-height: 1.5;
  padding: 10px 13px;
  border-radius: 16px 16px 16px 5px;
  font-family: var(--font-body);
}

/* ===== Chat sequencing ===== */
.phone-chat {
  overflow-y: auto;
  scrollbar-width: none;
}

.phone-chat::-webkit-scrollbar {
  display: none;
}

.phone-chat>.chat-seq-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}

.phone-chat>.chat-seq-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.thinking-indicator {
  align-self: flex-start;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 4px 2px;
  background: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}

.thinking-indicator.is-visible {
  display: inline-flex;
}

.thinking-indicator i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12B978;
  box-shadow: 0 0 0 0 rgba(18, 185, 120, 0.38);
  animation: thinkingPulse 1.35s ease-out infinite;
}

.thinking-indicator__text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--muted);
  width: 0;
  animation: typewriter .65s steps(8) forwards, blink .7s step-end 2;
}

.thinking-indicator__text.done {
  border-right-color: transparent;
  animation: none;
  width: auto;
}

.buying-power-widget {
  width: 100%;
  margin-top: 2px;
  padding: 16px;
  background: #ffffff;
  color: #3d3d3b;
  border-radius: 24px;
  box-shadow: 0 14px 28px -22px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.04);
  font-family: var(--font-body);
}

.buying-power-widget__label {
  display: block;
  color: rgba(61, 61, 59, 0.58);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.buying-power-widget__value {
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.buying-power-widget__value span {
  color: #12B978;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.buying-power-widget__row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
}

.buying-power-widget__row span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(61, 61, 59, 0.92);
}

.buying-power-widget__row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12B978;
  box-shadow: 0 0 16px rgba(18, 185, 120, 0.5);
}

.buying-power-widget__row strong {
  font-size: 15px;
  line-height: 1;
}
.credit-coach-widget {
  width: 100%;
  margin-top: 2px;
  min-height: 126px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 6px;
  padding: 10px 14px;
  border-radius: 22px;
  background: #ffffff;
  color: #1a1a17;
  border: 1px solid rgba(10, 10, 10, 0.06);
  box-shadow: 0 18px 34px -26px rgba(10, 10, 10, 0.45), 0 1px 2px rgba(10, 10, 10, 0.04);
  font-family: var(--font-body);
  transform-origin: center;
  transition: opacity .4s var(--ease-out), transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
}

.credit-coach-widget.is-tapping {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 8px 20px -20px rgba(10, 10, 10, 0.5), 0 1px 2px rgba(10, 10, 10, 0.04);
}

.phone-chat>.chat-seq-item.credit-coach-widget.is-visible.is-tapping {
  transform: translateY(0) scale(0.97);
}

.credit-coach-widget__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.credit-coach-widget__copy span {
  color: rgba(26, 26, 23, 0.48);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.credit-coach-widget__copy strong {
  margin-top: 8px;
  color: #1a1a17;
  font-size: 22px;
  line-height: .9;
  letter-spacing: -0.045em;
}

.credit-coach-widget__copy em {
  margin-top: 6px;
  color: #F2C300;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.credit-coach-widget__ring {
  position: relative;
  align-self: start;
  width: 74px;
  height: 74px;
}

.credit-coach-widget__ring svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-48deg);
}

.credit-coach-widget__ring-track,
.credit-coach-widget__ring-progress {
  fill: none;
  stroke-width: 13;
  stroke-linecap: round;
}

.credit-coach-widget__ring-track {
  stroke: rgba(10, 10, 10, 0.08);
}

.credit-coach-widget__ring-progress {
  stroke: #F2C300;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1s var(--ease-out) .12s;
}

.credit-coach-widget.is-visible .credit-coach-widget__ring-progress {
  stroke-dashoffset: calc(100 - var(--credit-ring-progress, 78));
}

.credit-coach-widget__ring>span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a17;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.credit-coach-widget__button {
  align-self: end;
  justify-self: start;
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 12px 4px;
  border: 1.5px solid rgba(26, 26, 23, 0.86);
  border-radius: 999px;
  color: #1a1a17;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1;
}

.phone-credit-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  height: 418px;
  padding: 9px 0 16px;
  border-radius: 28px 28px 0 0;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 -24px 48px -34px rgba(10, 10, 10, 0.56);
  transform: translateY(104%);
  opacity: 0;
  pointer-events: none;
  transition: transform .64s var(--ease-out), opacity .24s ease;
  font-family: var(--font-body);
}

.phone-screen.credit-details-open .phone-credit-sheet {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.phone-credit-sheet__handle {
  display: block;
  position: relative;
  width: 96px;
  height: 30px;
  padding: 0;
  margin: 0 auto 2px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.phone-credit-sheet__handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(26, 26, 23, 0.18);
  transform: translateX(-50%);
}

.credit-details {
  height: calc(100% - 14px);
  padding-left: 16px;
  overflow: visible;
  color: #1a1a17;
}

.credit-details__section {
  margin-bottom: 14px;
}

.credit-details h4,
.credit-recommendation h4 {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1a1a17;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.credit-details h4 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(26, 26, 23, 0.32);
  border-radius: 50%;
  color: rgba(26, 26, 23, 0.52);
  font-size: 9px;
  line-height: 1;
}

.credit-details__cards {
  display: flex;
  gap: 8px;
  width: max-content;
}

.credit-details__cards>.credit-account {
  flex: 0 0 174px;
}

.credit-account {
  width: 174px;
  padding: 13px 12px 12px;
  border-radius: 20px;
  background: rgba(247, 245, 239, 1);
  border: 1px solid rgba(10, 10, 10, 0.05);
  box-shadow: 0 10px 24px -22px rgba(10, 10, 10, 0.42);
  color: rgba(26, 26, 23, 1);
}

.credit-details__section>.credit-account {
  width: 190px;
}

.credit-account__top {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.credit-account__logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.credit-account__logo--chase {
  background: #0067B1;
}

.credit-account__logo--capital {
  background: #005A78;
  font-size: 11px;
}

.credit-account__logo--student {
  background: rgba(255, 255, 255, 1);
  color: #11110f;
  font-size: 28px;
}

.credit-account strong {
  color: #1a1a17;
  font-size: 12px;
  line-height: 1.12;
  font-weight: 800;
}

.credit-account p {
  margin: 13px 0 6px;
  color: rgba(26, 26, 23, 0.52);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}

.credit-meter {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(26, 26, 23, 0.11);
}

.credit-meter span {
  display: block;
  width: var(--meter-fill, 50%);
  height: 100%;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .9s var(--ease-out) .2s;
}

.phone-screen.credit-details-open .credit-meter span {
  transform: scaleX(1);
}

.credit-meter--red span {
  background: #FF705F;
}

.credit-meter--green span {
  background: #12B978;
}

.credit-recommendation {
  margin-top: 4px;
  margin-right: 16px;
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(247, 245, 239, 1);
  border: 1px solid rgba(10, 10, 10, 0.05);
  box-shadow: 0 14px 30px -26px rgba(10, 10, 10, 0.48);
}

.credit-recommendation__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #DDECEF;
  color: #31555A;
  font-size: 12px;
  font-weight: 800;
}

.credit-recommendation__tag span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: -5px;
  border-radius: 50%;
  background: rgba(26, 26, 23, 0.14);
  color: #ffffff;
  font-size: 13px;
}

.credit-recommendation p {
  margin: 0;
  color: rgba(26, 26, 23, 0.78);
  font-size: 13px;
  line-height: 1.36;
  font-weight: 500;
}



.preapproval-widget {
  width: 100%;
  min-height: 156px;
  position: relative;
  overflow: hidden;
  padding: 18px 16px;
  border-radius: 24px;
  background: #76518D;
  color: #ffffff;
  box-shadow: 0 22px 42px -26px rgba(66, 36, 86, 0.78);
  font-family: var(--font-body);
}

.preapproval-widget__copy {
  position: relative;
  z-index: 2;
  max-width: 68%;
}

.preapproval-widget strong {
  display: block;
  font-size: 19px;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.preapproval-widget p {
  margin: 9px 0 15px;
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.preapproval-widget span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.preapproval-widget__letter {
  position: absolute;
  right: -28px;
  top: 52px;
  width: 118px;
  height: 72px;
  border-radius: 4px;
  background: linear-gradient(145deg, #f8f0df, #d8cdbb);
  box-shadow: 0 22px 32px -18px rgba(0, 0, 0, 0.52);
  transform: rotate(10deg);
}

.preapproval-widget__letter::before,
.preapproval-widget__letter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(32deg, transparent 49%, rgba(114, 92, 64, 0.22) 50%, transparent 51%);
}

.preapproval-widget__letter::after {
  background: linear-gradient(148deg, transparent 49%, rgba(114, 92, 64, 0.16) 50%, transparent 51%);
}

.preapproval-widget__seal {
  position: absolute;
  left: 45px;
  top: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #d3a955, #8c6530);
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 800;
  box-shadow: inset 0 0 0 4px rgba(255, 238, 180, 0.22), 0 6px 12px -8px #000;
  z-index: 2;
}

.preapproval-steps-widget {
  width: 100%;
  padding: 15px;
  border-radius: 24px;
  background: #ffffff;
  color: #1a1a17;
  box-shadow: 0 16px 30px -24px rgba(10, 10, 10, 0.55), 0 1px 2px rgba(10, 10, 10, 0.04);
  font-family: var(--font-body);
}

.preapproval-steps-widget strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.preapproval-steps-widget p {
  margin: 7px 0 12px;
  color: rgba(26, 26, 23, 0.68);
  font-size: 12.5px;
  line-height: 1.34;
}

.preapproval-steps-widget__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 0;
  margin-bottom: 13px;
  color: #111111;
}

.preapproval-steps-widget__attain {
  display: block;
  width: 66px;
  height: auto;
  flex: 0 0 auto;
}

.preapproval-steps-widget__x {
  color: rgba(26, 26, 23, 0.36);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.preapproval-steps-widget__plaid-logo {
  display: block;
  width: 52px;
  height: 20px;
  color: #1a1a17;
  flex: 0 0 auto;
}

.preapproval-steps-widget__progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  margin: 13px 0;
  --preapproval-line-delay: .4s;
  --preapproval-line-duration: 1.95s;
}

.preapproval-steps-widget__progress::before,
.preapproval-steps-widget__progress::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.preapproval-steps-widget__progress::before {
  background: rgba(10, 10, 10, 0.1);
}

.preapproval-steps-widget__progress::after {
  right: calc(25% + 18px);
  background: #12B978;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
}

.phone-chat>.chat-seq-item.preapproval-steps-widget.is-visible .preapproval-steps-widget__progress::after {
  animation: preapprovalProgressLine var(--preapproval-line-duration) linear var(--preapproval-line-delay) forwards;
}

.preapproval-steps-widget__step {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.preapproval-steps-widget__step::before {
  content: "";
  display: block;
  width: 8.25px;
  height: 8.25px;
  background-color: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.preapproval-steps-widget__step--list::before,
.preapproval-steps-widget__step--upload::before,
.preapproval-steps-widget__step--seal::before {
  width: 9.25px;
  height: 11.125px;
}

.preapproval-steps-widget__step--done {
  background: #12B978;
  color: #ffffff;
  transform: scale(0.88);
}

.preapproval-steps-widget__step--current {
  background: #E8F5EF;
  color: var(--green);
  box-shadow: 0 0 0 4px #12B978;
  transform: scale(0.88);
}

.preapproval-steps-widget__step--pending {
  background: #F1F0EA;
  color: #6F6F67;
  box-shadow: 0 0 0 4px #E8E6DE;
}

.phone-chat>.chat-seq-item.preapproval-steps-widget .preapproval-steps-widget__step {
  background: #F1F0EA;
  color: #6F6F67;
  box-shadow: 0 0 0 4px #E8E6DE;
  transform: scale(0.88);
  will-change: background-color, color, box-shadow, transform;
}

.phone-chat>.chat-seq-item.preapproval-steps-widget.is-visible .preapproval-steps-widget__step--done {
  animation: preapprovalStepDoneActivate .4s cubic-bezier(.18, 1.35, .32, 1) forwards;
}

.phone-chat>.chat-seq-item.preapproval-steps-widget.is-visible .preapproval-steps-widget__step--current {
  animation: preapprovalStepCurrentActivate .4s cubic-bezier(.18, 1.35, .32, 1) forwards;
}

.phone-chat>.chat-seq-item.preapproval-steps-widget.is-visible .preapproval-steps-widget__step:nth-child(1) {
  animation-delay: .36s;
}

.phone-chat>.chat-seq-item.preapproval-steps-widget.is-visible .preapproval-steps-widget__step:nth-child(2) {
  animation-delay: 1.06s;
}

.phone-chat>.chat-seq-item.preapproval-steps-widget.is-visible .preapproval-steps-widget__step:nth-child(3) {
  animation-delay: 1.82s;
}

.preapproval-steps-widget__step--check::before {
  width: 13px;
  height: 13px;
  mask-image: url("assets/icons/checkmark.circle.fill.svg");
  -webkit-mask-image: url("assets/icons/checkmark.circle.fill.svg");
}

.preapproval-steps-widget__step--list::before {
  mask-image: url("assets/icons/list.bullet.rectangle.portrait.fill.svg");
  -webkit-mask-image: url("assets/icons/list.bullet.rectangle.portrait.fill.svg");
}

.preapproval-steps-widget__step--upload::before {
  mask-image: url("assets/icons/arrow.up.document.fill.svg");
  -webkit-mask-image: url("assets/icons/arrow.up.document.fill.svg");
}

.preapproval-steps-widget__step--seal::before {
  mask-image: url("assets/icons/checkmark.seal.text.page.fill.svg");
  -webkit-mask-image: url("assets/icons/checkmark.seal.text.page.fill.svg");
}

.preapproval-steps-widget__button {
  width: 100%;
  min-height: 34px;
  margin-top: 18px;
  border: 1.5px solid rgba(0, 120, 58, 0.82);
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.offer-widget {
  width: 100%;
  margin-top: 2px;
  padding: 18px 16px;
  border-radius: 24px;
  background: #ffffff;
  color: #3d3d3b;
  box-shadow: 0 22px 42px -26px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.04);
  font-family: var(--font-body);
}

.offer-widget__label {
  color: rgba(61, 61, 59, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-widget__address {
  margin-top: 7px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.offer-widget__price {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.offer-widget__price span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(61, 61, 59, 0.58);
}

.offer-widget__price strong {
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--ink);
}

.offer-widget__reviewed {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  line-height: 1.25;
  color: rgba(61, 61, 59, 0.92);
}

.offer-widget__check {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(18, 185, 120, 0.45);
}

.offer-widget__check::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #12B978;
  mask-image: url("assets/icons/checkmark.circle.fill.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("assets/icons/checkmark.circle.fill.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.offer-widget__status {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 30px;
  padding: 7px 16px;
  border: 1.5px solid rgba(0, 120, 58, 0.82);
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.offer-widget__status:disabled,
.offer-widget.is-sent .offer-widget__status {
  border-color: rgba(18, 185, 120, 0.22);
  background: rgba(18, 185, 120, 0.1);
  color: var(--green);
  cursor: default;
}

.offer-call-widget {
  width: 100%;
  margin-top: 2px;
  padding: 15px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #1a1a17;
  box-shadow: 0 22px 42px -26px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.04);
  font: inherit;
  font-family: var(--font-body);
  text-align: left;
  transform-origin: center;
  transition: opacity .4s var(--ease-out), transform .18s ease, box-shadow .18s ease;
}

.offer-call-widget.is-tapping {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 10px 24px -22px rgba(10, 10, 10, 0.5), 0 1px 2px rgba(10, 10, 10, 0.04);
}

.phone-chat>.chat-seq-item.offer-call-widget.is-visible.is-tapping {
  transform: translateY(0) scale(0.97);
}

.offer-call-widget__status {
  display: none;
}

.offer-call-widget__avatar {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E8F5EF;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: inset 0 0 0 1px rgba(0, 120, 58, 0.12), 0 0 0 0 rgba(18, 185, 120, 0.36);
  animation: incomingCallPulse 1.6s ease-out infinite;
}

.offer-call-widget__copy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-right: 18px;
  line-height: 1.14;
}

.offer-call-widget__copy span {
  color: rgba(61, 61, 59, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-call-widget__copy strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.offer-call-widget__copy small {
  margin-top: 5px;
  color: rgba(61, 61, 59, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.offer-call-widget__actions {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 2px;
}

.offer-call-widget__button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 22px -14px currentColor;
}

.offer-call-widget__button--decline {
  background: #FF5A4F;
  color: #FF5A4F;
}

.offer-call-widget__button--answer {
  background: var(--green);
  color: var(--green);
}

.offer-call-widget__button .call-icon {
  color: #ffffff;
}

.call-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-image: var(--call-icon);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: var(--call-icon);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.call-icon--microphone {
  --call-icon: url("assets/icons/microphone.fill.svg");
}

.call-icon--microphone-slash,
.offer-call-sheet__control--mute.is-off .call-icon--microphone {
  --call-icon: url("assets/icons/microphone.slash.fill.svg");
}

.call-icon--phone {
  --call-icon: url("assets/icons/phone.fill.svg");
}

.call-icon--phone-down {
  --call-icon: url("assets/icons/phone.down.fill.svg");
}

.call-icon--video {
  --call-icon: url("assets/icons/video.fill.svg");
}

.call-icon--video-slash,
.offer-call-sheet__control--camera.is-off .call-icon--video {
  --call-icon: url("assets/icons/video.slash.fill.svg");
}

.offer-call-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  top: 0;
  height: auto;
  padding: 0;
  border-radius: 47px;
  background: #080907;
  box-shadow: 0 -24px 48px -34px rgba(10, 10, 10, 0.66);
  transform: translateY(104%);
  opacity: 0;
  pointer-events: none;
  transition: transform .64s var(--ease-out), opacity .24s ease;
  font-family: var(--font-body);
}

.phone-screen.offer-call-open .offer-call-sheet {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.offer-call-sheet__handle {
  display: block;
  width: 96px;
  height: 30px;
  padding: 0;
  margin: 0 auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 42px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}

.offer-call-sheet__handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
}

.offer-call-sheet__stage {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 35%, rgba(42, 74, 56, 0.96), #0D130F 68%);
  color: #ffffff;
}

.offer-call-sheet__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0D130F;
}

.offer-call-sheet__topbar {
  position: absolute;
  top: 76px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 16px;
  background: rgba(6, 9, 7, 0.48);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.offer-call-sheet__topbar strong {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: -0.01em;
}

.offer-call-sheet__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 116px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(6, 9, 7, 0.56);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.offer-call-sheet__caption i {
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: #12B978;
  box-shadow: 0 0 0 0 rgba(18, 185, 120, 0.38);
  animation: thinkingPulse 1.35s ease-out infinite;
}

.offer-call-sheet__caption span {
  min-width: 0;
  white-space: pre-line;
}

.offer-call-sheet__caption span.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  border-radius: 999px;
  background: currentColor;
  vertical-align: -0.12em;
  animation: blink .7s step-end infinite;
}

.offer-call-sheet__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 12px;
}

.offer-call-sheet__control {
  min-width: 48px;
  height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.offer-call-sheet__control--mute.is-off,
.offer-call-sheet__control--camera.is-off {
  background: rgba(255, 255, 255, 0.50);
  box-shadow: 0 10px 22px -14px rgba(255, 255, 255, 0.72);
}

.offer-call-sheet__control--end {
  min-width: 64px;
  background: #FF5A4F;
  box-shadow: 0 10px 22px -12px rgba(255, 90, 79, 0.9);
}

.closing-checklist-widget {
  width: 100%;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  color: #1a1a17;
  box-shadow: 0 22px 42px -26px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.04);
  font-family: var(--font-body);
}

.closing-checklist-widget__label {
  color: rgba(61, 61, 59, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.closing-checklist-widget__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
  align-items: center;
  min-height: 38px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.closing-checklist-widget__row span {
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.closing-checklist-widget__row small {
  grid-column: 1;
  color: rgba(61, 61, 59, 0.58);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
}

.closing-checklist-widget__row strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(18, 185, 120, 0.35);
  opacity: 0;
  transform: scale(0.65);
  will-change: opacity, transform;
}

.closing-checklist-widget__row strong::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #12B978;
  mask-image: url("assets/icons/checkmark.circle.fill.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("assets/icons/checkmark.circle.fill.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.phone-chat>.chat-seq-item.closing-checklist-widget.is-visible .closing-checklist-widget__row strong {
  animation: closingCheckPop .57s cubic-bezier(.18, 1.35, .32, 1) forwards;
}

.phone-chat>.chat-seq-item.closing-checklist-widget.is-visible .closing-checklist-widget__row:nth-child(2) strong {
  animation-delay: .12s;
}

.phone-chat>.chat-seq-item.closing-checklist-widget.is-visible .closing-checklist-widget__row:nth-child(3) strong {
  animation-delay: .36s;
}

.phone-chat>.chat-seq-item.closing-checklist-widget.is-visible .closing-checklist-widget__row:nth-child(4) strong {
  animation-delay: .6s;
}

.phone-chat>.chat-seq-item.closing-checklist-widget.is-visible .closing-checklist-widget__row:nth-child(5) strong {
  animation-delay: .84s;
}

.closing-checklist-widget__schedule {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 8ch;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes thinkingPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(18, 185, 120, 0.38);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(18, 185, 120, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(18, 185, 120, 0);
  }
}

@keyframes incomingCallPulse {
  0% {
    box-shadow: inset 0 0 0 1px rgba(0, 120, 58, 0.12), 0 0 0 0 rgba(18, 185, 120, 0.38);
  }

  70% {
    box-shadow: inset 0 0 0 1px rgba(0, 120, 58, 0.12), 0 0 0 10px rgba(18, 185, 120, 0);
  }

  100% {
    box-shadow: inset 0 0 0 1px rgba(0, 120, 58, 0.12), 0 0 0 0 rgba(18, 185, 120, 0);
  }
}

@keyframes preapprovalProgressLine {
  to {
    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes preapprovalStepDoneActivate {
  0% {
    background: #12B978;
    color: #ffffff;
    box-shadow: 0 0 0 4px #12B978;
    transform: scale(0.88);
  }

  62% {
    background: #12B978;
    color: #ffffff;
    box-shadow: 0 0 0 5px #12B978, 0 8px 18px -12px rgba(0, 120, 58, 0.65);
    transform: scale(1.08);
  }

  100% {
    background: #12B978;
    color: #ffffff;
    box-shadow: 0 0 0 4px #12B978;
    transform: scale(1);
  }
}

@keyframes preapprovalStepCurrentActivate {
  0% {
    background: #E8F5EF;
    color: var(--green);
    box-shadow: 0 0 0 4px #12B978;
    transform: scale(0.88);
  }

  62% {
    background: #E8F5EF;
    color: var(--green);
    box-shadow: 0 0 0 5px #12B978, 0 8px 18px -12px rgba(0, 120, 58, 0.65);
    transform: scale(1.08);
  }

  100% {
    background: #E8F5EF;
    color: var(--green);
    box-shadow: 0 0 0 4px #12B978;
    transform: scale(1);
  }
}

@keyframes closingCheckPop {
  0% {
    opacity: 0;
    transform: scale(0.65);
  }

  68% {
    opacity: 1;
    transform: scale(1.14);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes listingHeartPulse {
  0% {
    opacity: 0;
    transform: scale(0.45);
  }

  34% {
    opacity: 1;
    transform: scale(1.08);
  }

  72% {
    opacity: .92;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes calendarNotificationInOut {
  0% {
    opacity: 0;
    transform: translateY(-26px) scale(0.96);
  }

  12% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  82% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
  }
}

/* ===== FAQ ===== */
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: clamp(22px, 2.4vw, 28px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-body);
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #d4d4c9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  font-size: 0;
  line-height: 1;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-row.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
}

/* ===== Reveal animation ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-fill] {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1.5px solid #d4d4c9;
  background: #ffffff;
  color: #aaaa9e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  transition: background .5s ease, color .5s ease, border-color .5s ease, box-shadow .5s ease;
}

[data-reveal].revealed [data-fill] {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 10px 22px -8px rgba(0, 120, 58, 0.7);
}

[data-reveal].revealed .testimonial-card {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].revealed .testimonial-card:nth-child(2) {
  transition-delay: .1s;
}

[data-reveal].revealed .testimonial-card:nth-child(3) {
  transition-delay: .2s;
}

[data-reveal].revealed .testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 120, 58, 0.18);
  box-shadow: 0 24px 44px -28px rgba(10, 10, 10, 0.55);
  transition-delay: 0s;
}

/* ===== Layout utilities ===== */
.section {
  padding: clamp(64px, 9vw, 128px) clamp(20px, 6vw, 80px);
}

.section--cream {
  background: var(--cream);
}

.section--forest {
  background: var(--forest);
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container--narrow {
  max-width: 860px;
}

.container--mid {
  max-width: 1080px;
}

/* ===== Typography utilities ===== */
.h-hero {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.h-section {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.h-step {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: var(--body);
}

.body-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--body);
}

/* ===== Journey step component ===== */
.journey-step {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.journey-step__content {
  flex: 1 1 380px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.journey-step__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.journey-step__label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a3a399;
}

.journey-step__visual {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

/* ===== Feature cards ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--cream);
  border-radius: 22px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.015em;
  color: var(--ink);
}

.feature-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--body);
}

/* ===== FAQ question text ===== */
.faq-question {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: left;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 clamp(22px, 2.4vw, 28px);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--body);
  max-width: 62ch;
}

/* ===== Site nav ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 1px 0 rgba(10, 10, 10, 0.03);
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.site-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px clamp(20px, 6vw, 80px);
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav__logo {
  display: flex;
  align-items: center;
  width: 100px;
  text-decoration: none;
}

.site-nav__logo img {
  width: 100%;
  height: auto;
}

.site-nav__links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform .25s, opacity .25s;
}

.site-nav__mobile {
  display: none;
  padding: 0 clamp(20px, 6vw, 80px) 24px;
  flex-direction: column;
  gap: 18px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .site-nav__links {
    display: none;
  }

  .site-nav__inner {
    gap: 12px;
  }

  .site-nav__inner > .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-open .site-nav__mobile {
    display: flex;
  }

  .download-hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .download-hero h1 {
    max-width: 9ch;
  }

  .store-actions,
  .store-badge {
    width: 100%;
  }

  .download-values {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none !important;
  }

  .site-nav__mobile {
    display: none !important;
  }

  .download-hero__visual,
  .home-hero__visual {
    justify-content: end !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .start-footer-waves__path {
    animation: none;
  }

  .start-footer-waves animate {
    display: none;
  }

  .cta-pulse-dot,
  .thinking-indicator i,
  .offer-call-sheet__caption i,
  .offer-call-widget__status {
    animation: none;
  }

  .calendar-notification.is-visible {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .thinking-indicator__text {
    animation: none;
    width: auto;
    border-right-color: transparent;
  }

  .start-typewriter {
    animation: none !important;
    width: auto;
  }

  .phone-chat>.chat-seq-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }


  .credit-coach-widget__ring-progress {
    stroke-dashoffset: calc(100 - var(--credit-ring-progress, 78)) !important;
    transition: none !important;
  }

  .credit-coach-widget,
  .offer-call-widget,
  .phone-credit-sheet,
  .offer-call-sheet {
    transition: none !important;
  }

  .credit-meter span {
    transform: scaleX(1) !important;
    transition: none !important;
  }

  .preapproval-steps-widget__progress::after {
    animation: none !important;
    transform: translateY(-50%) scaleX(1) !important;
  }

  .preapproval-steps-widget__step {
    animation: none !important;
    transform: none !important;
  }

  .phone-chat>.chat-seq-item.preapproval-steps-widget.is-visible .preapproval-steps-widget__step--done {
    background: #12B978 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 4px #12B978 !important;
  }

  .phone-chat>.chat-seq-item.preapproval-steps-widget.is-visible .preapproval-steps-widget__step--current {
    background: #E8F5EF !important;
    color: var(--green) !important;
    box-shadow: 0 0 0 4px #12B978 !important;
  }

  .closing-checklist-widget__row strong {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .thinking-indicator {
    display: none !important;
  }

  [data-reveal].revealed .testimonial-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}