/* ═══════════════════════════════════════════
   Your Practice Landing Page
   Template: page-your-practice.php
   Prefix: wv-yp-
   ═══════════════════════════════════════════ */

/* ── Shared ── */
.wv-yp-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--wv-header-padding);
}

.wv-yp-eyebrow {
  font-family: var(--wv-font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--wv-color-text-secondary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wv-yp-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--wv-color-border);
}
.wv-yp-eyebrow--coral { color: var(--wv-color-primary); }
.wv-yp-eyebrow--coral::before { background: var(--wv-color-primary); }
.wv-yp-eyebrow--center { justify-content: center; }
.wv-yp-eyebrow--center::before { display: none; }


/* ═══════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════ */

.wv-yp-hero {
  padding: 96px 0 80px;
}
.wv-yp-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wv-yp-hero__body {
  font-family: var(--wv-font-primary);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--wv-color-text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
}
.wv-yp-hero__body strong {
  font-weight: 600;
  color: var(--wv-color-text-primary);
}
.wv-yp-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wv-yp-hero__secondary {
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 400;
  color: var(--wv-color-text-secondary);
}
.wv-yp-hero__secondary a {
  color: var(--wv-color-text-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--wv-color-border);
  transition: color var(--wv-transition-fast), border-color var(--wv-transition-fast);
}
.wv-yp-hero__secondary a:hover {
  color: var(--wv-color-primary);
  border-color: var(--wv-color-primary);
}

/* Account Preview Card */
.wv-yp-preview {
  background: var(--wv-color-surface);
  border: 1px solid var(--wv-color-border);
  border-radius: var(--wv-radius-lg);
  overflow: hidden;
}
.wv-yp-preview__header {
  background: var(--wv-color-text-primary);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wv-yp-preview__header-title {
  font-family: var(--wv-font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.wv-yp-preview__header-date {
  font-family: var(--wv-font-primary);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}
.wv-yp-preview__body {
  padding: 20px 24px;
}
.wv-yp-preview__delivery {
  background: var(--wv-color-background);
  border: 1px solid var(--wv-color-border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wv-yp-preview__delivery-label {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wv-color-text-secondary);
  margin-bottom: 4px;
}
.wv-yp-preview__delivery-date {
  font-family: var(--wv-font-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
}
.wv-yp-preview__delivery-count {
  font-family: var(--wv-font-primary);
  font-size: 11px;
  font-weight: 400;
  color: var(--wv-color-text-secondary);
}
.wv-yp-preview__badge {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wv-color-accent);
  background: rgba(147,151,64,0.1);
  padding: 6px 12px;
  border-radius: var(--wv-radius-pill);
}
.wv-yp-preview__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--wv-color-border);
}
.wv-yp-preview__item:last-of-type { border-bottom: none; }
.wv-yp-preview__item-dot {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wv-font-primary);
  font-size: 10px;
  font-weight: 600;
  color: var(--wv-color-text-secondary);
}
.wv-yp-preview__item-name {
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
  margin-bottom: 2px;
}
.wv-yp-preview__item-freq {
  font-family: var(--wv-font-primary);
  font-size: 11px;
  font-weight: 400;
  color: var(--wv-color-text-secondary);
}
.wv-yp-preview__status {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--wv-radius-pill);
  margin-left: auto;
}
.wv-yp-preview__status--active {
  background: rgba(147,151,64,0.1);
  color: var(--wv-color-accent);
}
.wv-yp-preview__status--paused {
  background: rgba(85,85,67,0.1);
  color: var(--wv-color-text-secondary);
}
.wv-yp-preview__footer {
  padding: 16px 24px;
  border-top: 1px solid var(--wv-color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wv-yp-preview__total-label {
  font-family: var(--wv-font-primary);
  font-size: 11px;
  font-weight: 400;
  color: var(--wv-color-text-secondary);
}
.wv-yp-preview__total-value {
  font-family: var(--wv-font-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
}


/* ═══════════════════════════════════════════
   2. CONTRAST (dark)
   ═══════════════════════════════════════════ */

.wv-yp-contrast {
  padding: 80px 0;
  background: var(--wv-color-text-primary);
}
.wv-yp-contrast__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.wv-yp-contrast__heading {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid;
}
.wv-yp-contrast__col--bad .wv-yp-contrast__heading {
  color: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.1);
}
.wv-yp-contrast__col--good .wv-yp-contrast__heading {
  color: var(--wv-color-primary);
  border-color: rgba(182,95,84,0.3);
}
.wv-yp-contrast__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.wv-yp-contrast__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 600;
}
.wv-yp-contrast__col--bad .wv-yp-contrast__icon {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3);
}
.wv-yp-contrast__col--good .wv-yp-contrast__icon {
  background: rgba(182,95,84,0.15);
  color: var(--wv-color-primary);
}
.wv-yp-contrast__text {
  font-family: var(--wv-font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.wv-yp-contrast__col--bad .wv-yp-contrast__text { color: rgba(255,255,255,0.35); }
.wv-yp-contrast__col--good .wv-yp-contrast__text { color: rgba(255,255,255,0.85); }


/* ═══════════════════════════════════════════
   3. HOW IT WORKS (3 steps)
   ═══════════════════════════════════════════ */

.wv-yp-how {
  padding: 96px 0;
}
.wv-yp-how__header {
  text-align: center;
  margin-bottom: 64px;
}
.wv-yp-how__sub {
  font-family: var(--wv-font-primary);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--wv-color-text-secondary);
  max-width: 520px;
  margin: 0 auto;
}
.wv-yp-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--wv-color-border);
  border-radius: 16px;
  overflow: hidden;
}
.wv-yp-how__step {
  background: var(--wv-color-surface);
  padding: 36px 28px;
}
.wv-yp-how__step-num {
  font-family: var(--wv-font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--wv-color-border);
  line-height: 1;
  margin-bottom: 20px;
}
.wv-yp-how__step-title {
  font-family: var(--wv-font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
  margin-bottom: 10px;
}
.wv-yp-how__step-body {
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--wv-color-text-secondary);
}
.wv-yp-how__step-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--wv-font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wv-color-primary);
  background: rgba(182,95,84,0.08);
  padding: 4px 10px;
  border-radius: var(--wv-radius-pill);
}
.wv-yp-how__cta {
  text-align: center;
  margin-top: 36px;
}


/* ═══════════════════════════════════════════
   4. WHAT YOU CONTROL (6 cards)
   ═══════════════════════════════════════════ */

.wv-yp-control {
  padding: 96px 0;
  background: var(--wv-color-surface);
}
.wv-yp-control__header {
  margin-bottom: 56px;
}
.wv-yp-control__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wv-yp-control__card {
  background: var(--wv-color-background);
  border: 1px solid var(--wv-color-border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color var(--wv-transition-fast), transform var(--wv-transition-fast);
}
.wv-yp-control__card:hover {
  border-color: var(--wv-color-text-secondary);
  transform: translateY(-2px);
}
.wv-yp-control__card--v2 {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}
.wv-yp-control__v2-badge {
  display: inline-block;
  font-family: var(--wv-font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wv-color-primary);
  background: rgba(182,95,84,0.1);
  padding: 3px 8px;
  border-radius: var(--wv-radius-pill);
  margin-bottom: 16px;
}
.wv-yp-control__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--wv-color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.wv-yp-control__title {
  font-family: var(--wv-font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
  margin-bottom: 10px;
}
.wv-yp-control__body {
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--wv-color-text-secondary);
}
.wv-yp-control__note {
  margin-top: 14px;
  font-family: var(--wv-font-primary);
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  color: var(--wv-color-text-secondary);
  padding-top: 14px;
  border-top: 1px solid var(--wv-color-border);
}


/* ═══════════════════════════════════════════
   5. PHILOSOPHY / SCIENCE
   ═══════════════════════════════════════════ */

.wv-yp-philosophy {
  padding: 96px 0;
}
.wv-yp-philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.wv-yp-philosophy__body {
  font-family: var(--wv-font-primary);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--wv-color-text-secondary);
}
.wv-yp-philosophy__body p { margin-bottom: 20px; }
.wv-yp-philosophy__body p:last-child { margin-bottom: 0; }
.wv-yp-philosophy__body strong {
  font-weight: 600;
  color: var(--wv-color-text-primary);
}
.wv-yp-philosophy__attr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--wv-color-border);
}
.wv-yp-philosophy__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wv-color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wv-font-primary);
  font-size: 10px;
  font-weight: 600;
  color: var(--wv-color-text-secondary);
  flex-shrink: 0;
}
.wv-yp-philosophy__attr-name {
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
  margin-bottom: 2px;
}
.wv-yp-philosophy__attr-title {
  font-family: var(--wv-font-primary);
  font-size: 11px;
  font-weight: 400;
  color: var(--wv-color-text-secondary);
}

/* Science cards */
.wv-yp-science-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wv-yp-science-card {
  background: var(--wv-color-surface);
  border: 1px solid var(--wv-color-border);
  border-radius: 14px;
  padding: 24px 28px;
}
.wv-yp-science-card__num {
  font-family: var(--wv-font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--wv-color-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.wv-yp-science-card__claim {
  font-family: var(--wv-font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
  margin-bottom: 6px;
}
.wv-yp-science-card__context {
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--wv-color-text-secondary);
}


/* ═══════════════════════════════════════════
   6. PHASE 2 PREVIEW (dark)
   ═══════════════════════════════════════════ */

.wv-yp-preview-section {
  padding: 96px 0;
  background: var(--wv-color-text-primary);
  overflow: hidden;
  position: relative;
}
.wv-yp-preview-section__bg {
  position: absolute;
  font-family: var(--wv-font-serif);
  font-size: 200px;
  font-weight: 400;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.wv-yp-preview-section__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.wv-yp-preview-section__eyebrow {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.wv-yp-preview-section__title {
  font-family: var(--wv-font-serif);
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.wv-yp-preview-section__sub {
  font-family: var(--wv-font-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  margin: 0 auto;
}

/* Dashboard mockup */
.wv-yp-dashboard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.wv-yp-dashboard__header {
  background: rgba(255,255,255,0.06);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wv-yp-dashboard__title-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.wv-yp-dashboard__title {
  font-family: var(--wv-font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.wv-yp-dashboard__coming-badge {
  font-family: var(--wv-font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wv-color-primary);
  background: rgba(182,95,84,0.15);
  padding: 4px 10px;
  border-radius: var(--wv-radius-pill);
}
.wv-yp-dashboard__next {
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
}
.wv-yp-dashboard__body { padding: 24px 28px; }
.wv-yp-dashboard__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.wv-yp-dashboard__row:last-of-type { margin-bottom: 0; }
.wv-yp-dashboard__row--paused { opacity: 0.45; }
.wv-yp-dashboard__product-dot {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
}
.wv-yp-dashboard__product-name {
  font-family: var(--wv-font-primary);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 3px;
}
.wv-yp-dashboard__product-freq {
  font-family: var(--wv-font-primary);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
}
.wv-yp-dashboard__actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.wv-yp-dashboard__action {
  font-family: var(--wv-font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 10px;
  border-radius: 6px;
}
.wv-yp-dashboard__footer {
  padding: 16px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wv-yp-dashboard__footer-label {
  font-family: var(--wv-font-primary);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
}
.wv-yp-dashboard__footer-value {
  font-family: var(--wv-font-primary);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}


/* ═══════════════════════════════════════════
   7. FAQ
   ═══════════════════════════════════════════ */

.wv-yp-faq {
  padding: 96px 0;
}
.wv-yp-faq__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--wv-header-padding);
}
.wv-yp-faq__header {
  text-align: center;
  margin-bottom: 56px;
}
.wv-yp-faq-item {
  border-bottom: 1px solid var(--wv-color-border);
}
.wv-yp-faq-q {
  width: 100%;
  text-align: left;
  font-family: var(--wv-font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--wv-color-text-primary);
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color var(--wv-transition-fast);
}
.wv-yp-faq-q:hover { color: var(--wv-color-primary); }
.wv-yp-faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--wv-color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wv-font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--wv-color-text-secondary);
  transition: all 0.2s;
}
.wv-yp-faq-item.open .wv-yp-faq-icon {
  background: var(--wv-color-text-primary);
  border-color: var(--wv-color-text-primary);
  color: var(--wv-color-text-inverse);
  transform: rotate(45deg);
}
.wv-yp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.wv-yp-faq-a__inner {
  padding: 0 0 24px;
  font-family: var(--wv-font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--wv-color-text-secondary);
}


/* ═══════════════════════════════════════════
   8. FINAL CTA
   ═══════════════════════════════════════════ */

.wv-yp-final {
  padding: 96px 0;
  background: var(--wv-color-surface);
  text-align: center;
}
.wv-yp-final__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--wv-header-padding);
}
.wv-yp-final__body {
  font-family: var(--wv-font-primary);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--wv-color-text-secondary);
  margin-bottom: 40px;
}
.wv-yp-final__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.wv-yp-final__note {
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 400;
  color: var(--wv-color-text-secondary);
  margin-top: 8px;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 767px) {
  .wv-yp-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wv-yp-contrast__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wv-yp-how__steps {
    grid-template-columns: 1fr;
  }
  .wv-yp-how__step {
    border-bottom: 2px solid var(--wv-color-border);
  }
  .wv-yp-how__step:last-child { border-bottom: none; }
  .wv-yp-control__grid {
    grid-template-columns: 1fr;
  }
  .wv-yp-philosophy__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wv-yp-preview-section__title {
    font-size: 32px;
  }
  .wv-yp-faq__inner {
    padding: 0 16px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .wv-yp-hero__grid { gap: 40px; }
  .wv-yp-contrast__grid { gap: 40px; }
  .wv-yp-philosophy__grid { gap: 40px; }
  .wv-yp-control__grid { grid-template-columns: repeat(2, 1fr); }
}
