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

:root {
  --bg: #F5F3EE;
  --surface: #FFFFFF;
  --ink: #1A1A1A;
  --ink-2: #3F3F3F;
  --ink-3: #727272;
  --border: rgba(0, 0, 0, 0.1);
  --brand: #1B2A4A;
  --accent: #C9A84C;
  --accent-pale: rgba(201, 168, 76, 0.12);
  --green: #00A86B;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
}

.nurture-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--brand);
  color: #fff;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.nh-brand {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
}

.nh-url {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.nh-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  padding: 6px 10px;
}

.nurture-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 22px 36px;
  display: grid;
  gap: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.hero-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FBFAF7 100%);
}

.hero-kicker {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 9px;
}

.hero-card h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 9px;
}

.hero-card p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

.presence-pill {
  margin-top: 14px;
  border: 1px solid rgba(0, 168, 107, 0.22);
  border-radius: 999px;
  background: rgba(0, 168, 107, 0.08);
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0D7F54;
  font-size: 13px;
  font-weight: 600;
}

.presence-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 168, 107, 0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 168, 107, 0.35); }
  70% { box-shadow: 0 0 0 8px rgba(0, 168, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 168, 107, 0); }
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.card-head h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.live-chip {
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
  border: 1px solid rgba(0, 168, 107, 0.3);
  border-radius: 20px;
  padding: 4px 8px;
  background: rgba(0, 168, 107, 0.09);
}

.market-highlight {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 12px;
}

.market-highlight strong {
  color: var(--ink);
}

.sold-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sold-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease;
}

.sold-item:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 168, 76, 0.45);
}

.sold-item strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 3px;
}

.sold-item span {
  font-size: 12px;
  color: var(--ink-3);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.content-grid h2 {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}

.content-grid p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  margin-bottom: 10px;
}

.content-grid ul {
  margin-left: 18px;
  display: grid;
  gap: 7px;
}

.content-grid li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

.cta-card h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}

.cta-card p {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 12px;
  line-height: 1.55;
}

.request-btn {
  border: none;
  border-radius: var(--radius-md);
  background: #111;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 18px;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.2s ease;
}

.request-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.request-status {
  margin-top: 10px;
  min-height: 18px;
  font-size: 13px;
  color: var(--ink-3);
}

.request-status.ok {
  color: #B42318;
  font-weight: 600;
}

.tracking-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  background: #111;
  color: #fff;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(70px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  max-width: 320px;
}

.tracking-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.toast-title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
}

.toast-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 820px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .nurture-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
}

@media (max-width: 560px) {
  .nurture-main {
    padding: 14px 12px 24px;
  }

  .card {
    padding: 16px;
  }

  .tracking-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
