/* Property animated slides — embedded in property.html */
.psv-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 620px;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.psv-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(45,212,191,0.16), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(45,212,191,0.08), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.psv-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black, transparent 75%);
  z-index: 0; pointer-events: none;
}
.psv-slide {
  position: absolute;
  inset: 0;
  padding: 6% 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease, transform 600ms ease;
  z-index: 1;
}
.psv-slide.active { opacity: 1; transform: translateY(0); }
.psv-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.psv-title {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 90%;
}
.psv-quote {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-top: 18px;
  max-width: 80%;
}
.psv-controls {
  position: absolute;
  bottom: 20px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  z-index: 5;
}
.psv-dots { display: flex; gap: 6px; }
.psv-dot {
  width: 22px; height: 4px;
  background: rgba(255,255,255,0.2);
  border: none; border-radius: 2px;
  cursor: pointer;
  transition: background 200ms ease;
  padding: 0;
}
.psv-dot.active { background: var(--teal); }
.psv-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 200ms ease;
}
.psv-btn:hover { background: rgba(255,255,255,0.15); }
.psv-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.06);
  z-index: 5;
}
.psv-progress-fill {
  height: 100%;
  background: var(--teal);
  width: 0%;
  transition: width 100ms linear;
}

/* Slide-specific layouts */
.psv-cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.psv-cols3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.psv-cols4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.psv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.psv-slide.active .psv-card { opacity: 1; transform: translateY(0); }
.psv-slide.active .psv-card:nth-child(1) { transition-delay: 200ms; }
.psv-slide.active .psv-card:nth-child(2) { transition-delay: 350ms; }
.psv-slide.active .psv-card:nth-child(3) { transition-delay: 500ms; }
.psv-slide.active .psv-card:nth-child(4) { transition-delay: 650ms; }
.psv-slide.active .psv-card:nth-child(5) { transition-delay: 800ms; }
.psv-slide.active .psv-card:nth-child(6) { transition-delay: 950ms; }

.psv-stat { color: var(--teal); font-size: clamp(1.5rem, 2.4vw, 2.25rem); font-weight: 700; letter-spacing: -0.02em; }
.psv-card h4 { font-size: 0.95rem; font-weight: 600; margin: 0 0 6px; color: #fff; }
.psv-card p { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.5; }
.psv-card ul { margin: 8px 0 0; padding: 0; list-style: none; display: grid; gap: 4px; }
.psv-card li { font-size: 0.75rem; color: rgba(255,255,255,0.65); padding-left: 12px; position: relative; }
.psv-card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }

.psv-bullet-list { display: grid; gap: 14px; max-width: 80%; }
.psv-bullet-list li {
  list-style: none;
  display: flex; gap: 14px; align-items: flex-start;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  color: rgba(255,255,255,0.85);
  opacity: 0; transform: translateX(-8px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.psv-bullet-list .num {
  color: var(--teal); font-weight: 700; font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em; min-width: 36px;
}
.psv-slide.active .psv-bullet-list li { opacity: 1; transform: translateX(0); }
.psv-slide.active .psv-bullet-list li:nth-child(1) { transition-delay: 200ms; }
.psv-slide.active .psv-bullet-list li:nth-child(2) { transition-delay: 350ms; }
.psv-slide.active .psv-bullet-list li:nth-child(3) { transition-delay: 500ms; }
.psv-slide.active .psv-bullet-list li:nth-child(4) { transition-delay: 650ms; }
.psv-slide.active .psv-bullet-list li:nth-child(5) { transition-delay: 800ms; }
.psv-slide.active .psv-bullet-list li:nth-child(6) { transition-delay: 950ms; }
.psv-slide.active .psv-bullet-list li:nth-child(7) { transition-delay: 1100ms; }

/* Wave for timing cycle */
.psv-wave { width: 100%; height: 200px; margin-top: 16px; }
.psv-wave path.fill { fill: rgba(45,212,191,0.18); }
.psv-wave path.stroke { fill: none; stroke: var(--teal); stroke-width: 2.5; stroke-linecap: round; }
.psv-wave .marker { fill: var(--teal); }
.psv-wave text { font-family: 'JetBrains Mono', monospace; font-size: 11px; fill: rgba(255,255,255,0.6); }

/* Comparison columns */
.psv-vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
.psv-vs .divider { display: flex; align-items: center; color: rgba(255,255,255,0.3); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; }
.psv-vs .person {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px;
  display: grid; gap: 8px;
}
.psv-vs .person.win { border-color: var(--teal); background: rgba(45,212,191,0.06); }
.psv-vs .person h4 { font-size: 1.1rem; font-weight: 700; margin: 0; color: #fff; }
.psv-vs .person .row { display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.psv-vs .person .row .v { color: #fff; font-weight: 600; }
.psv-vs .person .result { margin-top: 8px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; font-weight: 700; color: var(--teal); }

/* Table */
.psv-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.psv-table th { text-align: left; padding: 8px 10px; color: rgba(255,255,255,0.5); font-weight: 500; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; border-bottom: 1px solid rgba(255,255,255,0.1); }
.psv-table td { padding: 8px 10px; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.05); font-family: 'JetBrains Mono', monospace; }
.psv-table tr:last-child td { border-bottom: none; }
.psv-table td.teal { color: var(--teal); font-weight: 600; }

/* Growth bars */
.psv-bars { display: grid; gap: 12px; max-width: 70%; }
.psv-bars .row { display: grid; grid-template-columns: 110px 1fr 90px; gap: 14px; align-items: center; font-size: 0.85rem; }
.psv-bars .label { color: rgba(255,255,255,0.85); }
.psv-bars .track { background: rgba(255,255,255,0.06); height: 10px; border-radius: 5px; overflow: hidden; }
.psv-bars .fill { background: var(--teal); height: 100%; width: 0; border-radius: 5px; transition: width 1000ms cubic-bezier(.2,.7,.2,1); transition-delay: 300ms; }
.psv-bars .val { color: var(--teal); font-weight: 700; font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; text-align: right; }

@media (max-width: 700px) {
  .psv-wrap { aspect-ratio: 3 / 4; max-height: none; }
  .psv-cols2, .psv-cols3, .psv-cols4 { grid-template-columns: 1fr 1fr; }
  .psv-vs { grid-template-columns: 1fr; }
  .psv-vs .divider { justify-content: center; }
  .psv-bullet-list { max-width: 100%; }
}


/* ============================================================
   MYTH-BUSTING SECTION (YouTube videos)
   ============================================================ */
.myths-section {
  background: linear-gradient(180deg, #0a1520 0%, #0f1f2e 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.myths-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(20,184,166,0.10), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(20,184,166,0.06), transparent 60%);
  pointer-events: none;
}
.myths-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.myths-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
.myths-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #14b8a6;
  margin-bottom: 14px;
}
.myths-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
  max-width: 820px;
}
.myths-title em { color: #14b8a6; font-style: normal; }
.myths-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}
.myths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.myth-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}
.myth-card:hover {
  border-color: rgba(20,184,166,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(20,184,166,0.12);
}
.myth-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0a1520;
  overflow: hidden;
  cursor: pointer;
}
.myth-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
  opacity: 0.85;
}
.myth-card:hover .myth-thumb img {
  transform: scale(1.04);
  opacity: 1;
}
.myth-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.myth-play-ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.22s ease, background 0.22s ease;
}
.myth-play-btn:hover .myth-play-ring {
  transform: scale(1.12);
  background: #ff0000;
}
.myth-play-ring svg { margin-left: 3px; }
.myth-number-strip {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: 3px 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  color: #14b8a6;
  letter-spacing: 0.06em;
}
.myth-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.myth-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.myth-label-dot {
  width: 5px; height: 5px;
  background: #14b8a6;
  border-radius: 50%;
  flex-shrink: 0;
}
.myth-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.myth-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
  flex: 1;
}
.myth-watch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #14b8a6;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.myth-watch:hover { color: #5eead4; gap: 11px; }
.myths-footnote {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.55;
}
.myths-footnote-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .myths-grid { grid-template-columns: repeat(2, 1fr); }
  .myths-header { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .myths-grid { grid-template-columns: 1fr; }
  .myths-inner { padding: 0 20px; }
  .myths-section { padding: 64px 0; }
}
