:root {
  --bg-top: #f8faf4;
  --bg-mid: #e5ecdf;
  --bg-deep: #22362a;
  --panel-dark: rgba(20, 34, 25, 0.82);
  --panel-light: rgba(255, 255, 255, 0.6);
  --card-border: rgba(255, 255, 255, 0.28);
  --text-main: #10241f;
  --text-muted: #4d625d;
  --text-inverse: #f3f6ef;
  --accent: #7fbf3f;
  --accent-strong: #4f8d1f;
  --accent-soft: #edf7df;
  --shadow-soft: 0 20px 60px rgba(12, 31, 27, 0.12);
  --shadow-strong: 0 30px 80px rgba(4, 24, 20, 0.28);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --header-height: 72px;
  --container: min(1180px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 34%),
    radial-gradient(circle at top right, rgba(123, 150, 96, 0.12), transparent 22%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 34%, #c6d2ba 58%, var(--bg-deep) 100%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  overflow: visible;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.6;
  z-index: 0;
}

.page-shell::before {
  width: 22rem;
  height: 22rem;
  top: 7rem;
  right: -8rem;
  background: rgba(139, 164, 103, 0.16);
}

.page-shell::after {
  width: 16rem;
  height: 16rem;
  bottom: 10rem;
  left: -4rem;
  background: rgba(255, 255, 255, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.45rem 0 0;
}

.nav {
  position: relative;
  top: auto;
  z-index: auto;
  width: var(--container);
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(12, 31, 27, 0.08);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(127, 191, 63, 0.16);
  color: var(--text-main);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(12, 31, 27, 0.05);
}

.nav-phone-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.nav-phone strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4f8ee, #cddbbf);
  color: var(--accent-strong);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong,
.nav-menu a,
h1,
h2,
h3,
.btn,
.card-label,
.listing-price,
.listing-location,
.agent-badge,
.stat-number {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span:last-child {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-menu a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-main);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.24rem auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.panel {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: clamp(5rem, 8vw, 7rem) 0;
  display: flex;
  align-items: center;
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.panel-contrast {
  color: var(--text-inverse);
}

.panel-soft {
  color: var(--text-main);
}

.panel-inner {
  width: var(--container);
  margin: 0 auto;
}

.hero-panel {
  min-height: 100vh;
  padding-top: calc(var(--header-height) - 0.35rem);
  padding-bottom: 0.75rem;
  align-items: flex-start;
}

.hero-layout,
.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.9fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
  align-items: start;
}

.hero-copy,
.hero-aside {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(181, 54, 54, 0.1);
  border: 1px solid rgba(181, 54, 54, 0.16);
  color: #8b2f2f;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.15rem, 4.1vw, 3.7rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.glass-card p,
.listing-note,
.agent-points li,
.metric-list span,
.cta-points li,
.stat-label {
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 40ch;
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.52;
}

.panel-contrast .hero-text,
.panel-contrast .section-heading p,
.panel-contrast .glass-card p,
.panel-contrast .listing-note,
.panel-contrast .agent-points li,
.panel-contrast .metric-list span,
.panel-contrast .cta-points li,
.panel-contrast .stat-label {
  color: rgba(238, 248, 243, 0.82);
}

.panel-soft .section-heading p,
.panel-soft .glass-card p,
.panel-soft .agent-points li {
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #8fd34a, #5ea62b);
  color: #f7faf3;
  box-shadow: 0 16px 30px rgba(78, 130, 32, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #9ee255, #68b331);
  box-shadow: 0 18px 34px rgba(86, 143, 36, 0.32);
}

.btn-secondary {
  border-color: rgba(16, 36, 31, 0.16);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-main);
}

.panel-contrast .btn-secondary,
.sticky-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.glass-chip,
.glass-card,
.thesis-card,
.sticky-cta {
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px);
}

.glass-chip {
  padding: 0.82rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 247, 223, 0.98));
  border-color: rgba(127, 191, 63, 0.3);
  box-shadow:
    0 14px 28px rgba(67, 112, 28, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.glass-chip strong,
.glass-chip span {
  display: block;
}

.glass-chip strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

.glass-card,
.thesis-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--panel-light);
  box-shadow: var(--shadow-soft);
}

.panel-contrast .glass-card,
.panel-contrast .thesis-card {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.focus-card h2,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-image-card {
  padding: 0.7rem;
}

.card-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.panel-contrast .card-label {
  color: #c6efe1;
}

.metric-list,
.agent-points,
.cta-points {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.metric-list li,
.agent-points li,
.cta-points li {
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 36, 31, 0.09);
}

.panel-contrast .metric-list li,
.panel-contrast .agent-points li,
.panel-contrast .cta-points li {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.metric-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.section-heading {
  max-width: 56rem;
}

.section-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}

.feature-grid,
.listing-grid,
.agents-grid,
.faq-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.7rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.listing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agents-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid h3,
.listing-card h3,
.agent-card h3,
.faq-grid h3 {
  margin: 0.55rem 0 0.7rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

.map-panel {
  min-height: auto;
  padding: clamp(1rem, 2.5vw, 1.8rem) 0;
}

.benefit-panel {
  min-height: auto;
  padding: 0 0 clamp(1rem, 2.5vw, 1.6rem);
}

.benefit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
}

.benefit-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(181, 54, 54, 0.1);
  border: 1px solid rgba(181, 54, 54, 0.16);
  color: #8b2f2f;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-card p {
  color: var(--text-main);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.map-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(237, 247, 223, 0.74)),
    repeating-linear-gradient(
      -45deg,
      rgba(127, 191, 63, 0.035) 0,
      rgba(127, 191, 63, 0.035) 16px,
      rgba(255, 255, 255, 0.08) 16px,
      rgba(255, 255, 255, 0.08) 32px
    );
  box-shadow: var(--shadow-soft);
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(79, 141, 31, 0.09);
}

.map-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.26) 50%, transparent 78%);
  transform: translateX(-100%);
  animation: map-shimmer 6s ease-in-out infinite;
}

@keyframes map-shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.listing-card {
  display: flex;
  flex-direction: column;
  min-height: 16rem;
}

.image-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: calc(var(--radius-md) - 4px);
  border: 1px dashed rgba(16, 36, 31, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(202, 229, 219, 0.34)),
    repeating-linear-gradient(
      -45deg,
      rgba(15, 123, 99, 0.08) 0,
      rgba(15, 123, 99, 0.08) 12px,
      rgba(255, 255, 255, 0.12) 12px,
      rgba(255, 255, 255, 0.12) 24px
    );
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.image-placeholder span {
  position: relative;
  z-index: 1;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--accent-strong);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.real-image {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.panel-contrast .image-placeholder {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(74, 143, 123, 0.18)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 12px,
      rgba(0, 0, 0, 0.04) 12px,
      rgba(0, 0, 0, 0.04) 24px
    );
}

.panel-contrast .image-placeholder span {
  background: rgba(8, 35, 30, 0.58);
  color: #d7f6ea;
}

.hero-placeholder {
  height: min(43vh, 26rem);
}

.listing-placeholder {
  height: 9rem;
  margin-bottom: 0.85rem;
}

.listing-card:not(.listing-card-more) .listing-placeholder {
  aspect-ratio: 4 / 3;
  height: auto;
}

.agent-placeholder {
  aspect-ratio: 4 / 5;
  height: auto;
  margin-bottom: 0.85rem;
}

.feature-placeholder,
.faq-placeholder {
  margin-bottom: 0.85rem;
}

.feature-placeholder {
  aspect-ratio: 4 / 3;
  height: auto;
  margin-bottom: 0.85rem;
}

.faq-placeholder {
  height: 7rem;
}

.faq-grid .glass-card {
  padding-top: 1.15rem;
}

.cta-placeholder {
  height: 8.5rem;
  margin-bottom: 0.85rem;
}

.listing-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.listing-location {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(127, 191, 63, 0.18);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.listing-price {
  font-size: 0.95rem;
  font-weight: 800;
}

.listing-urgency {
  display: inline-flex;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: #d94747;
  color: #fff7f7;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.listing-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.listing-availability {
  margin-top: 0.85rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-main);
}

.listing-note {
  margin-top: auto;
  padding-top: 0.85rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.listing-button {
  margin-top: auto;
}

.agent-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(127, 191, 63, 0.14);
  border: 1px solid rgba(127, 191, 63, 0.2);
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.agent-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-soft);
}

.agent-card p,
.agent-card li,
.agent-card h3 {
  color: var(--text-main);
}

.agent-card .agent-points li {
  border-top-color: rgba(16, 36, 31, 0.09);
}

.agent-footnote,
.closing-note {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.cta-eyebrow {
  color: #d8efe6;
}

.final-panel .section-heading h2 {
  color: #eef6e9;
}

.urgency-card {
  max-width: 38rem;
  justify-self: end;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 0.85rem;
  z-index: 40;
  width: min(640px, calc(100% - 1.25rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.65rem 0.75rem;
  border-radius: 26px;
  background: rgba(24, 40, 29, 0.86);
  color: var(--text-inverse);
  box-shadow: var(--shadow-strong);
  transform: translate(-50%, calc(100% + 1.5rem));
  transition: transform 160ms ease;
}

.sticky-cta.is-visible {
  transform: translate(-50%, 0);
}

.sticky-cta p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.sticky-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: nowrap;
}

.sticky-actions .btn {
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  flex: 1 1 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .sticky-cta,
  .btn,
  .nav-toggle span,
  .nav-menu a::after {
    transition: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --container: min(1100px, calc(100% - 1.5rem));
  }

  .hero-layout,
  .final-layout,
  .feature-grid,
  .listing-grid,
  .agents-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .urgency-card {
    justify-self: stretch;
    max-width: none;
  }

  .hero-panel {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero-placeholder {
    height: 18rem;
  }

}

@media (max-width: 820px) {
  .site-header {
    padding-top: 0;
  }

  .nav {
    border-radius: 1.5rem;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 2;
  }

  .nav-phone {
    order: 4;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    padding: 0.5rem 0.75rem;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.8rem;
    background: rgba(249, 252, 250, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .nav-menu a {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: rgba(123, 150, 96, 0.1);
  }

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

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 62px;
    --container: calc(100% - 1rem);
  }

  .nav {
    padding: 0.45rem 0.7rem;
  }

  .brand-copy span:last-child {
    display: none;
  }

  .panel {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-panel {
    min-height: 100vh;
    padding-top: 0.15rem;
    padding-bottom: 1rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.95;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    align-content: start;
  }

  .hero-aside {
    order: -1;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-badge {
    margin-bottom: 0.68rem;
    font-size: 0.73rem;
  }

  .benefit-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.95rem 1rem;
  }

  .benefit-card p {
    font-size: 0.92rem;
  }

  .hero-text {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-placeholder {
    height: 13.5rem;
  }

  .hero-image-card {
    padding: 0.4rem;
  }

  .hero-proof {
    gap: 0.55rem;
    margin-top: 0.8rem;
  }

  .glass-chip {
    font-size: 0.82rem;
    padding: 0.74rem 0.9rem;
  }

  .glass-chip strong {
    font-size: 0.88rem;
  }

  .hero-actions {
    margin-top: 0.8rem;
  }

  .glass-card,
  .thesis-card {
    padding: 1rem;
  }

  .section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .section-heading p,
  .glass-card p,
  .listing-card p,
  .agent-points li,
  .cta-points li {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .listing-topline,
  .hero-actions {
    flex-direction: column;
  }

  .sticky-cta {
    width: min(560px, calc(100% - 1rem));
    gap: 0.65rem;
    padding: 0.6rem 0.65rem;
    align-items: center;
  }

  .sticky-cta p {
    font-size: 0.82rem;
  }

  .sticky-actions {
    width: auto;
  }

  .feature-placeholder {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .faq-placeholder {
    height: 6rem;
  }

  .agent-placeholder {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .listing-placeholder {
    height: 8rem;
  }

  .cta-placeholder {
    height: 7rem;
  }
}
