/* ═══════════════════════════════════════════════════════════════
   Vy Nguyen | SieuVyRealty — Landing Page
   Design system derived from Spread (joinspread.app)
   ═══════════════════════════════════════════════════════════════ */

/* ---------- CSS Variables ---------- */
:root {
  --stone: #F2EDE7;
  --sand: #E6DFD5;
  --cream: #FAF7F4;
  --charcoal: #1D1B18;
  --charcoal-soft: #3A3632;
  --muted: #8C857D;
  --muted-light: #B5AFA7;
  --border: #DDD6CC;
  --white: #FFFFFF;
  --accent: #3D6B4F;
  --accent-bg: rgba(61, 107, 79, 0.06);
  --blue: #5B7FA4;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'General Sans', 'Messina Sans', -apple-system, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(61, 107, 79, 0.15);
  color: var(--charcoal);
}

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════ */
/* PASSCODE GATE                                 */
/* ═══════════════════════════════════════════ */
.passcode-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}

.passcode-card {
  text-align: center;
  max-width: 280px;
  width: 100%;
  padding: 40px 24px;
}

.passcode-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.passcode-label {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.passcode-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.passcode-input {
  width: 140px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: 'JetBrains Mono', monospace;
  text-align: center;
  letter-spacing: 4px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
}

.passcode-input:focus {
  border-color: var(--charcoal-soft);
}

.passcode-input.shake {
  animation: passcodeShake 0.4s ease;
  border-color: #c44;
}

@keyframes passcodeShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.passcode-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.passcode-btn:hover {
  opacity: 0.85;
}

.passcode-error {
  font-size: 12px;
  color: #c44;
  margin-top: 10px;
  min-height: 16px;
}

/* ═══════════════════════════════════════════ */
/* PAGE LOADER                                   */
/* ═══════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #C0392B;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  flex-direction: column;
  gap: 24px;
}

.loader-logo {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(16px);
}

.loader-counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  opacity: 0;
}

.loader-line {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
}

.loader-line-fill {
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════ */
/* NAV                                           */
/* ═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 8px 8px 28px;
  z-index: 100;
  border-radius: 100px;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s, padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(29, 27, 24, 0.15);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 760px;
  opacity: 0;
}

nav.visible {
  opacity: 1;
}

nav.scrolled {
  background: rgba(250, 247, 244, 0.72);
  border: 1px solid rgba(221, 214, 204, 0.6);
  box-shadow: 0 2px 20px rgba(29, 27, 24, 0.06);
  max-width: 400px;
  padding: 6px 6px 6px 20px;
  gap: 2px;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: 16px;
  transition: margin 0.4s;
  flex-shrink: 0;
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-light { color: #fff; }
.logo-dark  { color: var(--charcoal); display: none; }

nav.scrolled .nav-logo {
  margin-right: auto;
}

nav.scrolled .logo-light { display: none; }
nav.scrolled .logo-dark  { display: block; }

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  overflow: hidden;
  max-width: 400px;
  opacity: 1;
  transition: max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

nav.scrolled .nav-links {
  max-width: 0;
  opacity: 0;
  pointer-events: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 100px;
  transition: all 0.3s;
  letter-spacing: -0.1px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

nav.scrolled .nav-links a { color: var(--muted); }
nav.scrolled .nav-links a:hover {
  color: var(--charcoal);
  background: rgba(29, 27, 24, 0.04);
}

.nav-cta {
  padding: 11px 24px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'General Sans', sans-serif;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: -0.1px;
  margin-left: 4px;
  background: #fff;
  color: var(--charcoal);
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

nav.scrolled .nav-cta {
  background: var(--charcoal);
  color: var(--cream);
  padding: 9px 18px;
  font-size: 12px;
}

.nav-cta:hover { opacity: 0.88; }
.cta-full { display: inline; }
.cta-short { display: none; }

/* Language switch */
.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 3px;
  margin-right: 8px;
  flex-shrink: 0;
}

.lang-option {
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'General Sans', sans-serif;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
  letter-spacing: 0.3px;
}

.lang-option.active {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.lang-option:hover:not(.active) {
  color: rgba(255,255,255,0.8);
}

nav.scrolled .lang-switch {
  background: rgba(29,27,24,0.05);
}

nav.scrolled .lang-option {
  color: rgba(29,27,24,0.4);
}

nav.scrolled .lang-option.active {
  background: rgba(29,27,24,0.08);
  color: var(--charcoal);
}

nav.scrolled .lang-option:hover:not(.active) {
  color: rgba(29,27,24,0.7);
}

/* ═══════════════════════════════════════════ */
/* MAGNETIC BUTTONS                              */
/* ═══════════════════════════════════════════ */
.mag-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-family: 'General Sans', sans-serif;
  border-radius: 100px;
  z-index: 1;
  transition: color 0.35s;
}

.mag-btn .btn-fill {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mag-btn:hover .btn-fill {
  transform: scaleX(1);
}

.mag-btn .btn-text {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.btn-hero-main {
  background: #fff;
  color: var(--charcoal);
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.btn-hero-main .btn-fill {
  background: var(--stone);
}

.btn-dark-main {
  background: var(--charcoal);
  color: var(--cream);
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.2px;
  width: 100%;
}

.btn-dark-main .btn-fill {
  background: var(--charcoal-soft);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  letter-spacing: -0.1px;
}

.btn-ghost:hover { color: #fff; }

/* ═══════════════════════════════════════════ */
/* HERO                                          */
/* ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 200vh;
}

.hero-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hero-main {
  position: absolute;
  inset: 0;
  will-change: transform, border-radius;
  z-index: 2;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
  pointer-events: none;
}

/* Mobile: show poster image, hide video to save bandwidth */
.hero-img-fallback {
  display: none;
}

@media (max-width: 768px) {
  .hero-video { display: none; }
  .hero-img-fallback { display: block; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29, 27, 24, 0.82) 0%, rgba(29, 27, 24, 0.35) 40%, rgba(29, 27, 24, 0.1) 70%, rgba(29, 27, 24, 0.02) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0 56px 80px;
  max-width: 800px;
}

.hero h1, .hero-h1 {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: clamp(44px, 5.8vw, 72px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: #fff;
  margin-bottom: 20px;
  overflow: hidden;
}

.hero-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 6px;
}

.hero-word span {
  display: inline-block;
  will-change: transform;
  transform: translateY(110%);
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 36px;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
}

/* Scattered gallery */
.hero-scatter {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(29, 27, 24, 0.1);
  will-change: transform;
  opacity: 0;
}

.hero-scatter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Spinning text */
.hero-spinner {
  position: absolute;
  bottom: 40px;
  right: 56px;
  z-index: 3;
  width: 120px;
  height: 120px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  text-decoration: none;
}

.hero-spinner:hover { opacity: 1; }
.hero-spinner:hover .spin-group { animation-duration: 6s; }

.spin-group {
  transform-origin: 50px 50px;
  animation: heroSpin 12s linear infinite;
}

@keyframes heroSpin {
  to { transform: rotate(360deg); }
}

.spin-text {
  font-size: 5.2px;
  fill: rgba(255, 255, 255, 0.85);
  font-family: 'General Sans', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3.5px;
}

.hero-spinner-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  pointer-events: none;
}

/* ═══════════════════════════════════════════ */
/* FEATURE SECTIONS                              */
/* ═══════════════════════════════════════════ */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
  align-items: center;
  min-height: 80vh;
}

.feature-section.reversed .feature-text {
  order: 2;
  margin-left: 0;
  padding: 80px 56px 80px 32px;
}

.feature-section.reversed .feature-img-wrap { order: 1; }

.feature-text {
  max-width: 480px;
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text .tag,
.tag {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 16px;
}

.feature-text h2 {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 16px;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--stone);
  margin: 20px;
  max-height: 70vh;
  width: calc(100% - 40px);
}

.feature-section:not(.reversed) .feature-img-wrap {
  margin-left: auto;
  margin-right: 20px;
}

.feature-section.reversed .feature-img-wrap {
  margin-right: auto;
  margin-left: 20px;
}

.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-img-wrap img.hide {
  opacity: 0;
  transform: scale(1.04);
}

.feature-sub {
  font-size: 14px;
  color: var(--muted);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.feature-sub strong {
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════ */
/* CHAT CARD                                     */
/* ═══════════════════════════════════════════ */
.chat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 360px;
  box-shadow: 0 1px 4px rgba(29, 27, 24, 0.04), 0 8px 32px rgba(29, 27, 24, 0.06);
}

.chat-top {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.chat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.chat-top span {
  color: var(--muted);
}

.chat-msgs {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 280px;
  overflow: hidden;
}

.c-msg {
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 88%;
  opacity: 0;
  transform: translateY(8px);
}

.c-msg.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.c-msg.ai {
  background: var(--stone);
  color: var(--charcoal);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.c-msg.out {
  background: var(--charcoal);
  color: var(--cream);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.c-msg.done {
  align-self: center;
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
  border-radius: 100px;
  padding: 6px 18px;
}

.c-msg .mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════ */
/* PHOTO FULL BREAK                              */
/* ═══════════════════════════════════════════ */
.photo-full {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  border-radius: 0;
}

.photo-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  display: block;
}

.photo-full.tall {
  height: 90vh;
  min-height: 500px;
}

.photo-full-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  line-height: 1.6;
  font-size: 16px;
}

.photo-full-text {
  color: #fff;
  max-width: 540px;
  padding: 0 32px;
  margin: 0 auto 64px;
  text-align: center;
}

.photo-full-text h2 {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.photo-full-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* Stats overlay */
.photo-stats-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 56px;
}

/* Stats panel — dark glass card to pop from background */
.photo-stats-panel {
  background: rgba(20, 17, 14, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 56px 48px 48px;
  max-width: 820px;
  width: 100%;
}

.stats-row-overlay {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 900px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-row-overlay .stat-item { text-align: center; }

.stats-row-overlay .stat-num {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -2px;
  margin-bottom: 4px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.stats-row-overlay .stat-desc {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════ */
/* SECTION PAD + HEADERS                         */
/* ═══════════════════════════════════════════ */
.section-pad {
  padding: 100px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.sec-tag {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 12px;
}

.sec-title {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}

.sec-desc {
  font-size: 16px;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-top: 12px;
}

/* Deal header */
.deal-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

/* ═══════════════════════════════════════════ */
/* DEAL STACK — Featured Properties              */
/* ═══════════════════════════════════════════ */
.deal-stack-outer {
  position: relative;
  overflow: hidden;
}

.deal-stack-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 400px;
  margin: 0 auto;
  cursor: pointer;
}

.deal-stack-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

.deal-stack-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px 20px 0 0;
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -2px 8px rgba(29, 27, 24, 0.03), 0 -8px 32px rgba(29, 27, 24, 0.06);
  will-change: transform;
}

.dsc-bar {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.dsc-bar strong {
  color: var(--charcoal);
  font-weight: 500;
}

.dsc-body {
  padding: 28px 24px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
}

.dsc-side { min-width: 0; }

.dsc-side .s-lbl {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted-light);
  margin-bottom: 10px;
}

.dsc-side .s-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dsc-side .s-plat {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 14px;
}

.dsc-side .s-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
}

.dsc-side .s-price.sell { color: var(--accent); }

.dsc-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 0;
  color: var(--muted-light);
  font-size: 20px;
}

.dsc-profit {
  padding: 0 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dsc-profit-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dsc-profit-item .plbl {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted-light);
  margin-bottom: 2px;
}

.dsc-profit-item .pval {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.dsc-profit-item .pval.strike {
  text-decoration: line-through;
  color: var(--muted-light);
  font-weight: 400;
}

.dsc-profit-big { text-align: right; }

.dsc-profit-big .plbl {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 2px;
}

.dsc-profit-big .pval {
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -1px;
}

/* ═══════════════════════════════════════════ */
/* TESTIMONIAL BREAK                             */
/* ═══════════════════════════════════════════ */
.testimonial-break {
  width: calc(100% - 24px);
  margin: 12px auto;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 20px;
}

.testimonial-break > .tb-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center center;
}

.testimonial-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 27, 24, 0.75);
}

.testimonial-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.t-big-quote {
  font-size: 100px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.08);
  line-height: 0.5;
  margin-bottom: 32px;
  pointer-events: none;
  user-select: none;
  font-family: Georgia, 'Times New Roman', serif;
}

.testimonial-quote {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
  min-height: 100px;
  position: relative;
  width: 100%;
}

.testimonial-quote span {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(4px);
  transform: scale(0.98);
}

.testimonial-quote span.active {
  opacity: 1;
  position: relative;
  filter: blur(0);
  transform: scale(1);
}

.testimonial-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  min-height: 18px;
  position: relative;
  width: 100%;
}

.testimonial-role span {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  transition: all 0.5s ease 0.1s;
}

.testimonial-role span.active {
  opacity: 1;
  position: relative;
}

.t-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.t-avatar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  border-radius: 100px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.t-avatar.active {
  background: rgba(255, 255, 255, 0.15);
  padding-right: 16px;
}
.t-avatar:hover:not(.active) { background: rgba(255, 255, 255, 0.08); }

.t-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: all 0.3s;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.t-avatar.active img { border-color: rgba(255, 255, 255, 0.3); }

.t-avatar-name {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'General Sans', sans-serif;
}

.t-avatar.active .t-avatar-name {
  max-width: 100px;
  opacity: 1;
  margin-left: 8px;
}

/* ═══════════════════════════════════════════ */
/* STATEMENT SECTION                             */
/* ═══════════════════════════════════════════ */
.statement-section {
  padding: 200px 56px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.statement-tag {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 32px;
}

.statement-line {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════ */
/* CONTROL / ABOUT SECTION                       */
/* ═══════════════════════════════════════════ */
.control-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  width: calc(100% - 24px);
  margin: 12px auto;
  border-radius: 20px;
  z-index: 4;
  margin-top: -100px;
  box-shadow: 0 -20px 60px rgba(29, 27, 24, 0.3);
}

.control-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  color: #fff;
}

.control-left .tag {
  color: rgba(255, 255, 255, 0.35);
}

.control-left h2 {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 440px;
}

.control-left > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 48px;
}

.control-right {
  position: relative;
  overflow: hidden;
}

.control-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.control-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--charcoal) 0%, rgba(29, 27, 24, 0.3) 30%, transparent 55%);
}

/* About toggle */
.control-toggle { margin-bottom: 40px; }

.control-toggle-bar {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 20px;
}

.ct-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: -0.1px;
}

.ct-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ct-btn:hover:not(.active) { color: rgba(255, 255, 255, 0.7); }

.control-desc { min-height: 80px; }

.control-desc p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  display: none;
}

.control-desc p.active { display: block; }

/* Money steps */
.money-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.money-step {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.step-title {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════ */
/* NEIGHBORHOODS / NICHES                        */
/* ═══════════════════════════════════════════ */
.niche-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.niche-header-sub {
  font-size: 16px;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-top: 12px;
}

.niche-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.niche-pill {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'General Sans', sans-serif;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: -0.1px;
}

.niche-pill:hover {
  border-color: var(--muted);
  background: var(--stone);
  transform: translateY(-1px);
}

.niche-pill .pill-spread {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  margin-left: 6px;
}

.niche-search-inline {
  text-align: center;
  max-width: 500px;
  margin: 40px auto 0;
}

.niche-or {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.niche-input-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.niche-input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  font-size: 14px;
  font-family: 'General Sans', sans-serif;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
}

.niche-input:focus { border-color: var(--muted); }

.niche-submit {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--charcoal);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.niche-submit:hover { opacity: 0.85; }

.niche-suggestions { margin-top: 12px; }

.niche-scan-anim { margin-bottom: 20px; }

.scan-bar {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.scan-fill {
  width: 0;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 1.8s ease-in-out;
}

.niche-search-inline h3 {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.niche-result-check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.niche-result-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: 'General Sans', sans-serif;
  letter-spacing: -0.1px;
  transition: opacity 0.3s;
}

.niche-result-btn:hover { opacity: 0.88; }

/* ═══════════════════════════════════════════ */
/* PRICING / SERVICES                            */
/* ═══════════════════════════════════════════ */
.pricing-section {
  padding: 100px 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}

.pricing-header-right {
  font-size: 14px;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pr-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.pr-card:hover { transform: translateY(-2px); }

.pr-card.pop {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(61, 107, 79, 0.08);
}

.pr-tag {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.pr-name {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.pr-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.pr-line {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.pr-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pr-list li {
  font-size: 14px;
  color: var(--charcoal-soft);
  padding-left: 22px;
  position: relative;
}

.pr-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.pr-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: var(--charcoal);
  color: var(--cream);
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.3s;
  letter-spacing: -0.1px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.pr-btn:hover { opacity: 0.88; }

.pr-card.pop .pr-btn { background: var(--accent); }

/* ═══════════════════════════════════════════ */
/* PHOTO SCROLLER                                */
/* ═══════════════════════════════════════════ */
.scroller-section {
  padding: 80px 0 0;
  overflow: hidden;
}

.scroller-header {
  text-align: center;
  padding: 0 56px;
  margin-bottom: 40px;
}

.scroller-header h2 {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}

.scroller-header p {
  font-size: 15px;
  color: var(--muted);
}

.photo-scroller {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scrollerMarquee 40s linear infinite;
  padding: 12px 0;
}


@keyframes scrollerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.scroller-img {
  width: 280px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--stone);
}

.scroller-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════ */
/* CLOSING + CONTACT                             */
/* ═══════════════════════════════════════════ */
.closing {
  text-align: center;
  padding: 100px 56px 80px;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Satoshi', 'General Sans', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.closing p {
  font-size: 16px;
  color: var(--charcoal-soft);
  margin-bottom: 40px;
  line-height: 1.65;
}

.closing-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
}

.closing-form input,
.closing-form textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  font-family: 'General Sans', sans-serif;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
}

.closing-form input:focus,
.closing-form textarea:focus {
  border-color: var(--charcoal-soft);
  box-shadow: 0 0 0 3px rgba(29, 27, 24, 0.06);
}

.closing-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* Form row — side by side fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Checkbox group */
.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.form-checkbox-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-right: 8px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  color: var(--charcoal);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  transition: all 0.25s;
  user-select: none;
}

.form-checkbox:hover {
  border-color: var(--muted-light);
}

.form-checkbox:has(input:checked) {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.form-checkbox input[type="checkbox"] {
  display: none;
}

/* Price slider */
.price-slider {
  padding: 8px 0 16px;
}

.ps-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  margin: 0 4px 8px;
  cursor: pointer;
}

.ps-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 0;
}

.ps-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background: var(--charcoal);
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 1;
  width: 0;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ps-stop {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
  flex-shrink: 0;
}

.ps-stop:hover {
  border-color: var(--muted);
  transform: scale(1.3);
}

.ps-stop.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  transform: scale(1.2);
}

.ps-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}

.ps-labels span {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  min-width: 0;
  letter-spacing: -0.1px;
}

/* Plain-text contact info */
.closing-text-info {
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.closing-text-line {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 4px;
}

.closing-text-line a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}

.closing-text-line a:hover {
  color: var(--charcoal-soft);
}

/* ═══════════════════════════════════════════ */
/* FOOTER                                        */
/* ═══════════════════════════════════════════ */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 56px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.f-links {
  display: flex;
  gap: 24px;
}

.f-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.3s;
}

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

/* ═══════════════════════════════════════════ */
/* REDUCED MOTION                                */
/* ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .photo-scroller { animation: none; }
  .spin-group { animation: none; }
  .hero-word span { transform: none !important; }
  .c-msg { opacity: 1; transform: none; transition: none; }
  .testimonial-quote span,
  .testimonial-role span { filter: none; transition: none; }
}

/* ═══════════════════════════════════════════ */
/* RESPONSIVE                                   */
/* ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { max-width: 92vw; }
  .hero-content { padding: 0 32px 60px; }
  .hero-spinner { bottom: 24px; right: 24px; width: 90px; height: 90px; }
  .hero-scatter { display: none; }
  .feature-section {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }
  .feature-text {
    max-width: 100%;
    padding: 48px 24px 0;
  }
  .feature-section.reversed .feature-text {
    padding: 48px 24px 0;
    order: -1;
  }
  .feature-img-wrap {
    margin: 20px 16px !important;
    max-height: 50vh;
    width: calc(100% - 32px);
  }
  .feature-img-wrap img.hide { display: none; }

  .section-pad, .pricing-section { padding: 64px 24px; }

  .stats-row-overlay {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stats-row-overlay .stat-num { font-size: 36px; }

  .deal-stack-wrap { height: 300px; }
  .dsc-body { grid-template-columns: 1fr; gap: 8px; padding: 20px 16px 14px; }
  .dsc-arrow { padding: 0; justify-content: flex-start; font-size: 16px; }
  .dsc-side .s-lbl { font-size: 10px; margin-bottom: 6px; }
  .dsc-side .s-name { font-size: 14px; }
  .dsc-side .s-plat { font-size: 11px; margin-bottom: 8px; }
  .dsc-side .s-price { font-size: 20px; }
  .dsc-bar { font-size: 11px; padding: 10px 16px; }
  .dsc-profit { padding: 0 16px 16px; flex-direction: column; gap: 12px; align-items: flex-start; }
  .dsc-profit-item .plbl { font-size: 9px; }
  .dsc-profit-item .pval { font-size: 12px; }
  .dsc-profit-big { text-align: left; }
  .dsc-profit-big .pval { font-size: 22px; }

  .testimonial-break { min-height: 65vh; width: calc(100% - 16px); border-radius: 16px; }
  .testimonial-inner { padding: 48px 24px; }
  .t-big-quote { font-size: 64px; margin-bottom: 20px; }
  .testimonial-quote { font-size: clamp(18px, 5vw, 24px); min-height: 90px; }
  .testimonial-role { font-size: 10px; margin-bottom: 24px; }
  .t-avatar img { width: 28px; height: 28px; }
  .t-avatar-name { font-size: 12px; }

  .control-section { grid-template-columns: 1fr; min-height: auto; width: calc(100% - 16px); border-radius: 16px; }
  .control-left { padding: 48px 24px; }
  .control-left h2 { font-size: clamp(24px, 7vw, 32px); }
  .control-left > p { font-size: 15px; margin-bottom: 32px; max-width: 100%; }
  .control-right { height: 40vh; order: 1; }
  .control-right-overlay {
    background: linear-gradient(to bottom, var(--charcoal) 0%, transparent 40%);
  }
  .control-toggle { margin-bottom: 28px; }
  .ct-btn { padding: 12px 10px; font-size: 12px; min-height: 44px; }
  .control-desc { min-height: 70px; }
  .control-desc p { font-size: 13px; }
  .money-steps { grid-template-columns: repeat(2, 1fr); }
  .money-step { padding: 16px 12px; }
  .money-step .step-title { font-size: 12px; }
  .money-step .step-desc { font-size: 10.5px; }

  .niche-header-sub { font-size: 14px; }
  .niche-pills { gap: 6px; }
  .niche-pill { padding: 10px 18px; font-size: 13px; }
  .niche-pill .pill-spread { font-size: 11px; margin-left: 6px; }

  .statement-section { padding: 120px 24px; }
  .statement-line { font-size: clamp(26px, 7.5vw, 40px); letter-spacing: -1px; white-space: normal; }

  .pricing-header { flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .pricing-header-right { font-size: 14px; max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
  .pr-card { padding: 32px 24px; border-radius: 16px; }
  .pr-name { font-size: 20px; }

  .scroller-section { padding: 56px 0 0; }
  .scroller-header { padding: 0 24px; margin-bottom: 32px; }
  .scroller-header h2 { font-size: clamp(20px, 6vw, 28px); }
  .scroller-img { width: 200px; height: 260px; border-radius: 12px; }

  .closing { padding: 56px 24px 64px; }
  .closing h2 { font-size: clamp(28px, 8vw, 40px); }
  .closing p { font-size: 15px; margin-bottom: 32px; }
  .closing-form { max-width: 100%; }

  footer { padding: 24px; flex-direction: column; gap: 16px; text-align: center; }
  .f-links { justify-content: center; flex-wrap: wrap; }

  nav { max-width: 90vw; padding: 6px 6px 6px 18px; }
  .nav-links a { padding: 8px 12px; font-size: 12px; }
  .nav-cta { padding: 9px 18px; font-size: 12px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); letter-spacing: -1.5px; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: clamp(28px, 9vw, 40px); }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-content { padding: 0 20px 48px; }
  .hero-spinner { width: 72px; height: 72px; bottom: 16px; right: 16px; }

  .photo-full-text { padding: 0 20px; }
  .photo-full-text h2 { font-size: clamp(24px, 7vw, 36px); }
  .photo-stats-inner { padding: 0 20px; }
  .photo-stats-panel { padding: 36px 24px 32px; border-radius: 18px; }

  .stats-row-overlay { grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 28px; }
  .stats-row-overlay .stat-num { font-size: 32px; }

  .cta-short { display: inline; }
  .cta-full { display: none; }

  nav.scrolled { max-width: 290px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 28px; }
  .hero-content { padding: 0 20px 32px; }
  .feature-text { padding: 40px 20px 0; }
  .feature-img-wrap { margin: 12px 8px !important; }
  .section-pad, .pricing-section { padding: 48px 20px; }
  .control-left { padding: 40px 20px; }
  .deal-stack-wrap { height: 280px; }
  .t-big-quote { font-size: 48px; }
  .testimonial-quote { font-size: 18px; min-height: 80px; }
}
