:root {
  /* Core neutrals aligned with in‑app tenant UI */
  --white: #ffffff;
  --cream: #f5f5f7;
  /* base app background */
  --warm-white: #f8f9fa;
  /* cards / sections */
  --beige: #f0f0f3;
  --light-tan: #e5e5ea;
  --tan: #d1d1d6;
  --warm-gray: #86868b;
  --med-gray: #6e6e73;
  --dark-gray: #3a3a3c;
  --charcoal: #1d1d1f;
  /* primary text / buttons */
  --black: #000000;

  /* Accents - warm orange/beige for homely feel */
  --accent: #e8974e;
  /* warm orange - primary accent */
  --accent-dark: #c77a3e;
  /* darker orange for hover states */
  --accent-light: #fff4eb;
  /* light peach for backgrounds */
  --warm-orange: #e8974e;
  /* main warm orange */
  --peach: #ffb896;
  /* soft peach for gradients */
  --sage: #22c55e;
  /* success states */
  --terracotta: #e74c3c;
  /* error / due badge */

  /* 3D Hero Scene palette */
  --navy-primary: #1a1a2e;
  --gold-primary: #e8974e;

  --font-sans: 'Outfit', -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono: 'DM Mono', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: auto;
  /* fallback — JS adds .cursor-ready to hide */
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

body.cursor-ready {
  cursor: none;
}

/* Subtle background with warm orange tint */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

/* Paper-like texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

main,
nav,
footer,
.mob-menu {
  position: relative;
  z-index: 2;
}

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

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

button {
  font: inherit;
  cursor: none;
  background: none;
  border: none;
  color: inherit;
}

/* ============ CUSTOM CURSOR & TORCH EFFECT ============ */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(232, 151, 78, 0.3);
}

.cursor-dot.hover {
  transform: scale(1.5);
}

.cursor-outline {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
}

.cursor-outline.hover {
  width: 48px;
  height: 48px;
  border-color: var(--accent-dark);
}

/* Torch/Spotlight Effect - Subtle glow for light background */
.torch-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle 450px at var(--mouse-x, 50%) var(--mouse-y, 50%),
      transparent 0%,
      rgba(232, 151, 78, 0.03) 25%,
      rgba(253, 251, 247, 0.6) 50%,
      rgba(253, 251, 247, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.torch-active .torch-overlay {
  opacity: 1;
}

/* ============ PRELOADER ============ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

#preloader.done {
  animation: preloaderOut 1s var(--ease-in-out) forwards;
}

@keyframes preloaderOut {
  0% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(0 0 100% 0);
  }
}

.pre-word {
  font-family: var(--font-serif);
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(40px);
  animation: preWordIn 0.8s var(--ease-out-expo) 0.2s forwards;
  color: var(--charcoal);
}

@keyframes preWordIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pre-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--warm-gray);
  opacity: 0;
  transform: translateY(20px);
  animation: preWordIn 0.8s var(--ease-out-expo) 0.4s forwards;
}

.pre-line {
  width: 80px;
  height: 3px;
  background: var(--tan);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-top: 8px;
}

.pre-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: preLineGo 1.5s var(--ease-in-out) 0.5s forwards;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
}

@keyframes preLineGo {
  to {
    transform: scaleX(1);
  }
}

.pre-percent {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--med-gray);
  opacity: 0;
  animation: preWordIn 0.6s var(--ease-out-expo) 0.6s forwards;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 251, 247, 0);
  backdrop-filter: blur(0px);
  transition: all 0.4s var(--ease-out-quint);
}

.nav.scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 48px;
  border-bottom: 1px solid rgba(232, 151, 78, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

@media (max-width: 1024px) {
  .nav {
    padding: 16px 20px;
  }

  .nav.scrolled {
    padding: 12px 20px;
  }
}

.nav-logo {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  transition: transform 0.3s var(--ease-out-quint);
  color: var(--charcoal);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out-quint);
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--ease-out-quint);
  box-shadow: 0 4px 12px rgba(232, 151, 78, 0.2);
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 151, 78, 0.3);
}

@media (max-width: 1024px) {
  .nav-cta {
    display: none;
  }
}

.nav-cta-mob {
  margin-top: 12px;
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(232, 151, 78, 0.25);
  display: block;
}

.nav-cta-mob:hover {
  transform: scale(1.05);
}



.mob-toggle {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
}

.mob-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

.mob-toggle span:nth-child(1) {
  top: 0;
}

.mob-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mob-toggle span:nth-child(3) {
  bottom: 0;
}

.mob-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mob-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mob-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

@media (max-width: 1024px) {

  .nav-links {
    display: none;
  }

  .mob-toggle {
    display: block;
  }
}

.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.mob-menu.active {
  opacity: 1;
  visibility: visible;
}

.mob-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mob-menu nav a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.mob-menu.active nav a {
  animation: fadeInUp 0.6s var(--ease-out-quint) forwards;
}

.mob-menu.active nav a:nth-child(1) {
  animation-delay: 0.1s;
}

.mob-menu.active nav a:nth-child(2) {
  animation-delay: 0.2s;
}

.mob-menu.active nav a:nth-child(3) {
  animation-delay: 0.3s;
}

.mob-menu.active nav a:nth-child(4) {
  animation-delay: 0.4s;
}

.mob-menu.active nav a:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

.mob-menu nav a:hover {
  color: var(--charcoal);
  transform: translateX(10px);
}

/* Scroll Progress Bar */
#scrollProg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--peach));
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(232, 151, 78, 0.3);
}

/* ============ MARQUEE/TICKER ============ */
.ticker {
  padding: 20px 0;
  margin-top: 80px;
  /* Space below nav */
  border-bottom: 2px solid var(--beige);
  border-top: 2px solid var(--beige);
  overflow: hidden;
  background: var(--white);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(232, 151, 78, 0.1);
}

@media (max-width: 768px) {
  .ticker {
    margin-top: 64px;
    padding: 16px 0;
    /* Less space on mobile */
  }
}

.ticker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--white) 0%, transparent 10%, transparent 90%, var(--white) 100%);
  pointer-events: none;
  z-index: 1;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: tickerGo 50s linear infinite;
  will-change: transform;
}

@media (max-width: 768px) {
  .ticker-track {
    gap: 32px;
    animation: tickerGo 38s linear infinite;
  }
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerGo {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

.ticker-track span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
  letter-spacing: 1.2px;
  font-weight: 500;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ticker-track span {
    font-size: 11px;
    letter-spacing: 0.8px;
  }
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 1;
}

/* ============ SECTIONS CONTAINER ============ */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  gap: 48px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232, 151, 78, 0.06), transparent),
    radial-gradient(ellipse 80% 50% at 65% 30%, rgba(15, 52, 96, 0.07), transparent),
    radial-gradient(ellipse 60% 60% at 20% 70%, rgba(168, 181, 160, 0.06), transparent),
    linear-gradient(to bottom, var(--warm-white), var(--cream));
}

/* ===== Floating Magic Elements ===== */
.hero-magic {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}

.magic-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  animation: orbFloat 8s ease-in-out infinite;
}

.magic-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 151, 78, 0.12), transparent 70%);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.magic-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
  bottom: 20%;
  left: 5%;
  animation-delay: -3s;
}

.magic-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 151, 78, 0.08), transparent 70%);
  top: 50%;
  left: 40%;
  animation-delay: -5s;
}

@keyframes orbFloat {

  0%,
  100% {
    opacity: 0.4;
    transform: translate(0, 0) scale(1);
  }

  25% {
    opacity: 0.7;
    transform: translate(20px, -30px) scale(1.1);
  }

  50% {
    opacity: 0.5;
    transform: translate(-10px, 20px) scale(0.95);
  }

  75% {
    opacity: 0.8;
    transform: translate(15px, 10px) scale(1.05);
  }
}

.magic-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 151, 78, 0.1);
  opacity: 0;
  animation: ringPulse 6s ease-in-out infinite;
}

.magic-ring-1 {
  width: 400px;
  height: 400px;
  top: 5%;
  left: -5%;
  animation-delay: 0s;
}

.magic-ring-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: -3%;
  animation-delay: -2s;
}

@keyframes ringPulse {

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

  50% {
    opacity: 0.3;
    transform: scale(1.1);
  }
}

.magic-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: dotDrift 10s ease-in-out infinite;
}

.magic-dot-1 {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.magic-dot-2 {
  top: 25%;
  right: 15%;
  animation-delay: -2s;
}

.magic-dot-3 {
  bottom: 30%;
  left: 30%;
  animation-delay: -4s;
  width: 3px;
  height: 3px;
}

.magic-dot-4 {
  top: 60%;
  right: 25%;
  animation-delay: -6s;
  width: 5px;
  height: 5px;
}

.magic-dot-5 {
  bottom: 15%;
  left: 60%;
  animation-delay: -8s;
}

@keyframes dotDrift {

  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }

  20% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.3;
    transform: translateY(-40px);
  }

  80% {
    opacity: 0.5;
  }
}

/* Split Background: Two Worlds */
.hero-split {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 0;
  pointer-events: none;
}

.hero-half {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-half-owner {
  background: linear-gradient(135deg,
      rgba(26, 26, 46, 0.09) 0%,
      rgba(26, 26, 46, 0.03) 60%,
      transparent 100%);
  color: #1a1a2e;
}

.hero-half-tenant {
  background: linear-gradient(225deg,
      rgba(232, 151, 78, 0.09) 0%,
      rgba(232, 151, 78, 0.03) 60%,
      transparent 100%);
  color: #e8974e;
}

/* Silhouettes */
.hero-silhouette {
  position: absolute;
  pointer-events: none;
}

.sil-building {
  bottom: 0;
  left: 5%;
  width: 220px;
  height: auto;
  opacity: 0;
  transform: translateY(40px);
}

.sil-key {
  top: 12%;
  right: 8%;
  width: 140px;
  height: auto;
  opacity: 0;
  transform: translateY(-30px);
}

.hero-blob {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  opacity: 0.15;
  z-index: 0;
}

.hero-blob svg {
  width: 100%;
  height: 100%;
}

.hero-blob path {
  fill: var(--accent);
  transition: d 2s ease-in-out;
}

/* ===== ANIMATED HERO SCENE ===== */
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.scene-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background-image:
    linear-gradient(90deg, rgba(232, 151, 78, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(232, 151, 78, 0.025) 1px, transparent 1px);
  background-size: 80px 60px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.scene-pin {
  position: absolute;
  opacity: 0;
  animation: scenePinIn 1s var(--ease-out-expo) forwards, scenePinFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 3px 8px rgba(232, 151, 78, 0.25));
}

@keyframes scenePinIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.5);
  }

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

@keyframes scenePinFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.scene-pin-1 {
  top: 10%;
  right: 16%;
  width: 40px;
  animation-delay: 1.5s, 1.5s;
}

.scene-pin-2 {
  top: 22%;
  right: 6%;
  width: 30px;
  animation-delay: 2s, 2s;
}

.scene-pin-3 {
  top: 6%;
  right: 32%;
  width: 22px;
  animation-delay: 2.8s, 2.8s;
  opacity: 0;
}

@media(max-width:768px) {
  .scene-pin-1 {
    top: 6%;
    right: 8%;
    width: 30px
  }

  .scene-pin-2 {
    top: 15%;
    right: 3%;
    width: 24px
  }

  .scene-pin-3 {
    display: none
  }
}

.scene-house {
  position: absolute;
  bottom: 4%;
  opacity: 0;
  animation: houseRise 1.2s var(--ease-out-expo) forwards;
  filter: drop-shadow(0 4px 16px rgba(232, 151, 78, 0.05));
}

@keyframes houseRise {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.7);
  }

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

.scene-house-1 {
  right: 3%;
  animation-delay: 0.6s;
}

.scene-house-2 {
  right: 17%;
  bottom: 6%;
  animation-delay: 0.9s;
}

.scene-house-3 {
  right: 30%;
  bottom: 2%;
  animation-delay: 1.2s;
}

.scene-house-4 {
  right: 40%;
  bottom: 8%;
  animation-delay: 1.5s;
}

@media(max-width:768px) {
  .scene-house-1 svg {
    width: 110px;
    height: auto
  }

  .scene-house-2 svg {
    width: 85px;
    height: auto
  }

  .scene-house-3 svg {
    width: 65px;
    height: auto
  }

  .scene-house-4 {
    display: none
  }
}

.scene-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 151, 78, 0.5), transparent 70%);
  animation: windowGlow 3s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes windowGlow {
  0% {
    opacity: 0.2;
    transform: scale(0.8);
  }

  100% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.glow-1 {
  width: 10px;
  height: 10px;
  bottom: 12%;
  right: 7.5%;
  animation-delay: 0s
}

.glow-2 {
  width: 9px;
  height: 9px;
  bottom: 13%;
  right: 10.5%;
  animation-delay: 0.8s
}

.glow-3 {
  width: 8px;
  height: 8px;
  bottom: 14.5%;
  right: 21%;
  animation-delay: 1.5s
}

.glow-4 {
  width: 8px;
  height: 8px;
  bottom: 12%;
  right: 23%;
  animation-delay: 0.3s
}

.glow-5 {
  width: 7px;
  height: 7px;
  bottom: 16%;
  right: 33.5%;
  animation-delay: 2s
}

@media(max-width:768px) {
  .scene-glow {
    display: none
  }
}

.scene-cloud {
  position: absolute;
  pointer-events: none;
  animation: cloudDrift linear infinite;
}

@keyframes cloudDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100vw - 300px));
  }
}

.scene-cloud-1 {
  top: 5%;
  left: 60%;
  animation-duration: 55s;
  animation-delay: 0s;
}

.scene-cloud-2 {
  top: 14%;
  left: 100%;
  animation-duration: 65s;
  animation-delay: 8s;
}

.scene-cloud-3 {
  top: 2%;
  left: 100%;
  animation-duration: 75s;
  animation-delay: 22s;
}

.scene-cloud-4 {
  top: 22%;
  left: 30%;
  animation-duration: 80s;
  animation-delay: 0s;
}

/* Pulse ring on pins */
.scene-pin::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 151, 78, 0.3);
  transform: translate(-50%, -50%) scale(0.5);
  animation: pinPulse 2.5s ease-out infinite;
}

@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

/* Sparkle dots near houses */
.scene-sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {

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

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.sparkle-1 {
  bottom: 22%;
  right: 12%;
  animation-delay: 0s;
}

.sparkle-2 {
  bottom: 18%;
  right: 25%;
  animation-delay: 1.2s;
}

.sparkle-3 {
  bottom: 26%;
  right: 8%;
  animation-delay: 0.6s;
}

.sparkle-4 {
  bottom: 14%;
  right: 35%;
  animation-delay: 1.8s;
}

.sparkle-5 {
  bottom: 20%;
  right: 42%;
  animation-delay: 2.4s;
}

.sparkle-6 {
  top: 15%;
  right: 20%;
  animation-delay: 0.4s;
}

@media(max-width:768px) {
  .scene-sparkle {
    display: none
  }
}

/* Soft horizon glow behind buildings */
.scene-horizon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 40%;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(232, 151, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.scene-path {
  position: absolute;
  bottom: 10%;
  right: 3%;
  pointer-events: none;
  opacity: 0;
  animation: pathReveal 2.5s ease-out 2.2s forwards;
}

@keyframes pathReveal {
  to {
    opacity: 1;
  }
}

.scene-path path {
  stroke-dasharray: 8 6;
  animation: pathWalk 4s linear infinite;
}

@keyframes pathWalk {
  to {
    stroke-dashoffset: -56;
  }
}

@media(max-width:768px) {
  .scene-path svg {
    width: 240px;
    height: auto
  }
}

.hero-bg-vid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
  transform: scale(1.1);
  transition: transform 8s ease-out;
  mix-blend-mode: multiply;
  display: none;
}

.hero:hover .hero-bg-vid {
  transform: scale(1);
}

.hero-bg-vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(250, 248, 244, 0.3) 0%,
      rgba(250, 248, 244, 0.6) 50%,
      rgba(253, 251, 247, 0.9) 100%);
  display: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  pointer-events: auto;
  text-align: center;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s var(--ease-out-expo);
}

.hero-eyebrow.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.hero-line-accent {
  font-style: italic;
  background: linear-gradient(90deg, var(--accent), var(--peach), var(--accent));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s ease-in-out infinite;
}

@keyframes shimmerText {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-line {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* Hand-drawn underline effect */
.hero-line.underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='12' viewBox='0 0 400 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2,7 Q10,3 20,6 T40,5 T60,7 T80,5 T100,6 T120,7 T140,5 T160,6 T180,7 T200,5 T220,6 T240,7 T260,5 T280,7 T300,6 T320,7 T340,5 T360,6 T380,7 T398,6' fill='none' stroke='%23e8974e' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 1s var(--ease-out-expo) 0.5s;
}

.hero-line.underline.show::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-line.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-line:nth-child(2) {
  transition-delay: 0.15s;
}

.hero-desc {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--med-gray);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  opacity: 1;
  transform: translateY(0);
}

.hero-desc.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 151, 78, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  border: 1px solid rgba(232, 151, 78, 0.12);
}

.trust-icon {
  font-size: 14px;
}

.trust-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s var(--ease-out-expo) 0.6s;
}

.hero-cta-group.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  width: 220px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out-quint);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--peach));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 151, 78, 0.3);
  animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(232, 151, 78, 0.3);
  }

  50% {
    box-shadow: 0 6px 32px rgba(232, 151, 78, 0.5), 0 0 60px rgba(232, 151, 78, 0.1);
  }
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--peach), var(--accent));
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-quint);
}

.hero-btn-primary span {
  position: relative;
  z-index: 1;
}

.hero-btn-primary:hover::before {
  transform: translateY(0);
}

.hero-btn-primary:hover {
  box-shadow: 0 8px 30px rgba(232, 151, 78, 0.5);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: rgba(232, 151, 78, 0.05);
}

.hero-btn-secondary:hover {
  border-color: var(--peach);
  background: rgba(232, 151, 78, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232, 151, 78, 0.2);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-scroll-cue.show {
  opacity: 1;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--tan);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
  }
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan);
}

@media (max-width: 768px) {
  .hero-scroll-cue {
    display: none;
  }
}



/* ============ SCROLL REVEALS ============ */
.sr {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s var(--ease-out-expo);
}

.sr.vis {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s !important;
}

.sr-d1 {
  transition-delay: 0.1s;
}

.sr-d2 {
  transition-delay: 0.2s;
}

.sr-d3 {
  transition-delay: 0.3s;
}

.sr-d4 {
  transition-delay: 0.4s;
}

/* ============ HOW IT WORKS ============ */
.how {
  padding: 100px 0;
  position: relative;
  background: var(--cream);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 80px;
  color: var(--charcoal);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  margin-top: 60px;
}

.step {
  position: relative;
  padding: 40px;
  border-radius: 24px;
  background: var(--white);
  border: 2px solid var(--beige);
  transition: all 0.6s var(--ease-out-quint);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(232, 151, 78, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s;
}

.step::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent), var(--peach), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s;
}

.step:hover {
  transform: translateY(-8px);
  background: var(--warm-white);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(232, 151, 78, 0.15);
}

.step:hover::before {
  opacity: 1;
}

.step:hover::after {
  opacity: 0.2;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--med-gray);
  position: relative;
  z-index: 1;
}

/* ============ MANIFESTO / REALITY ============ */
.manifesto {
  padding: 60px 0;
  position: relative;
  background: var(--white);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: var(--med-gray);
}

.manifesto-text strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* Hand-drawn strikethrough effect */
.manifesto-text .strikethrough {
  position: relative;
  display: inline;
  color: var(--warm-gray);
}

.manifesto-text .strikethrough::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 50%;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='16' viewBox='0 0 500 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5,8 Q15,5 25,9 T45,7 T65,9 T85,7 T105,8 T125,9 T145,7 T165,8 T185,9 T205,7 T225,8 T245,9 T265,7 T285,9 T305,8 T325,9 T345,7 T365,8 T385,9 T405,7 T425,8 T445,9 T465,7 T485,8 T495,9' fill='none' stroke='%231e4976' stroke-width='2.5' stroke-linecap='round' opacity='0.7'/%3E%3Cpath d='M3,10 Q13,7 23,11 T43,9 T63,11 T83,9 T103,10 T123,11 T143,9 T163,10 T183,11 T203,9 T223,10 T243,11 T263,9 T283,11 T303,10 T323,11 T343,9 T363,10 T383,11 T403,9 T423,10 T443,11 T463,9 T483,10 T497,11' fill='none' stroke='%23e8974e' stroke-width='2' stroke-linecap='round' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(-1deg);
  pointer-events: none;
}

/* ============ WHY STEPIN CARDS ============ */
.why-stepin {
  padding: 100px 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.why-card {
  padding: 48px 36px;
  border-radius: 24px;
  transition: all 0.5s var(--ease-out-quint);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-teal {
  background: linear-gradient(135deg, #5b8a72, #7daa95);
  color: white;
}

.why-card-red {
  background: linear-gradient(135deg, #c27857, #d4956e);
  color: white;
}

.why-card-brown {
  background: linear-gradient(135deg, #8b7355, #a6896a);
  color: white;
}

.why-card-cyan {
  background: linear-gradient(135deg, #4a7c8a, #6a9dad);
  color: white;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.why-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.why-desc {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
}

/* ============ STATS SECTION ============ */
.stats-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 2px solid var(--beige);
  border-bottom: 2px solid var(--beige);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out-expo);
}

.stat-item.vis {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 400;
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 16px;
  color: var(--med-gray);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============ LOCATION — PREMIUM MAP PINS ============ */
.location-section {
  padding: 60px 0 50px;
  background: linear-gradient(to bottom, var(--warm-white), var(--cream));
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 151, 78, 0.06), transparent 70%);
  pointer-events: none;
}

.location-map-area {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 520px;
}

/* The "map" visualization — an abstract dot grid representing Bengaluru */
.location-map-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212, 206, 195, 0.25) 1px, transparent 1px);
  background-size: 28px 28px;
  border-radius: 32px;
  opacity: 0.6;
}

.location-map-boundary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  border: 2px dashed var(--accent);
  border-radius: 50%;
  opacity: 0.3;
}

.location-map-boundary::after {
  content: 'BENGALURU';
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  opacity: 1;
  background: var(--cream);
  padding: 4px 12px;
}

.location-map-boundary::before {
  display: none;
  /* Removed - text is in footer note */
}

@media (max-width: 768px) {
  .location-map-boundary {
    width: 340px;
    height: 340px;
  }

  .location-map-area {
    min-height: 400px;
  }
}

/* Premium Pin */
.loc-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  transition: z-index 0s;
}

.loc-pin:hover {
  z-index: 10;
}

.loc-pin-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2.5px solid var(--white);
  box-shadow: 0 2px 12px rgba(232, 151, 78, 0.35), 0 0 0 4px rgba(232, 151, 78, 0.08);
  transition: all 0.4s var(--ease-out-quint);
  position: relative;
}

.loc-pin-marker::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(232, 151, 78, 0.12);
  animation: pinPulse 3s ease-in-out infinite;
}

@keyframes pinPulse {

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

  50% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.loc-pin:hover .loc-pin-marker {
  transform: scale(1.3);
  box-shadow: 0 4px 20px rgba(232, 151, 78, 0.5), 0 0 0 6px rgba(232, 151, 78, 0.12);
}

.loc-pin-label {
  margin-top: 8px;
  padding: 5px 10px;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s var(--ease-out-quint);
  opacity: 0;
  transform: translateY(5px) scale(0.9);
  letter-spacing: 0.3px;
}

.loc-pin:hover .loc-pin-label,
.loc-pin.show-label .loc-pin-label {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.loc-pin:hover .loc-pin-label {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  box-shadow: 0 8px 24px rgba(45, 39, 32, 0.2);
}

.loc-pin-count {
  font-size: 10px;
  font-weight: 500;
  color: var(--warm-gray);
  margin-top: 4px;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s var(--ease-out-quint);
}

.loc-pin:hover .loc-pin-count {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered pin animation on scroll */
.loc-pin {
  opacity: 0;
  transform: translateY(20px) scale(0.8);
}

.loc-pin.vis {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.7s var(--ease-out-expo);
}

.loc-pin.vis:nth-child(1) {
  transition-delay: 0.1s;
}

.loc-pin.vis:nth-child(2) {
  transition-delay: 0.2s;
}

.loc-pin.vis:nth-child(3) {
  transition-delay: 0.3s;
}

.loc-pin.vis:nth-child(4) {
  transition-delay: 0.4s;
}

.loc-pin.vis:nth-child(5) {
  transition-delay: 0.5s;
}

.loc-pin.vis:nth-child(6) {
  transition-delay: 0.6s;
}

.loc-pin.vis:nth-child(7) {
  transition-delay: 0.7s;
}

.loc-pin.vis:nth-child(8) {
  transition-delay: 0.8s;
}

.loc-pin.vis:nth-child(9) {
  transition-delay: 0.9s;
}

.loc-pin.vis:nth-child(10) {
  transition-delay: 1s;
}

.loc-pin.vis:nth-child(11) {
  transition-delay: 1.1s;
}

.loc-pin.vis:nth-child(12) {
  transition-delay: 1.2s;
}

.location-footer-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--warm-gray);
  letter-spacing: 0.3px;
}

.location-footer-note strong {
  color: var(--accent);
  font-weight: 600;
}

/* ============ OWNERS SECTION ============ */
.owners {
  padding: 60px 0 40px;
  position: relative;
  overflow: visible;
  background: var(--warm-white);
}

/* warm glow removed */

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1.2);
  }
}

.owner-features-grid, .tenant-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 60px;
}

@media (max-width: 968px) {
  .owner-features-grid, .tenant-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .tenants .mockup-card {
    margin-bottom: 0 !important;
    border-radius: 24px !important;
    max-width: 340px !important;
  }

  .owners {
    overflow: hidden;
    padding-bottom: 80px;
  }

  .tenants {
    padding-top: 100px !important;
    overflow: hidden;
  }

  .scratch-section {
    padding-top: 120px !important;
  }
}

@media (max-width: 600px) {
  .owner-features-grid, .tenant-features-grid {
    grid-template-columns: 1fr;
  }
}
/* ============ TENANTS SECTION ============ */
.tenants {
  padding: 70px 0 50px;
  background: #f0ebe4;
  position: relative;
  overflow: visible;
}



.tenant-feat {
  padding: 18px;
  background: var(--white);
  border: 2px solid var(--beige);
  border-radius: 16px;
  transition: all 0.4s var(--ease-out-quint);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.tenant-feat:hover {
  background: var(--warm-white);
  border-color: var(--accent);
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(232, 151, 78, 0.1);
}

.tenant-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232, 151, 78, 0.1), rgba(255, 184, 150, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
}

.tenant-feat h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.tenant-feat p {
  font-size: 13px;
  color: var(--med-gray);
  line-height: 1.6;
}

.tenant-visual {
  position: relative;
}

.vis-card {
  background: var(--white);
  border: 2px solid var(--beige);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(20px);
  transition: all 0.5s var(--ease-out-quint);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.vis-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 30px 80px rgba(232, 151, 78, 0.15);
  border-color: var(--accent);
}

.t-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}

.t-name {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.t-room {
  font-size: 13px;
  color: var(--med-gray);
}

.receipt {
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--beige);
}

.receipt-head {
  padding: 16px;
  background: var(--white);
  border-bottom: 1px solid var(--beige);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.receipt-paid {
  padding: 4px 12px;
  background: rgba(76, 175, 80, 0.1);
  color: rgb(46, 125, 50);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.receipt-body {
  padding: 20px 16px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--charcoal);
}

.receipt-row span:first-child {
  color: var(--med-gray);
}

.receipt-amt {
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
}

.receipt-div {
  height: 1px;
  background: var(--beige);
  margin: 12px 0;
}

.receipt-ref {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--warm-gray);
}

/* ============ STORIES ============ */
.stories {
  padding: 60px 0 60px;
  background: var(--warm-white);
}

.stories-header {
  margin-bottom: 80px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.story-card {
  background: var(--white);
  border: 2px solid var(--beige);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.5s var(--ease-out-quint);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  user-select: none;
  -webkit-user-drag: none;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--peach));
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-quint);
}

.story-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(232, 151, 78, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.story-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: var(--warm-white);
  border-color: var(--accent);
  box-shadow: 0 30px 80px rgba(232, 151, 78, 0.12);
}

.story-card:hover::before {
  transform: translateX(0);
}

.story-card:hover::after {
  opacity: 1;
}

.story-rating {
  color: #f4b400;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.story-quote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--dark-gray);
}

.story-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.story-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  overflow: hidden;
}

.story-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.story-info strong {
  display: block;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.story-info small {
  font-size: 13px;
  color: var(--med-gray);
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--warm-white), var(--cream));
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 151, 78, 0.15), transparent 60%);
  pointer-events: none;
  animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {

  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.cta-desc {
  font-size: 18px;
  color: var(--med-gray);
  max-width: 600px;
  margin: 0 auto 24px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-trust span {
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.store-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  background: rgba(232, 151, 78, 0.05);
  border: 1px solid rgba(232, 151, 78, 0.2);
  border-radius: 16px;
  transition: all 0.4s var(--ease-out-quint);
  position: relative;
  overflow: hidden;
}

.store-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 151, 78, 0.15), rgba(255, 184, 150, 0.15));
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-quint);
}

.store-btn>* {
  position: relative;
  z-index: 1;
}

.store-btn:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(232, 151, 78, 0.2);
}

.store-btn:hover::before {
  transform: translateY(0);
}

.store-btn svg {
  width: 32px;
  height: 32px;
}

.store-btn small {
  display: block;
  font-size: 11px;
  color: var(--med-gray);
}

.store-btn strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
}

/* ============ FOOTER ============ */
footer {
  border-top: 2px solid var(--beige);
  padding: 80px 0 40px;
  background: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.footer-tagline {
  font-size: 14px;
  color: var(--med-gray);
  line-height: 1.6;
  max-width: 400px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 568px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-cols h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--warm-gray);
}

.footer-cols a {
  display: block;
  font-size: 14px;
  color: var(--med-gray);
  margin-bottom: 12px;
  transition: all 0.3s;
}

.footer-cols a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--beige);
}

@media (max-width: 568px) {
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

.footer-copy {
  font-size: 13px;
  color: var(--warm-gray);
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--beige);
  transition: all 0.3s;
  color: var(--med-gray);
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-4px);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

/* Bouncy reveal animation */
.bounce-in {
  animation: bounceIn 0.8s var(--ease-out-quint);
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3) translateY(40px);
    opacity: 0;
  }

  50% {
    transform: scale(1.05) translateY(-10px);
  }

  70% {
    transform: scale(0.95) translateY(5px);
  }

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

/* 3D Tilt card transitions */
.step,
.owner-stat,
.tenant-feat,
.story-card,
.why-card {
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.step:hover,
.owner-stat:hover,
.tenant-feat:hover,
.story-card:hover,
.why-card:hover {
  box-shadow: 0 25px 50px rgba(232, 151, 78, 0.15);
}

/* Interactive hover glow */
.step::before,
.tenant-feat::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(232, 151, 78, 0.1), rgba(255, 184, 150, 0.1));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.step:hover::before,
.tenant-feat:hover::before {
  opacity: 1;
}

/* Word-by-word scroll reveal */
.scroll-words {
  line-height: 1.6;
}

.scroll-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-quint);
  margin-right: 0.3em;
}

.scroll-words .word.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-words .word.strikethrough {
  text-decoration: none;
  color: var(--warm-gray);
  position: relative;
}

.scroll-words .word.strikethrough.revealed::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #dc3545 10%, #dc3545 90%, transparent);
  transform: translateY(-50%) rotate(-2deg);
  border-radius: 2px;
  animation: strikeThrough 0.3s ease-out forwards;
}

@keyframes strikeThrough {
  from {
    transform: translateY(-50%) rotate(-2deg) scaleX(0);
  }

  to {
    transform: translateY(-50%) rotate(-2deg) scaleX(1);
  }
}

.scroll-words .word.bold {
  font-weight: 700;
  color: var(--charcoal);
}

/* Staggered card reveal */
.scroll-card {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: all 0.6s var(--ease-out-quint);
}

.scroll-card.card-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0s !important;
}

.scroll-card:nth-child(1) {
  transition-delay: 0s;
}

.scroll-card:nth-child(2) {
  transition-delay: 0.15s;
}

.scroll-card:nth-child(3) {
  transition-delay: 0.3s;
}

.scroll-card:nth-child(4) {
  transition-delay: 0.45s;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-outline,
  .torch-overlay {
    display: none;
  }

  .scroll-card {
    opacity: 1;
    transform: none;
  }

  .hero {
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-desc {
    font-size: 18px;
  }

  .section-title {
    font-size: 36px;
  }

  .steps {
    gap: 40px;
  }

  .step {
    padding: 32px;
  }
}

/* ============ FEATURES THAT MATTER (Horizontal Accordion) ============ */
.features-section {
  padding: 60px 0;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

.features-accordion-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0;
  height: 660px;
  /* Balanced height */
}

@media (max-width: 768px) {
  .features-accordion-wrap {
    height: auto;
    padding: 0 20px;
  }
}

.features-accordion {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 12px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .features-accordion {
    flex-direction: column;
    height: auto;
    gap: 16px;
    padding: 0;
  }
}

.accordion-panel {
  flex: 1;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
  /* Optimized transition for smoothness */
  transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s ease;
  background: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  /* Graphics optimization */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Desktop Hover Interaction */
@media (min-width: 769px) {

  .accordion-panel:hover,
  .accordion-panel.active {
    flex: 4;
    box-shadow: 0 20px 40px rgba(232, 151, 78, 0.15);
    border-color: rgba(232, 151, 78, 0.2);
  }

  .features-accordion:hover .accordion-panel.active:not(:hover) {
    flex: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.04);
  }

  .features-accordion:hover .accordion-panel.active:not(:hover) .accordion-content {
    opacity: 0;
    transform: translateY(20px);
  }

  .features-accordion:hover .accordion-panel.active:not(:hover) .accordion-label {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .accordion-panel {
    flex: none;
    height: 80px;
    /* Use height transition for mobile */
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    /* Prevent sticky hover states on touch devices */
    animation: none !important;
  }

  .accordion-panel.active {
    flex: none;
    height: 400px;
    /* Further increased to ensure no cutoff on small screens */
    box-shadow: 0 10px 30px rgba(232, 151, 78, 0.15);
    border-color: rgba(232, 151, 78, 0.2);
  }

  /* Explicitly disable hover expansion on mobile */
  .accordion-panel:hover {
    flex: none;
  }
}

.accordion-bg {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  transition: opacity 0.5s;
}

.accordion-panel.active .accordion-bg {
  opacity: 1;
}

.accordion-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 30px;
  /* Reduced padding further */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Ensure centered */
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s;
  /* Delayed reveal */
  pointer-events: none;
  /* Prevent blocking hover if opacity is 0 */
}

/* Show content only when expanded */
.accordion-panel:hover .accordion-content,
.accordion-panel.active .accordion-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.accord-icon {
  font-size: 42px;
  margin-bottom: 16px;
  /* Reduced from 24px */
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transform: rotate(-5deg);
  transition: transform 0.4s var(--ease-out-quint);
}

.accordion-panel.active:hover .accord-icon {
  transform: rotate(0deg) scale(1.1);
}

.accord-title {
  font-family: var(--font-serif);
  font-size: 44px;
  /* Slightly smaller for safety */
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  /* Reduced from 20px */
  color: var(--charcoal);
  letter-spacing: -1px;
}

.accord-desc {
  max-width: 380px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.2s;
  padding-bottom: 8px;
  /* Ensure a little breathing room at bottom */
}

.accordion-panel:hover .accord-desc,
.accordion-panel.active .accord-desc {
  opacity: 1;
  transform: translateY(0);
}

.accord-desc h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
}

.accord-desc p {
  font-size: 17px;
  color: var(--med-gray);
  line-height: 1.6;
}

/* Vertical Label for Collapsed State */
.accordion-label {
  position: absolute;
  z-index: 1;
  bottom: 120px;
  /* Moved up significantly to prevent cutoff */
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.3s;
}

.accordion-panel:hover .accordion-label,
.accordion-panel.active .accordion-label {
  opacity: 0;
}

@media (max-width: 768px) {

  /* On mobile, reset vertical label to horizontal for collapsed items */
  .accordion-label {
    transform: none;
    left: 80px;
    /* Space for icon approx */
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
  }

  .accord-title {
    font-size: 32px;
  }

  .accordion-content {
    justify-content: center;
    padding: 24px 32px;
  }

  .accord-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }
}

/* End of Features Horizontal Accordion Section */

/* ============ PROPERTY CAROUSEL ============ */
.properties-section {
  padding: 60px 0;
  background: var(--cream);
  overflow: hidden;
}

.prop-carousel {
  position: relative;
  height: 420px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.prop-card {
  position: absolute;
  width: 320px;
  height: 380px;
  left: 50%;
  top: 50%;
  margin-left: -160px;
  margin-top: -190px;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.8s var(--ease-out-expo);
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  user-select: none;
  -webkit-user-drag: none;
}

.prop-card-img {
  height: 55%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.prop-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--white));
}

.prop-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  color: var(--charcoal);
}

.prop-card-body {
  padding: 20px 24px;
  background: var(--white);
  height: 45%;
}

.prop-card-price {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  font-style: normal;
  color: var(--charcoal);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.prop-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.prop-card-loc {
  font-size: 13px;
  color: var(--warm-gray);
}

.prop-card-tags {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.prop-card-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--beige);
  color: var(--med-gray);
}

.prop-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.prop-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--beige);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 18px;
  color: var(--charcoal);
}

.prop-nav-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .prop-card {
    width: 280px;
    height: 340px;
  }

  .prop-carousel {
    height: 380px;
  }
}

/* ============ COMPARE SLIDER ============ */
.compare-section {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
}

.slider-wrapper {
  max-width: 1000px;
  margin: 60px auto 0;
  position: relative;
}

.slider-container {
  height: 520px;
  position: relative;
  background: #f5f5f7;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  user-select: none;
  cursor: ew-resize;
}

.slider-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-content {
  width: 1000px;
  /* Fixed width to prevent content squishing */
  height: 100%;
  position: relative;
  padding: 40px;
  box-sizing: border-box;
}

/* === AFTER VIEW (StepIn Way) === */
.view-after {
  background: var(--white);
  z-index: 1;
}

.slider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  height: 100%;
}

.slider-card {
  background: var(--warm-white);
  border: 1px solid var(--beige);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.clean-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(232, 151, 78, 0.1);
  border-color: rgba(232, 151, 78, 0.3);
}

.clean-icon {
  font-size: 32px;
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.slider-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.slider-card p {
  font-size: 14px;
  color: var(--med-gray);
  line-height: 1.5;
}

/* === BEFORE VIEW (Old Way) === */
.view-before {
  z-index: 2;
  background: #e8e6e1;
  /* Dirty paper color */
  /* This width is controlled by JS */
  width: 50%;
  border-right: 2px solid white;
}

.chaos-collage {
  position: relative;
  width: 100%;
  height: 100%;
  filter: sepia(0.2) contrast(0.95);
  overflow: hidden;
  /* Prevent notes from bleeding out */
}

.chaos-item {
  position: absolute;
  background: white;
  padding: 12px 18px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Kalam', cursive;
  color: #c0392b;
  font-size: 16px;
  font-weight: 600;
  transform-origin: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  max-width: 80%;
  /* Ensure they don't overflow viewport */
}

.note-1 {
  top: 15%;
  left: 10%;
  transform: rotate(-5deg);
  font-size: 20px;
}

.note-2 {
  top: 45%;
  left: 40%;
  transform: rotate(8deg);
  background: #fffae6;
}

.note-3 {
  top: 20%;
  right: 15%;
  transform: rotate(12deg);
  background: #fff0f0;
  border: 1px solid #ffcccc;
}

.note-4 {
  bottom: 15%;
  left: 20%;
  transform: rotate(-8deg);
  font-weight: 700;
}

.note-5 {
  bottom: 30%;
  right: 10%;
  transform: rotate(4deg);
  color: #7f8c8d;
  text-decoration: line-through;
}

.note-6 {
  top: 50%;
  left: 10%;
  transform: rotate(-15deg);
  background: #fdf6e3;
}

/* Badges */
.slider-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  white-space: nowrap;
}

.badge-clean {
  background: var(--charcoal);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-chaos {
  background: #c0392b;
  color: white;
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

/* === HANDLE === */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  /* JS controls this */
  width: 4px;
  background: white;
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  touch-action: none;
}

.handle-button {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border: 4px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.handle-button svg {
  width: 24px;
  height: 24px;
}

.slider-instruction {
  text-align: center;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .slider-container {
    height: 480px;
  }

  .slider-content {
    width: 100%;
    /* Use full width of container */
    max-width: 100%;
    padding: 24px;
  }

  .slider-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .slider-card {
    flex-direction: row;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    text-align: left;
    min-height: 70px;
  }

  .clean-icon {
    margin-bottom: 0;
    width: 36px;
    height: 36px;
    font-size: 18px;
    flex-shrink: 0;
  }

  .slider-card h3 {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .slider-card p {
    font-size: 12px;
    line-height: 1.3;
  }

  /* Chaos Items adjustments for mobile */
  .chaos-item {
    padding: 8px 12px;
    font-size: 13px;
    max-width: 70%;
  }

  .note-1 {
    top: 8%;
    left: 5%;
  }

  .note-2 {
    top: 30%;
    left: 20%;
    max-width: 60%;
  }

  .note-3 {
    top: 18%;
    right: 2%;
    font-size: 12px;
  }

  .note-4 {
    bottom: 25%;
    left: 5%;
  }

  .note-5 {
    bottom: 45%;
    right: 5%;
  }

  .note-6 {
    top: 50%;
    left: 5%;
  }
}


/* ============ SAVINGS CALCULATOR ============ */
.calc-section {
  padding: 60px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.calc-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(15, 52, 96, 0.06), transparent 60%);
  pointer-events: none;
}

.calc-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--warm-white);
  border: 1px solid var(--beige);
  border-radius: 32px;
  padding: 56px 48px;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.04);
}

.calc-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.calc-rent-display {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
  font-style: italic;
  letter-spacing: -2px;
}

.calc-slider-wrap {
  margin-bottom: 48px;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 10px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--beige);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(15, 52, 96, 0.4);
  cursor: pointer;
}

.calc-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(15, 52, 96, 0.4);
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--warm-gray);
  margin-top: 8px;
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.calc-result-card {
  padding: 24px;
  border-radius: 20px;
  text-align: center;
}

.calc-result-old {
  background: rgba(231, 76, 60, 0.04);
  border: 1px solid rgba(231, 76, 60, 0.08);
}

.calc-result-new {
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.08);
}

.calc-result-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.calc-result-old .calc-result-label {
  color: var(--terracotta);
}

.calc-result-new .calc-result-label {
  color: var(--sage);
}

.calc-result-amount {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
}

.calc-result-old .calc-result-amount {
  color: var(--terracotta);
}

.calc-result-new .calc-result-amount {
  color: var(--sage);
}

.calc-savings {
  text-align: center;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.08), rgba(30, 73, 118, 0.05));
  border: 1px solid rgba(15, 52, 96, 0.12);
}

.calc-savings-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.calc-savings-amount {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -1px;
}

.calc-savings-sub {
  font-size: 14px;
  color: var(--med-gray);
  margin-top: 6px;
}

.calc-savings-amount.bump {
  animation: bumpUp 0.5s var(--ease-out-expo);
}

@keyframes bumpUp {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.08);
  }

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

@media (max-width: 768px) {
  .calc-container {
    padding: 36px 24px;
  }

  .calc-rent-display {
    font-size: 42px;
  }

  .calc-results {
    grid-template-columns: 1fr;
  }

  .calc-savings-amount {
    font-size: 40px;
  }
}

/* ============ SCRATCH CARD ============ */
.scratch-section {
  padding: 70px 0 60px;
  background: var(--warm-white);
  position: relative;
}

.scratch-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.scratch-card {
  width: 340px;
  height: 220px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  cursor: crosshair;
}

.scratch-reveal {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.08), rgba(30, 73, 118, 0.06));
  border: 1px solid rgba(15, 52, 96, 0.1);
}

.scratch-reveal .promo-code {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.scratch-reveal .promo-text {
  font-size: 13px;
  color: var(--med-gray);
}

.scratch-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.scratch-info {
  max-width: 360px;
}

.scratch-info h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-style: italic;
  margin-bottom: 16px;
}

.scratch-info p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--med-gray);
  margin-bottom: 16px;
}

.scratch-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .scratch-wrap {
    gap: 40px;
  }

  .scratch-card {
    width: 300px;
    height: 190px;
  }

  .scratch-info h3 {
    font-size: 28px;
  }
}

/* ============ RADAR LOCATION MAP ============ */
.loc-discovery-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.loc-discovery-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--med-gray);
}

.loc-discovery-text strong {
  color: var(--warm-orange);
}

.loc-discovery-progress {
  width: 200px;
  height: 6px;
  background: var(--beige);
  border-radius: 10px;
  overflow: hidden;
}

.loc-discovery-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--warm-orange), #ffb896);
  border-radius: 10px;
  transition: width 0.8s var(--ease-out-expo);
}

.location-map-area {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  background: #2d2720;
  border: 1px solid rgba(249, 115, 22, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  cursor: none;
}

.location-map-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(249, 115, 22, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.location-map-boundary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 50%;
}

.location-map-boundary::after {
  content: 'BENGALURU';
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 6px;
  color: rgba(249, 115, 22, 0.9);
  font-weight: 600;
  background: rgba(45, 39, 32, 0.9);
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-ring-xxl {
  width: 700px;
  height: 700px;
  border-color: rgba(249, 115, 22, 0.08);
}

.map-ring-xl {
  width: 560px;
  height: 560px;
}

.map-ring-lg {
  width: 460px;
  height: 460px;
}

.map-ring-sm {
  width: 260px;
  height: 260px;
}

.map-ring-xs {
  width: 140px;
  height: 140px;
}

.loc-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.loc-pin.in-range {
  opacity: 0.5;
}

.loc-pin.discovered {
  opacity: 1;
  pointer-events: auto;
}

.loc-pin-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--warm-orange);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 14px rgba(249, 115, 22, 0.6);
  transition: all 0.3s;
}

.loc-pin.discovered .loc-pin-marker {
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.8);
}

.loc-pin-q {
  font-size: 18px;
  color: rgba(249, 115, 22, 0.3);
  font-weight: 700;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
}

.loc-pin.discovered .loc-pin-q {
  opacity: 0;
}

.loc-pin-label {
  margin-top: 8px;
  padding: 8px 16px;
  background: rgba(45, 39, 32, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s;
}

.loc-pin.discovered .loc-pin-label {
  opacity: 1;
  transform: translateY(0);
}

.radar {
  position: absolute;
  pointer-events: none;
  z-index: 8;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s;
}

.radar-circle {
  width: 200px;
  height: 200px;
  border: 2px solid rgba(249, 115, 22, 0.5);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.15);
}

.radar-fill {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.05) 50%, transparent 70%);
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.9), transparent);
  transform-origin: left center;
  animation: radarSweep 2s linear infinite;
}

@keyframes radarSweep {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.radar-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--warm-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.7);
}

.radar-ping {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 50%;
  animation: radarPing 2s ease-out infinite;
}

@keyframes radarPing {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }

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

.radar-crosshair-h,
.radar-crosshair-v {
  position: absolute;
  background: rgba(249, 115, 22, 0.15);
}

.radar-crosshair-h {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.radar-crosshair-v {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.radar-instruction {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(249, 115, 22, 0.7);
  pointer-events: none;
  animation: radarPulseText 2s ease-in-out infinite;
}

@keyframes radarPulseText {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Radar Discovery Popup */
.radar-popup {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 1000;
  background: var(--charcoal);
  backdrop-filter: blur(16px);
  border-radius: 100px;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.radar-popup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.radar-popup-icon {
  font-size: 18px;
}

.radar-popup-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.radar-popup-text strong {
  color: var(--warm-orange);
  font-weight: 600;
}

.radar-popup-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes popupBounce {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

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

/* Confetti Celebration */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  overflow: visible;
}

.confetti {
  position: absolute;
  top: -20px;
  width: 12px;
  height: 12px;
  will-change: transform;
}

.confetti.circle {
  border-radius: 50%;
}

.confetti.square {
  border-radius: 2px;
  transform: rotate(45deg);
}

.confetti.strip {
  width: 5px;
  height: 18px;
  border-radius: 2px;
}

@keyframes confettiFall {
  0% {
    top: -20px;
    opacity: 1;
    transform: translateX(0) rotateZ(0deg);
  }

  25% {
    transform: translateX(15px) rotateZ(90deg);
  }

  50% {
    transform: translateX(-15px) rotateZ(180deg);
  }

  75% {
    transform: translateX(10px) rotateZ(270deg);
  }

  100% {
    top: 100vh;
    opacity: 0.8;
    transform: translateX(-5px) rotateZ(360deg);
  }
}

.celebration-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 10000;
  background: var(--charcoal);
  border: 2px solid var(--warm-orange);
  border-radius: 24px;
  padding: 40px 60px;
  text-align: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(232, 151, 78, 0.3);
}

.celebration-popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.celebration-icon {
  font-size: 64px;
  margin-bottom: 16px;
  animation: celebrateBounce 0.6s ease infinite;
}

@keyframes celebrateBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.celebration-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
}

.celebration-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .location-map-boundary {
    width: 260px;
    height: 260px;
  }

  .location-map-area {
    min-height: 400px;
    cursor: auto;
  }

  .map-ring-xxl {
    width: 480px;
    height: 480px;
  }

  .map-ring-xl {
    width: 400px;
    height: 400px;
  }

  .map-ring-lg {
    width: 320px;
    height: 320px;
  }

  .map-ring-sm {
    width: 180px;
    height: 180px;
  }

  .map-ring-xs {
    width: 100px;
    height: 100px;
  }

  .loc-discovery-bar {
    flex-direction: column;
    gap: 12px;
  }
}

/* === BADGES === */
.badge-tray {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0.3;
  transform: scale(0.8);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative
}

.badge.earned {
  opacity: 1;
  transform: scale(1);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(232, 151, 78, 0.3)
}

.badge-tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s
}

.badge:hover .badge-tooltip {
  opacity: 1
}

@media(max-width:768px) {
  .badge-tray {
    display: none
  }
}

/* === EXPLORE WIDGET === */
.explore-progress {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-out-expo);
  min-width: 220px
}

.explore-progress.show {
  opacity: 1;
  transform: translateY(0)
}

.explore-ring {
  width: 48px;
  height: 48px;
  position: relative;
  flex-shrink: 0
}

.explore-ring svg {
  width: 48px;
  height: 48px;
  transform: rotate(-90deg)
}

.explore-ring-bg {
  fill: none;
  stroke: var(--beige);
  stroke-width: 3
}

.explore-ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 1.2s var(--ease-out-expo)
}

.explore-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent)
}

.explore-info {
  flex: 1
}

.explore-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--warm-gray);
  margin-bottom: 4px
}

.explore-status {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal)
}

.explore-milestone {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(232, 151, 78, 0.4);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.explore-milestone.pop {
  transform: scale(1)
}

@media(max-width:768px) {
  .explore-progress {
    bottom: 16px;
    right: 16px;
    left: auto;
    min-width: unset;
    padding: 8px;
    gap: 0;
  }

  .explore-info {
    display: none;
  }

  .explore-ring {
    width: 40px;
    height: 40px;
  }

  .explore-ring svg {
    width: 40px;
    height: 40px;
  }

  .explore-ring-text {
    font-size: 10px;
  }

  .explore-milestone {
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: -6px;
    right: -6px;
  }
}

/* === TOAST === */
.toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  z-index: 300;
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
  pointer-events: none;
  white-space: nowrap
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}

/* =========================================
   HERO: CITY MAP + GLASS PANELS
   ========================================= */

/* --- Glass Panels Container --- */
/* =========================================
   BRIDGE LAYOUT
   ========================================= */
.bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
}

.bridge-side {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
}

.bridge-side-owner {
  transform: translateX(-160px);
}

.bridge-side-tenant {
  transform: translateX(160px);
}

.bridge-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Bridge Connection */
.bridge-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  min-width: 80px;
  max-width: 280px;
  padding: 0 8px;
}

.bridge-line {
  flex: 1;
  height: 4px;
  border-radius: 4px;
}

.bridge-line-left {
  background: linear-gradient(to right, transparent, var(--navy-primary));
  transform-origin: left center;
  transform: scaleX(0);
}

.bridge-line-right {
  background: linear-gradient(to left, transparent, var(--navy-primary));
  transform-origin: right center;
  transform: scaleX(0);
}

/* Handshake Symbol */
.bridge-symbol {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  z-index: 5;
  flex-shrink: 0;
  transform: scale(0);
  opacity: 0;
  position: relative;
}

.bridge-icon {
  width: 60px;
  height: 60px;
}

/* Pulsing Ring */
.bridge-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

@keyframes ringPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

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

/* Typing dots animation */
.typing-dots {
  display: inline-flex;
  gap: 1px;
  font-weight: 700;
  letter-spacing: -1px;
}

.typing-dots .dot {
  animation: typeDot 1.4s infinite;
}

.typing-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typeDot {

  0%,
  20% {
    opacity: 0.2;
  }

  40% {
    opacity: 1;
  }

  60%,
  100% {
    opacity: 0.2;
  }
}

/* Bridge Glow */
.bridge-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 151, 78, 0.2), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* --- Glass Panel (shared) --- */
.glass-panel {
  width: 300px;
  height: 420px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 14px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.4s var(--ease-out-quint), box-shadow 0.4s ease;
}

.glass-panel:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.panel-owner {
  transform: none;
}

.panel-tenant {
  transform: none;
}

/* Panel Header */
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -1px;
  color: var(--charcoal);
}

/* --- Owner: Stats Card --- */
.panel-stats-card {
  background: var(--navy-primary);
  color: #fff;
  border-radius: 16px;
  padding: 16px;
}

.stat-label {
  font-size: 10px;
  color: #ffffff;
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-bar-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  margin-bottom: 10px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: var(--gold-primary);
  border-radius: 100px;
  transition: width 1.5s var(--ease-out-expo);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.stat-good {
  color: #4ade80;
}

.stat-muted {
  opacity: 0.5;
}

/* Owner Properties */
.panel-section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.panel-prop {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--main-bg);
  /* Fallback or specific color */
  background: #f8f9fa;
  padding: 10px;
  border-radius: 12px;
}

.panel-prop-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.panel-prop-info {
  flex: 1;
  min-width: 0;
}

.panel-prop-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel-prop-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 2px;
}

.tag-live {
  background: #dcfce7;
  color: #166534;
}

.tag-warn {
  background: #fef9c3;
  color: #854d0e;
}

/* Owner Notification */
.panel-notif {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 151, 78, 0.1);
  border: 1px solid rgba(232, 151, 78, 0.2);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 11px;
  color: var(--charcoal);
  opacity: 0;
  transform: translateY(10px);
}

.notif-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Tenant Panel --- */
.panel-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--warm-gray);
}

.panel-search-icon {
  font-size: 14px;
}

.panel-chips {
  display: flex;
  gap: 8px;
}

.chip {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.04);
  color: var(--warm-gray);
}

.chip-active {
  background: var(--charcoal);
  color: #fff;
}

/* Tenant Listings */
.panel-listing {
  display: flex;
  gap: 10px;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.panel-listing-img {
  width: 70px;
  min-height: 70px;
  border-radius: 12px 0 0 12px;
  flex-shrink: 0;
}

.panel-listing-body {
  padding: 8px 10px 8px 0;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-listing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.panel-listing-price {
  font-weight: 700;
  font-size: 14px;
  color: var(--charcoal);
}

.panel-listing-price small {
  font-size: 10px;
  font-weight: 400;
  color: var(--warm-gray);
}

.panel-listing-stars {
  font-size: 11px;
  color: #f59e0b;
  font-weight: 600;
}

.panel-listing-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
}

.panel-listing-sub {
  font-size: 10px;
  color: var(--warm-gray);
}

/* Tenant Chat */
.panel-chat {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
}

.chat-msg {
  background: var(--navy-primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px 14px 0 14px;
  font-size: 11px;
  line-height: 1.4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.chat-sender {
  width: 28px;
  height: 28px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== NEW PANEL STYLES (Matching Expo App) ===== */
.panel-welcome {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.panel-welcome-hello {
  font-size: 13px;
  color: var(--warm-gray);
  font-weight: 400;
}

.panel-welcome-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

/* Owner overview card (dark navy like app) */
.panel-overview-card {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 16px;
  padding: 16px;
  color: #fff;
}

.panel-overview-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.panel-overview-left {
  flex: 1;
}

.panel-month-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.panel-overview-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.panel-overview-amount {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.panel-overview-total {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.panel-overview-overdue {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.panel-overview-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-progress-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-progress-text {
  position: absolute;
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
}

.panel-stats-row {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
}

.panel-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panel-stat strong {
  font-size: 16px;
  font-weight: 700;
}

.panel-stat span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Owner quick actions row */
.panel-actions-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.panel-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.panel-action i {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 8px;
}

.panel-action span {
  font-size: 9px;
  color: var(--med-gray);
  font-weight: 500;
}

/* Tenant home card */
.panel-home-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 14px;
}

.panel-home-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.panel-home-address {
  font-size: 10px;
  color: var(--warm-gray);
  margin-bottom: 10px;
}

.panel-detail-grid {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.panel-detail-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-label {
  font-size: 9px;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
}

.panel-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 6px 0;
}

.panel-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}

.panel-chip.chip-danger {
  background: #fef2f2;
  color: #dc2626;
}

.panel-pay-btn {
  width: 100%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}

/* Tenant quick actions grid */
.panel-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 8px;
}

.panel-grid-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  background: #f9f9f9;
  border-radius: 10px;
}

.panel-grid-action span {
  font-size: 16px;
}

.panel-grid-action small {
  font-size: 8px;
  color: var(--med-gray);
  font-weight: 500;
  text-align: center;
}

/* Tenant Rent Payment Screen */
.panel-rent-screen {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-rent-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.panel-rent-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.panel-rent-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--med-gray);
}

.panel-rent-row span:last-child {
  font-weight: 600;
  color: var(--charcoal);
}

.panel-rent-amount {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
}

.panel-rent-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  padding: 4px 0;
}

.panel-rent-total {
  font-size: 14px;
  font-weight: 800;
  color: var(--charcoal);
}

.panel-payment-type {
  margin-top: 4px;
}

.panel-payment-label {
  font-size: 10px;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.panel-payment-options {
  display: flex;
  gap: 8px;
}

.panel-payment-opt {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #e5e5ea;
  color: var(--warm-gray);
  background: #fafafa;
}

.panel-payment-opt-active {
  border-color: var(--navy-primary);
  color: var(--white);
  background: var(--navy-primary);
}

.panel-slide-btn {
  width: 100%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.panel-slide-arrow {
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Bridge icon - simpler, cleaner */
.bridge-icon {
  width: 60px;
  height: 60px;
}

/* =========================================
   HERO: RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .bridge {
    padding: 0 24px;
  }

  .glass-panel {
    width: 260px;
    height: 400px;
    padding: 18px;
  }

  .bridge-center {
    min-width: 60px;
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 40px;
    gap: 32px;
  }

  .hero-silhouette {
    opacity: 0.15 !important;
  }

  .bridge {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }

  .bridge-side-owner {
    transform: translateY(-60px);
  }

  .bridge-side-tenant {
    transform: translateY(60px);
  }

  .bridge-center {
    flex-direction: column;
    min-width: auto;
    max-width: none;
    min-height: 80px;
    padding: 8px 0;
  }

  .bridge-line {
    width: 3px;
    height: 30px;
    flex: 0 0 30px;
  }

  .bridge-line-left {
    background: linear-gradient(to bottom, transparent, var(--navy-primary));
    transform-origin: top center;
    transform: scaleY(0);
  }

  .bridge-line-right {
    background: linear-gradient(to top, transparent, var(--gold-primary));
    transform-origin: bottom center;
    transform: scaleY(0);
  }

  .glass-panel {
    width: 300px;
    max-width: 300px;
    height: 450px;
    min-height: unset;
    padding: 16px;
    overflow: hidden;
    position: relative;
  }

  .glass-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
    pointer-events: none;
    z-index: 2;
    border-radius: 0 0 24px 24px;
  }

  .panel-listing-img {
    width: 56px;
    min-height: 56px;
  }

  .hero-title {
    font-size: clamp(36px, 8vw, 64px);
  }
}

@media (max-width: 480px) {
  .bridge {
    padding: 0 16px;
  }

  .glass-panel {
    width: 300px;
    max-width: 300px;
    padding: 14px;
    gap: 10px;
  }

  .stat-value {
    font-size: 18px;
  }

  .panel-stats-card {
    padding: 12px;
  }

  .bridge-symbol {
    width: 64px;
    height: 64px;
  }

  .bridge-icon {
    width: 36px;
    height: 36px;
  }
}

/* ============ STATS SECTION ============ */
.stats-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 2px solid var(--beige);
  border-bottom: 2px solid var(--beige);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 400;
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.stat-number sup {
  -webkit-text-fill-color: #999;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 0;
  }

  .stats-grid {
    gap: 40px;
  }

  .stat-number {
    font-size: clamp(40px, 12vw, 64px);
  }
}

/* ============ MEET STEPPY SECTION ============ */
.steppy-section {
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, #fff8f2 30%, #fef6ee 70%, var(--cream) 100%);
}

.steppy-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--med-gray);
  max-width: 480px;
  margin: 16px auto 72px;
  line-height: 1.6;
}

.steppy-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Steppy Character Area */
.steppy-character-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

/* Speech Bubble */
.steppy-speech-bubble {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(232, 151, 78, 0.25);
  border-radius: 20px;
  padding: 18px 24px;
  max-width: 300px;
  margin-bottom: 18px;
  box-shadow: 0 8px 32px rgba(232, 151, 78, 0.08);
  z-index: 3;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  animation: bubbleIn 0.6s ease-out 0.8s forwards;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steppy-speech-text {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: 0.01em;
}

.steppy-speech-tail {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #fff;
  filter: drop-shadow(0 2px 2px rgba(232, 151, 78, 0.08));
}

.steppy-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 13px solid rgba(232, 151, 78, 0.25);
  z-index: -1;
}

@keyframes bubbleIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.steppy-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232, 151, 78, 0.14) 0%, rgba(232, 151, 78, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: steppyGlow 5s ease-in-out infinite;
}

@keyframes steppyGlow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.9;
  }
}

.steppy-hero-img {
  width: 400px;
  height: 400px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 48px rgba(232, 151, 78, 0.22));
  animation: steppyFloat 3.5s ease-in-out infinite;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

@keyframes steppyFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.steppy-name-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(232, 151, 78, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(232, 151, 78, 0.08);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  z-index: 2;
}

.steppy-name-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

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

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.steppy-name-role {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-left: 8px;
  border-left: 1px solid rgba(232, 151, 78, 0.25);
}

/* Steppy Features */
.steppy-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.steppy-feat-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.4s var(--ease-out-quint);
}

.steppy-feat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 151, 78, 0.1);
  border-color: rgba(232, 151, 78, 0.15);
}

.steppy-feat-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--accent-light);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.steppy-feat-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.steppy-feat-card p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.55;
}

/* AI Coming Soon Banner */
.steppy-ai-banner {
  margin-top: 48px;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 24px;
  padding: 52px 48px 24px;
  overflow: hidden;
}

.steppy-ai-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 151, 78, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: steppyGlow 6s ease-in-out infinite;
}

.steppy-ai-content {
  position: relative;
  z-index: 2;
}

.steppy-ai-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232, 151, 78, 0.15);
  border: 1px solid rgba(232, 151, 78, 0.25);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}

.steppy-ai-banner h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.steppy-ai-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 16px;
}

.steppy-ai-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.steppy-ai-features-row span {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* Steppy Mobile Responsive */
@media (max-width: 768px) {
  .steppy-section {
    padding: 80px 0 60px;
  }

  .steppy-subtitle {
    font-size: 15px;
    margin-bottom: 48px;
  }

  .steppy-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steppy-character-area {
    min-height: 340px;
  }

  .steppy-hero-img {
    width: 280px;
    height: 280px;
  }

  .steppy-speech-bubble {
    max-width: 260px;
    padding: 14px 18px;
  }

  .steppy-ai-banner {
    padding: 32px 24px 20px;
  }

  .steppy-ai-features-row {
    flex-direction: column;
  }

  .steppy-ai-features-row span {
    text-align: center;
  }
}

/* ===== Hero Characters ===== */

/* Desktop: container is absolute, fills hero, images on far edges */
.hero-characters {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-character {
  position: absolute;
  bottom: 0px;
  width: 350px;
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  animation: floatChar 6s ease-in-out infinite;
}

/* Base Desktop - Absolute to the .hero section edges */
.hero-character-owner {
  left: 6%;
  animation-delay: 0s;
}

.hero-character-tenant {
  right: 6%;
  animation-delay: -3s;
}

@keyframes floatChar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 1400px) {
  .hero-character { width: 300px; }
  .hero-character-owner { left: 3%; }
  .hero-character-tenant { right: 3%; }
}

@media (max-width: 1024px) {
  .hero-character { width: 260px; }
  .hero-character-owner { left: 1%; }
  .hero-character-tenant { right: 1%; }
}

/* Mobile: Overlapping Finale - characters group at the bottom spanning across */
@media (max-width: 768px) {
  .hero-characters {
    position: relative;
    inset: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    margin-top: -80px; /* Pull up to overlap panels */
    z-index: 5; /* Ensure they sit ON TOP of the bottom panel */
  }

  .hero-character {
    position: relative;
    width: 180px;
    animation: none;
  }

  .hero-character-owner {
    left: auto;
  }

  .hero-character-tenant {
    right: auto;
  }
}

/* ============ MOCKUP UTILITIES ============ */
.emoji-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 16px;
}

.emoji-action {
  text-align: center;
}

.emoji-icon-box {
  width: 44px;
  height: 44px;
  background: #f5f5f5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  font-size: 20px;
}

.emoji-label {
  font-size: 10px;
  color: #666;
  font-weight: 500;
  line-height: 1.2;
}

/* === LUCIDE ICON STYLES === */
/* Note: lucide.createIcons() replaces <i data-lucide> with <svg class="lucide"> */
.lucide {
  stroke-width: 2.2px;
  vertical-align: middle;
}

/* --- Ticker Track Icons (colorful per-icon) --- */
.ticker-track span .lucide {
  width: 15px;
  height: 15px;
  margin-right: 6px;
  color: var(--accent);
}

.ticker-track span .lucide-home { color: #e8974e; }
.ticker-track span .lucide-shield-check { color: #4e9e4e; }
.ticker-track span .lucide-message-square { color: #5b8def; }
.ticker-track span .lucide-smartphone { color: #8b5cf6; }
.ticker-track span .lucide-party-popper { color: #f59e0b; }
.ticker-track span .lucide-check-circle { color: #10b981; }
.ticker-track span .lucide-users { color: #ec4899; }
.ticker-track span .lucide-lock { color: #6366f1; }
.ticker-track span .lucide-zap { color: #f59e0b; }
.ticker-track span .lucide-sparkles { color: #a855f7; }
.ticker-track span .lucide-credit-card { color: #3b82f6; }
.ticker-track span .lucide-bell { color: #ef4444; }
.ticker-track span .lucide-gift { color: #ec4899; }
.ticker-track span .lucide-bot { color: #14b8a6; }
.ticker-track span .lucide-wind { color: #06b6d4; }
.ticker-track span .lucide-file-text { color: #8b5cf6; }
.ticker-track span .lucide-refresh-cw { color: #f97316; }
.ticker-track span .lucide-info { color: #6366f1; }
.ticker-track span .lucide-truck { color: #78716c; transform: scaleX(-1); }

/* --- Accordion Icons --- */
.accord-icon .lucide {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.accordion-label .lucide {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: -3px;
}

/* Per-icon accordion colors */
.accord-icon .lucide-ban { color: #ef4444; }
.accord-icon .lucide-smartphone { color: #8b5cf6; }
.accord-icon .lucide-bell { color: #f59e0b; }
.accord-icon .lucide-check-circle-2 { color: #10b981; }
.accord-icon .lucide-list-plus { color: #6366f1; }
.accord-icon .lucide-wrench { color: #f97316; }
.accord-icon .lucide-credit-card { color: #3b82f6; }

.accordion-label .lucide-ban { color: #ef4444; }
.accordion-label .lucide-smartphone { color: #8b5cf6; }
.accordion-label .lucide-bell { color: #f59e0b; }
.accordion-label .lucide-check-circle-2 { color: #10b981; }
.accordion-label .lucide-list-plus { color: #6366f1; }
.accordion-label .lucide-wrench { color: #f97316; }
.accordion-label .lucide-credit-card { color: #3b82f6; }

/* --- Why Stepin Icons --- */
.why-icon .lucide {
  width: 32px;
  height: 32px;
  color: var(--white);
}

/* --- Property Card Icons --- */
.prop-card-badge .lucide {
  width: 13px;
  height: 13px;
  margin-right: 4px;
  vertical-align: -2px;
}

.prop-card-loc .lucide {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  vertical-align: -2px;
  color: var(--accent);
}

/* --- Compare / Clean Icons --- */
.clean-icon .lucide {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.clean-icon .lucide-party-popper { color: #f59e0b; }
.clean-icon .lucide-smartphone { color: #8b5cf6; }
.clean-icon .lucide-message-square { color: #5b8def; }
.clean-icon .lucide-check-circle-2 { color: #10b981; }

.badge-clean .lucide { 
  width: 16px; 
  height: 16px; 
  color: var(--accent);
  vertical-align: -2px;
  margin-right: 4px;
}

/* Twemoji sizing for chaos notes */
.chaos-item img.emoji,
.slider-badge img.emoji {
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.2em;
  display: inline;
}

/* --- Tenant Feature Icons --- */
.tenant-feat-icon .lucide {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

/* =========================================
   HERO CAROUSEL — Screen Pairs
   ========================================= */

/* Each glass-panel now contains multiple stacked .hero-screen children.
   We use CSS Grid stacking so the panel takes the height of the tallest screen,
   preventing 'popping' or 'bleeding edge' layout jumps during fade transitions. */
.glass-panel {
  display: grid;
}

.hero-screen {
  grid-area: 1 / 1; /* Stack all screens in the exact same cell */
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  pointer-events: none;
  z-index: 1;
}

.hero-screen-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* Progress dot indicator (hybrid dots + active progress fill) */
.hero-progress-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.hero-pdot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: width 0.4s ease, background 0.3s ease;
}

.hero-pdot-active {
  width: 36px;
  background: rgba(0, 0, 0, 0.1);
}

.hero-pdot-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #e8974e;
  border-radius: 100px;
}

/* Reset panel bottom padding (dots removed) */
.glass-panel {
  padding-bottom: 14px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-screen {
    gap: 10px;
  }
  .hero-progress-wrap {
    width: 160px;
  }
}

/* =========================================
   HERO CHAT OVERLAY (Tenant Panel)
   ========================================= */

/* Chat bottom sheet — slides up from the bottom of the tenant panel */
.hero-chat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  z-index: 10;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s ease;
  overflow: hidden;
  /* ~55% of panel height */
  height: 55%;
}

.hero-chat-overlay.active {
  transform: translateY(0);
  opacity: 1;
}

.hero-chat-header {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.hero-chat-body {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.hero-chat-typing {
  display: flex;
  align-items: center;
  align-self: flex-end;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-chat-typing.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-typing-dots {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #f3f4f6;
  padding: 8px 12px;
  border-radius: 14px 14px 4px 14px;
}

.hero-typing-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #999;
  animation: heroTypingBounce 1.4s ease-in-out infinite;
}

.hero-typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes heroTypingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.hero-chat-bubble {
  align-self: flex-end;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  font-size: 10px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 14px 14px 4px 14px;
  max-width: 85%;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.hero-chat-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-chat-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

/* Chat button pulse */
@keyframes heroChatPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 26, 46, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(26, 26, 46, 0); }
}

.hero-chat-btn-pulse {
  animation: heroChatPulse 1.5s ease-in-out 2;
  border-radius: 8px;
}

/* =========================================
   HERO OWNER NOTIFICATION (Owner Panel)
   ========================================= */
.hero-owner-notif {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  pointer-events: none;
}

.hero-owner-notif.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-owner-notif-inner {
  background: #fff;
  border: 1px solid rgba(232, 151, 78, 0.2);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(232, 151, 78, 0.1);
}

/* Enquiry count bump animation */
@keyframes enquiryBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.15); color: #e8974e; }
  100% { transform: scale(1); }
}

.enquiry-bump {
  animation: enquiryBump 0.5s ease-out;
  display: inline-block;
}
